From 5604abce7f8a3b29cbbbda671aa4b6c788fe8af3 Mon Sep 17 00:00:00 2001 From: Ben Crocker Date: Sun, 28 Mar 2021 22:00:21 -0400 Subject: [PATCH] Refactor exceptions for non-supported features, changing NotImplementedError to OperationNotSupported where a method is not supported on a particular Git forge. In tests/integration/github/test_issues.py, in method test_create_private_issue(), this means asserting that the exception raised is OperationNotSupported, not NotImplementedError. Nine test/.../*.yaml files are changed, also. Fixes ogr issue #478. Signed-off-by: Ben Crocker --- ogr/services/github/project.py | 8 +- ogr/services/gitlab/release.py | 4 + ogr/services/gitlab/user.py | 9 + ogr/services/pagure/comments.py | 3 +- ogr/services/pagure/project.py | 10 +- ogr/services/pagure/release.py | 4 + ogr/services/pagure/user.py | 2 +- ... => Comments.test_pr_comments_author.yaml} | 210 +- ...mments.test_pr_comments_author_regex.yaml} | 210 +- ...ricCommands.test_get_commit_statuses.yaml} | 598 +- ...nericCommands.test_set_commit_status.yaml} | 189 +- ...t_set_commit_status_long_description.yaml} | 259 +- ..._list.yaml => Issues.test_issue_list.yaml} | 146211 +++++++++------ ...l => Issues.test_issue_list_assignee.yaml} | 1769 +- ...aml => Issues.test_issue_list_labels.yaml} | 6236 +- ...ssues.test_list_contains_only_issues.yaml} | 75156 +++++--- tests/integration/github/test_issues.py | 4 +- 17 files changed, 136638 insertions(+), 94244 deletions(-) rename tests/integration/github/test_data/test_comments/{tests.integration.github.test_comments.Comments.test_pr_comments_author_regex.yaml => Comments.test_pr_comments_author.yaml} (89%) rename tests/integration/github/test_data/test_comments/{tests.integration.github.test_comments.Comments.test_pr_comments_author.yaml => Comments.test_pr_comments_author_regex.yaml} (89%) rename tests/integration/github/test_data/test_generic_commands/{tests.integration.github.test_generic_commands.GenericCommands.test_get_commit_statuses.yaml => GenericCommands.test_get_commit_statuses.yaml} (87%) rename tests/integration/github/test_data/test_generic_commands/{tests.integration.github.test_generic_commands.GenericCommands.test_set_commit_status.yaml => GenericCommands.test_set_commit_status.yaml} (93%) rename tests/integration/github/test_data/test_generic_commands/{tests.integration.github.test_generic_commands.GenericCommands.test_set_commit_status_long_description.yaml => GenericCommands.test_set_commit_status_long_description.yaml} (95%) rename tests/integration/github/test_data/test_issues/{tests.integration.github.test_issues.Issues.test_issue_list.yaml => Issues.test_issue_list.yaml} (71%) rename tests/integration/github/test_data/test_issues/{tests.integration.github.test_issues.Issues.test_issue_list_assignee.yaml => Issues.test_issue_list_assignee.yaml} (81%) rename tests/integration/github/test_data/test_issues/{tests.integration.github.test_issues.Issues.test_issue_list_labels.yaml => Issues.test_issue_list_labels.yaml} (82%) rename tests/integration/github/test_data/test_issues/{tests.integration.github.test_issues.Issues.test_list_contains_only_issues.yaml => Issues.test_list_contains_only_issues.yaml} (72%) diff --git a/ogr/services/github/project.py b/ogr/services/github/project.py index 373ad983..553461b3 100644 --- a/ogr/services/github/project.py +++ b/ogr/services/github/project.py @@ -42,7 +42,7 @@ CommitStatus, AccessLevel, ) -from ogr.exceptions import GithubAPIException +from ogr.exceptions import GithubAPIException, OperationNotSupported from ogr.read_only import if_readonly, GitProjectReadOnly from ogr.services import github as ogr_github from ogr.services.base import BaseGitProject @@ -206,7 +206,7 @@ def add_user(self, user: str, access_level: AccessLevel) -> None: raise GithubAPIException("User already added") def request_access(self): - raise NotImplementedError("Not possible on GitHub") + raise OperationNotSupported("Not possible on GitHub") def get_fork(self, create: bool = True) -> Optional["GithubProject"]: """ @@ -300,7 +300,7 @@ def create_issue( assignees: Optional[List[str]] = None, ) -> Issue: if private: - raise NotImplementedError("Private issues are not supported by Github") + raise OperationNotSupported("Private issues are not supported by Github") return GithubIssue.create( project=self, title=title, body=body, labels=labels, assignees=assignees ) @@ -433,7 +433,7 @@ def fork_create(self) -> "GithubProject": ) def change_token(self, new_token: str): - raise NotImplementedError + raise OperationNotSupported def get_file_content(self, path: str, ref=None) -> str: ref = ref or self.default_branch diff --git a/ogr/services/gitlab/release.py b/ogr/services/gitlab/release.py index ae1601e8..d4cf96d4 100644 --- a/ogr/services/gitlab/release.py +++ b/ogr/services/gitlab/release.py @@ -24,6 +24,7 @@ from ogr.abstract import Release, GitTag from ogr.services import gitlab as ogr_gitlab +from ogr.exceptions import OperationNotSupported class GitlabRelease(Release): @@ -49,3 +50,6 @@ def title(self): @property def body(self): return self.raw_release.description + + def edit_release(self, name: str, message: str) -> None: + raise OperationNotSupported("edit_release not supported on GitLab") diff --git a/ogr/services/gitlab/user.py b/ogr/services/gitlab/user.py index affcd150..254757ef 100644 --- a/ogr/services/gitlab/user.py +++ b/ogr/services/gitlab/user.py @@ -20,8 +20,11 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +from typing import List + from ogr.services import gitlab as ogr_gitlab from ogr.services.base import BaseGitUser +from ogr.exceptions import OperationNotSupported class GitlabUser(BaseGitUser): @@ -42,3 +45,9 @@ def get_username(self) -> str: def get_email(self) -> str: return self._gitlab_user.email + + def get_projects(self) -> List["ogr_gitlab.GitlabProject"]: + raise OperationNotSupported + + def get_forks(self) -> List["ogr_gitlab.GitlabProject"]: + raise OperationNotSupported diff --git a/ogr/services/pagure/comments.py b/ogr/services/pagure/comments.py index 95418c36..e070126d 100644 --- a/ogr/services/pagure/comments.py +++ b/ogr/services/pagure/comments.py @@ -24,6 +24,7 @@ from typing import Optional, Dict, Any from ogr.abstract import Comment, IssueComment, PRComment +from ogr.exceptions import OperationNotSupported class PagureComment(Comment): @@ -45,7 +46,7 @@ def body(self) -> str: @body.setter def body(self, new_body: str) -> None: - raise NotImplementedError() + raise OperationNotSupported() class PagureIssueComment(PagureComment, IssueComment): diff --git a/ogr/services/pagure/project.py b/ogr/services/pagure/project.py index b11cd6c2..86a1865c 100644 --- a/ogr/services/pagure/project.py +++ b/ogr/services/pagure/project.py @@ -210,7 +210,7 @@ def can_merge_pr(self, username) -> bool: return username in self.who_can_merge_pr() def request_access(self): - raise NotImplementedError("Not possible on Pagure") + raise OperationNotSupported("Not possible on Pagure") def get_issue_list( self, @@ -341,7 +341,7 @@ def is_private(self) -> bool: ]: # private repositories are not allowed on generally used pagure instances return False - raise NotImplementedError( + raise OperationNotSupported( f"is_private is not implemented for {self.service.instance_url}." f"Please open issue in https://github.com/packit/ogr" ) @@ -493,6 +493,12 @@ def get_releases(self) -> List[Release]: git_tags = self.get_tags() return [self._release_from_git_tag(git_tag) for git_tag in git_tags] + def get_release(self, identifier=None, name=None, tag_name=None) -> PagureRelease: + raise OperationNotSupported + + def get_latest_release(self) -> Optional[PagureRelease]: + raise OperationNotSupported + def _release_from_git_tag(self, git_tag: GitTag) -> PagureRelease: return PagureRelease( tag_name=git_tag.name, diff --git a/ogr/services/pagure/release.py b/ogr/services/pagure/release.py index aa1f7208..1193f061 100644 --- a/ogr/services/pagure/release.py +++ b/ogr/services/pagure/release.py @@ -22,6 +22,7 @@ from ogr.abstract import GitTag, Release from ogr.services import pagure as ogr_pagure +from ogr.exceptions import OperationNotSupported class PagureRelease(Release): @@ -45,3 +46,6 @@ def title(self): @property def body(self): return "" + + def edit_release(self, name: str, message: str) -> None: + raise OperationNotSupported("edit_release not supported on Pagure") diff --git a/ogr/services/pagure/user.py b/ogr/services/pagure/user.py index 8c5c56ae..467c0099 100644 --- a/ogr/services/pagure/user.py +++ b/ogr/services/pagure/user.py @@ -22,10 +22,10 @@ from typing import List -from ogr.exceptions import OperationNotSupported from ogr.services import pagure as ogr_pagure from ogr.services.base import BaseGitUser from ogr.services.pagure.project import PagureProject +from ogr.exceptions import OperationNotSupported class PagureUser(BaseGitUser): diff --git a/tests/integration/github/test_data/test_comments/tests.integration.github.test_comments.Comments.test_pr_comments_author_regex.yaml b/tests/integration/github/test_data/test_comments/Comments.test_pr_comments_author.yaml similarity index 89% rename from tests/integration/github/test_data/test_comments/tests.integration.github.test_comments.Comments.test_pr_comments_author_regex.yaml rename to tests/integration/github/test_data/test_comments/Comments.test_pr_comments_author.yaml index 49a2f32e..64a10616 100644 --- a/tests/integration/github/test_data/test_comments/tests.integration.github.test_comments.Comments.test_pr_comments_author_regex.yaml +++ b/tests/integration/github/test_data/test_comments/Comments.test_pr_comments_author.yaml @@ -1,13 +1,13 @@ _requre: DataTypes: 1 key_strategy: StorageKeysInspectSimple - version_storage_file: 2 + version_storage_file: 3 requests.sessions: send: GET: https://api.github.com:443/repos/packit/ogr: - metadata: - latency: 0.4027595520019531 + latency: 0.2540314197540283 module_call_list: - unittest.case - requre.online_replacing @@ -41,7 +41,7 @@ requests.sessions: 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: master + 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 @@ -49,8 +49,8 @@ requests.sessions: downloads_url: https://api.github.com/repos/packit/ogr/downloads events_url: https://api.github.com/repos/packit/ogr/events fork: false - forks: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -59,7 +59,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -83,13 +83,13 @@ requests.sessions: milestones_url: https://api.github.com/repos/packit/ogr/milestones{/number} mirror_url: null name: ogr - network_count: 41 + network_count: 44 node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 organization: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -108,7 +108,7 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -127,19 +127,19 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit permissions: - admin: true + admin: false pull: true push: true private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} - subscribers_count: 12 + 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 @@ -147,54 +147,49 @@ requests.sessions: teams_url: https://api.github.com/repos/packit/ogr/teams temp_clone_token: '' trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 + watchers: 31 + watchers_count: 31 _next: null - elapsed: 0.2 + elapsed: 0.253826 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 09:31:43 GMT + Date: Tue, 13 Apr 2021 17:59:17 GMT + ETag: W/"95f0d5738207f9e17c286d4bb703af5bb10de00b556d9c187d77997fd8ed5342" + Last-Modified: Tue, 06 Apr 2021 07:07:27 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 858C:3E29:F40309:18DFE6E:6075DBF5 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4999' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '1' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/217/comments: - metadata: - latency: 0.7002670764923096 + latency: 0.2863197326660156 module_call_list: - unittest.case - requre.online_replacing @@ -234,7 +229,7 @@ requests.sessions: updated_at: '2019-09-22T08:54:52Z' url: https://api.github.com/repos/packit/ogr/issues/comments/533862571 user: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -266,7 +261,7 @@ requests.sessions: updated_at: '2019-09-23T15:22:51Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534148758 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -307,7 +302,7 @@ requests.sessions: updated_at: '2019-09-23T15:24:19Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534149802 user: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -345,7 +340,7 @@ requests.sessions: updated_at: '2019-09-24T07:08:48Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534423024 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -382,7 +377,7 @@ requests.sessions: updated_at: '2019-09-24T08:29:10Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534448033 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -423,7 +418,7 @@ requests.sessions: updated_at: '2019-09-24T08:21:27Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534449152 user: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -464,7 +459,7 @@ requests.sessions: updated_at: '2019-09-24T08:29:07Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534452051 user: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -494,7 +489,7 @@ requests.sessions: updated_at: '2019-09-24T08:45:06Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534458338 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -535,7 +530,7 @@ requests.sessions: updated_at: '2019-09-24T08:53:14Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534461445 user: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -573,7 +568,7 @@ requests.sessions: updated_at: '2019-09-24T08:56:39Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534462752 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -592,48 +587,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.286103 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:17 GMT + ETag: W/"4ff9b88e9495242f94ff7b94f6fa9aa076ec8ced069de7d8c6e0bed243b2deb6" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 858C:3E29:F40362:18DFF2A:6075DBF5 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4997' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '3' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/pulls/217: - metadata: - latency: 0.3959324359893799 + latency: 0.42485809326171875 module_call_list: - unittest.case - requre.online_replacing @@ -672,6 +662,7 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER + auto_merge: null base: label: packit:master ref: master @@ -689,15 +680,15 @@ requests.sessions: 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: master + default_branch: main 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: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -706,7 +697,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -732,10 +723,10 @@ requests.sessions: name: ogr node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -755,11 +746,11 @@ requests.sessions: url: https://api.github.com/users/packit private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} subscribers_url: https://api.github.com/repos/packit/ogr/subscribers @@ -768,13 +759,13 @@ requests.sessions: tags_url: https://api.github.com/repos/packit/ogr/tags teams_url: https://api.github.com/repos/packit/ogr/teams trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 + watchers: 31 + watchers_count: 31 sha: cc2cddce14ec59d7cc5ff033e249e3cd40e99674 user: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -822,7 +813,7 @@ requests.sessions: contents_url: https://api.github.com/repos/mfocko/ogr/contents/{+path} contributors_url: https://api.github.com/repos/mfocko/ogr/contributors created_at: '2019-09-19T16:50:42Z' - default_branch: master + default_branch: main deployments_url: https://api.github.com/repos/mfocko/ogr/deployments description: One Git library to Rule -- one API for many git forges disabled: false @@ -868,7 +859,7 @@ requests.sessions: open_issues: 0 open_issues_count: 0 owner: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -888,9 +879,9 @@ requests.sessions: url: https://api.github.com/users/mfocko private: false pulls_url: https://api.github.com/repos/mfocko/ogr/pulls{/number} - pushed_at: '2020-08-25T17:28:39Z' + pushed_at: '2021-03-17T14:29:37Z' releases_url: https://api.github.com/repos/mfocko/ogr/releases{/id} - size: 7000 + size: 10667 ssh_url: git@github.com:mfocko/ogr.git stargazers_count: 0 stargazers_url: https://api.github.com/repos/mfocko/ogr/stargazers @@ -901,13 +892,13 @@ requests.sessions: tags_url: https://api.github.com/repos/mfocko/ogr/tags teams_url: https://api.github.com/repos/mfocko/ogr/teams trees_url: https://api.github.com/repos/mfocko/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:40:45Z' + updated_at: '2021-03-17T11:54:07Z' url: https://api.github.com/repos/mfocko/ogr watchers: 0 watchers_count: 0 sha: fe5e7cee7c36ffa55eae5b2dfc9e27d4fcaf8753 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -951,7 +942,7 @@ requests.sessions: merged: true merged_at: '2019-09-24T08:53:16Z' merged_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -985,7 +976,7 @@ requests.sessions: updated_at: '2019-12-04T09:26:58Z' url: https://api.github.com/repos/packit/ogr/pulls/217 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1004,43 +995,38 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.424645 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:17 GMT + ETag: W/"0c39228c551db46bda9dfb269c74d7de433616fb537cb58515b0040db7f0a14a" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 858C:3E29:F40320:18DFE96:6075DBF5 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4998' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '2' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 diff --git a/tests/integration/github/test_data/test_comments/tests.integration.github.test_comments.Comments.test_pr_comments_author.yaml b/tests/integration/github/test_data/test_comments/Comments.test_pr_comments_author_regex.yaml similarity index 89% rename from tests/integration/github/test_data/test_comments/tests.integration.github.test_comments.Comments.test_pr_comments_author.yaml rename to tests/integration/github/test_data/test_comments/Comments.test_pr_comments_author_regex.yaml index eb83dc59..4662974f 100644 --- a/tests/integration/github/test_data/test_comments/tests.integration.github.test_comments.Comments.test_pr_comments_author.yaml +++ b/tests/integration/github/test_data/test_comments/Comments.test_pr_comments_author_regex.yaml @@ -1,13 +1,13 @@ _requre: DataTypes: 1 key_strategy: StorageKeysInspectSimple - version_storage_file: 2 + version_storage_file: 3 requests.sessions: send: GET: https://api.github.com:443/repos/packit/ogr: - metadata: - latency: 0.3787424564361572 + latency: 0.2202613353729248 module_call_list: - unittest.case - requre.online_replacing @@ -41,7 +41,7 @@ requests.sessions: 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: master + 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 @@ -49,8 +49,8 @@ requests.sessions: downloads_url: https://api.github.com/repos/packit/ogr/downloads events_url: https://api.github.com/repos/packit/ogr/events fork: false - forks: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -59,7 +59,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -83,13 +83,13 @@ requests.sessions: milestones_url: https://api.github.com/repos/packit/ogr/milestones{/number} mirror_url: null name: ogr - network_count: 41 + network_count: 44 node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 organization: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -108,7 +108,7 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -127,19 +127,19 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit permissions: - admin: true + admin: false pull: true push: true private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} - subscribers_count: 12 + 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 @@ -147,54 +147,49 @@ requests.sessions: teams_url: https://api.github.com/repos/packit/ogr/teams temp_clone_token: '' trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 + watchers: 31 + watchers_count: 31 _next: null - elapsed: 0.2 + elapsed: 0.220088 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 09:31:43 GMT + Date: Tue, 13 Apr 2021 17:59:18 GMT + ETag: W/"95f0d5738207f9e17c286d4bb703af5bb10de00b556d9c187d77997fd8ed5342" + Last-Modified: Tue, 06 Apr 2021 07:07:27 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8595:5F11:84A971:13E6869:6075DBF6 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4996' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '4' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/217/comments: - metadata: - latency: 0.29825377464294434 + latency: 0.17908191680908203 module_call_list: - unittest.case - requre.online_replacing @@ -234,7 +229,7 @@ requests.sessions: updated_at: '2019-09-22T08:54:52Z' url: https://api.github.com/repos/packit/ogr/issues/comments/533862571 user: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -266,7 +261,7 @@ requests.sessions: updated_at: '2019-09-23T15:22:51Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534148758 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -307,7 +302,7 @@ requests.sessions: updated_at: '2019-09-23T15:24:19Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534149802 user: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -345,7 +340,7 @@ requests.sessions: updated_at: '2019-09-24T07:08:48Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534423024 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -382,7 +377,7 @@ requests.sessions: updated_at: '2019-09-24T08:29:10Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534448033 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -423,7 +418,7 @@ requests.sessions: updated_at: '2019-09-24T08:21:27Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534449152 user: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -464,7 +459,7 @@ requests.sessions: updated_at: '2019-09-24T08:29:07Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534452051 user: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -494,7 +489,7 @@ requests.sessions: updated_at: '2019-09-24T08:45:06Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534458338 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -535,7 +530,7 @@ requests.sessions: updated_at: '2019-09-24T08:53:14Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534461445 user: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -573,7 +568,7 @@ requests.sessions: updated_at: '2019-09-24T08:56:39Z' url: https://api.github.com/repos/packit/ogr/issues/comments/534462752 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -592,48 +587,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.177786 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:18 GMT + ETag: W/"4ff9b88e9495242f94ff7b94f6fa9aa076ec8ced069de7d8c6e0bed243b2deb6" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8595:5F11:84A9AD:13E68E1:6075DBF6 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4994' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '6' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/pulls/217: - metadata: - latency: 0.39522385597229004 + latency: 0.3017253875732422 module_call_list: - unittest.case - requre.online_replacing @@ -672,6 +662,7 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER + auto_merge: null base: label: packit:master ref: master @@ -689,15 +680,15 @@ requests.sessions: 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: master + default_branch: main 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: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -706,7 +697,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -732,10 +723,10 @@ requests.sessions: name: ogr node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -755,11 +746,11 @@ requests.sessions: url: https://api.github.com/users/packit private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} subscribers_url: https://api.github.com/repos/packit/ogr/subscribers @@ -768,13 +759,13 @@ requests.sessions: tags_url: https://api.github.com/repos/packit/ogr/tags teams_url: https://api.github.com/repos/packit/ogr/teams trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 + watchers: 31 + watchers_count: 31 sha: cc2cddce14ec59d7cc5ff033e249e3cd40e99674 user: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -822,7 +813,7 @@ requests.sessions: contents_url: https://api.github.com/repos/mfocko/ogr/contents/{+path} contributors_url: https://api.github.com/repos/mfocko/ogr/contributors created_at: '2019-09-19T16:50:42Z' - default_branch: master + default_branch: main deployments_url: https://api.github.com/repos/mfocko/ogr/deployments description: One Git library to Rule -- one API for many git forges disabled: false @@ -868,7 +859,7 @@ requests.sessions: open_issues: 0 open_issues_count: 0 owner: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -888,9 +879,9 @@ requests.sessions: url: https://api.github.com/users/mfocko private: false pulls_url: https://api.github.com/repos/mfocko/ogr/pulls{/number} - pushed_at: '2020-08-25T17:28:39Z' + pushed_at: '2021-03-17T14:29:37Z' releases_url: https://api.github.com/repos/mfocko/ogr/releases{/id} - size: 7000 + size: 10667 ssh_url: git@github.com:mfocko/ogr.git stargazers_count: 0 stargazers_url: https://api.github.com/repos/mfocko/ogr/stargazers @@ -901,13 +892,13 @@ requests.sessions: tags_url: https://api.github.com/repos/mfocko/ogr/tags teams_url: https://api.github.com/repos/mfocko/ogr/teams trees_url: https://api.github.com/repos/mfocko/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:40:45Z' + updated_at: '2021-03-17T11:54:07Z' url: https://api.github.com/repos/mfocko/ogr watchers: 0 watchers_count: 0 sha: fe5e7cee7c36ffa55eae5b2dfc9e27d4fcaf8753 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -951,7 +942,7 @@ requests.sessions: merged: true merged_at: '2019-09-24T08:53:16Z' merged_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -985,7 +976,7 @@ requests.sessions: updated_at: '2019-12-04T09:26:58Z' url: https://api.github.com/repos/packit/ogr/pulls/217 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1004,43 +995,38 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.301453 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:18 GMT + ETag: W/"0c39228c551db46bda9dfb269c74d7de433616fb537cb58515b0040db7f0a14a" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8595:5F11:84A981:13E6888:6075DBF6 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4995' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '5' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 diff --git a/tests/integration/github/test_data/test_generic_commands/tests.integration.github.test_generic_commands.GenericCommands.test_get_commit_statuses.yaml b/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_commit_statuses.yaml similarity index 87% rename from tests/integration/github/test_data/test_generic_commands/tests.integration.github.test_generic_commands.GenericCommands.test_get_commit_statuses.yaml rename to tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_commit_statuses.yaml index fc00c7dd..194af772 100644 --- a/tests/integration/github/test_data/test_generic_commands/tests.integration.github.test_generic_commands.GenericCommands.test_get_commit_statuses.yaml +++ b/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_get_commit_statuses.yaml @@ -1,13 +1,13 @@ _requre: DataTypes: 1 key_strategy: StorageKeysInspectSimple - version_storage_file: 2 + version_storage_file: 3 requests.sessions: send: GET: https://api.github.com:443/repos/packit/ogr: - metadata: - latency: 0.3794245719909668 + latency: 0.3755645751953125 module_call_list: - unittest.case - requre.online_replacing @@ -41,7 +41,7 @@ requests.sessions: 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: master + 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 @@ -49,8 +49,8 @@ requests.sessions: downloads_url: https://api.github.com/repos/packit/ogr/downloads events_url: https://api.github.com/repos/packit/ogr/events fork: false - forks: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -59,7 +59,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -83,13 +83,13 @@ requests.sessions: milestones_url: https://api.github.com/repos/packit/ogr/milestones{/number} mirror_url: null name: ogr - network_count: 41 + network_count: 44 node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 organization: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -108,7 +108,7 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -127,19 +127,19 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit permissions: - admin: true + admin: false pull: true push: true private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} - subscribers_count: 12 + 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 @@ -147,54 +147,49 @@ requests.sessions: teams_url: https://api.github.com/repos/packit/ogr/teams temp_clone_token: '' trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 + watchers: 31 + watchers_count: 31 _next: null - elapsed: 0.2 + elapsed: 0.37539 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 09:31:43 GMT + Date: Tue, 13 Apr 2021 17:59:25 GMT + ETag: W/"95f0d5738207f9e17c286d4bb703af5bb10de00b556d9c187d77997fd8ed5342" + Last-Modified: Tue, 06 Apr 2021 07:07:27 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85BA:19FC:78CAFC:132C39A:6075DBFD + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4993' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '7' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/commits/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128: - metadata: - latency: 0.23329520225524902 + latency: 0.167830228805542 module_call_list: - unittest.case - requre.online_replacing @@ -212,7 +207,7 @@ requests.sessions: __store_indicator: 2 _content: author: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -252,7 +247,7 @@ requests.sessions: signature: null verified: false committer: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -956,49 +951,44 @@ requests.sessions: total: 201 url: https://api.github.com/repos/packit/ogr/commits/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 _next: null - elapsed: 0.2 + elapsed: 0.167497 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:26 GMT + ETag: W/"ac79918329327bf40d860e58978a2ec7fffd611b7579f0e7c8ae29958201a5b3" Last-Modified: Tue, 13 Aug 2019 07:13:52 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85BA:19FC:78CB04:132C3B6:6075DBFD + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4992' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '8' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128: - metadata: - latency: 0.2892780303955078 + latency: 0.15105533599853516 module_call_list: - unittest.case - requre.online_replacing @@ -1015,11 +1005,191 @@ requests.sessions: output: __store_indicator: 2 _content: - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + context: test + created_at: '2021-04-12T15:04:46Z' + creator: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + description: 'Testing the trimming of the description after an argument + trim is added. The argument defaults to False, but in packit the argument + trim is ' + id: 12756383855 + node_id: MDEzOlN0YXR1c0NvbnRleHQxMjc1NjM4Mzg1NQ== + state: success + target_url: https://github.com/packit/ogr + updated_at: '2021-04-12T15:04:46Z' + url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 + - avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + context: test + created_at: '2021-04-12T15:04:45Z' + creator: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + description: testing description + id: 12756383557 + node_id: MDEzOlN0YXR1c0NvbnRleHQxMjc1NjM4MzU1Nw== + state: success + target_url: https://github.com/packit/ogr + updated_at: '2021-04-12T15:04:45Z' + url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 + - avatar_url: https://avatars.githubusercontent.com/u/8876312?v=4 + context: test + created_at: '2021-02-02T18:36:16Z' + creator: + avatar_url: https://avatars.githubusercontent.com/u/8876312?v=4 + events_url: https://api.github.com/users/mmuzila/events{/privacy} + followers_url: https://api.github.com/users/mmuzila/followers + following_url: https://api.github.com/users/mmuzila/following{/other_user} + gists_url: https://api.github.com/users/mmuzila/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/mmuzila + id: 8876312 + login: mmuzila + node_id: MDQ6VXNlcjg4NzYzMTI= + organizations_url: https://api.github.com/users/mmuzila/orgs + received_events_url: https://api.github.com/users/mmuzila/received_events + repos_url: https://api.github.com/users/mmuzila/repos + site_admin: false + starred_url: https://api.github.com/users/mmuzila/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mmuzila/subscriptions + type: User + url: https://api.github.com/users/mmuzila + description: 'Testing the trimming of the description after an argument + trim is added. The argument defaults to False, but in packit the argument + trim is ' + id: 12045844497 + node_id: MDEzOlN0YXR1c0NvbnRleHQxMjA0NTg0NDQ5Nw== + state: success + target_url: https://github.com/packit/ogr + updated_at: '2021-02-02T18:36:16Z' + url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 + - avatar_url: https://avatars.githubusercontent.com/u/8876312?v=4 + context: test + created_at: '2021-02-02T18:36:15Z' + creator: + avatar_url: https://avatars.githubusercontent.com/u/8876312?v=4 + events_url: https://api.github.com/users/mmuzila/events{/privacy} + followers_url: https://api.github.com/users/mmuzila/followers + following_url: https://api.github.com/users/mmuzila/following{/other_user} + gists_url: https://api.github.com/users/mmuzila/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/mmuzila + id: 8876312 + login: mmuzila + node_id: MDQ6VXNlcjg4NzYzMTI= + organizations_url: https://api.github.com/users/mmuzila/orgs + received_events_url: https://api.github.com/users/mmuzila/received_events + repos_url: https://api.github.com/users/mmuzila/repos + site_admin: false + starred_url: https://api.github.com/users/mmuzila/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mmuzila/subscriptions + type: User + url: https://api.github.com/users/mmuzila + description: testing description + id: 12045844111 + node_id: MDEzOlN0YXR1c0NvbnRleHQxMjA0NTg0NDExMQ== + state: success + target_url: https://github.com/packit/ogr + updated_at: '2021-02-02T18:36:15Z' + url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 + - avatar_url: https://avatars.githubusercontent.com/u/8149784?v=4 + context: test + created_at: '2020-08-26T10:41:00Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: 'Testing the trimming of the description after an argument + trim is added. The argument defaults to False, but in packit the argument + trim is ' + id: 10588638104 + node_id: MDEzOlN0YXR1c0NvbnRleHQxMDU4ODYzODEwNA== + state: success + target_url: https://github.com/packit/ogr + updated_at: '2020-08-26T10:41:00Z' + url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 + - avatar_url: https://avatars.githubusercontent.com/u/8149784?v=4 + context: test + created_at: '2020-08-26T10:40:59Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: testing description + id: 10588637862 + node_id: MDEzOlN0YXR1c0NvbnRleHQxMDU4ODYzNzg2Mg== + state: success + target_url: https://github.com/packit/ogr + updated_at: '2020-08-26T10:40:59Z' + url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2020-08-20T13:49:21Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1046,11 +1216,11 @@ requests.sessions: target_url: https://github.com/packit/ogr updated_at: '2020-08-20T13:49:21Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2020-08-20T13:49:19Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1075,11 +1245,11 @@ requests.sessions: target_url: https://github.com/packit/ogr updated_at: '2020-08-20T13:49:19Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2020-08-20T13:32:44Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1106,11 +1276,11 @@ requests.sessions: target_url: https://github.com/packit/ogr updated_at: '2020-08-20T13:32:44Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2020-08-20T13:32:42Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1135,11 +1305,11 @@ requests.sessions: target_url: https://github.com/packit/ogr updated_at: '2020-08-20T13:32:42Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2020-08-20T13:31:09Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1166,11 +1336,11 @@ requests.sessions: target_url: https://github.com/packit/ogr updated_at: '2020-08-20T13:31:09Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2020-08-20T13:31:07Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1195,11 +1365,11 @@ requests.sessions: target_url: https://github.com/packit/ogr updated_at: '2020-08-20T13:31:07Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2020-08-20T10:19:37Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1226,11 +1396,11 @@ requests.sessions: target_url: https://github.com/packit/ogr updated_at: '2020-08-20T10:19:37Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2020-08-20T10:19:35Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1255,11 +1425,11 @@ requests.sessions: target_url: https://github.com/packit/ogr updated_at: '2020-08-20T10:19:35Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/11816497?v=4 context: test created_at: '2020-08-03T12:32:48Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -1286,11 +1456,11 @@ requests.sessions: target_url: https://github.com/packit/ogr updated_at: '2020-08-03T12:32:48Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/11816497?v=4 context: test created_at: '2020-08-03T12:32:47Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -1315,11 +1485,11 @@ requests.sessions: target_url: https://github.com/packit/ogr updated_at: '2020-08-03T12:32:47Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2020-03-17T17:00:38Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1346,11 +1516,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2020-03-17T17:00:38Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2020-03-17T17:00:35Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1375,11 +1545,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2020-03-17T17:00:35Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/20214043?v=4 context: test created_at: '2019-11-27T07:44:15Z' creator: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1406,11 +1576,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-11-27T07:44:15Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/20214043?v=4 context: test created_at: '2019-11-27T07:44:11Z' creator: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1435,11 +1605,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-11-27T07:44:11Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-27T08:59:33Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1466,11 +1636,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-27T08:59:33Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-27T08:59:25Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1495,11 +1665,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-27T08:59:25Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T14:13:18Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1526,11 +1696,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T14:13:18Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T14:13:15Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1555,11 +1725,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T14:13:15Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T08:31:26Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1586,11 +1756,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T08:31:26Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T08:31:24Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1615,11 +1785,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T08:31:24Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T08:23:29Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1646,11 +1816,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T08:23:29Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T08:23:27Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1675,11 +1845,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T08:23:27Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T08:14:31Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1706,11 +1876,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T08:14:31Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T08:14:29Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1735,11 +1905,68 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T08:14:29Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + _next: null + elapsed: 0.150778 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:26 GMT + ETag: W/"34ee4ab97719e4397f753c4f88f2298e01c7bc945cdb6039ccf50f84d1b6ea5f" + Link: ; + rel="next", ; + rel="last" + 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, repo:status + X-Content-Type-Options: nosniff + X-Frame-Options: deny + X-GitHub-Media-Type: github.v3; format=json + X-GitHub-Request-Id: 85BA:19FC:78CB10:132C3CF:6075DBFE + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4991' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '9' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128?page=2: + - metadata: + latency: 0.10101890563964844 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_generic_commands + - ogr.services.github.project + - ogr.services.github.flag + - 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/8735467?v=4 context: test created_at: '2019-09-26T08:03:01Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1766,11 +1993,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T08:03:01Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T08:02:58Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1795,11 +2022,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T08:02:58Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T07:32:28Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1826,11 +2053,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T07:32:28Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T07:32:26Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1855,11 +2082,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T07:32:26Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T07:13:18Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1886,11 +2113,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T07:13:18Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T07:13:16Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -1915,73 +2142,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T07:13:16Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="next", ; - rel="last" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - X-Accepted-OAuth-Scopes: repo, repo:status - X-Content-Type-Options: nosniff - X-Frame-Options: deny - X-GitHub-Media-Type: github.v3; format=json - X-GitHub-Request-Id: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128?page=2: - - metadata: - latency: 0.1950986385345459 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_generic_commands - - ogr.services.github.project - - ogr.services.github.flag - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T06:21:52Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -2008,11 +2173,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T06:21:52Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-26T06:21:50Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -2037,11 +2202,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-26T06:21:50Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-25T15:15:53Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -2068,11 +2233,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-25T15:15:53Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-25T15:15:51Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -2097,11 +2262,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-25T15:15:51Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-25T15:10:25Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -2128,11 +2293,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-25T15:10:25Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 context: test created_at: '2019-09-25T15:10:24Z' creator: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -2157,11 +2322,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-25T15:10:24Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/49026743?v=4 context: test created_at: '2019-09-19T12:27:21Z' creator: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -2186,11 +2351,11 @@ requests.sessions: target_url: https://github.com/packit-service/ogr updated_at: '2019-09-19T12:27:21Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/49026743?v=4 context: test created_at: '2019-09-19T12:21:06Z' creator: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -2218,45 +2383,40 @@ requests.sessions: updated_at: '2019-09-19T12:21:06Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 _next: null - elapsed: 0.2 + elapsed: 0.100838 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:26 GMT + ETag: W/"f5cfb84525a22631cda4aab96ec17769c6276a0a88526b1683e2fcb5d071039d" Link: ; rel="prev", ; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + X-Requested-With X-Accepted-OAuth-Scopes: repo, repo:status X-Content-Type-Options: nosniff X-Frame-Options: deny X-GitHub-Media-Type: github.v3; format=json - X-GitHub-Request-Id: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85BA:19FC:78CB13:132C3E0:6075DBFE + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4990' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '10' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 diff --git a/tests/integration/github/test_data/test_generic_commands/tests.integration.github.test_generic_commands.GenericCommands.test_set_commit_status.yaml b/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_set_commit_status.yaml similarity index 93% rename from tests/integration/github/test_data/test_generic_commands/tests.integration.github.test_generic_commands.GenericCommands.test_set_commit_status.yaml rename to tests/integration/github/test_data/test_generic_commands/GenericCommands.test_set_commit_status.yaml index ea4a8850..4e359b26 100644 --- a/tests/integration/github/test_data/test_generic_commands/tests.integration.github.test_generic_commands.GenericCommands.test_set_commit_status.yaml +++ b/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_set_commit_status.yaml @@ -1,13 +1,13 @@ _requre: DataTypes: 1 key_strategy: StorageKeysInspectSimple - version_storage_file: 2 + version_storage_file: 3 requests.sessions: send: GET: https://api.github.com:443/repos/packit/ogr: - metadata: - latency: 0.48357057571411133 + latency: 0.22016644477844238 module_call_list: - unittest.case - requre.online_replacing @@ -42,7 +42,7 @@ requests.sessions: 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: master + 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 @@ -50,8 +50,8 @@ requests.sessions: downloads_url: https://api.github.com/repos/packit/ogr/downloads events_url: https://api.github.com/repos/packit/ogr/events fork: false - forks: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -60,7 +60,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -84,13 +84,13 @@ requests.sessions: milestones_url: https://api.github.com/repos/packit/ogr/milestones{/number} mirror_url: null name: ogr - network_count: 41 + network_count: 44 node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 organization: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -109,7 +109,7 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -128,19 +128,19 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit permissions: - admin: true + admin: false pull: true push: true private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} - subscribers_count: 12 + 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 @@ -148,54 +148,49 @@ requests.sessions: teams_url: https://api.github.com/repos/packit/ogr/teams temp_clone_token: '' trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 + watchers: 31 + watchers_count: 31 _next: null - elapsed: 0.2 + elapsed: 0.219995 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 09:31:43 GMT + Date: Tue, 13 Apr 2021 17:59:31 GMT + ETag: W/"95f0d5738207f9e17c286d4bb703af5bb10de00b556d9c187d77997fd8ed5342" + Last-Modified: Tue, 06 Apr 2021 07:07:27 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85D8:374B:F3904C:18FF4C3:6075DC03 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4989' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '11' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/commits/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128: - metadata: - latency: 0.3980295658111572 + latency: 0.09087896347045898 module_call_list: - unittest.case - requre.online_replacing @@ -214,7 +209,7 @@ requests.sessions: __store_indicator: 2 _content: author: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -254,7 +249,7 @@ requests.sessions: signature: null verified: false committer: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -958,50 +953,45 @@ requests.sessions: total: 201 url: https://api.github.com/repos/packit/ogr/commits/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 _next: null - elapsed: 0.2 + elapsed: 0.086915 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:31 GMT + ETag: W/"ac79918329327bf40d860e58978a2ec7fffd611b7579f0e7c8ae29958201a5b3" Last-Modified: Tue, 13 Aug 2019 07:13:52 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85D8:374B:F3905D:18FF4E2:6075DC03 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4988' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '12' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 POST: https://api.github.com:443/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128: - metadata: - latency: 0.4180300235748291 + latency: 0.43007922172546387 module_call_list: - unittest.case - requre.online_replacing @@ -1019,72 +1009,67 @@ requests.sessions: output: __store_indicator: 2 _content: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 context: test - created_at: '2020-08-26T10:40:59Z' + created_at: '2021-04-13T17:59:31Z' creator: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/bcrocker15 description: testing description - id: 10588637862 - node_id: MDEzOlN0YXR1c0NvbnRleHQxMDU4ODYzNzg2Mg== + id: 12771887177 + node_id: MDEzOlN0YXR1c0NvbnRleHQxMjc3MTg4NzE3Nw== state: success target_url: https://github.com/packit/ogr - updated_at: '2020-08-26T10:40:59Z' + updated_at: '2021-04-13T17:59:31Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 _next: null - elapsed: 0.2 + elapsed: 0.429884 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 - Content-Length: '1318' - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Length: '1367' + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:32 GMT + ETag: '"863280f2942ad5970a85edc5f0b9f5e18d7104549c7b78319cb7d9535fde9430"' Location: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 201 Created Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85D8:374B:F39069:18FF4F9:6075DC03 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4987' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '13' + X-XSS-Protection: '0' raw: !!binary "" reason: Created status_code: 201 diff --git a/tests/integration/github/test_data/test_generic_commands/tests.integration.github.test_generic_commands.GenericCommands.test_set_commit_status_long_description.yaml b/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_set_commit_status_long_description.yaml similarity index 95% rename from tests/integration/github/test_data/test_generic_commands/tests.integration.github.test_generic_commands.GenericCommands.test_set_commit_status_long_description.yaml rename to tests/integration/github/test_data/test_generic_commands/GenericCommands.test_set_commit_status_long_description.yaml index 2bd88795..d0bfd93f 100644 --- a/tests/integration/github/test_data/test_generic_commands/tests.integration.github.test_generic_commands.GenericCommands.test_set_commit_status_long_description.yaml +++ b/tests/integration/github/test_data/test_generic_commands/GenericCommands.test_set_commit_status_long_description.yaml @@ -1,13 +1,13 @@ _requre: DataTypes: 1 key_strategy: StorageKeysInspectSimple - version_storage_file: 2 + version_storage_file: 3 requests.sessions: send: GET: https://api.github.com:443/repos/packit/ogr: - metadata: - latency: 0.3360717296600342 + latency: 0.4306454658508301 module_call_list: - unittest.case - requre.online_replacing @@ -42,7 +42,7 @@ requests.sessions: 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: master + 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 @@ -50,8 +50,8 @@ requests.sessions: downloads_url: https://api.github.com/repos/packit/ogr/downloads events_url: https://api.github.com/repos/packit/ogr/events fork: false - forks: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -60,7 +60,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -84,13 +84,13 @@ requests.sessions: milestones_url: https://api.github.com/repos/packit/ogr/milestones{/number} mirror_url: null name: ogr - network_count: 41 + network_count: 44 node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 organization: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -109,7 +109,7 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -128,19 +128,19 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit permissions: - admin: true + admin: false pull: true push: true private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} - subscribers_count: 12 + 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 @@ -148,54 +148,49 @@ requests.sessions: teams_url: https://api.github.com/repos/packit/ogr/teams temp_clone_token: '' trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 + watchers: 31 + watchers_count: 31 _next: null - elapsed: 0.2 + elapsed: 0.430472 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 09:31:43 GMT + Date: Tue, 13 Apr 2021 17:59:32 GMT + ETag: W/"95f0d5738207f9e17c286d4bb703af5bb10de00b556d9c187d77997fd8ed5342" + Last-Modified: Tue, 06 Apr 2021 07:07:27 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85DB:6847:1031891:1A4910B:6075DC04 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4986' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '14' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/commits/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128: - metadata: - latency: 0.33466219902038574 + latency: 0.15789437294006348 module_call_list: - unittest.case - requre.online_replacing @@ -214,7 +209,7 @@ requests.sessions: __store_indicator: 2 _content: author: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -254,7 +249,7 @@ requests.sessions: signature: null verified: false committer: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -958,48 +953,43 @@ requests.sessions: total: 201 url: https://api.github.com/repos/packit/ogr/commits/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 _next: null - elapsed: 0.2 + elapsed: 0.157464 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:32 GMT + ETag: W/"ac79918329327bf40d860e58978a2ec7fffd611b7579f0e7c8ae29958201a5b3" Last-Modified: Tue, 13 Aug 2019 07:13:52 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85DB:6847:10318AE:1A49142:6075DC04 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4985' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '15' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2090010643005371 + latency: 0.15601801872253418 module_call_list: - unittest.case - requre.online_replacing @@ -1018,7 +1008,7 @@ requests.sessions: __store_indicator: 2 _content: author: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -1058,7 +1048,7 @@ requests.sessions: signature: null verified: false committer: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -1762,50 +1752,45 @@ requests.sessions: total: 201 url: https://api.github.com/repos/packit/ogr/commits/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 _next: null - elapsed: 0.2 + elapsed: 0.155686 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:33 GMT + ETag: W/"ac79918329327bf40d860e58978a2ec7fffd611b7579f0e7c8ae29958201a5b3" Last-Modified: Tue, 13 Aug 2019 07:13:52 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85DB:6847:10318E5:1A4919C:6075DC05 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4983' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '17' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 POST: https://api.github.com:443/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128: - metadata: - latency: 0.19806385040283203 + latency: 0.09955239295959473 module_call_list: - unittest.case - requre.online_replacing @@ -1831,43 +1816,38 @@ requests.sessions: resource: Status message: Validation Failed _next: null - elapsed: 0.2 + elapsed: 0.099443 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Content-Length: '256' - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT + Date: Tue, 13 Apr 2021 17:59:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 422 Unprocessable Entity Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85DB:6847:10318CC:1A49179:6075DC04 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4984' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '16' + X-XSS-Protection: '0' raw: !!binary "" reason: Unprocessable Entity status_code: 422 - metadata: - latency: 0.5737574100494385 + latency: 0.5975601673126221 module_call_list: - unittest.case - requre.online_replacing @@ -1885,74 +1865,69 @@ requests.sessions: output: __store_indicator: 2 _content: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 context: test - created_at: '2020-08-26T10:41:00Z' + created_at: '2021-04-13T17:59:33Z' creator: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/bcrocker15 description: 'Testing the trimming of the description after an argument trim is added. The argument defaults to False, but in packit the argument trim is ' - id: 10588638104 - node_id: MDEzOlN0YXR1c0NvbnRleHQxMDU4ODYzODEwNA== + id: 12771887424 + node_id: MDEzOlN0YXR1c0NvbnRleHQxMjc3MTg4NzQyNA== state: success target_url: https://github.com/packit/ogr - updated_at: '2020-08-26T10:41:00Z' + updated_at: '2021-04-13T17:59:33Z' url: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 _next: null - elapsed: 0.2 + elapsed: 0.597375 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 - Content-Length: '1439' - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Length: '1488' + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:33 GMT + ETag: '"135db66178d5c20f2ba5096e4abe56039200a39ea4526feb66ca400ad4337e53"' Location: https://api.github.com/repos/packit/ogr/statuses/c891a9e4ac01e6575f3fd66cf1b7db2f52f10128 Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 201 Created Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85DB:6847:10318FB:1A491C8:6075DC05 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4982' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '18' + X-XSS-Protection: '0' raw: !!binary "" reason: Created status_code: 201 diff --git a/tests/integration/github/test_data/test_issues/tests.integration.github.test_issues.Issues.test_issue_list.yaml b/tests/integration/github/test_data/test_issues/Issues.test_issue_list.yaml similarity index 71% rename from tests/integration/github/test_data/test_issues/tests.integration.github.test_issues.Issues.test_issue_list.yaml rename to tests/integration/github/test_data/test_issues/Issues.test_issue_list.yaml index 46f8f8eb..97d9c797 100644 --- a/tests/integration/github/test_data/test_issues/tests.integration.github.test_issues.Issues.test_issue_list.yaml +++ b/tests/integration/github/test_data/test_issues/Issues.test_issue_list.yaml @@ -1,13 +1,13 @@ _requre: DataTypes: 1 key_strategy: StorageKeysInspectSimple - version_storage_file: 2 + version_storage_file: 3 requests.sessions: send: GET: - https://api.github.com:443/repos/mfocko/ogr: + https://api.github.com:443/repos/bcrocker15/ogr: - metadata: - latency: 0.39383745193481445 + latency: 0.4849357604980469 module_call_list: - unittest.case - requre.online_replacing @@ -28,85 +28,85 @@ requests.sessions: allow_merge_commit: true allow_rebase_merge: true allow_squash_merge: true - archive_url: https://api.github.com/repos/mfocko/ogr/{archive_format}{/ref} + archive_url: https://api.github.com/repos/bcrocker15/ogr/{archive_format}{/ref} archived: false - assignees_url: https://api.github.com/repos/mfocko/ogr/assignees{/user} - blobs_url: https://api.github.com/repos/mfocko/ogr/git/blobs{/sha} - branches_url: https://api.github.com/repos/mfocko/ogr/branches{/branch} - clone_url: https://github.com/mfocko/ogr.git - collaborators_url: https://api.github.com/repos/mfocko/ogr/collaborators{/collaborator} - comments_url: https://api.github.com/repos/mfocko/ogr/comments{/number} - commits_url: https://api.github.com/repos/mfocko/ogr/commits{/sha} - compare_url: https://api.github.com/repos/mfocko/ogr/compare/{base}...{head} - contents_url: https://api.github.com/repos/mfocko/ogr/contents/{+path} - contributors_url: https://api.github.com/repos/mfocko/ogr/contributors - created_at: '2019-09-19T16:50:42Z' - default_branch: master + assignees_url: https://api.github.com/repos/bcrocker15/ogr/assignees{/user} + blobs_url: https://api.github.com/repos/bcrocker15/ogr/git/blobs{/sha} + branches_url: https://api.github.com/repos/bcrocker15/ogr/branches{/branch} + clone_url: https://github.com/bcrocker15/ogr.git + collaborators_url: https://api.github.com/repos/bcrocker15/ogr/collaborators{/collaborator} + comments_url: https://api.github.com/repos/bcrocker15/ogr/comments{/number} + commits_url: https://api.github.com/repos/bcrocker15/ogr/commits{/sha} + compare_url: https://api.github.com/repos/bcrocker15/ogr/compare/{base}...{head} + contents_url: https://api.github.com/repos/bcrocker15/ogr/contents/{+path} + contributors_url: https://api.github.com/repos/bcrocker15/ogr/contributors + created_at: '2021-03-25T17:58:00Z' + default_branch: main delete_branch_on_merge: false - deployments_url: https://api.github.com/repos/mfocko/ogr/deployments + deployments_url: https://api.github.com/repos/bcrocker15/ogr/deployments description: One Git library to Rule -- one API for many git forges disabled: false - downloads_url: https://api.github.com/repos/mfocko/ogr/downloads - events_url: https://api.github.com/repos/mfocko/ogr/events + downloads_url: https://api.github.com/repos/bcrocker15/ogr/downloads + events_url: https://api.github.com/repos/bcrocker15/ogr/events fork: true forks: 0 forks_count: 0 - forks_url: https://api.github.com/repos/mfocko/ogr/forks - full_name: mfocko/ogr - git_commits_url: https://api.github.com/repos/mfocko/ogr/git/commits{/sha} - git_refs_url: https://api.github.com/repos/mfocko/ogr/git/refs{/sha} - git_tags_url: https://api.github.com/repos/mfocko/ogr/git/tags{/sha} - git_url: git://github.com/mfocko/ogr.git + forks_url: https://api.github.com/repos/bcrocker15/ogr/forks + full_name: bcrocker15/ogr + git_commits_url: https://api.github.com/repos/bcrocker15/ogr/git/commits{/sha} + git_refs_url: https://api.github.com/repos/bcrocker15/ogr/git/refs{/sha} + git_tags_url: https://api.github.com/repos/bcrocker15/ogr/git/tags{/sha} + git_url: git://github.com/bcrocker15/ogr.git has_downloads: true has_issues: false has_pages: false has_projects: true has_wiki: true homepage: '' - hooks_url: https://api.github.com/repos/mfocko/ogr/hooks - html_url: https://github.com/mfocko/ogr - id: 209604703 - issue_comment_url: https://api.github.com/repos/mfocko/ogr/issues/comments{/number} - issue_events_url: https://api.github.com/repos/mfocko/ogr/issues/events{/number} - issues_url: https://api.github.com/repos/mfocko/ogr/issues{/number} - keys_url: https://api.github.com/repos/mfocko/ogr/keys{/key_id} - labels_url: https://api.github.com/repos/mfocko/ogr/labels{/name} - language: Python - languages_url: https://api.github.com/repos/mfocko/ogr/languages + hooks_url: https://api.github.com/repos/bcrocker15/ogr/hooks + html_url: https://github.com/bcrocker15/ogr + id: 351528835 + issue_comment_url: https://api.github.com/repos/bcrocker15/ogr/issues/comments{/number} + issue_events_url: https://api.github.com/repos/bcrocker15/ogr/issues/events{/number} + issues_url: https://api.github.com/repos/bcrocker15/ogr/issues{/number} + keys_url: https://api.github.com/repos/bcrocker15/ogr/keys{/key_id} + labels_url: https://api.github.com/repos/bcrocker15/ogr/labels{/name} + language: null + languages_url: https://api.github.com/repos/bcrocker15/ogr/languages license: key: mit name: MIT License node_id: MDc6TGljZW5zZTEz spdx_id: MIT url: https://api.github.com/licenses/mit - merges_url: https://api.github.com/repos/mfocko/ogr/merges - milestones_url: https://api.github.com/repos/mfocko/ogr/milestones{/number} + merges_url: https://api.github.com/repos/bcrocker15/ogr/merges + milestones_url: https://api.github.com/repos/bcrocker15/ogr/milestones{/number} mirror_url: null name: ogr - network_count: 41 - node_id: MDEwOlJlcG9zaXRvcnkyMDk2MDQ3MDM= - notifications_url: https://api.github.com/repos/mfocko/ogr/notifications{?since,all,participating} + network_count: 44 + node_id: MDEwOlJlcG9zaXRvcnkzNTE1Mjg4MzU= + notifications_url: https://api.github.com/repos/bcrocker15/ogr/notifications{?since,all,participating} open_issues: 0 open_issues_count: 0 owner: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 parent: archive_url: https://api.github.com/repos/packit/ogr/{archive_format}{/ref} archived: false @@ -121,15 +121,15 @@ requests.sessions: 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: master + default_branch: main 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: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -138,7 +138,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -164,10 +164,10 @@ requests.sessions: name: ogr node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -187,11 +187,11 @@ requests.sessions: url: https://api.github.com/users/packit private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} subscribers_url: https://api.github.com/repos/packit/ogr/subscribers @@ -200,19 +200,19 @@ requests.sessions: tags_url: https://api.github.com/repos/packit/ogr/tags teams_url: https://api.github.com/repos/packit/ogr/teams trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 + watchers: 31 + watchers_count: 31 permissions: admin: true pull: true push: true private: false - pulls_url: https://api.github.com/repos/mfocko/ogr/pulls{/number} - pushed_at: '2020-08-25T17:28:39Z' - releases_url: https://api.github.com/repos/mfocko/ogr/releases{/id} - size: 7000 + pulls_url: https://api.github.com/repos/bcrocker15/ogr/pulls{/number} + pushed_at: '2021-04-13T16:27:13Z' + releases_url: https://api.github.com/repos/bcrocker15/ogr/releases{/id} + size: 10654 source: archive_url: https://api.github.com/repos/packit/ogr/{archive_format}{/ref} archived: false @@ -227,15 +227,15 @@ requests.sessions: 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: master + default_branch: main 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: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -244,7 +244,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -270,10 +270,10 @@ requests.sessions: name: ogr node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -293,11 +293,11 @@ requests.sessions: url: https://api.github.com/users/packit private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} subscribers_url: https://api.github.com/repos/packit/ogr/subscribers @@ -306,70 +306,65 @@ requests.sessions: tags_url: https://api.github.com/repos/packit/ogr/tags teams_url: https://api.github.com/repos/packit/ogr/teams trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 - ssh_url: git@github.com:mfocko/ogr.git + watchers: 31 + watchers_count: 31 + ssh_url: git@github.com:bcrocker15/ogr.git stargazers_count: 0 - stargazers_url: https://api.github.com/repos/mfocko/ogr/stargazers - statuses_url: https://api.github.com/repos/mfocko/ogr/statuses/{sha} + stargazers_url: https://api.github.com/repos/bcrocker15/ogr/stargazers + statuses_url: https://api.github.com/repos/bcrocker15/ogr/statuses/{sha} subscribers_count: 0 - subscribers_url: https://api.github.com/repos/mfocko/ogr/subscribers - subscription_url: https://api.github.com/repos/mfocko/ogr/subscription - svn_url: https://github.com/mfocko/ogr - tags_url: https://api.github.com/repos/mfocko/ogr/tags - teams_url: https://api.github.com/repos/mfocko/ogr/teams + subscribers_url: https://api.github.com/repos/bcrocker15/ogr/subscribers + subscription_url: https://api.github.com/repos/bcrocker15/ogr/subscription + svn_url: https://github.com/bcrocker15/ogr + tags_url: https://api.github.com/repos/bcrocker15/ogr/tags + teams_url: https://api.github.com/repos/bcrocker15/ogr/teams temp_clone_token: '' - trees_url: https://api.github.com/repos/mfocko/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:40:45Z' - url: https://api.github.com/repos/mfocko/ogr + trees_url: https://api.github.com/repos/bcrocker15/ogr/git/trees{/sha} + updated_at: '2021-03-25T17:58:01Z' + url: https://api.github.com/repos/bcrocker15/ogr watchers: 0 watchers_count: 0 _next: null - elapsed: 0.2 + elapsed: 0.484739 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 09:40:45 GMT + Date: Tue, 13 Apr 2021 17:59:35 GMT + ETag: W/"5592d971a10f45e5dc83b154e55d60c89ab603ab3fd92b1ad3c6547c68c68059" + Last-Modified: Thu, 25 Mar 2021 17:58:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85E8:2F1F:3385F0:A2964E:6075DC07 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4980' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '20' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/mfocko/ogr/issues?state=open&sort=updated&direction=desc: + https://api.github.com:443/repos/bcrocker15/ogr/issues?state=open&sort=updated&direction=desc: - metadata: - latency: 0.23417329788208008 + latency: 0.09304046630859375 module_call_list: - unittest.case - requre.online_replacing @@ -387,47 +382,42 @@ requests.sessions: __store_indicator: 2 _content: [] _next: null - elapsed: 0.2 + elapsed: 0.092943 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Length: '2' - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:35 GMT + ETag: '"1bdae5e7cffcbb07485f0cc602769467a98d9da13f431935e12b34e2f83cad3a"' Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85E8:2F1F:3385F6:A2965A:6075DC07 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4979' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '21' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr: - metadata: - latency: 0.45513176918029785 + latency: 0.262850284576416 module_call_list: - unittest.case - requre.online_replacing @@ -461,7 +451,7 @@ requests.sessions: 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: master + 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 @@ -469,8 +459,8 @@ requests.sessions: downloads_url: https://api.github.com/repos/packit/ogr/downloads events_url: https://api.github.com/repos/packit/ogr/events fork: false - forks: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -479,7 +469,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -503,13 +493,13 @@ requests.sessions: milestones_url: https://api.github.com/repos/packit/ogr/milestones{/number} mirror_url: null name: ogr - network_count: 41 + network_count: 44 node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 organization: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -528,7 +518,7 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -547,19 +537,19 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit permissions: - admin: true + admin: false pull: true push: true private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} - subscribers_count: 12 + 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 @@ -567,54 +557,49 @@ requests.sessions: teams_url: https://api.github.com/repos/packit/ogr/teams temp_clone_token: '' trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 + watchers: 31 + watchers_count: 31 _next: null - elapsed: 0.2 + elapsed: 0.262668 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 09:31:43 GMT + Date: Tue, 13 Apr 2021 17:59:35 GMT + ETag: W/"95f0d5738207f9e17c286d4bb703af5bb10de00b556d9c187d77997fd8ed5342" + Last-Modified: Tue, 06 Apr 2021 07:07:27 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D18C:1916FB6:6075DC07 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4978' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '22' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/100: - metadata: - latency: 0.29401326179504395 + latency: 0.10962462425231934 module_call_list: - unittest.case - requre.online_replacing @@ -688,6 +673,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -739,10 +731,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: user's permissions on Issues/PRs - updated_at: '2020-06-01T08:47:32Z' + updated_at: '2020-09-30T15:00:39Z' url: https://api.github.com/repos/packit/ogr/issues/100 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -761,48 +753,43 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.10925 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 17:59:48 GMT + ETag: W/"470db4a2c4ca9b0349b5273d8b92d6f6c0207d51617e43beb2446807bfa303a4" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D9A2:1917C8D:6075DC14 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4914' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '86' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3872201442718506 + latency: 0.11733865737915039 module_call_list: - unittest.case - requre.online_replacing @@ -876,6 +863,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -927,10 +921,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: user's permissions on Issues/PRs - updated_at: '2020-06-01T08:47:32Z' + updated_at: '2020-09-30T15:00:39Z' url: https://api.github.com/repos/packit/ogr/issues/100 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -949,49 +943,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.116088 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:11 GMT + ETag: W/"470db4a2c4ca9b0349b5273d8b92d6f6c0207d51617e43beb2446807bfa303a4" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81FC6:191E8FA:6075DC67 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4509' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '491' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/103: - metadata: - latency: 0.29035091400146484 + latency: 0.20136523246765137 module_call_list: - unittest.case - requre.online_replacing @@ -1022,7 +1011,7 @@ requests.sessions: \ remote API or git-helper?" closed_at: '2019-07-16T13:56:45Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -1080,7 +1069,7 @@ requests.sessions: updated_at: '2019-07-16T13:56:45Z' url: https://api.github.com/repos/packit/ogr/issues/103 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1099,48 +1088,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.201087 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:19 GMT + ETag: W/"7d97b36784716f45cbea99ccbaa2fd571b877d6fbab0ca56f3bc246ffd73c675" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F211:191A2EE:6075DC33 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4774' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '226' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.25310182571411133 + latency: 0.20093655586242676 module_call_list: - unittest.case - requre.online_replacing @@ -1171,7 +1155,7 @@ requests.sessions: \ remote API or git-helper?" closed_at: '2019-07-16T13:56:45Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -1229,7 +1213,7 @@ requests.sessions: updated_at: '2019-07-16T13:56:45Z' url: https://api.github.com/repos/packit/ogr/issues/103 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1248,49 +1232,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.20077 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:00 GMT + ETag: W/"7d97b36784716f45cbea99ccbaa2fd571b877d6fbab0ca56f3bc246ffd73c675" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F813FD:191D734:6075DC5B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4564' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '436' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/107: - metadata: - latency: 0.23288464546203613 + latency: 0.1987438201904297 module_call_list: - unittest.case - requre.online_replacing @@ -1310,7 +1289,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1329,7 +1308,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -1363,7 +1342,7 @@ requests.sessions: \ that.\r\n" closed_at: '2019-09-26T09:12:11Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -1435,7 +1414,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/107 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -1454,48 +1433,43 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.198465 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:00:10 GMT + ETag: W/"8b55b98ea37fbe1d572f20c58fd79ee1fb73584ef4c7aa73f2f5ab5323270f27" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EA33:1919690:6075DC29 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4817' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '183' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3018629550933838 + latency: 0.1343064308166504 module_call_list: - unittest.case - requre.online_replacing @@ -1515,7 +1489,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1534,7 +1508,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -1568,7 +1542,7 @@ requests.sessions: \ that.\r\n" closed_at: '2019-09-26T09:12:11Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -1640,7 +1614,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/107 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -1659,49 +1633,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.134083 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:00:51 GMT + ETag: W/"8b55b98ea37fbe1d572f20c58fd79ee1fb73584ef4c7aa73f2f5ab5323270f27" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80CC6:191CC34:6075DC53 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4607' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '393' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/111: - metadata: - latency: 0.29605746269226074 + latency: 0.20133256912231445 module_call_list: - unittest.case - requre.online_replacing @@ -1721,7 +1690,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -1740,7 +1709,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -1764,7 +1733,7 @@ requests.sessions: \nRelevant documentation:\r\nhttps://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_git_release" closed_at: '2019-07-17T07:14:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1829,7 +1798,7 @@ requests.sessions: updated_at: '2019-07-17T07:14:35Z' url: https://api.github.com/repos/packit/ogr/issues/111 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1848,48 +1817,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.201065 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:19 GMT + ETag: W/"6bd475a92c9c0b605fc6f9fe4fd4eb88c4461ef0f51050cf18d9d00ad2ae03b3" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F1EE:191A2B0:6075DC33 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4775' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '225' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3968167304992676 + latency: 0.2007765769958496 module_call_list: - unittest.case - requre.online_replacing @@ -1909,7 +1873,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -1928,7 +1892,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -1952,7 +1916,7 @@ requests.sessions: \nRelevant documentation:\r\nhttps://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_git_release" closed_at: '2019-07-17T07:14:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2017,7 +1981,7 @@ requests.sessions: updated_at: '2019-07-17T07:14:35Z' url: https://api.github.com/repos/packit/ogr/issues/111 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2036,49 +2000,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.200594 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:59 GMT + ETag: W/"6bd475a92c9c0b605fc6f9fe4fd4eb88c4461ef0f51050cf18d9d00ad2ae03b3" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F813D4:191D6EF:6075DC5B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4565' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '435' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/112: - metadata: - latency: 0.3581387996673584 + latency: 0.10219693183898926 module_call_list: - unittest.case - requre.online_replacing @@ -2099,7 +2058,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: Figure out how to handle releases in Pagure. closed_at: null closed_by: null @@ -2110,13 +2069,6 @@ requests.sessions: html_url: https://github.com/packit/ogr/issues/112 id: 466754779 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - color: 1d76db default: false description: Related to Pagure implementation. @@ -2140,17 +2092,51 @@ requests.sessions: url: https://api.github.com/repos/packit/ogr/labels/triaged labels_url: https://api.github.com/repos/packit/ogr/issues/112/labels{/name} locked: false - milestone: null + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 node_id: MDU6SXNzdWU0NjY3NTQ3Nzk= number: 112 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open title: Support releases in Pagure - updated_at: '2020-06-01T08:05:12Z' + updated_at: '2021-02-05T08:49:37Z' url: https://api.github.com/repos/packit/ogr/issues/112 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -2169,48 +2155,43 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova _next: null - elapsed: 0.2 + elapsed: 0.101992 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 17:59:42 GMT + ETag: W/"484d2d3ca2a1c77e1a9f1dd794aca94e05f186c44dbf1c49d47d8d923fd93406" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D652:191771E:6075DC0E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4948' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '52' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3248634338378906 + latency: 0.12270021438598633 module_call_list: - unittest.case - requre.online_replacing @@ -2231,7 +2212,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: Figure out how to handle releases in Pagure. closed_at: null closed_by: null @@ -2242,13 +2223,6 @@ requests.sessions: html_url: https://github.com/packit/ogr/issues/112 id: 466754779 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - color: 1d76db default: false description: Related to Pagure implementation. @@ -2272,17 +2246,51 @@ requests.sessions: url: https://api.github.com/repos/packit/ogr/labels/triaged labels_url: https://api.github.com/repos/packit/ogr/issues/112/labels{/name} locked: false - milestone: null + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 node_id: MDU6SXNzdWU0NjY3NTQ3Nzk= number: 112 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open title: Support releases in Pagure - updated_at: '2020-06-01T08:05:12Z' + updated_at: '2021-02-05T08:49:37Z' url: https://api.github.com/repos/packit/ogr/issues/112 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -2301,49 +2309,44 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova _next: null - elapsed: 0.2 + elapsed: 0.122537 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:01:10 GMT + ETag: W/"484d2d3ca2a1c77e1a9f1dd794aca94e05f186c44dbf1c49d47d8d923fd93406" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81F02:191E7D5:6075DC66 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4516' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '484' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/115: - metadata: - latency: 0.2771008014678955 + latency: 0.12082195281982422 module_call_list: - unittest.case - requre.online_replacing @@ -2373,7 +2376,7 @@ requests.sessions: \ to have such feature in ogr.)" closed_at: '2019-07-13T18:50:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2424,7 +2427,7 @@ requests.sessions: updated_at: '2019-07-13T18:50:35Z' url: https://api.github.com/repos/packit/ogr/issues/115 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -2443,48 +2446,43 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.120553 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:00:19 GMT + ETag: W/"71e1494d6c02f52433eaac43ed18ff4a5875d11bdebc637f87fe7e2130358913" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F238:191A335:6075DC33 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4773' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '227' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.23028278350830078 + latency: 0.20091938972473145 module_call_list: - unittest.case - requre.online_replacing @@ -2514,7 +2512,7 @@ requests.sessions: \ to have such feature in ogr.)" closed_at: '2019-07-13T18:50:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2565,7 +2563,7 @@ requests.sessions: updated_at: '2019-07-13T18:50:35Z' url: https://api.github.com/repos/packit/ogr/issues/115 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -2584,49 +2582,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.200755 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:00 GMT + ETag: W/"71e1494d6c02f52433eaac43ed18ff4a5875d11bdebc637f87fe7e2130358913" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81437:191D782:6075DC5C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4563' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '437' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/116: - metadata: - latency: 0.32311248779296875 + latency: 0.11646032333374023 module_call_list: - unittest.case - requre.online_replacing @@ -2652,7 +2645,7 @@ requests.sessions: We need this for Pagure too. closed_at: '2019-07-12T21:58:49Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2710,7 +2703,7 @@ requests.sessions: updated_at: '2019-07-12T21:59:06Z' url: https://api.github.com/repos/packit/ogr/issues/116 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -2729,48 +2722,43 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.116295 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:00:19 GMT + ETag: W/"f1fe054000294888a6ccee4b6a892a276e7b991a1b93ef10c8a246429c06f254" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F252:191A365:6075DC33 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4772' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '228' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2927398681640625 + latency: 0.20131492614746094 module_call_list: - unittest.case - requre.online_replacing @@ -2796,7 +2784,7 @@ requests.sessions: We need this for Pagure too. closed_at: '2019-07-12T21:58:49Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2854,7 +2842,7 @@ requests.sessions: updated_at: '2019-07-12T21:59:06Z' url: https://api.github.com/repos/packit/ogr/issues/116 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -2873,49 +2861,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.201131 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:00 GMT + ETag: W/"f1fe054000294888a6ccee4b6a892a276e7b991a1b93ef10c8a246429c06f254" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81463:191D7DD:6075DC5C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4562' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '438' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/121: - metadata: - latency: 0.29093146324157715 + latency: 0.3224809169769287 module_call_list: - unittest.case - requre.online_replacing @@ -2942,7 +2925,7 @@ requests.sessions: \n- [x] solution for method/classes" closed_at: '2019-11-27T12:02:53Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3000,7 +2983,7 @@ requests.sessions: updated_at: '2019-11-27T12:02:53Z' url: https://api.github.com/repos/packit/ogr/issues/121 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3019,48 +3002,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.322297 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:07 GMT + ETag: W/"0dfb39b82af4a819f350d22d5bfab5adbd1f6d4e89d0a732f65c96729f80f74b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E7DB:1919315:6075DC27 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4826' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '174' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2945690155029297 + latency: 0.27133798599243164 module_call_list: - unittest.case - requre.online_replacing @@ -3087,7 +3065,7 @@ requests.sessions: \n- [x] solution for method/classes" closed_at: '2019-11-27T12:02:53Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3145,7 +3123,7 @@ requests.sessions: updated_at: '2019-11-27T12:02:53Z' url: https://api.github.com/repos/packit/ogr/issues/121 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3164,49 +3142,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.271159 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:49 GMT + ETag: W/"0dfb39b82af4a819f350d22d5bfab5adbd1f6d4e89d0a732f65c96729f80f74b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80ADE:191C91B:6075DC51 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4616' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '384' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/123: - metadata: - latency: 0.2342545986175537 + latency: 0.1435706615447998 module_call_list: - unittest.case - requre.online_replacing @@ -3235,7 +3208,7 @@ requests.sessions: \ passing." closed_at: '2019-08-15T08:12:06Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -3286,7 +3259,7 @@ requests.sessions: updated_at: '2019-08-15T08:12:06Z' url: https://api.github.com/repos/packit/ogr/issues/123 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -3305,48 +3278,43 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.143324 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:00:17 GMT + ETag: W/"66a5a58d0d9425740bcd2e58e0efea963c251bd62b2df145d1728ccaaec65a69" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F095:191A0A8:6075DC31 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4783' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '217' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2905402183532715 + latency: 0.20287203788757324 module_call_list: - unittest.case - requre.online_replacing @@ -3375,7 +3343,7 @@ requests.sessions: \ passing." closed_at: '2019-08-15T08:12:06Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -3426,7 +3394,7 @@ requests.sessions: updated_at: '2019-08-15T08:12:06Z' url: https://api.github.com/repos/packit/ogr/issues/123 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -3445,49 +3413,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.202636 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:00:58 GMT + ETag: W/"66a5a58d0d9425740bcd2e58e0efea963c251bd62b2df145d1728ccaaec65a69" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81267:191D4A8:6075DC5A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4573' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '427' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/124: - metadata: - latency: 0.2922358512878418 + latency: 0.11871504783630371 module_call_list: - unittest.case - requre.online_replacing @@ -3507,7 +3470,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -3526,7 +3489,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -3550,7 +3513,7 @@ requests.sessions: \ the test responses." closed_at: '2019-08-13T07:11:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3629,7 +3592,7 @@ requests.sessions: updated_at: '2019-08-13T07:11:39Z' url: https://api.github.com/repos/packit/ogr/issues/124 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3648,48 +3611,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.118486 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:18 GMT + ETag: W/"07a0925e8f04ebd96988a629ad5eda856c750f6d020105fc40c0baf98a33533e" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F103:191A145:6075DC31 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4780' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '220' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2527596950531006 + latency: 0.1991126537322998 module_call_list: - unittest.case - requre.online_replacing @@ -3709,7 +3667,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -3728,7 +3686,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -3752,7 +3710,7 @@ requests.sessions: \ the test responses." closed_at: '2019-08-13T07:11:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3831,7 +3789,7 @@ requests.sessions: updated_at: '2019-08-13T07:11:39Z' url: https://api.github.com/repos/packit/ogr/issues/124 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3850,49 +3808,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.198793 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:58 GMT + ETag: W/"07a0925e8f04ebd96988a629ad5eda856c750f6d020105fc40c0baf98a33533e" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F812D7:191D567:6075DC5A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4570' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '430' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/125: - metadata: - latency: 0.2195267677307129 + latency: 0.1983330249786377 module_call_list: - unittest.case - requre.online_replacing @@ -3912,7 +3865,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -3931,7 +3884,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -3955,7 +3908,7 @@ requests.sessions: \ code.\r\n\r\nThe documentation can be found here: https://python-gitlab.readthedocs.io/en/stable/" closed_at: '2019-08-15T14:34:37Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4013,7 +3966,7 @@ requests.sessions: updated_at: '2019-08-15T14:34:37Z' url: https://api.github.com/repos/packit/ogr/issues/125 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4032,48 +3985,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.198115 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:17 GMT + ETag: W/"57a22c380411b090fe06e8f3a5df58d2f0a5c0deb426ffe01304500e736c4fe5" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F06E:191A070:6075DC31 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4784' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '216' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.661005973815918 + latency: 0.1315150260925293 module_call_list: - unittest.case - requre.online_replacing @@ -4093,7 +4041,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -4112,7 +4060,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -4136,7 +4084,7 @@ requests.sessions: \ code.\r\n\r\nThe documentation can be found here: https://python-gitlab.readthedocs.io/en/stable/" closed_at: '2019-08-15T14:34:37Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4194,7 +4142,7 @@ requests.sessions: updated_at: '2019-08-15T14:34:37Z' url: https://api.github.com/repos/packit/ogr/issues/125 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4213,49 +4161,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.131346 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:58 GMT + ETag: W/"57a22c380411b090fe06e8f3a5df58d2f0a5c0deb426ffe01304500e736c4fe5" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8124C:191D482:6075DC59 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4574' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '426' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/126: - metadata: - latency: 0.3965334892272949 + latency: 0.28074145317077637 module_call_list: - unittest.case - requre.online_replacing @@ -4274,15 +4217,69 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: COLLABORATOR body: "We have `get_username` method in GitUser class. At the moment we\ - \ are missing method `get_email` for both Github and Pagure services.\r\ + \ are missing method `get_email` for both ~~Github~~ and Pagure services.\r\ \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" - closed_at: null - closed_by: null - comments: 6 + closed_at: '2020-10-12T12:16:21Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 11 comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments created_at: '2019-07-18T07:56:31Z' events_url: https://api.github.com/repos/packit/ogr/issues/126/events @@ -4324,12 +4321,12 @@ requests.sessions: number: 126 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: get_email for GitUser - updated_at: '2020-07-31T10:43:43Z' + updated_at: '2020-10-12T12:16:21Z' url: https://api.github.com/repos/packit/ogr/issues/126 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -4348,48 +4345,43 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.280398 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 17:59:47 GMT + ETag: W/"ab76584da4be8abd2570b70dbbd698f06c4322f98bee31eee860298504015311" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D8D2:1917B30:6075DC12 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4920' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '80' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29600095748901367 + latency: 0.11791038513183594 module_call_list: - unittest.case - requre.online_replacing @@ -4408,15 +4400,69 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: COLLABORATOR body: "We have `get_username` method in GitUser class. At the moment we\ - \ are missing method `get_email` for both Github and Pagure services.\r\ + \ are missing method `get_email` for both ~~Github~~ and Pagure services.\r\ \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" - closed_at: null - closed_by: null - comments: 6 + closed_at: '2020-10-12T12:16:21Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 11 comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments created_at: '2019-07-18T07:56:31Z' events_url: https://api.github.com/repos/packit/ogr/issues/126/events @@ -4458,12 +4504,12 @@ requests.sessions: number: 126 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: get_email for GitUser - updated_at: '2020-07-31T10:43:43Z' + updated_at: '2020-10-12T12:16:21Z' url: https://api.github.com/repos/packit/ogr/issues/126 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -4482,49 +4528,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.117667 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:00:33 GMT + ETag: W/"ab76584da4be8abd2570b70dbbd698f06c4322f98bee31eee860298504015311" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FE4B:191B626:6075DC41 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4702' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '298' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/127: - metadata: - latency: 0.2766878604888916 + latency: 0.1281111240386963 module_call_list: - unittest.case - requre.online_replacing @@ -4544,7 +4585,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -4563,7 +4604,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -4586,7 +4627,7 @@ requests.sessions: for it. closed_at: '2019-08-13T07:27:51Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4651,7 +4692,7 @@ requests.sessions: updated_at: '2019-08-13T07:27:51Z' url: https://api.github.com/repos/packit/ogr/issues/127 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -4670,48 +4711,43 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.127918 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:17 GMT + ETag: W/"acdbcf44e29e31435ad828ea08346b5b673bcaead6ee51f2c7290a4bddac69d8" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F0DB:191A11F:6075DC31 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4781' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '219' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.39543938636779785 + latency: 0.18817830085754395 module_call_list: - unittest.case - requre.online_replacing @@ -4731,7 +4767,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -4750,7 +4786,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -4773,7 +4809,7 @@ requests.sessions: for it. closed_at: '2019-08-13T07:27:51Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4838,7 +4874,7 @@ requests.sessions: updated_at: '2019-08-13T07:27:51Z' url: https://api.github.com/repos/packit/ogr/issues/127 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -4857,49 +4893,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.187963 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:58 GMT + ETag: W/"acdbcf44e29e31435ad828ea08346b5b673bcaead6ee51f2c7290a4bddac69d8" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F812AA:191D522:6075DC5A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4571' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '429' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/13: - metadata: - latency: 0.29605746269226074 + latency: 0.10954999923706055 module_call_list: - unittest.case - requre.online_replacing @@ -4920,7 +4951,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "after installing `ogr` via ``pip3 install .``\r\nI wanted to run\ \ make check ``PYTHONPATH=`pwd` pytest-3 -v ./tests/``\r\n\r\nit leads\ \ to errors like:\r\n```\r\nE File \"/home/jscotka/git/userspace-containerization/ogr/ogr/abstract.py\"\ @@ -4930,7 +4961,7 @@ requests.sessions: \ is not accessible in ``python3-3.6.8-1.fc28.x86_64`` by default\r\n" closed_at: '2019-02-19T14:31:38Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -4967,7 +4998,7 @@ requests.sessions: updated_at: '2019-02-19T14:31:38Z' url: https://api.github.com/repos/packit/ogr/issues/13 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -4986,48 +5017,43 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.109376 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:00:25 GMT + ETag: W/"590bec36d46f774b769d5715fdbd6d5d601b5ef60364a278ece8a5c97155bb5e" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F72E:191AB52:6075DC39 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4742' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '258' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.23256731033325195 + latency: 0.25964784622192383 module_call_list: - unittest.case - requre.online_replacing @@ -5048,7 +5074,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "after installing `ogr` via ``pip3 install .``\r\nI wanted to run\ \ make check ``PYTHONPATH=`pwd` pytest-3 -v ./tests/``\r\n\r\nit leads\ \ to errors like:\r\n```\r\nE File \"/home/jscotka/git/userspace-containerization/ogr/ogr/abstract.py\"\ @@ -5058,7 +5084,7 @@ requests.sessions: \ is not accessible in ``python3-3.6.8-1.fc28.x86_64`` by default\r\n" closed_at: '2019-02-19T14:31:38Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -5095,7 +5121,7 @@ requests.sessions: updated_at: '2019-02-19T14:31:38Z' url: https://api.github.com/repos/packit/ogr/issues/13 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -5114,49 +5140,44 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.259358 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:01:07 GMT + ETag: W/"590bec36d46f774b769d5715fdbd6d5d601b5ef60364a278ece8a5c97155bb5e" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81C3D:191E3CE:6075DC63 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4532' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '468' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/132: - metadata: - latency: 0.23378992080688477 + latency: 0.10904836654663086 module_call_list: - unittest.case - requre.online_replacing @@ -5365,7 +5386,7 @@ requests.sessions: push\":true,\"pull\":true}}]'\r\n```" closed_at: '2019-09-12T11:13:02Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 events_url: https://api.github.com/users/rpitonak/events{/privacy} followers_url: https://api.github.com/users/rpitonak/followers following_url: https://api.github.com/users/rpitonak/following{/other_user} @@ -5416,7 +5437,7 @@ requests.sessions: updated_at: '2019-09-12T15:19:54Z' url: https://api.github.com/repos/packit/ogr/issues/132 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -5435,48 +5456,43 @@ requests.sessions: type: User url: https://api.github.com/users/phracek _next: null - elapsed: 0.2 + elapsed: 0.108227 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 18:00:14 GMT + ETag: W/"9d59a8c26c90841f8623a4d36a614444511b84cc5b0dbba903c6ce7c80c6eabf" + Last-Modified: Fri, 26 Mar 2021 11:22:47 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EDFA:1919C7D:6075DC2E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4797' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '203' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29628491401672363 + latency: 0.26487183570861816 module_call_list: - unittest.case - requre.online_replacing @@ -5685,7 +5701,7 @@ requests.sessions: push\":true,\"pull\":true}}]'\r\n```" closed_at: '2019-09-12T11:13:02Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 events_url: https://api.github.com/users/rpitonak/events{/privacy} followers_url: https://api.github.com/users/rpitonak/followers following_url: https://api.github.com/users/rpitonak/following{/other_user} @@ -5736,7 +5752,7 @@ requests.sessions: updated_at: '2019-09-12T15:19:54Z' url: https://api.github.com/repos/packit/ogr/issues/132 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -5755,49 +5771,44 @@ requests.sessions: type: User url: https://api.github.com/users/phracek _next: null - elapsed: 0.2 + elapsed: 0.264643 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 18:00:55 GMT + ETag: W/"9d59a8c26c90841f8623a4d36a614444511b84cc5b0dbba903c6ce7c80c6eabf" + Last-Modified: Fri, 26 Mar 2021 11:22:47 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81015:191D136:6075DC57 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4587' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '413' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/133: - metadata: - latency: 0.29204893112182617 + latency: 0.28064537048339844 module_call_list: - unittest.case - requre.online_replacing @@ -5827,7 +5838,7 @@ requests.sessions: \ statuses. Like nothing is shown and the pull request can not be merged." closed_at: '2020-01-13T09:38:06Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -5899,7 +5910,7 @@ requests.sessions: updated_at: '2020-01-13T09:38:06Z' url: https://api.github.com/repos/packit/ogr/issues/133 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -5918,48 +5929,43 @@ requests.sessions: type: User url: https://api.github.com/users/phracek _next: null - elapsed: 0.2 + elapsed: 0.280465 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 18:00:02 GMT + ETag: W/"97197892a244b6b9b58d5618d117a7574793bb1108ad13a1e51f9587faec6b29" + Last-Modified: Fri, 26 Mar 2021 11:22:47 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E34B:1918C57:6075DC22 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4842' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '158' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29292917251586914 + latency: 0.11025071144104004 module_call_list: - unittest.case - requre.online_replacing @@ -5989,7 +5995,7 @@ requests.sessions: \ statuses. Like nothing is shown and the pull request can not be merged." closed_at: '2020-01-13T09:38:06Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6061,7 +6067,7 @@ requests.sessions: updated_at: '2020-01-13T09:38:06Z' url: https://api.github.com/repos/packit/ogr/issues/133 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -6080,49 +6086,44 @@ requests.sessions: type: User url: https://api.github.com/users/phracek _next: null - elapsed: 0.2 + elapsed: 0.110077 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 18:00:46 GMT + ETag: W/"97197892a244b6b9b58d5618d117a7574793bb1108ad13a1e51f9587faec6b29" + Last-Modified: Fri, 26 Mar 2021 11:22:47 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80892:191C5CC:6075DC4E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4632' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '368' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/134: - metadata: - latency: 0.3514530658721924 + latency: 0.23130226135253906 module_call_list: - unittest.case - requre.online_replacing @@ -6147,7 +6148,7 @@ requests.sessions: body: '' closed_at: '2019-07-23T11:55:10Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -6198,7 +6199,7 @@ requests.sessions: updated_at: '2019-07-23T11:55:10Z' url: https://api.github.com/repos/packit/ogr/issues/134 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6217,48 +6218,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.231133 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:18 GMT + ETag: W/"ab07bd55e41442526bee2b609c9673f8c58d2279be219eb89e8b92e7f1c6995b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F163:191A1EA:6075DC32 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4778' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '222' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3651096820831299 + latency: 0.1182093620300293 module_call_list: - unittest.case - requre.online_replacing @@ -6283,7 +6279,7 @@ requests.sessions: body: '' closed_at: '2019-07-23T11:55:10Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -6334,7 +6330,7 @@ requests.sessions: updated_at: '2019-07-23T11:55:10Z' url: https://api.github.com/repos/packit/ogr/issues/134 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6353,49 +6349,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.11805 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:59 GMT + ETag: W/"ab07bd55e41442526bee2b609c9673f8c58d2279be219eb89e8b92e7f1c6995b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81384:191D663:6075DC5B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4568' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '432' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/139: - metadata: - latency: 0.30042552947998047 + latency: 0.38934993743896484 module_call_list: - unittest.case - requre.online_replacing @@ -6416,7 +6407,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "they have a file called ogr.py:\r\n```\r\n$ rpm -ql python3-gdal\ \ | grep ogr\r\n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.opt-1.pyc\r\ \n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.pyc\r\ @@ -6442,7 +6433,7 @@ requests.sessions: \nNo idea how to fix this.\r\n\r\nWTF\r\n" closed_at: '2019-11-11T14:00:21Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -6486,7 +6477,7 @@ requests.sessions: updated_at: '2019-11-11T14:00:21Z' url: https://api.github.com/repos/packit/ogr/issues/139 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -6505,48 +6496,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.389153 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:08 GMT + ETag: W/"acec9e207a92472cf180cab9eb25764bd45e832b9b60626865ed2d4268e899a2" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E8D0:191947B:6075DC28 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4822' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '178' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3512101173400879 + latency: 0.1210794448852539 module_call_list: - unittest.case - requre.online_replacing @@ -6567,7 +6553,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "they have a file called ogr.py:\r\n```\r\n$ rpm -ql python3-gdal\ \ | grep ogr\r\n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.opt-1.pyc\r\ \n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.pyc\r\ @@ -6593,7 +6579,7 @@ requests.sessions: \nNo idea how to fix this.\r\n\r\nWTF\r\n" closed_at: '2019-11-11T14:00:21Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -6637,7 +6623,7 @@ requests.sessions: updated_at: '2019-11-11T14:00:21Z' url: https://api.github.com/repos/packit/ogr/issues/139 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -6656,49 +6642,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.120853 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:50 GMT + ETag: W/"acec9e207a92472cf180cab9eb25764bd45e832b9b60626865ed2d4268e899a2" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80BC9:191CAA0:6075DC52 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4612' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '388' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/143: - metadata: - latency: 0.2933049201965332 + latency: 0.19626688957214355 module_call_list: - unittest.case - requre.online_replacing @@ -6719,7 +6700,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\nTraceback (most recent call last): \ \ \ \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ @@ -6774,7 +6755,7 @@ requests.sessions: \n```" closed_at: '2019-09-19T14:18:04Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -6846,7 +6827,7 @@ requests.sessions: updated_at: '2019-09-19T14:18:04Z' url: https://api.github.com/repos/packit/ogr/issues/143 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -6865,48 +6846,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.195946 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:12 GMT + ETag: W/"cc52c172169ab79ec80714c5512a867e44999fdf629a0732503ef588fedc852b" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EC95:1919A45:6075DC2C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4803' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '197' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3948204517364502 + latency: 0.18361878395080566 module_call_list: - unittest.case - requre.online_replacing @@ -6927,7 +6903,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\nTraceback (most recent call last): \ \ \ \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ @@ -6982,7 +6958,7 @@ requests.sessions: \n```" closed_at: '2019-09-19T14:18:04Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -7054,7 +7030,7 @@ requests.sessions: updated_at: '2019-09-19T14:18:04Z' url: https://api.github.com/repos/packit/ogr/issues/143 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -7073,49 +7049,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.183332 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:54 GMT + ETag: W/"cc52c172169ab79ec80714c5512a867e44999fdf629a0732503ef588fedc852b" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80EF5:191CF7F:6075DC56 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4593' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '407' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/146: - metadata: - latency: 0.24831199645996094 + latency: 0.19731616973876953 module_call_list: - unittest.case - requre.online_replacing @@ -7146,7 +7117,7 @@ requests.sessions: \ So `i.url.replace('api/0/','')`. What is the intended behavior? " closed_at: '2019-08-15T07:11:15Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -7204,7 +7175,7 @@ requests.sessions: updated_at: '2019-08-15T07:11:15Z' url: https://api.github.com/repos/packit/ogr/issues/146 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 events_url: https://api.github.com/users/dustymabe/events{/privacy} followers_url: https://api.github.com/users/dustymabe/followers following_url: https://api.github.com/users/dustymabe/following{/other_user} @@ -7223,48 +7194,43 @@ requests.sessions: type: User url: https://api.github.com/users/dustymabe _next: null - elapsed: 0.2 + elapsed: 0.197036 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 18 Aug 2020 18:39:23 GMT + Date: Tue, 13 Apr 2021 18:00:17 GMT + ETag: W/"42d36228e4a251f8169c7baae55480477dadcc94a3cd137c28bcfd28fd7eaf54" + Last-Modified: Mon, 12 Apr 2021 14:36:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F0B4:191A0E0:6075DC31 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4782' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '218' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3062877655029297 + latency: 0.14348363876342773 module_call_list: - unittest.case - requre.online_replacing @@ -7295,7 +7261,7 @@ requests.sessions: \ So `i.url.replace('api/0/','')`. What is the intended behavior? " closed_at: '2019-08-15T07:11:15Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -7353,7 +7319,7 @@ requests.sessions: updated_at: '2019-08-15T07:11:15Z' url: https://api.github.com/repos/packit/ogr/issues/146 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 events_url: https://api.github.com/users/dustymabe/events{/privacy} followers_url: https://api.github.com/users/dustymabe/followers following_url: https://api.github.com/users/dustymabe/following{/other_user} @@ -7372,49 +7338,44 @@ requests.sessions: type: User url: https://api.github.com/users/dustymabe _next: null - elapsed: 0.2 + elapsed: 0.143221 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 18 Aug 2020 18:39:23 GMT + Date: Tue, 13 Apr 2021 18:00:58 GMT + ETag: W/"42d36228e4a251f8169c7baae55480477dadcc94a3cd137c28bcfd28fd7eaf54" + Last-Modified: Mon, 12 Apr 2021 14:36:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8128A:191D4F2:6075DC5A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4572' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '428' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/147: - metadata: - latency: 0.31108951568603516 + latency: 0.17847061157226562 module_call_list: - unittest.case - requre.online_replacing @@ -7448,7 +7409,7 @@ requests.sessions: \n- [ ] add tests for all of those\r\n\r\n" closed_at: null closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -7506,7 +7467,7 @@ requests.sessions: updated_at: '2020-06-29T06:46:49Z' url: https://api.github.com/repos/packit/ogr/issues/147 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 events_url: https://api.github.com/users/dustymabe/events{/privacy} followers_url: https://api.github.com/users/dustymabe/followers following_url: https://api.github.com/users/dustymabe/following{/other_user} @@ -7525,48 +7486,43 @@ requests.sessions: type: User url: https://api.github.com/users/dustymabe _next: null - elapsed: 0.2 + elapsed: 0.178306 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 18 Aug 2020 18:39:23 GMT + Date: Tue, 13 Apr 2021 17:59:52 GMT + ETag: W/"499d5185352c2af0de8b587bdc04685c25efb3a0873af1980a06bd7ff8203908" + Last-Modified: Mon, 12 Apr 2021 14:36:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DC54:1918107:6075DC18 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4891' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '109' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29938364028930664 + latency: 0.11852216720581055 module_call_list: - unittest.case - requre.online_replacing @@ -7600,7 +7556,7 @@ requests.sessions: \n- [ ] add tests for all of those\r\n\r\n" closed_at: null closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -7658,7 +7614,7 @@ requests.sessions: updated_at: '2020-06-29T06:46:49Z' url: https://api.github.com/repos/packit/ogr/issues/147 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 events_url: https://api.github.com/users/dustymabe/events{/privacy} followers_url: https://api.github.com/users/dustymabe/followers following_url: https://api.github.com/users/dustymabe/following{/other_user} @@ -7677,49 +7633,44 @@ requests.sessions: type: User url: https://api.github.com/users/dustymabe _next: null - elapsed: 0.2 + elapsed: 0.118298 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 18 Aug 2020 18:39:23 GMT + Date: Tue, 13 Apr 2021 18:01:11 GMT + ETag: W/"499d5185352c2af0de8b587bdc04685c25efb3a0873af1980a06bd7ff8203908" + Last-Modified: Mon, 12 Apr 2021 14:36:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F82054:191E9C1:6075DC67 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4506' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '494' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/15: - metadata: - latency: 0.291048526763916 + latency: 0.12049627304077148 module_call_list: - unittest.case - requre.online_replacing @@ -7744,7 +7695,7 @@ requests.sessions: body: Thank you in advance! closed_at: '2019-02-18T09:07:33Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -7795,7 +7746,7 @@ requests.sessions: updated_at: '2019-02-18T09:07:33Z' url: https://api.github.com/repos/packit/ogr/issues/15 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -7814,48 +7765,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.120301 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:25 GMT + ETag: W/"d28c7bd33d62ac0fb0f689f9829048d2cd0c35f659e04419f9693f15e22febe4" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F750:191AB7D:6075DC39 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4741' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '259' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.26581263542175293 + latency: 0.2009894847869873 module_call_list: - unittest.case - requre.online_replacing @@ -7880,7 +7826,7 @@ requests.sessions: body: Thank you in advance! closed_at: '2019-02-18T09:07:33Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -7931,7 +7877,7 @@ requests.sessions: updated_at: '2019-02-18T09:07:33Z' url: https://api.github.com/repos/packit/ogr/issues/15 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -7950,49 +7896,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.200775 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:07 GMT + ETag: W/"d28c7bd33d62ac0fb0f689f9829048d2cd0c35f659e04419f9693f15e22febe4" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81C85:191E435:6075DC63 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4531' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '469' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/157: - metadata: - latency: 0.397169828414917 + latency: 0.3511085510253906 module_call_list: - unittest.case - requre.online_replacing @@ -8020,7 +7961,7 @@ requests.sessions: \ a bit)" closed_at: '2020-07-17T13:52:03Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -8085,7 +8026,7 @@ requests.sessions: updated_at: '2020-07-28T07:07:52Z' url: https://api.github.com/repos/packit/ogr/issues/157 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8104,48 +8045,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.350948 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:52 GMT + ETag: W/"3b23a7023d521f138967c804e78dc4857962d322adfafe484186a828f57606dc" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DBF9:1918047:6075DC18 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4894' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '106' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.30078840255737305 + latency: 0.1750037670135498 module_call_list: - unittest.case - requre.online_replacing @@ -8173,7 +8109,7 @@ requests.sessions: \ a bit)" closed_at: '2020-07-17T13:52:03Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -8238,7 +8174,7 @@ requests.sessions: updated_at: '2020-07-28T07:07:52Z' url: https://api.github.com/repos/packit/ogr/issues/157 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8257,49 +8193,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.174816 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:37 GMT + ETag: W/"3b23a7023d521f138967c804e78dc4857962d322adfafe484186a828f57606dc" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8013E:191BABA:6075DC45 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4681' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '319' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/158: - metadata: - latency: 0.3169078826904297 + latency: 0.1121358871459961 module_call_list: - unittest.case - requre.online_replacing @@ -8319,7 +8250,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -8338,7 +8269,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -8372,7 +8303,7 @@ requests.sessions: \n\r\n" closed_at: '2019-09-26T10:59:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8430,7 +8361,7 @@ requests.sessions: updated_at: '2019-09-26T10:59:40Z' url: https://api.github.com/repos/packit/ogr/issues/158 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8449,48 +8380,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.11193 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:11 GMT + ETag: W/"8716a33a27f3848e732abcc0e85dc1354ab18edc1f11814930bb91dd7f5b2211" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EBC4:19198FE:6075DC2B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4808' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '192' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2864720821380615 + latency: 0.14178872108459473 module_call_list: - unittest.case - requre.online_replacing @@ -8510,7 +8436,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -8529,7 +8455,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -8563,7 +8489,7 @@ requests.sessions: \n\r\n" closed_at: '2019-09-26T10:59:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8621,7 +8547,7 @@ requests.sessions: updated_at: '2019-09-26T10:59:40Z' url: https://api.github.com/repos/packit/ogr/issues/158 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8640,49 +8566,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.14159 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:53 GMT + ETag: W/"8716a33a27f3848e732abcc0e85dc1354ab18edc1f11814930bb91dd7f5b2211" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80DE1:191CDE7:6075DC54 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4598' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '402' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/159: - metadata: - latency: 0.39505910873413086 + latency: 0.1853165626525879 module_call_list: - unittest.case - requre.online_replacing @@ -8702,7 +8623,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8721,7 +8642,7 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + - 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} @@ -8753,7 +8674,7 @@ requests.sessions: , token=\"asdasdasda\"),\r\n]\r\n```\r\n\r\n\r\n" closed_at: '2019-09-02T10:30:19Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -8804,7 +8725,7 @@ requests.sessions: updated_at: '2019-09-02T10:30:19Z' url: https://api.github.com/repos/packit/ogr/issues/159 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8823,48 +8744,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.185044 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:17 GMT + ETag: W/"df3b45a785b5542220854b8d8d2e52a37b6cdc64acd264e87757368c20de2179" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F04A:191A02A:6075DC31 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4785' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '215' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.23337173461914062 + latency: 0.1433556079864502 module_call_list: - unittest.case - requre.online_replacing @@ -8884,7 +8800,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8903,7 +8819,7 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + - 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} @@ -8935,7 +8851,7 @@ requests.sessions: , token=\"asdasdasda\"),\r\n]\r\n```\r\n\r\n\r\n" closed_at: '2019-09-02T10:30:19Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -8986,7 +8902,7 @@ requests.sessions: updated_at: '2019-09-02T10:30:19Z' url: https://api.github.com/repos/packit/ogr/issues/159 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9005,49 +8921,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.143182 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:57 GMT + ETag: W/"df3b45a785b5542220854b8d8d2e52a37b6cdc64acd264e87757368c20de2179" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81232:191D467:6075DC59 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4575' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '425' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/161: - metadata: - latency: 0.24292945861816406 + latency: 0.14307284355163574 module_call_list: - unittest.case - requre.online_replacing @@ -9068,7 +8979,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "https://src.stg.fedoraproject.org/api/0/#pull-requests\r\n\r\n\ we just need to use the new fields such as repo_from which were added\ \ to the API in order to create PRs from forks to parent repos.\r\n\r\ @@ -9077,7 +8988,7 @@ requests.sessions: likely packit will need some code changes to support this" closed_at: '2019-09-09T08:16:38Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9142,7 +9053,7 @@ requests.sessions: updated_at: '2019-09-09T08:16:38Z' url: https://api.github.com/repos/packit/ogr/issues/161 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -9161,48 +9072,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.14277 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:16 GMT + ETag: W/"97907ef545cc11ad6ce33e066ab1f9ae9b1a4298cceabc68031fb3da69d633f5" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F003:1919FC7:6075DC30 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4787' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '213' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2940208911895752 + latency: 0.3767082691192627 module_call_list: - unittest.case - requre.online_replacing @@ -9223,7 +9129,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "https://src.stg.fedoraproject.org/api/0/#pull-requests\r\n\r\n\ we just need to use the new fields such as repo_from which were added\ \ to the API in order to create PRs from forks to parent repos.\r\n\r\ @@ -9232,7 +9138,7 @@ requests.sessions: likely packit will need some code changes to support this" closed_at: '2019-09-09T08:16:38Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9297,7 +9203,7 @@ requests.sessions: updated_at: '2019-09-09T08:16:38Z' url: https://api.github.com/repos/packit/ogr/issues/161 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -9316,49 +9222,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.376538 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:57 GMT + ETag: W/"97907ef545cc11ad6ce33e066ab1f9ae9b1a4298cceabc68031fb3da69d633f5" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F811B8:191D3B1:6075DC59 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4577' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '423' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/162: - metadata: - latency: 0.24468255043029785 + latency: 0.11339402198791504 module_call_list: - unittest.case - requre.online_replacing @@ -9378,7 +9279,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9397,7 +9298,7 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + - 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} @@ -9423,7 +9324,7 @@ requests.sessions: \n" closed_at: '2019-09-05T09:00:25Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9495,7 +9396,7 @@ requests.sessions: updated_at: '2019-09-05T09:00:25Z' url: https://api.github.com/repos/packit/ogr/issues/162 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9514,48 +9415,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.11299 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:17 GMT + ETag: W/"4fe57cba5bc7bc39e75a2ab1b7ad332d7ebfd2d31a01bb45882a574f4292ffd8" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F029:1919FF9:6075DC30 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4786' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '214' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.39571642875671387 + latency: 0.20096611976623535 module_call_list: - unittest.case - requre.online_replacing @@ -9575,7 +9471,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9594,7 +9490,7 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + - 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} @@ -9620,7 +9516,7 @@ requests.sessions: \n" closed_at: '2019-09-05T09:00:25Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9692,7 +9588,7 @@ requests.sessions: updated_at: '2019-09-05T09:00:25Z' url: https://api.github.com/repos/packit/ogr/issues/162 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9711,49 +9607,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.200773 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:57 GMT + ETag: W/"4fe57cba5bc7bc39e75a2ab1b7ad332d7ebfd2d31a01bb45882a574f4292ffd8" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81207:191D42C:6075DC59 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4576' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '424' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/165: - metadata: - latency: 0.4107096195220947 + latency: 0.2657754421234131 module_call_list: - unittest.case - requre.online_replacing @@ -9780,7 +9671,7 @@ requests.sessions: \ describes the testing approach well.\r\n- [ ] Document `/packit` command." closed_at: '2020-08-14T09:27:22Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -9845,7 +9736,7 @@ requests.sessions: updated_at: '2020-08-14T17:30:15Z' url: https://api.github.com/repos/packit/ogr/issues/165 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9864,48 +9755,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.265594 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 14 Aug 2020 17:30:15 GMT + Date: Tue, 13 Apr 2021 17:59:51 GMT + ETag: W/"30d417857aa482c0ca0d645662d3a2e044aa02baf71a757d602ee73fc3ec4587" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DB63:1917F5F:6075DC17 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4900' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '100' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.22510170936584473 + latency: 0.19222354888916016 module_call_list: - unittest.case - requre.online_replacing @@ -9932,7 +9818,7 @@ requests.sessions: \ describes the testing approach well.\r\n- [ ] Document `/packit` command." closed_at: '2020-08-14T09:27:22Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -9997,7 +9883,7 @@ requests.sessions: updated_at: '2020-08-14T17:30:15Z' url: https://api.github.com/repos/packit/ogr/issues/165 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -10016,49 +9902,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.191966 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 14 Aug 2020 17:30:15 GMT + Date: Tue, 13 Apr 2021 18:00:36 GMT + ETag: W/"30d417857aa482c0ca0d645662d3a2e044aa02baf71a757d602ee73fc3ec4587" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8005A:191B95D:6075DC44 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4687' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '313' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/168: - metadata: - latency: 0.25429630279541016 + latency: 0.11173152923583984 module_call_list: - unittest.case - requre.online_replacing @@ -10078,7 +9959,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -10097,7 +9978,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -10160,7 +10041,7 @@ requests.sessions: \ %s not found\" % target_repo)\r\n\r\n return fork\r\n```" closed_at: '2019-09-12T10:04:41Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -10225,7 +10106,7 @@ requests.sessions: updated_at: '2019-09-12T10:04:41Z' url: https://api.github.com/repos/packit/ogr/issues/168 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -10244,48 +10125,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.111055 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:14 GMT + ETag: W/"88ab1fc03e944da9d56285586b34cae24a381dc2ac72d788944f3f67a0e9664d" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EE66:1919D36:6075DC2E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4794' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '206' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3903801441192627 + latency: 0.1251814365386963 module_call_list: - unittest.case - requre.online_replacing @@ -10305,7 +10181,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -10324,7 +10200,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -10387,7 +10263,7 @@ requests.sessions: \ %s not found\" % target_repo)\r\n\r\n return fork\r\n```" closed_at: '2019-09-12T10:04:41Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -10452,7 +10328,7 @@ requests.sessions: updated_at: '2019-09-12T10:04:41Z' url: https://api.github.com/repos/packit/ogr/issues/168 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -10471,49 +10347,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.124347 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:55 GMT + ETag: W/"88ab1fc03e944da9d56285586b34cae24a381dc2ac72d788944f3f67a0e9664d" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81091:191D1F3:6075DC57 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4584' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '416' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/169: - metadata: - latency: 0.2947714328765869 + latency: 0.28984832763671875 module_call_list: - unittest.case - requre.online_replacing @@ -10533,7 +10404,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -10552,7 +10423,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -10582,7 +10453,7 @@ requests.sessions: \n- https://docs.gitlab.com/ce/api/members.html" closed_at: '2019-09-26T10:43:41Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -10647,7 +10518,7 @@ requests.sessions: updated_at: '2019-09-26T10:43:41Z' url: https://api.github.com/repos/packit/ogr/issues/169 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -10666,48 +10537,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.289669 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:11 GMT + ETag: W/"1343c55e03a3e8715f993b5b4fcb0736d7ae55199eb02c54ac7a1155520e726e" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EBDB:1919928:6075DC2B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4807' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '193' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2999746799468994 + latency: 0.5456926822662354 module_call_list: - unittest.case - requre.online_replacing @@ -10727,7 +10593,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -10746,7 +10612,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -10776,7 +10642,7 @@ requests.sessions: \n- https://docs.gitlab.com/ce/api/members.html" closed_at: '2019-09-26T10:43:41Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -10841,7 +10707,7 @@ requests.sessions: updated_at: '2019-09-26T10:43:41Z' url: https://api.github.com/repos/packit/ogr/issues/169 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -10860,49 +10726,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.545511 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:53 GMT + ETag: W/"1343c55e03a3e8715f993b5b4fcb0736d7ae55199eb02c54ac7a1155520e726e" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80E04:191CE14:6075DC55 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4597' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '403' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/17: - metadata: - latency: 0.2865569591522217 + latency: 0.20674443244934082 module_call_list: - unittest.case - requre.online_replacing @@ -10923,7 +10784,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\r\nit is unbale to get or install ``ansible-bender`` for ``make\ \ build`` target.\r\n\r\nIt is not part of Fedora-29.\r\n\r\nI've found\ \ that @TomasTomecek done this: https://github.com/TomasTomecek/ansible-bender\r\ @@ -10950,7 +10811,7 @@ requests.sessions: \ ``sudo dnf install buildah `` it finally works." closed_at: '2019-06-25T09:00:15Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -10987,7 +10848,7 @@ requests.sessions: updated_at: '2019-06-25T09:00:15Z' url: https://api.github.com/repos/packit/ogr/issues/17 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -11006,48 +10867,43 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.206509 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:00:22 GMT + ETag: W/"b93e4a1ef97979ea5cb37dd491364ce0644c6ff75cfcbc6d56e2135172e42ca0" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F47E:191A6F8:6075DC36 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4759' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '241' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.40572047233581543 + latency: 0.19710683822631836 module_call_list: - unittest.case - requre.online_replacing @@ -11068,7 +10924,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\r\nit is unbale to get or install ``ansible-bender`` for ``make\ \ build`` target.\r\n\r\nIt is not part of Fedora-29.\r\n\r\nI've found\ \ that @TomasTomecek done this: https://github.com/TomasTomecek/ansible-bender\r\ @@ -11095,7 +10951,7 @@ requests.sessions: \ ``sudo dnf install buildah `` it finally works." closed_at: '2019-06-25T09:00:15Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -11132,7 +10988,7 @@ requests.sessions: updated_at: '2019-06-25T09:00:15Z' url: https://api.github.com/repos/packit/ogr/issues/17 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -11151,49 +11007,44 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.196924 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:01:03 GMT + ETag: W/"b93e4a1ef97979ea5cb37dd491364ce0644c6ff75cfcbc6d56e2135172e42ca0" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F817E2:191DD44:6075DC5F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4549' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '451' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/170: - metadata: - latency: 0.29224324226379395 + latency: 0.2856254577636719 module_call_list: - unittest.case - requre.online_replacing @@ -11213,7 +11064,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -11232,7 +11083,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -11255,7 +11106,7 @@ requests.sessions: \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html" closed_at: '2019-09-10T14:30:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -11320,7 +11171,7 @@ requests.sessions: updated_at: '2019-09-10T14:30:35Z' url: https://api.github.com/repos/packit/ogr/issues/170 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -11339,48 +11190,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.285457 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:15 GMT + ETag: W/"2e445599f0245d7c3bbb2e874905b101209300f3cbdeb44718bacea1af6170bc" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EED4:1919DD7:6075DC2F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4791' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '209' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.4202237129211426 + latency: 0.11988306045532227 module_call_list: - unittest.case - requre.online_replacing @@ -11400,7 +11246,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -11419,7 +11265,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -11442,7 +11288,7 @@ requests.sessions: \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html" closed_at: '2019-09-10T14:30:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -11507,7 +11353,7 @@ requests.sessions: updated_at: '2019-09-10T14:30:35Z' url: https://api.github.com/repos/packit/ogr/issues/170 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -11526,49 +11372,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.119684 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:56 GMT + ETag: W/"2e445599f0245d7c3bbb2e874905b101209300f3cbdeb44718bacea1af6170bc" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F810FD:191D2B6:6075DC58 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4581' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '419' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/171: - metadata: - latency: 0.25516223907470703 + latency: 0.1978919506072998 module_call_list: - unittest.case - requre.online_replacing @@ -11588,7 +11429,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -11607,7 +11448,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -11633,7 +11474,7 @@ requests.sessions: \n- https://docs.gitlab.com/ce/api/issues.html" closed_at: '2019-09-25T08:34:08Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -11698,7 +11539,7 @@ requests.sessions: updated_at: '2019-09-25T08:34:08Z' url: https://api.github.com/repos/packit/ogr/issues/171 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -11717,48 +11558,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.197666 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:12 GMT + ETag: W/"1af02450b9bfe3f29dfeaa01dcc8601bffd762b6dc40b3c5a3f263d5d62b1f37" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EC2F:19199AD:6075DC2C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4805' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '195' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2703566551208496 + latency: 0.13149452209472656 module_call_list: - unittest.case - requre.online_replacing @@ -11778,7 +11614,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -11797,7 +11633,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -11823,7 +11659,7 @@ requests.sessions: \n- https://docs.gitlab.com/ce/api/issues.html" closed_at: '2019-09-25T08:34:08Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -11888,7 +11724,7 @@ requests.sessions: updated_at: '2019-09-25T08:34:08Z' url: https://api.github.com/repos/packit/ogr/issues/171 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -11907,49 +11743,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.13132 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:53 GMT + ETag: W/"1af02450b9bfe3f29dfeaa01dcc8601bffd762b6dc40b3c5a3f263d5d62b1f37" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80EAB:191CF0C:6075DC55 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4595' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '405' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/172: - metadata: - latency: 0.29046082496643066 + latency: 0.1651012897491455 module_call_list: - unittest.case - requre.online_replacing @@ -11969,7 +11800,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -11988,7 +11819,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -12022,7 +11853,7 @@ requests.sessions: \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status" closed_at: '2019-09-19T09:46:56Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -12087,7 +11918,7 @@ requests.sessions: updated_at: '2019-09-19T09:46:56Z' url: https://api.github.com/repos/packit/ogr/issues/172 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12106,48 +11937,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.164877 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:13 GMT + ETag: W/"6379a81186f9d5e869ff30b66367bf768b5dea55315c287923d6f248115ab201" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7ED29:1919B38:6075DC2D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4801' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '199' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29201579093933105 + latency: 0.19559168815612793 module_call_list: - unittest.case - requre.online_replacing @@ -12167,7 +11993,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -12186,7 +12012,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -12220,7 +12046,7 @@ requests.sessions: \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status" closed_at: '2019-09-19T09:46:56Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -12285,7 +12111,7 @@ requests.sessions: updated_at: '2019-09-19T09:46:56Z' url: https://api.github.com/repos/packit/ogr/issues/172 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12304,49 +12130,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.195389 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:54 GMT + ETag: W/"6379a81186f9d5e869ff30b66367bf768b5dea55315c287923d6f248115ab201" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80F84:191D058:6075DC56 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4591' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '409' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/173: - metadata: - latency: 0.3280212879180908 + latency: 0.2909665107727051 module_call_list: - unittest.case - requre.online_replacing @@ -12366,7 +12187,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -12385,7 +12206,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -12410,7 +12231,7 @@ requests.sessions: \n- https://docs.gitlab.com/ee/api/merge_requests.html" closed_at: '2019-09-12T08:58:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -12475,7 +12296,7 @@ requests.sessions: updated_at: '2019-09-12T08:58:35Z' url: https://api.github.com/repos/packit/ogr/issues/173 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12494,48 +12315,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.290788 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:15 GMT + ETag: W/"ce3639c62796c023d85543bb743799f217492e4b760e267eaf2f544d525ad815" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EE7D:1919D5E:6075DC2E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4793' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '207' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2699871063232422 + latency: 0.1113133430480957 module_call_list: - unittest.case - requre.online_replacing @@ -12555,7 +12371,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -12574,7 +12390,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -12599,7 +12415,7 @@ requests.sessions: \n- https://docs.gitlab.com/ee/api/merge_requests.html" closed_at: '2019-09-12T08:58:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -12664,7 +12480,7 @@ requests.sessions: updated_at: '2019-09-12T08:58:35Z' url: https://api.github.com/repos/packit/ogr/issues/173 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12683,49 +12499,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.111064 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:56 GMT + ETag: W/"ce3639c62796c023d85543bb743799f217492e4b760e267eaf2f544d525ad815" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F810AC:191D21E:6075DC57 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4583' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '417' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/174: - metadata: - latency: 0.2293684482574463 + latency: 0.11450886726379395 module_call_list: - unittest.case - requre.online_replacing @@ -12745,7 +12556,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -12764,7 +12575,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -12789,7 +12600,7 @@ requests.sessions: \n- https://docs.gitlab.com/ee/api/merge_requests.html" closed_at: '2019-09-25T08:50:51Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12854,7 +12665,7 @@ requests.sessions: updated_at: '2019-09-25T08:50:51Z' url: https://api.github.com/repos/packit/ogr/issues/174 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12873,48 +12684,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.114342 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:12 GMT + ETag: W/"261df2bb9b4adb29ea079c7d7e8c562b16a33abdd7d3a16880ff0e4cb2b6b796" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EC18:191997E:6075DC2C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4806' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '194' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.30338549613952637 + latency: 0.14070892333984375 module_call_list: - unittest.case - requre.online_replacing @@ -12934,7 +12740,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -12953,7 +12759,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -12978,7 +12784,7 @@ requests.sessions: \n- https://docs.gitlab.com/ee/api/merge_requests.html" closed_at: '2019-09-25T08:50:51Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -13043,7 +12849,7 @@ requests.sessions: updated_at: '2019-09-25T08:50:51Z' url: https://api.github.com/repos/packit/ogr/issues/174 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -13062,49 +12868,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.140447 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:53 GMT + ETag: W/"261df2bb9b4adb29ea079c7d7e8c562b16a33abdd7d3a16880ff0e4cb2b6b796" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80E83:191CED2:6075DC55 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4596' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '404' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/175: - metadata: - latency: 0.3043200969696045 + latency: 0.29626035690307617 module_call_list: - unittest.case - requre.online_replacing @@ -13124,7 +12925,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -13143,7 +12944,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -13170,7 +12971,7 @@ requests.sessions: \n- https://docs.gitlab.com/ce/api/projects.html" closed_at: '2019-09-10T11:56:53Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -13235,7 +13036,7 @@ requests.sessions: updated_at: '2019-09-10T11:56:53Z' url: https://api.github.com/repos/packit/ogr/issues/175 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -13254,48 +13055,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.296086 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:15 GMT + ETag: W/"e04ebd84873c2232309c0e9db72aaeabece32d77371d8ba2a1e11006e990b560" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EF1B:1919E46:6075DC2F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4790' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '210' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.28552913665771484 + latency: 0.12082386016845703 module_call_list: - unittest.case - requre.online_replacing @@ -13315,7 +13111,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -13334,7 +13130,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -13361,7 +13157,7 @@ requests.sessions: \n- https://docs.gitlab.com/ce/api/projects.html" closed_at: '2019-09-10T11:56:53Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -13426,7 +13222,7 @@ requests.sessions: updated_at: '2019-09-10T11:56:53Z' url: https://api.github.com/repos/packit/ogr/issues/175 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -13445,49 +13241,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.12065 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:56 GMT + ETag: W/"e04ebd84873c2232309c0e9db72aaeabece32d77371d8ba2a1e11006e990b560" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8111F:191D2DA:6075DC58 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4580' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '420' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/176: - metadata: - latency: 0.29333019256591797 + latency: 0.31162428855895996 module_call_list: - unittest.case - requre.online_replacing @@ -13507,7 +13298,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -13526,7 +13317,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -13550,7 +13341,7 @@ requests.sessions: \n- https://docs.gitlab.com/ee/api/releases/" closed_at: '2019-09-10T11:44:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -13615,7 +13406,7 @@ requests.sessions: updated_at: '2019-09-10T11:44:35Z' url: https://api.github.com/repos/packit/ogr/issues/176 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -13634,48 +13425,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.311455 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:16 GMT + ETag: W/"c99e4874552a85cfccac393182728c391d04976b6fd5f61d91ca80ac6d0d8ab2" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EF4E:1919E88:6075DC2F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4789' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '211' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.30134010314941406 + latency: 0.1340186595916748 module_call_list: - unittest.case - requre.online_replacing @@ -13695,7 +13481,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -13714,7 +13500,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -13738,7 +13524,7 @@ requests.sessions: \n- https://docs.gitlab.com/ee/api/releases/" closed_at: '2019-09-10T11:44:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -13803,7 +13589,7 @@ requests.sessions: updated_at: '2019-09-10T11:44:35Z' url: https://api.github.com/repos/packit/ogr/issues/176 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -13822,49 +13608,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.133822 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:56 GMT + ETag: W/"c99e4874552a85cfccac393182728c391d04976b6fd5f61d91ca80ac6d0d8ab2" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81137:191D30D:6075DC58 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4579' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '421' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/177: - metadata: - latency: 0.29412341117858887 + latency: 0.25772666931152344 module_call_list: - unittest.case - requre.online_replacing @@ -13885,7 +13666,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "see log: \r\nhttps://softwarefactory-project.io/logs/13/513/8c3c6370096e5834c90dc5ff06e47cf9f3443cde/check/tests-pip-deps/cd79e16/job-output.txt.gz\r\ \nwith git master it works, but pypi and rpm version of ogr fails with\ \ errors like:\r\n**TypeError: __init__() got an unexpected keyword\ @@ -13914,7 +13695,7 @@ requests.sessions: \ got an unexpected keyword argument 'exception'\r\n```" closed_at: '2019-09-12T11:08:06Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 events_url: https://api.github.com/users/rpitonak/events{/privacy} followers_url: https://api.github.com/users/rpitonak/followers following_url: https://api.github.com/users/rpitonak/following{/other_user} @@ -13952,7 +13733,7 @@ requests.sessions: updated_at: '2019-09-12T11:08:06Z' url: https://api.github.com/repos/packit/ogr/issues/177 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -13971,48 +13752,43 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.257523 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:00:14 GMT + ETag: W/"9f4ca2ab4b85c905bc60246e89c40546ebea15c2c16875c3fbbc9d5f11f08127" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EE28:1919CD6:6075DC2E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4795' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '205' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2997560501098633 + latency: 0.11017489433288574 module_call_list: - unittest.case - requre.online_replacing @@ -14033,7 +13809,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "see log: \r\nhttps://softwarefactory-project.io/logs/13/513/8c3c6370096e5834c90dc5ff06e47cf9f3443cde/check/tests-pip-deps/cd79e16/job-output.txt.gz\r\ \nwith git master it works, but pypi and rpm version of ogr fails with\ \ errors like:\r\n**TypeError: __init__() got an unexpected keyword\ @@ -14062,7 +13838,7 @@ requests.sessions: \ got an unexpected keyword argument 'exception'\r\n```" closed_at: '2019-09-12T11:08:06Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 events_url: https://api.github.com/users/rpitonak/events{/privacy} followers_url: https://api.github.com/users/rpitonak/followers following_url: https://api.github.com/users/rpitonak/following{/other_user} @@ -14100,7 +13876,7 @@ requests.sessions: updated_at: '2019-09-12T11:08:06Z' url: https://api.github.com/repos/packit/ogr/issues/177 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -14119,49 +13895,44 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.109987 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:00:55 GMT + ETag: W/"9f4ca2ab4b85c905bc60246e89c40546ebea15c2c16875c3fbbc9d5f11f08127" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81073:191D1C0:6075DC57 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4585' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '415' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/178: - metadata: - latency: 0.3130218982696533 + latency: 0.40639758110046387 module_call_list: - unittest.case - requre.online_replacing @@ -14190,7 +13961,7 @@ requests.sessions: \ library.\r\nUse such library in ogr." closed_at: '2019-11-29T11:43:21Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -14255,7 +14026,7 @@ requests.sessions: updated_at: '2019-11-29T11:43:21Z' url: https://api.github.com/repos/packit/ogr/issues/178 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -14274,48 +14045,43 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.406234 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:06 GMT + ETag: W/"20c87a08cf77fa1c5614353593b3f1e984dc3eecb6e6c98427bea133e94c8648" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E726:1919209:6075DC26 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4828' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '172' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2522897720336914 + latency: 0.1161956787109375 module_call_list: - unittest.case - requre.online_replacing @@ -14344,7 +14110,7 @@ requests.sessions: \ library.\r\nUse such library in ogr." closed_at: '2019-11-29T11:43:21Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -14409,7 +14175,7 @@ requests.sessions: updated_at: '2019-11-29T11:43:21Z' url: https://api.github.com/repos/packit/ogr/issues/178 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -14428,49 +14194,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.116028 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:48 GMT + ETag: W/"20c87a08cf77fa1c5614353593b3f1e984dc3eecb6e6c98427bea133e94c8648" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80A9E:191C8B6:6075DC50 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4618' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '382' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/181: - metadata: - latency: 0.3012063503265381 + latency: 0.2031252384185791 module_call_list: - unittest.case - requre.online_replacing @@ -14498,7 +14259,7 @@ requests.sessions: \ of `LAST_GENERATED_BY = ` constant." closed_at: '2019-09-19T08:09:47Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -14549,7 +14310,7 @@ requests.sessions: updated_at: '2019-09-19T08:09:47Z' url: https://api.github.com/repos/packit/ogr/issues/181 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -14568,48 +14329,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.202857 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:14 GMT + ETag: W/"3409d0ebc016e0ea6a163b44870ab6079b3b402103b4a58cb99b7db95a4f5f52" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EDB6:1919C0C:6075DC2E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4799' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '201' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3066368103027344 + latency: 0.11009693145751953 module_call_list: - unittest.case - requre.online_replacing @@ -14637,7 +14393,7 @@ requests.sessions: \ of `LAST_GENERATED_BY = ` constant." closed_at: '2019-09-19T08:09:47Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -14688,7 +14444,7 @@ requests.sessions: updated_at: '2019-09-19T08:09:47Z' url: https://api.github.com/repos/packit/ogr/issues/181 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -14707,49 +14463,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.109927 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:55 GMT + ETag: W/"3409d0ebc016e0ea6a163b44870ab6079b3b402103b4a58cb99b7db95a4f5f52" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80FE4:191D0E5:6075DC57 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4589' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '411' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/188: - metadata: - latency: 0.29561948776245117 + latency: 0.11658930778503418 module_call_list: - unittest.case - requre.online_replacing @@ -14770,11 +14521,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2019-09-11T07:59:58Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -14825,7 +14576,7 @@ requests.sessions: updated_at: '2019-09-11T07:59:58Z' url: https://api.github.com/repos/packit/ogr/issues/188 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -14844,48 +14595,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.116382 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:15 GMT + ETag: W/"3039b06ef41edfc4c2c73a194aae51ad98ad0da7d5082b3bdb0fd290099352ea" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EEBD:1919DB1:6075DC2F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4792' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '208' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29273033142089844 + latency: 0.3224601745605469 module_call_list: - unittest.case - requre.online_replacing @@ -14906,11 +14652,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2019-09-11T07:59:58Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -14961,7 +14707,7 @@ requests.sessions: updated_at: '2019-09-11T07:59:58Z' url: https://api.github.com/repos/packit/ogr/issues/188 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -14980,49 +14726,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.322301 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:56 GMT + ETag: W/"3039b06ef41edfc4c2c73a194aae51ad98ad0da7d5082b3bdb0fd290099352ea" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F810C0:191D23C:6075DC58 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4582' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '418' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/193: - metadata: - latency: 0.5082657337188721 + latency: 0.6008763313293457 module_call_list: - unittest.case - requre.online_replacing @@ -15053,7 +14794,7 @@ requests.sessions: \ ] release-bot\r\n - https://github.com/user-cont/release-bot/blob/master/release_bot/github.py#L308" closed_at: '2019-12-04T12:26:57Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -15125,7 +14866,7 @@ requests.sessions: updated_at: '2019-12-04T12:26:57Z' url: https://api.github.com/repos/packit/ogr/issues/193 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -15144,48 +14885,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.600697 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:04 GMT + ETag: W/"82f1efd452a4abb342a0e16392be5373013fef506118178ca60f3b02e5a0a303" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E536:1918F2E:6075DC24 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4835' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '165' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29352855682373047 + latency: 0.12617039680480957 module_call_list: - unittest.case - requre.online_replacing @@ -15216,7 +14952,7 @@ requests.sessions: \ ] release-bot\r\n - https://github.com/user-cont/release-bot/blob/master/release_bot/github.py#L308" closed_at: '2019-12-04T12:26:57Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -15288,7 +15024,7 @@ requests.sessions: updated_at: '2019-12-04T12:26:57Z' url: https://api.github.com/repos/packit/ogr/issues/193 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -15307,49 +15043,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.125933 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:47 GMT + ETag: W/"82f1efd452a4abb342a0e16392be5373013fef506118178ca60f3b02e5a0a303" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F809A1:191C743:6075DC4F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4625' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '375' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/194: - metadata: - latency: 0.295196533203125 + latency: 0.10516238212585449 module_call_list: - unittest.case - requre.online_replacing @@ -15374,7 +15105,7 @@ requests.sessions: body: '' closed_at: '2019-09-19T07:00:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -15411,7 +15142,7 @@ requests.sessions: updated_at: '2019-09-19T07:00:59Z' url: https://api.github.com/repos/packit/ogr/issues/194 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -15430,48 +15161,43 @@ requests.sessions: type: User url: https://api.github.com/users/phracek _next: null - elapsed: 0.2 + elapsed: 0.104959 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 18:00:14 GMT + ETag: W/"3be903170ee960ecc89092f5223b539896c63c8cf2e589035c4e773d3609bc12" + Last-Modified: Fri, 26 Mar 2021 11:22:47 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EDEA:1919C5B:6075DC2E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4798' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '202' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.28061938285827637 + latency: 0.10560965538024902 module_call_list: - unittest.case - requre.online_replacing @@ -15496,7 +15222,7 @@ requests.sessions: body: '' closed_at: '2019-09-19T07:00:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -15533,7 +15259,7 @@ requests.sessions: updated_at: '2019-09-19T07:00:59Z' url: https://api.github.com/repos/packit/ogr/issues/194 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -15552,49 +15278,44 @@ requests.sessions: type: User url: https://api.github.com/users/phracek _next: null - elapsed: 0.2 + elapsed: 0.105433 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 18:00:55 GMT + ETag: W/"3be903170ee960ecc89092f5223b539896c63c8cf2e589035c4e773d3609bc12" + Last-Modified: Fri, 26 Mar 2021 11:22:47 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81009:191D113:6075DC57 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4588' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '412' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/196: - metadata: - latency: 0.3385446071624756 + latency: 0.4058101177215576 module_call_list: - unittest.case - requre.online_replacing @@ -15614,7 +15335,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -15633,7 +15354,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -15668,7 +15389,7 @@ requests.sessions: \ the specific `ipynb` files." closed_at: '2020-08-13T10:28:26Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -15740,7 +15461,7 @@ requests.sessions: updated_at: '2020-08-13T10:28:26Z' url: https://api.github.com/repos/packit/ogr/issues/196 user: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 events_url: https://api.github.com/users/rpitonak/events{/privacy} followers_url: https://api.github.com/users/rpitonak/followers following_url: https://api.github.com/users/rpitonak/following{/other_user} @@ -15759,48 +15480,43 @@ requests.sessions: type: User url: https://api.github.com/users/rpitonak _next: null - elapsed: 0.2 + elapsed: 0.405618 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:51 GMT + ETag: W/"189cc5e4b8df8405b3a37dfc3b86638a802ae7e8fad4befc118422d88ea2eb24" + Last-Modified: Tue, 13 Apr 2021 14:48:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DB87:1917FA5:6075DC17 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4899' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '101' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3369910717010498 + latency: 0.16278481483459473 module_call_list: - unittest.case - requre.online_replacing @@ -15820,7 +15536,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -15839,7 +15555,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -15874,7 +15590,7 @@ requests.sessions: \ the specific `ipynb` files." closed_at: '2020-08-13T10:28:26Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -15946,7 +15662,7 @@ requests.sessions: updated_at: '2020-08-13T10:28:26Z' url: https://api.github.com/repos/packit/ogr/issues/196 user: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 events_url: https://api.github.com/users/rpitonak/events{/privacy} followers_url: https://api.github.com/users/rpitonak/followers following_url: https://api.github.com/users/rpitonak/following{/other_user} @@ -15965,49 +15681,44 @@ requests.sessions: type: User url: https://api.github.com/users/rpitonak _next: null - elapsed: 0.2 + elapsed: 0.162506 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:36 GMT + ETag: W/"189cc5e4b8df8405b3a37dfc3b86638a802ae7e8fad4befc118422d88ea2eb24" + Last-Modified: Tue, 13 Apr 2021 14:48:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8007E:191B9A0:6075DC44 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4686' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '314' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/199: - metadata: - latency: 0.29569268226623535 + latency: 0.20874691009521484 module_call_list: - unittest.case - requre.online_replacing @@ -16062,6 +15773,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -16099,10 +15817,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Do not let the external exception go to the user - updated_at: '2020-06-16T12:56:15Z' + updated_at: '2020-09-30T14:57:41Z' url: https://api.github.com/repos/packit/ogr/issues/199 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -16121,48 +15839,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.2085 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:48 GMT + ETag: W/"8c84af66c1ddc723abe89fe5b4a4974d56325d28c147432e8fc0907df39e7941" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D9B5:1917CA5:6075DC14 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4913' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '87' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.28226757049560547 + latency: 0.10967135429382324 module_call_list: - unittest.case - requre.online_replacing @@ -16217,6 +15930,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -16254,10 +15974,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Do not let the external exception go to the user - updated_at: '2020-06-16T12:56:15Z' + updated_at: '2020-09-30T14:57:41Z' url: https://api.github.com/repos/packit/ogr/issues/199 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -16276,49 +15996,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.109495 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:11 GMT + ETag: W/"8c84af66c1ddc723abe89fe5b4a4974d56325d28c147432e8fc0907df39e7941" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81FDE:191E918:6075DC67 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4508' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '492' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/203: - metadata: - latency: 0.2916738986968994 + latency: 0.4049086570739746 module_call_list: - unittest.case - requre.online_replacing @@ -16338,7 +16053,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -16357,7 +16072,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -16388,7 +16103,7 @@ requests.sessions: \ `namespace`)\r\n" closed_at: '2019-09-19T09:13:21Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -16453,7 +16168,7 @@ requests.sessions: updated_at: '2019-09-19T09:27:27Z' url: https://api.github.com/repos/packit/ogr/issues/203 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -16472,48 +16187,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.404583 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:13 GMT + ETag: W/"c989d734ed24e91934ce7bdd822009308e746483bdc503a25020681134a1339f" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7ED4B:1919B70:6075DC2D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4800' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '200' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2958841323852539 + latency: 0.2009885311126709 module_call_list: - unittest.case - requre.online_replacing @@ -16533,7 +16243,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -16552,7 +16262,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -16583,7 +16293,7 @@ requests.sessions: \ `namespace`)\r\n" closed_at: '2019-09-19T09:13:21Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -16648,7 +16358,7 @@ requests.sessions: updated_at: '2019-09-19T09:27:27Z' url: https://api.github.com/repos/packit/ogr/issues/203 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -16667,49 +16377,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.200803 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:55 GMT + ETag: W/"c989d734ed24e91934ce7bdd822009308e746483bdc503a25020681134a1339f" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80FB1:191D0A0:6075DC56 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4590' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '410' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/204: - metadata: - latency: 0.30344176292419434 + latency: 0.16920089721679688 module_call_list: - unittest.case - requre.online_replacing @@ -16729,7 +16434,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -16748,7 +16453,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -16774,7 +16479,7 @@ requests.sessions: \ least two tests for that (with and without specifying `namespace`)" closed_at: '2019-10-15T07:33:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -16853,7 +16558,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/204 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -16872,48 +16577,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.169017 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:10 GMT + ETag: W/"9d284ce065f224396bb84356f25b54c6ce9ac95a761679324d283fab1cec58e1" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EA87:1919715:6075DC2A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4815' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '185' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3966343402862549 + latency: 0.12658405303955078 module_call_list: - unittest.case - requre.online_replacing @@ -16933,7 +16633,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -16952,7 +16652,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -16978,7 +16678,7 @@ requests.sessions: \ least two tests for that (with and without specifying `namespace`)" closed_at: '2019-10-15T07:33:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -17057,7 +16757,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/204 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -17076,49 +16776,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.126407 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:51 GMT + ETag: W/"9d284ce065f224396bb84356f25b54c6ce9ac95a761679324d283fab1cec58e1" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80CE5:191CC58:6075DC53 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4606' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '394' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/205: - metadata: - latency: 0.35105347633361816 + latency: 0.16906309127807617 module_call_list: - unittest.case - requre.online_replacing @@ -17138,7 +16833,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -17157,7 +16852,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -17199,7 +16894,7 @@ requests.sessions: \ there" closed_at: '2019-10-03T14:35:15Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -17292,7 +16987,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/205 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -17311,48 +17006,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.16878 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:10 GMT + ETag: W/"88246cb718bdf7c050faa6a1ec05e619132e69fa8a6578c1260325927a6e1086" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EA5E:19196D3:6075DC2A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4816' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '184' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.5052492618560791 + latency: 0.12407279014587402 module_call_list: - unittest.case - requre.online_replacing @@ -17372,7 +17062,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -17391,7 +17081,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -17433,7 +17123,7 @@ requests.sessions: \ there" closed_at: '2019-10-03T14:35:15Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -17526,7 +17216,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/205 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -17545,49 +17235,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.12324 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:51 GMT + ETag: W/"88246cb718bdf7c050faa6a1ec05e619132e69fa8a6578c1260325927a6e1086" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80CFE:191CC83:6075DC53 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4605' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '395' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/209: - metadata: - latency: 0.21250510215759277 + latency: 0.1988527774810791 module_call_list: - unittest.case - requre.online_replacing @@ -17619,9 +17304,27 @@ requests.sessions: \n - https://pagure.io/api/0/\r\n - https://pygithub.readthedocs.io/\r\ \n - https://python-gitlab.readthedocs.io/\r\n - ...\r\n \r\n\ - How to write a good git commit messages:\r\n - https://chris.beams.io/posts/git-commit/" - closed_at: null - closed_by: null - comments: 10 + closed_at: '2020-09-24T20:15:17Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 13 comments_url: https://api.github.com/repos/packit/ogr/issues/209/comments created_at: '2019-09-19T09:51:21Z' events_url: https://api.github.com/repos/packit/ogr/issues/209/events @@ -17649,12 +17352,12 @@ requests.sessions: number: 209 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Add info about git workflow to contribution guide (and other suggestions) - updated_at: '2020-07-21T09:28:36Z' + updated_at: '2020-09-24T20:15:17Z' url: https://api.github.com/repos/packit/ogr/issues/209 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -17673,48 +17376,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.198638 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:48 GMT + ETag: W/"cab9e5b75f1c031fb926580da22bf713892bb59a9710d7d9e5575db8c5f3b898" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D9DE:1917CEE:6075DC14 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4912' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '88' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.30197739601135254 + latency: 0.19780492782592773 module_call_list: - unittest.case - requre.online_replacing @@ -17746,9 +17444,27 @@ requests.sessions: \n - https://pagure.io/api/0/\r\n - https://pygithub.readthedocs.io/\r\ \n - https://python-gitlab.readthedocs.io/\r\n - ...\r\n \r\n\ - How to write a good git commit messages:\r\n - https://chris.beams.io/posts/git-commit/" - closed_at: null - closed_by: null - comments: 10 + closed_at: '2020-09-24T20:15:17Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 13 comments_url: https://api.github.com/repos/packit/ogr/issues/209/comments created_at: '2019-09-19T09:51:21Z' events_url: https://api.github.com/repos/packit/ogr/issues/209/events @@ -17776,12 +17492,12 @@ requests.sessions: number: 209 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Add info about git workflow to contribution guide (and other suggestions) - updated_at: '2020-07-21T09:28:36Z' + updated_at: '2020-09-24T20:15:17Z' url: https://api.github.com/repos/packit/ogr/issues/209 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -17800,49 +17516,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.197548 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:34 GMT + ETag: W/"cab9e5b75f1c031fb926580da22bf713892bb59a9710d7d9e5575db8c5f3b898" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FED5:191B70F:6075DC42 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4698' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '302' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/21: - metadata: - latency: 0.2932319641113281 + latency: 0.10751771926879883 module_call_list: - unittest.case - requre.online_replacing @@ -17863,7 +17574,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\n138 Bytecompiling .py files below /builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6\ \ using /usr/bin/python3.6\r\n139 *** Error compiling '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/abstract.py'...\r\ \n140 File \"/usr/lib/python3.6/abstract.py\", line 1\r\n141 SyntaxError:\ @@ -17876,7 +17587,7 @@ requests.sessions: \ future feature annotations is not defined\r\n```\r\n" closed_at: '2019-02-27T08:38:17Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -17927,7 +17638,7 @@ requests.sessions: updated_at: '2019-02-27T08:38:17Z' url: https://api.github.com/repos/packit/ogr/issues/21 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -17946,48 +17657,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.107359 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:25 GMT + ETag: W/"1df904d1c3a2ff4ff52bfd2ea87e99b74ac68a50aa55f9bd4e34cc615c2f5725" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F719:191AB16:6075DC39 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4743' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '257' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3942983150482178 + latency: 0.11775827407836914 module_call_list: - unittest.case - requre.online_replacing @@ -18008,7 +17714,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\n138 Bytecompiling .py files below /builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6\ \ using /usr/bin/python3.6\r\n139 *** Error compiling '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/abstract.py'...\r\ \n140 File \"/usr/lib/python3.6/abstract.py\", line 1\r\n141 SyntaxError:\ @@ -18021,7 +17727,7 @@ requests.sessions: \ future feature annotations is not defined\r\n```\r\n" closed_at: '2019-02-27T08:38:17Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -18072,7 +17778,7 @@ requests.sessions: updated_at: '2019-02-27T08:38:17Z' url: https://api.github.com/repos/packit/ogr/issues/21 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -18091,49 +17797,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.117585 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:07 GMT + ETag: W/"1df904d1c3a2ff4ff52bfd2ea87e99b74ac68a50aa55f9bd4e34cc615c2f5725" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81C1A:191E3A2:6075DC63 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4533' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '467' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/211: - metadata: - latency: 0.30641794204711914 + latency: 0.10786199569702148 module_call_list: - unittest.case - requre.online_replacing @@ -18164,7 +17865,7 @@ requests.sessions: \n" closed_at: '2020-03-03T15:49:36Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -18250,7 +17951,7 @@ requests.sessions: updated_at: '2020-03-03T15:49:36Z' url: https://api.github.com/repos/packit/ogr/issues/211 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -18269,48 +17970,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.107698 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:59 GMT + ETag: W/"d1f8cf815557194ff7f27e377c1b50211076efc3a2aaf6508f38649705af9dd1" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E099:191880E:6075DC1F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4853' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '147' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29403185844421387 + latency: 0.1039116382598877 module_call_list: - unittest.case - requre.online_replacing @@ -18341,7 +18037,7 @@ requests.sessions: \n" closed_at: '2020-03-03T15:49:36Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -18427,7 +18123,7 @@ requests.sessions: updated_at: '2020-03-03T15:49:36Z' url: https://api.github.com/repos/packit/ogr/issues/211 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -18446,49 +18142,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.103733 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:44 GMT + ETag: W/"d1f8cf815557194ff7f27e377c1b50211076efc3a2aaf6508f38649705af9dd1" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F806F6:191C349:6075DC4C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4643' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '357' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/212: - metadata: - latency: 0.21631240844726562 + latency: 0.2349386215209961 module_call_list: - unittest.case - requre.online_replacing @@ -18517,9 +18208,27 @@ requests.sessions: Examples:\r\n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/commits\r\ \n- https://github.com/packit-service/ogr/pull/1/commits\r\n- https://pagure.io/ogr-tests/pull-request/7#commit_list\r\ \n" - closed_at: null - closed_by: null - comments: 5 + closed_at: '2021-02-03T19:24:22Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 9 comments_url: https://api.github.com/repos/packit/ogr/issues/212/comments created_at: '2019-09-19T18:48:58Z' events_url: https://api.github.com/repos/packit/ogr/issues/212/events @@ -18540,6 +18249,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -18568,6 +18284,13 @@ requests.sessions: name: low-prio node_id: MDU6TGFiZWwxNDMyNzc5MzQw url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale labels_url: https://api.github.com/repos/packit/ogr/issues/212/labels{/name} locked: false milestone: null @@ -18575,12 +18298,12 @@ requests.sessions: number: 212 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Add commits url to PullRequest class - updated_at: '2020-07-03T14:18:58Z' + updated_at: '2021-02-03T19:24:22Z' url: https://api.github.com/repos/packit/ogr/issues/212 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -18599,48 +18322,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.234637 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:44 GMT + ETag: W/"9bb934c40c51e38d1f61d1d58836ea7c0d9a567c64d4c65432e2964388b6fe60" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D722:191785B:6075DC10 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4938' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '62' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.37488532066345215 + latency: 0.6080901622772217 module_call_list: - unittest.case - requre.online_replacing @@ -18669,9 +18387,27 @@ requests.sessions: Examples:\r\n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/commits\r\ \n- https://github.com/packit-service/ogr/pull/1/commits\r\n- https://pagure.io/ogr-tests/pull-request/7#commit_list\r\ \n" - closed_at: null - closed_by: null - comments: 5 + closed_at: '2021-02-03T19:24:22Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 9 comments_url: https://api.github.com/repos/packit/ogr/issues/212/comments created_at: '2019-09-19T18:48:58Z' events_url: https://api.github.com/repos/packit/ogr/issues/212/events @@ -18692,6 +18428,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -18720,6 +18463,13 @@ requests.sessions: name: low-prio node_id: MDU6TGFiZWwxNDMyNzc5MzQw url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale labels_url: https://api.github.com/repos/packit/ogr/issues/212/labels{/name} locked: false milestone: null @@ -18727,12 +18477,12 @@ requests.sessions: number: 212 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Add commits url to PullRequest class - updated_at: '2020-07-03T14:18:58Z' + updated_at: '2021-02-03T19:24:22Z' url: https://api.github.com/repos/packit/ogr/issues/212 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -18751,49 +18501,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.607898 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:30 GMT + ETag: W/"9bb934c40c51e38d1f61d1d58836ea7c0d9a567c64d4c65432e2964388b6fe60" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FAB5:191B0DA:6075DC3D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4721' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '279' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/213: - metadata: - latency: 0.3021121025085449 + latency: 0.29568004608154297 module_call_list: - unittest.case - requre.online_replacing @@ -18826,7 +18571,7 @@ requests.sessions: \n- https://pagure.io/ogr-tests/" closed_at: '2019-09-24T08:53:16Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -18919,7 +18664,7 @@ requests.sessions: updated_at: '2019-09-25T06:07:53Z' url: https://api.github.com/repos/packit/ogr/issues/213 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -18938,48 +18683,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.2955 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:12 GMT + ETag: W/"450a86cb6b68808bff70b5e038a8abce703eede6e50f97bcceb0f4bec4aab8fb" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EC5E:19199E6:6075DC2C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4804' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '196' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.31796717643737793 + latency: 0.20008540153503418 module_call_list: - unittest.case - requre.online_replacing @@ -19012,7 +18752,7 @@ requests.sessions: \n- https://pagure.io/ogr-tests/" closed_at: '2019-09-24T08:53:16Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -19105,7 +18845,7 @@ requests.sessions: updated_at: '2019-09-25T06:07:53Z' url: https://api.github.com/repos/packit/ogr/issues/213 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -19124,49 +18864,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.199876 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:54 GMT + ETag: W/"450a86cb6b68808bff70b5e038a8abce703eede6e50f97bcceb0f4bec4aab8fb" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80EC5:191CF34:6075DC55 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4594' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '406' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/214: - metadata: - latency: 0.2944009304046631 + latency: 0.15938806533813477 module_call_list: - unittest.case - requre.online_replacing @@ -19197,9 +18932,9 @@ requests.sessions: \ raise an exception in methods like `get_project`\r\n - easier implementation\r\ \n - we need to connect to the remote service even when it is not\ \ needed" - closed_at: null + closed_at: '2020-10-30T23:47:21Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -19217,7 +18952,7 @@ requests.sessions: subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions type: Bot url: https://api.github.com/users/stale%5Bbot%5D - comments: 8 + comments: 11 comments_url: https://api.github.com/repos/packit/ogr/issues/214/comments created_at: '2019-09-19T19:30:39Z' events_url: https://api.github.com/repos/packit/ogr/issues/214/events @@ -19238,6 +18973,13 @@ requests.sessions: name: needs-design node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 url: https://api.github.com/repos/packit/ogr/labels/needs-design + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale - color: 8be567 default: false description: Usability issue. @@ -19252,12 +18994,12 @@ requests.sessions: number: 214 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: '[question] Allow objects representing nonexisting objects' - updated_at: '2020-08-17T12:28:02Z' + updated_at: '2021-02-05T08:34:05Z' url: https://api.github.com/repos/packit/ogr/issues/214 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -19276,48 +19018,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.159206 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:28:02 GMT + Date: Tue, 13 Apr 2021 17:59:43 GMT + ETag: W/"7656756638b0b153b4b2b2c9db30f2e4b7526b30d2f56950b2d00f8ac4a16509" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D667:1917735:6075DC0E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4947' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '53' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2913365364074707 + latency: 0.13337492942810059 module_call_list: - unittest.case - requre.online_replacing @@ -19348,9 +19085,9 @@ requests.sessions: \ raise an exception in methods like `get_project`\r\n - easier implementation\r\ \n - we need to connect to the remote service even when it is not\ \ needed" - closed_at: null + closed_at: '2020-10-30T23:47:21Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -19368,7 +19105,7 @@ requests.sessions: subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions type: Bot url: https://api.github.com/users/stale%5Bbot%5D - comments: 8 + comments: 11 comments_url: https://api.github.com/repos/packit/ogr/issues/214/comments created_at: '2019-09-19T19:30:39Z' events_url: https://api.github.com/repos/packit/ogr/issues/214/events @@ -19389,6 +19126,13 @@ requests.sessions: name: needs-design node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 url: https://api.github.com/repos/packit/ogr/labels/needs-design + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale - color: 8be567 default: false description: Usability issue. @@ -19403,12 +19147,12 @@ requests.sessions: number: 214 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: '[question] Allow objects representing nonexisting objects' - updated_at: '2020-08-17T12:28:02Z' + updated_at: '2021-02-05T08:34:05Z' url: https://api.github.com/repos/packit/ogr/issues/214 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -19427,49 +19171,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.133138 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:28:02 GMT + Date: Tue, 13 Apr 2021 18:00:29 GMT + ETag: W/"7656756638b0b153b4b2b2c9db30f2e4b7526b30d2f56950b2d00f8ac4a16509" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F9D3:191AF82:6075DC3C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4725' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '275' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/215: - metadata: - latency: 0.2954368591308594 + latency: 0.11769366264343262 module_call_list: - unittest.case - requre.online_replacing @@ -19491,16 +19230,34 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Add method to project classes to delete project.\r\n\r\nAC:\r\n\ - - [ ] In each implementation, add the `delete` method to project class\ + body: "Add method to project classes to delete a project.\r\n\r\nAC:\r\ + \n- [ ] In each implementation, add the `delete` method to project class\ \ and implement it.\r\n - If possible/supported. (Document that if\ - \ it is not possible.)\r\n- [ ] Add tests for that.\r\n\r\nLinks:\r\n\ - - https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \ it is not possible and raise an exception with a good message.)\r\n\ + - [ ] Add tests for that.\r\n\r\nLinks:\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ \n- https://pagure.io/api/0/ (not found the possible API call for that\ \ on the first look)" - closed_at: null - closed_by: null + closed_at: '2020-10-21T11:18:39Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D comments: 8 comments_url: https://api.github.com/repos/packit/ogr/issues/215/comments created_at: '2019-09-20T05:36:56Z' @@ -19522,6 +19279,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -19557,12 +19321,12 @@ requests.sessions: number: 215 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Implement GitProject.delete() - updated_at: '2020-08-17T10:59:13Z' + updated_at: '2020-10-21T11:18:40Z' url: https://api.github.com/repos/packit/ogr/issues/215 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -19581,48 +19345,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.117421 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:59:13 GMT + Date: Tue, 13 Apr 2021 17:59:46 GMT + ETag: W/"8299749c23bca23dae80126436dafdd9f2b789bfbf09572873e712084572cd19" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D868:1917A73:6075DC12 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4925' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '75' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2941102981567383 + latency: 0.11957025527954102 module_call_list: - unittest.case - requre.online_replacing @@ -19644,16 +19403,34 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Add method to project classes to delete project.\r\n\r\nAC:\r\n\ - - [ ] In each implementation, add the `delete` method to project class\ + body: "Add method to project classes to delete a project.\r\n\r\nAC:\r\ + \n- [ ] In each implementation, add the `delete` method to project class\ \ and implement it.\r\n - If possible/supported. (Document that if\ - \ it is not possible.)\r\n- [ ] Add tests for that.\r\n\r\nLinks:\r\n\ - - https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \ it is not possible and raise an exception with a good message.)\r\n\ + - [ ] Add tests for that.\r\n\r\nLinks:\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ \n- https://pagure.io/api/0/ (not found the possible API call for that\ \ on the first look)" - closed_at: null - closed_by: null + closed_at: '2020-10-21T11:18:39Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D comments: 8 comments_url: https://api.github.com/repos/packit/ogr/issues/215/comments created_at: '2019-09-20T05:36:56Z' @@ -19675,6 +19452,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -19710,12 +19494,12 @@ requests.sessions: number: 215 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Implement GitProject.delete() - updated_at: '2020-08-17T10:59:13Z' + updated_at: '2020-10-21T11:18:40Z' url: https://api.github.com/repos/packit/ogr/issues/215 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -19734,49 +19518,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.11937 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:59:13 GMT + Date: Tue, 13 Apr 2021 18:00:32 GMT + ETag: W/"8299749c23bca23dae80126436dafdd9f2b789bfbf09572873e712084572cd19" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FD53:191B4B1:6075DC40 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4708' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '292' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/216: - metadata: - latency: 0.5619189739227295 + latency: 0.13596439361572266 module_call_list: - unittest.case - requre.online_replacing @@ -19796,7 +19575,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -19815,7 +19594,7 @@ requests.sessions: type: User url: https://api.github.com/users/shreyaspapi assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -19842,7 +19621,7 @@ requests.sessions: \n- https://pagure.io/api/0/ ( > Modify ACLs on a project ?)\r\n" closed_at: '2020-05-11T19:45:01Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -19921,7 +19700,7 @@ requests.sessions: updated_at: '2020-05-11T19:45:01Z' url: https://api.github.com/repos/packit/ogr/issues/216 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -19940,48 +19719,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.135767 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 01:42:30 GMT + Date: Tue, 13 Apr 2021 17:59:55 GMT + ETag: W/"af0c314bc5f8e781233419e16ade879550ea6c27484f376ba73e1d0b603204b9" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DDBE:1918366:6075DC1B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4879' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '121' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2994959354400635 + latency: 0.2850327491760254 module_call_list: - unittest.case - requre.online_replacing @@ -20001,7 +19775,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -20020,7 +19794,7 @@ requests.sessions: type: User url: https://api.github.com/users/shreyaspapi assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -20047,7 +19821,7 @@ requests.sessions: \n- https://pagure.io/api/0/ ( > Modify ACLs on a project ?)\r\n" closed_at: '2020-05-11T19:45:01Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -20126,7 +19900,7 @@ requests.sessions: updated_at: '2020-05-11T19:45:01Z' url: https://api.github.com/repos/packit/ogr/issues/216 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -20145,49 +19919,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.2847 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 01:42:30 GMT + Date: Tue, 13 Apr 2021 18:00:39 GMT + ETag: W/"af0c314bc5f8e781233419e16ade879550ea6c27484f376ba73e1d0b603204b9" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80304:191BD5F:6075DC47 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4669' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '331' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/218: - metadata: - latency: 0.5074114799499512 + latency: 0.22865080833435059 module_call_list: - unittest.case - requre.online_replacing @@ -20207,7 +19976,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -20226,7 +19995,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -20250,7 +20019,7 @@ requests.sessions: \ namespace (in case of Pagure projects)" closed_at: '2019-09-25T05:20:03Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -20329,7 +20098,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/218 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -20348,48 +20117,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.228434 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:10 GMT + ETag: W/"99e1317a02371f2fccdecb6dcd99c16963f2ef54fbe5c6ac88f14bed8644f881" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EAD1:1919785:6075DC2A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4813' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '187' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29576945304870605 + latency: 0.1136012077331543 module_call_list: - unittest.case - requre.online_replacing @@ -20409,7 +20173,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -20428,7 +20192,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -20452,7 +20216,7 @@ requests.sessions: \ namespace (in case of Pagure projects)" closed_at: '2019-09-25T05:20:03Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -20531,7 +20295,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/218 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -20550,49 +20314,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.113414 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:52 GMT + ETag: W/"99e1317a02371f2fccdecb6dcd99c16963f2ef54fbe5c6ac88f14bed8644f881" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80D14:191CCAD:6075DC53 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4604' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '396' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/220: - metadata: - latency: 0.22727108001708984 + latency: 0.19941496849060059 module_call_list: - unittest.case - requre.online_replacing @@ -20624,7 +20383,7 @@ requests.sessions: \ offline?\r\n\r\n" closed_at: '2019-10-02T09:17:18Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -20675,7 +20434,7 @@ requests.sessions: updated_at: '2019-10-02T09:17:18Z' url: https://api.github.com/repos/packit/ogr/issues/220 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -20694,48 +20453,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.199252 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:11 GMT + ETag: W/"3b250ce386ae0bf7d81dd35741222998d65c92a2aa52f764869d6286d63a099a" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EB40:191982F:6075DC2B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4811' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '189' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.39211606979370117 + latency: 0.1990053653717041 module_call_list: - unittest.case - requre.online_replacing @@ -20767,7 +20521,7 @@ requests.sessions: \ offline?\r\n\r\n" closed_at: '2019-10-02T09:17:18Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -20818,7 +20572,7 @@ requests.sessions: updated_at: '2019-10-02T09:17:18Z' url: https://api.github.com/repos/packit/ogr/issues/220 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -20837,49 +20591,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.19878 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:52 GMT + ETag: W/"3b250ce386ae0bf7d81dd35741222998d65c92a2aa52f764869d6286d63a099a" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80D7B:191CD4C:6075DC54 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4601' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '399' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/222: - metadata: - latency: 0.3055078983306885 + latency: 0.28259944915771484 module_call_list: - unittest.case - requre.online_replacing @@ -20904,7 +20653,7 @@ requests.sessions: body: The release time is now! closed_at: '2019-09-26T11:11:51Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -20955,7 +20704,7 @@ requests.sessions: updated_at: '2019-09-26T11:11:51Z' url: https://api.github.com/repos/packit/ogr/issues/222 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -20974,48 +20723,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.282443 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:11 GMT + ETag: W/"9710a51eb383387920a929a08957f8d65f1dff679c906688aa451e53233a61d1" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EB8A:1919893:6075DC2B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4809' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '191' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29560041427612305 + latency: 0.11207938194274902 module_call_list: - unittest.case - requre.online_replacing @@ -21040,7 +20784,7 @@ requests.sessions: body: The release time is now! closed_at: '2019-09-26T11:11:51Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -21091,7 +20835,7 @@ requests.sessions: updated_at: '2019-09-26T11:11:51Z' url: https://api.github.com/repos/packit/ogr/issues/222 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -21110,49 +20854,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.111903 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:52 GMT + ETag: W/"9710a51eb383387920a929a08957f8d65f1dff679c906688aa451e53233a61d1" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80DC9:191CDBA:6075DC54 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4599' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '401' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/224: - metadata: - latency: 0.26744961738586426 + latency: 0.12160062789916992 module_call_list: - unittest.case - requre.online_replacing @@ -21179,7 +20918,7 @@ requests.sessions: can we factor it out since it''s identical? ' closed_at: '2019-09-30T11:40:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -21237,7 +20976,7 @@ requests.sessions: updated_at: '2019-09-30T11:40:39Z' url: https://api.github.com/repos/packit/ogr/issues/224 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -21256,48 +20995,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.121429 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:11 GMT + ETag: W/"566dceab698b2c01d43d0f25e0d66773ea1a2e0ffb4dbe300457018ebe4fe4b2" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EB70:191986A:6075DC2B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4810' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '190' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.5087037086486816 + latency: 0.1194756031036377 module_call_list: - unittest.case - requre.online_replacing @@ -21324,7 +21058,7 @@ requests.sessions: can we factor it out since it''s identical? ' closed_at: '2019-09-30T11:40:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -21382,7 +21116,7 @@ requests.sessions: updated_at: '2019-09-30T11:40:39Z' url: https://api.github.com/repos/packit/ogr/issues/224 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -21401,49 +21135,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.119312 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:52 GMT + ETag: W/"566dceab698b2c01d43d0f25e0d66773ea1a2e0ffb4dbe300457018ebe4fe4b2" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80DA8:191CD8F:6075DC54 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4600' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '400' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/225: - metadata: - latency: 0.25681376457214355 + latency: 0.2009415626525879 module_call_list: - unittest.case - requre.online_replacing @@ -21464,13 +21193,13 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "After there will be done these stuff:\r\n - [ ] https://github.com/packit-service/ogr/pull/201\ \ will be merged\r\n - [ ] there will be fixed also ``packit`` to use\ \ ``requre``\r\n\r\nthen remove all mocking stuff from this project" closed_at: '2019-12-04T08:54:10Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -21521,7 +21250,7 @@ requests.sessions: updated_at: '2019-12-04T08:54:17Z' url: https://api.github.com/repos/packit/ogr/issues/225 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -21540,48 +21269,43 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.20075 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:00:05 GMT + ETag: W/"4409a4c609cf9d0bf8b00e32601df155c64c3a929935bf2a58a70c6515b54a5d" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E5FD:191905D:6075DC25 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4833' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '167' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29642486572265625 + latency: 0.11659073829650879 module_call_list: - unittest.case - requre.online_replacing @@ -21602,13 +21326,13 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "After there will be done these stuff:\r\n - [ ] https://github.com/packit-service/ogr/pull/201\ \ will be merged\r\n - [ ] there will be fixed also ``packit`` to use\ \ ``requre``\r\n\r\nthen remove all mocking stuff from this project" closed_at: '2019-12-04T08:54:10Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -21659,7 +21383,7 @@ requests.sessions: updated_at: '2019-12-04T08:54:17Z' url: https://api.github.com/repos/packit/ogr/issues/225 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -21678,49 +21402,44 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.116431 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:00:47 GMT + ETag: W/"4409a4c609cf9d0bf8b00e32601df155c64c3a929935bf2a58a70c6515b54a5d" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F809D2:191C792:6075DC4F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4623' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '377' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/229: - metadata: - latency: 0.30086255073547363 + latency: 0.12970256805419922 module_call_list: - unittest.case - requre.online_replacing @@ -21796,7 +21515,7 @@ requests.sessions: updated_at: '2020-06-15T08:46:36Z' url: https://api.github.com/repos/packit/ogr/issues/229 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -21815,48 +21534,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.129505 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:53 GMT + ETag: W/"24e094effccdc63610851e69707c8ec68fa20fe69771269f4a0fcd2f95be10da" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DCEB:1918210:6075DC19 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4887' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '113' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.21819353103637695 + latency: 0.11570978164672852 module_call_list: - unittest.case - requre.online_replacing @@ -21932,7 +21646,7 @@ requests.sessions: updated_at: '2020-06-15T08:46:36Z' url: https://api.github.com/repos/packit/ogr/issues/229 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -21951,49 +21665,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.11553 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:11 GMT + ETag: W/"24e094effccdc63610851e69707c8ec68fa20fe69771269f4a0fcd2f95be10da" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8206B:191E9EC:6075DC67 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4505' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '495' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/23: - metadata: - latency: 0.2938497066497803 + latency: 0.1039588451385498 module_call_list: - unittest.case - requre.online_replacing @@ -22018,7 +21727,7 @@ requests.sessions: body: Release bot, please! closed_at: '2019-02-28T10:42:18Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -22069,7 +21778,7 @@ requests.sessions: updated_at: '2019-02-28T10:42:18Z' url: https://api.github.com/repos/packit/ogr/issues/23 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -22088,48 +21797,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.103799 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:25 GMT + ETag: W/"e771fba13e0eadf00925145f37e545be3f98bee8eb22968c78fd8ea9f3a6c16b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F702:191AAF4:6075DC39 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4744' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '256' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29283952713012695 + latency: 0.10971856117248535 module_call_list: - unittest.case - requre.online_replacing @@ -22154,7 +21858,7 @@ requests.sessions: body: Release bot, please! closed_at: '2019-02-28T10:42:18Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -22205,7 +21909,7 @@ requests.sessions: updated_at: '2019-02-28T10:42:18Z' url: https://api.github.com/repos/packit/ogr/issues/23 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -22224,49 +21928,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.10954 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:07 GMT + ETag: W/"e771fba13e0eadf00925145f37e545be3f98bee8eb22968c78fd8ea9f3a6c16b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81BFD:191E369:6075DC63 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4534' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '466' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/230: - metadata: - latency: 0.253528356552124 + latency: 0.13583588600158691 module_call_list: - unittest.case - requre.online_replacing @@ -22304,7 +22003,7 @@ requests.sessions: \ specific service could take the `raw_comment` in constructor?" closed_at: '2019-10-23T13:09:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -22383,7 +22082,7 @@ requests.sessions: updated_at: '2019-10-23T13:09:59Z' url: https://api.github.com/repos/packit/ogr/issues/230 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -22402,48 +22101,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.135612 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:08 GMT + ETag: W/"2085dd0879384c393ffca146a2c4cf5bba4ccdf24d270edf533a1ee1cd110826" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E949:1919558:6075DC28 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4820' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '180' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2849693298339844 + latency: 0.12804031372070312 module_call_list: - unittest.case - requre.online_replacing @@ -22481,7 +22175,7 @@ requests.sessions: \ specific service could take the `raw_comment` in constructor?" closed_at: '2019-10-23T13:09:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -22560,7 +22254,7 @@ requests.sessions: updated_at: '2019-10-23T13:09:59Z' url: https://api.github.com/repos/packit/ogr/issues/230 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -22579,49 +22273,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.127866 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:50 GMT + ETag: W/"2085dd0879384c393ffca146a2c4cf5bba4ccdf24d270edf533a1ee1cd110826" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80BFF:191CAF8:6075DC52 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4610' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '390' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/232: - metadata: - latency: 0.2899036407470703 + latency: 0.12756919860839844 module_call_list: - unittest.case - requre.online_replacing @@ -22641,7 +22330,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -22660,7 +22349,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -22692,7 +22381,7 @@ requests.sessions: \ of caller\r\n\r\nRelated to #86" closed_at: '2019-10-11T06:36:16Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -22764,7 +22453,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/232 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -22783,48 +22472,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.127368 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:10 GMT + ETag: W/"c7db90ec3cf35feb9c10542ee9df91f916faa0d4d6d5343a82335b185f276f63" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EAB1:1919753:6075DC2A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4814' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '186' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3008415699005127 + latency: 0.21662425994873047 module_call_list: - unittest.case - requre.online_replacing @@ -22844,7 +22528,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -22863,7 +22547,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -22895,7 +22579,7 @@ requests.sessions: \ of caller\r\n\r\nRelated to #86" closed_at: '2019-10-11T06:36:16Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -22967,7 +22651,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/232 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -22986,49 +22670,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.216395 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:52 GMT + ETag: W/"c7db90ec3cf35feb9c10542ee9df91f916faa0d4d6d5343a82335b185f276f63" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80D2E:191CCCC:6075DC54 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4603' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '397' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/233: - metadata: - latency: 0.29079675674438477 + latency: 0.30864524841308594 module_call_list: - unittest.case - requre.online_replacing @@ -23054,7 +22733,7 @@ requests.sessions: instead of `ogr.abstract` closed_at: '2019-10-07T11:02:37Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -23126,7 +22805,7 @@ requests.sessions: updated_at: '2019-10-07T11:02:38Z' url: https://api.github.com/repos/packit/ogr/issues/233 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -23145,48 +22824,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.308454 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:10 GMT + ETag: W/"526e0f6e707dca1b976c000ff3e5a6e3fda0186174943e4dcd97dd93bbc0e164" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EB04:19197D1:6075DC2A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4812' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '188' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.305145263671875 + latency: 0.20286345481872559 module_call_list: - unittest.case - requre.online_replacing @@ -23212,7 +22886,7 @@ requests.sessions: instead of `ogr.abstract` closed_at: '2019-10-07T11:02:37Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -23284,7 +22958,7 @@ requests.sessions: updated_at: '2019-10-07T11:02:38Z' url: https://api.github.com/repos/packit/ogr/issues/233 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -23303,49 +22977,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.202698 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:52 GMT + ETag: W/"526e0f6e707dca1b976c000ff3e5a6e3fda0186174943e4dcd97dd93bbc0e164" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80D56:191CD08:6075DC54 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4602' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '398' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/237: - metadata: - latency: 0.29639363288879395 + latency: 0.10489606857299805 module_call_list: - unittest.case - requre.online_replacing @@ -23366,7 +23035,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "similar to https://github.com/packit-service/requre/issues/29\r\ \nplease add reverse dependency testing what will check that change\ \ will not break ``packit`` and in case it is broken, will raise that\ @@ -23374,7 +23043,7 @@ requests.sessions: \ that it found bug in ogr. " closed_at: '2020-04-07T08:41:19Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -23411,7 +23080,7 @@ requests.sessions: updated_at: '2020-04-07T08:41:19Z' url: https://api.github.com/repos/packit/ogr/issues/237 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -23430,48 +23099,43 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.104678 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 17:59:57 GMT + ETag: W/"1340234b314092470e12d8eeaac64f72b800308bba3e3184eed4bb391cb8baba" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DF8D:191865E:6075DC1D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4863' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '137' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2921724319458008 + latency: 0.19070935249328613 module_call_list: - unittest.case - requre.online_replacing @@ -23492,7 +23156,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "similar to https://github.com/packit-service/requre/issues/29\r\ \nplease add reverse dependency testing what will check that change\ \ will not break ``packit`` and in case it is broken, will raise that\ @@ -23500,7 +23164,7 @@ requests.sessions: \ that it found bug in ogr. " closed_at: '2020-04-07T08:41:19Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -23537,7 +23201,7 @@ requests.sessions: updated_at: '2020-04-07T08:41:19Z' url: https://api.github.com/repos/packit/ogr/issues/237 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -23556,49 +23220,44 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.190424 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:00:43 GMT + ETag: W/"1340234b314092470e12d8eeaac64f72b800308bba3e3184eed4bb391cb8baba" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F805ED:191C1B9:6075DC4B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4652' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '348' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/240: - metadata: - latency: 0.2921772003173828 + latency: 0.19747304916381836 module_call_list: - unittest.case - requre.online_replacing @@ -23618,7 +23277,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -23637,7 +23296,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -23664,7 +23323,7 @@ requests.sessions: \n - [ ] gitlab\r\n - [ ] pagure" closed_at: '2019-10-15T10:49:50Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -23750,7 +23409,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:47Z' url: https://api.github.com/repos/packit/ogr/issues/240 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -23769,48 +23428,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.197281 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:09 GMT + ETag: W/"0c21b88f25a24de69cf760638f3a0f6b278578516cc32c95a09a602fae75200d" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7EA0C:1919654:6075DC29 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4818' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '182' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.30236053466796875 + latency: 0.27783918380737305 module_call_list: - unittest.case - requre.online_replacing @@ -23830,7 +23484,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -23849,7 +23503,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -23876,7 +23530,7 @@ requests.sessions: \n - [ ] gitlab\r\n - [ ] pagure" closed_at: '2019-10-15T10:49:50Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -23962,7 +23616,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:47Z' url: https://api.github.com/repos/packit/ogr/issues/240 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -23981,49 +23635,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.277659 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:51 GMT + ETag: W/"0c21b88f25a24de69cf760638f3a0f6b278578516cc32c95a09a602fae75200d" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80C8F:191CBD3:6075DC53 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4608' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '392' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/245: - metadata: - latency: 0.29187798500061035 + latency: 0.17650985717773438 module_call_list: - unittest.case - requre.online_replacing @@ -24051,7 +23700,7 @@ requests.sessions: \n\r\n---\r\n\r\nThe follow-up to #242 ." closed_at: '2020-01-03T08:43:55Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -24102,7 +23751,7 @@ requests.sessions: updated_at: '2020-01-03T08:43:55Z' url: https://api.github.com/repos/packit/ogr/issues/245 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -24121,48 +23770,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.176348 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:03 GMT + ETag: W/"21e4d259ef592e07715bc9219b5b4c892b77a55b1ff5435a87a4c71f71c106e3" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E46A:1918DDE:6075DC23 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4837' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '163' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.5053980350494385 + latency: 0.1090245246887207 module_call_list: - unittest.case - requre.online_replacing @@ -24190,7 +23834,7 @@ requests.sessions: \n\r\n---\r\n\r\nThe follow-up to #242 ." closed_at: '2020-01-03T08:43:55Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -24241,7 +23885,7 @@ requests.sessions: updated_at: '2020-01-03T08:43:55Z' url: https://api.github.com/repos/packit/ogr/issues/245 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -24260,49 +23904,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.108745 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:47 GMT + ETag: W/"21e4d259ef592e07715bc9219b5b4c892b77a55b1ff5435a87a4c71f71c106e3" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8098C:191C724:6075DC4F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4626' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '374' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/25: - metadata: - latency: 0.3157634735107422 + latency: 0.1117243766784668 module_call_list: - unittest.case - requre.online_replacing @@ -24323,12 +23962,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "we need this b/c 0.0.2 doesn't have specfile\r\n\r\nand I want\ \ to use packit to bring the release to fedora" closed_at: '2019-03-01T15:56:25Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -24379,7 +24018,7 @@ requests.sessions: updated_at: '2019-03-01T16:19:00Z' url: https://api.github.com/repos/packit/ogr/issues/25 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -24398,48 +24037,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.111526 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:25 GMT + ETag: W/"18f17d7a81b846d147b78db623c89326278d4ec9559f9b1dac5504964698e3e3" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F6EA:191AACA:6075DC39 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4745' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '255' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29675912857055664 + latency: 0.10546875 module_call_list: - unittest.case - requre.online_replacing @@ -24460,12 +24094,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "we need this b/c 0.0.2 doesn't have specfile\r\n\r\nand I want\ \ to use packit to bring the release to fedora" closed_at: '2019-03-01T15:56:25Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -24516,7 +24150,7 @@ requests.sessions: updated_at: '2019-03-01T16:19:00Z' url: https://api.github.com/repos/packit/ogr/issues/25 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -24535,49 +24169,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.105299 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:07 GMT + ETag: W/"18f17d7a81b846d147b78db623c89326278d4ec9559f9b1dac5504964698e3e3" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81BDF:191E345:6075DC63 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4535' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '465' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/250: - metadata: - latency: 0.2930450439453125 + latency: 0.11019039154052734 module_call_list: - unittest.case - requre.online_replacing @@ -24611,7 +24240,7 @@ requests.sessions: \ for both of them\r\n\r\n\r\n" closed_at: '2019-12-04T08:50:38Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -24669,7 +24298,7 @@ requests.sessions: updated_at: '2019-12-04T08:50:38Z' url: https://api.github.com/repos/packit/ogr/issues/250 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -24688,48 +24317,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.110021 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:05 GMT + ETag: W/"32b1c834b2c48d532e11f712cf4f6cd2173d8f523a252b9edb653a121c687cd3" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E630:19190A5:6075DC25 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4832' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '168' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.23273205757141113 + latency: 0.11254644393920898 module_call_list: - unittest.case - requre.online_replacing @@ -24763,7 +24387,7 @@ requests.sessions: \ for both of them\r\n\r\n\r\n" closed_at: '2019-12-04T08:50:38Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -24821,7 +24445,7 @@ requests.sessions: updated_at: '2019-12-04T08:50:38Z' url: https://api.github.com/repos/packit/ogr/issues/250 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -24840,49 +24464,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.10994 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:47 GMT + ETag: W/"32b1c834b2c48d532e11f712cf4f6cd2173d8f523a252b9edb653a121c687cd3" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F809E9:191C7A8:6075DC4F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4622' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '378' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/251: - metadata: - latency: 0.3020167350769043 + latency: 0.1279010772705078 module_call_list: - unittest.case - requre.online_replacing @@ -24917,54 +24536,88 @@ requests.sessions: \ cannot be easily fixed\r\n\r\nThis does not need to be done in one\ \ PR. Also, one fixed error can be useful to us.\r\n\r\n
\r\n\ 'mypy ogr --strict' output\r\n\r\n```\r\n$ mypy ogr\ - \ --strict\r\nogr/deprecation.py:23: error: Cannot find module named\ - \ 'deprecated'\r\nogr/deprecation.py:26: error: Function is missing\ - \ a type annotation\r\nogr/abstract.py:73: error: Function is missing\ - \ a return type annotation\r\nogr/abstract.py:94: error: Incompatible\ + \ --strict\r\nogr/deprecation.py:23: error: Cannot find implementation\ + \ or library stub for module named 'deprecated'\r\nogr/deprecation.py:26:\ + \ error: Function is missing a type annotation\r\nogr/services/github/auth_providers/abstract.py:6:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/auth_providers/abstract.py:6: note:\ + \ See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports\r\ + \nogr/services/github/auth_providers/abstract.py:32: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/parsing.py:99:\ + \ error: Function is missing a return type annotation\r\nogr/parsing.py:155:\ + \ error: Argument 1 to \"RepoUrl\" has incompatible type \"None\"; expected\ + \ \"str\"\r\nogr/services/github/auth_providers/token.py:6: error: Cannot\ + \ find implementation or library stub for module named 'github'\r\n\ + ogr/services/github/auth_providers/token.py:12: error: Function is missing\ + \ a type annotation for one or more arguments\r\nogr/services/github/auth_providers/token.py:35:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/auth_providers/token.py:35: error: Incompatible\ + \ default for argument \"token\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:7:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/auth_providers/github_app.py:26: error:\ + \ Returning Any from function declared to return \"bool\"\r\nogr/services/github/auth_providers/github_app.py:61:\ + \ error: Incompatible return value type (got \"None\", expected \"str\"\ + )\r\nogr/services/github/auth_providers/github_app.py:76: error: Incompatible\ + \ return value type (got \"None\", expected \"str\")\r\nogr/services/github/auth_providers/github_app.py:87:\ + \ error: unused 'type: ignore' comment\r\nogr/services/github/auth_providers/github_app.py:94:\ + \ error: unused 'type: ignore' comment\r\nogr/services/github/auth_providers/github_app.py:95:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/auth_providers/github_app.py:98: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/github/auth_providers/github_app.py:99:\ + \ error: Incompatible default for argument \"github_app_id\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:100:\ + \ error: Incompatible default for argument \"github_app_private_key\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:101:\ + \ error: Incompatible default for argument \"github_app_private_key_path\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/abstract.py:34:\ + \ error: Module 'functools' has no attribute 'cached_property'\r\nogr/abstract.py:82:\ + \ error: Function is missing a return type annotation\r\nogr/abstract.py:103:\ + \ error: Incompatible return value type (got \"Optional[datetime]\"\ + , expected \"datetime\")\r\nogr/abstract.py:107: error: Incompatible\ \ return value type (got \"Optional[datetime]\", expected \"datetime\"\ - )\r\nogr/abstract.py:98: error: Incompatible return value type (got\ - \ \"Optional[datetime]\", expected \"datetime\")\r\nogr/abstract.py:104:\ - \ error: Incompatible return value type (got \"Optional[Any]\", expected\ - \ \"Issue\")\r\nogr/abstract.py:113: error: Incompatible return value\ - \ type (got \"Optional[Any]\", expected \"PullRequest\")\r\nogr/abstract.py:159:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/abstract.py:227:\ - \ error: Incompatible default for argument \"filter_regex\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:227:\ - \ error: Incompatible default for argument \"author\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/abstract.py:282: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/abstract.py:282: error: Untyped decorator makes function \"__init__\"\ - \ untyped\r\nogr/abstract.py:373: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1079: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1099: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1248: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/utils.py:28: error: Cannot find module named 'git'\r\n\ - ogr/read_only.py:52: error: Missing type parameters for generic type\ - \ \"Callable\"\r\nogr/read_only.py:66: error: Function is missing a\ - \ type annotation\r\nogr/read_only.py:68: error: Function is missing\ - \ a type annotation\r\nogr/read_only.py:157: error: Call to untyped\ - \ function \"deprecate_and_set_removal\" in typed context\r\nogr/read_only.py:157:\ - \ error: Untyped decorator makes function \"pr_create\" untyped\r\n\ - ogr/read_only.py:169: error: Incompatible default for argument \"fork_username\"\ - \ (default has type \"None\", argument has type \"str\")\r\nogr/read_only.py:187:\ + )\r\nogr/abstract.py:113: error: Incompatible return value type (got\ + \ \"Optional[Any]\", expected \"Issue\")\r\nogr/abstract.py:122: error:\ + \ Incompatible return value type (got \"Optional[Any]\", expected \"\ + PullRequest\")\r\nogr/abstract.py:172: error: Missing type parameters\ + \ for generic type \"List\"\r\nogr/abstract.py:244: error: Incompatible\ + \ default for argument \"filter_regex\" (default has type \"None\",\ + \ argument has type \"str\")\r\nogr/abstract.py:244: error: Incompatible\ + \ default for argument \"author\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/abstract.py:299: error: Call to untyped function\ + \ \"deprecate_and_set_removal\" in typed context\r\nogr/abstract.py:299:\ + \ error: Untyped decorator makes function \"__init__\" untyped\r\nogr/abstract.py:420:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/read_only.py:208:\ - \ error: Incompatible default for argument \"commit\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/read_only.py:209: error:\ - \ Incompatible default for argument \"filename\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/read_only.py:210: error: Incompatible\ - \ default for argument \"row\" (default has type \"None\", argument\ - \ has type \"int\")\r\nogr/read_only.py:227: error: Returning Any from\ - \ function declared to return \"PullRequest\"\r\nogr/read_only.py:233:\ - \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/read_only.py:252: error: Returning Any from function declared\ - \ to return \"GitProject\"\r\nogr/factory.py:33: error: Function is\ - \ missing a return type annotation\r\nogr/factory.py:33: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/factory.py:57:\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:751:\ + \ error: Untyped decorator makes function \"hostname\" untyped\r\nogr/abstract.py:1204:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:1224:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:1373:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/read_only.py:52:\ + \ error: Missing type parameters for generic type \"Callable\"\r\nogr/read_only.py:66:\ + \ error: Function is missing a type annotation\r\nogr/read_only.py:68:\ + \ error: Function is missing a type annotation\r\nogr/read_only.py:165:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/read_only.py:165: error: Untyped decorator makes function\ + \ \"pr_create\" untyped\r\nogr/read_only.py:177: error: Incompatible\ + \ default for argument \"fork_username\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/read_only.py:195: error: Incompatible\ + \ default for argument \"fork_username\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/read_only.py:215: error: Incompatible\ + \ default for argument \"commit\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/read_only.py:216: error: Incompatible default\ + \ for argument \"filename\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/read_only.py:217: error: Incompatible default\ + \ for argument \"row\" (default has type \"None\", argument has type\ + \ \"int\")\r\nogr/read_only.py:233: error: Returning Any from function\ + \ declared to return \"PullRequest\"\r\nogr/read_only.py:239: error:\ + \ Returning Any from function declared to return \"PullRequest\"\r\n\ + ogr/read_only.py:257: error: Returning Any from function declared to\ + \ return \"GitProject\"\r\nogr/factory.py:33: error: Function is missing\ + \ a return type annotation\r\nogr/factory.py:33: error: Function is\ + \ missing a type annotation for one or more arguments\r\nogr/factory.py:57:\ \ error: Function is missing a type annotation\r\nogr/factory.py:59:\ \ error: Function is missing a return type annotation\r\nogr/factory.py:65:\ \ error: Call to untyped function \"decorator_cover\" in typed context\r\ @@ -24974,338 +24627,370 @@ requests.sessions: , argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:71:\ \ error: Incompatible default for argument \"custom_instances\" (default\ \ has type \"None\", argument has type \"Iterable[GitService]\")\r\n\ - ogr/factory.py:97: error: Item \"None\" of \"Optional[RepoUrl]\" has\ - \ no attribute \"get_instance_url\"\r\nogr/factory.py:103: error: Incompatible\ - \ default for argument \"service_mapping_update\" (default has type\ - \ \"None\", argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:125:\ - \ error: Incompatible default for argument \"service_mapping_update\"\ - \ (default has type \"None\", argument has type \"Dict[str, Type[GitService]]\"\ - )\r\nogr/factory.py:142: error: Implicit generic \"Any\". Use \"typing.Dict\"\ - \ and specify generic parameters\r\nogr/services/gitlab/comments.py:26:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/comments.py:41:\ + ogr/factory.py:86: error: Invalid index type \"Optional[str]\" for \"\ + Dict[str, Type[GitService]]\"; expected type \"str\"\r\nogr/factory.py:95:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + hostname\"\r\nogr/factory.py:105: error: Item \"None\" of \"Optional[RepoUrl]\"\ + \ has no attribute \"get_instance_url\"\r\nogr/factory.py:110: error:\ + \ Incompatible default for argument \"service_mapping_update\" (default\ + \ has type \"None\", argument has type \"Dict[str, Type[GitService]]\"\ + )\r\nogr/factory.py:132: error: Incompatible default for argument \"\ + service_mapping_update\" (default has type \"None\", argument has type\ + \ \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:149: error: Implicit\ + \ generic \"Any\". Use \"typing.Dict\" and specify generic parameters\r\ + \nogr/services/gitlab/comments.py:26: error: Cannot find implementation\ + \ or library stub for module named 'gitlab.v4.objects'\r\nogr/services/gitlab/comments.py:41:\ \ error: Returning Any from function declared to return \"str\"\r\n\ ogr/services/gitlab/comments.py:50: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/github/comments.py:25:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/comments.py:25:\ - \ note: See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports\r\ - \nogr/services/github/comments.py:38: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/comments.py:46:\ + \ declared to return \"datetime\"\r\nogr/services/github/comments.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.IssueComment'\r\nogr/services/github/comments.py:27: error:\ + \ Cannot find implementation or library stub for module named 'github.PullRequestComment'\r\ + \nogr/services/github/comments.py:42: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/comments.py:50:\ \ error: Returning Any from function declared to return \"datetime\"\ - \r\nogr/services/base.py:64: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:64: error: Untyped decorator\ - \ makes function \"get_pr_comments\" untyped\r\nogr/services/base.py:65:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/base.py:70: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/base.py:70: error: Incompatible default for argument\ + \r\nogr/services/github/auth_providers/tokman.py:7: error: Cannot find\ + \ implementation or library stub for module named 'github'\r\nogr/services/github/auth_providers/tokman.py:39:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/auth_providers/tokman.py:42: error: Function is\ + \ missing a type annotation for one or more arguments\r\nogr/services/github/auth_providers/tokman.py:42:\ + \ error: Incompatible default for argument \"tokman_instance_url\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:46:\ + \ error: Module 'functools' has no attribute 'cached_property'\r\nogr/services/base.py:55:\ + \ error: Untyped decorator makes function \"hostname\" untyped\r\nogr/services/base.py:60:\ + \ error: Argument \"potential_url\" to \"parse_git_repo\" has incompatible\ + \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/base.py:81:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:81: error: Untyped decorator makes\ + \ function \"get_pr_comments\" untyped\r\nogr/services/base.py:86: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/base.py:87: error: Incompatible default for argument \"\ + filter_regex\" (default has type \"None\", argument has type \"str\"\ + )\r\nogr/services/base.py:87: error: Incompatible default for argument\ \ \"author\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/base.py:83: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:83: error: Untyped decorator\ - \ makes function \"search_in_pr\" untyped\r\nogr/services/base.py:106:\ - \ error: Untyped decorator makes function \"pr_close\" untyped\r\nogr/services/base.py:107:\ + \nogr/services/base.py:100: error: Call to untyped function \"deprecate_and_set_removal\"\ + \ in typed context\r\nogr/services/base.py:100: error: Untyped decorator\ + \ makes function \"search_in_pr\" untyped\r\nogr/services/base.py:123:\ + \ error: Untyped decorator makes function \"pr_close\" untyped\r\nogr/services/base.py:124:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:107: error: Untyped decorator makes\ - \ function \"pr_close\" untyped\r\nogr/services/base.py:115: error:\ - \ Untyped decorator makes function \"pr_merge\" untyped\r\nogr/services/base.py:116:\ + \ context\r\nogr/services/base.py:124: error: Untyped decorator makes\ + \ function \"pr_close\" untyped\r\nogr/services/base.py:132: error:\ + \ Untyped decorator makes function \"pr_merge\" untyped\r\nogr/services/base.py:133:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:116: error: Untyped decorator makes\ - \ function \"pr_merge\" untyped\r\nogr/services/base.py:124: error:\ + \ context\r\nogr/services/base.py:133: error: Untyped decorator makes\ + \ function \"pr_merge\" untyped\r\nogr/services/base.py:141: error:\ \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:124: error: Untyped decorator makes function\ - \ \"get_pr_labels\" untyped\r\nogr/services/base.py:132: error: Call\ + \nogr/services/base.py:141: error: Untyped decorator makes function\ + \ \"get_pr_labels\" untyped\r\nogr/services/base.py:149: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:132: error: Untyped decorator makes function\ - \ \"add_pr_labels\" untyped\r\nogr/services/base.py:140: error: Call\ + \nogr/services/base.py:149: error: Untyped decorator makes function\ + \ \"add_pr_labels\" untyped\r\nogr/services/base.py:157: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:140: error: Untyped decorator makes function\ - \ \"get_pr_info\" untyped\r\nogr/services/base.py:148: error: Call to\ + \nogr/services/base.py:157: error: Untyped decorator makes function\ + \ \"get_pr_info\" untyped\r\nogr/services/base.py:165: error: Call to\ \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:148: error: Untyped decorator makes function \"\ - update_pr_info\" untyped\r\nogr/services/base.py:158: error: Call to\ + ogr/services/base.py:165: error: Untyped decorator makes function \"\ + update_pr_info\" untyped\r\nogr/services/base.py:175: error: Call to\ \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:158: error: Untyped decorator makes function \"\ - get_all_pr_commits\" untyped\r\nogr/services/base.py:166: error: Call\ + ogr/services/base.py:175: error: Untyped decorator makes function \"\ + get_all_pr_commits\" untyped\r\nogr/services/base.py:183: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:166: error: Untyped decorator makes function\ - \ \"_get_all_pr_comments\" untyped\r\nogr/services/base.py:174: error:\ - \ Untyped decorator makes function \"pr_comment\" untyped\r\nogr/services/base.py:178:\ + \nogr/services/base.py:183: error: Untyped decorator makes function\ + \ \"_get_all_pr_comments\" untyped\r\nogr/services/base.py:191: error:\ + \ Untyped decorator makes function \"pr_comment\" untyped\r\nogr/services/base.py:195:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:178: error: Untyped decorator makes\ - \ function \"pr_comment\" untyped\r\nogr/services/base.py:187: error:\ + \ context\r\nogr/services/base.py:195: error: Untyped decorator makes\ + \ function \"pr_comment\" untyped\r\nogr/services/base.py:204: error:\ \ Incompatible default for argument \"commit\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/services/base.py:188: error:\ + None\", argument has type \"str\")\r\nogr/services/base.py:205: error:\ \ Incompatible default for argument \"filename\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/services/base.py:189: error:\ + None\", argument has type \"str\")\r\nogr/services/base.py:206: error:\ \ Incompatible default for argument \"row\" (default has type \"None\"\ - , argument has type \"int\")\r\nogr/services/base.py:193: error: Call\ + , argument has type \"int\")\r\nogr/services/base.py:210: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:193: error: Untyped decorator makes function\ - \ \"get_issue_comments\" untyped\r\nogr/services/base.py:194: error:\ + \nogr/services/base.py:210: error: Untyped decorator makes function\ + \ \"get_issue_comments\" untyped\r\nogr/services/base.py:215: error:\ \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/base.py:201: error: Incompatible default for argument \"\ + ogr/services/base.py:218: error: Incompatible default for argument \"\ filter_regex\" (default has type \"None\", argument has type \"str\"\ - )\r\nogr/services/base.py:203: error: Incompatible default for argument\ + )\r\nogr/services/base.py:220: error: Incompatible default for argument\ \ \"author\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/base.py:207: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:207: error: Untyped decorator\ - \ makes function \"pr_create\" untyped\r\nogr/services/base.py:218:\ + \nogr/services/base.py:224: error: Call to untyped function \"deprecate_and_set_removal\"\ + \ in typed context\r\nogr/services/base.py:224: error: Untyped decorator\ + \ makes function \"pr_create\" untyped\r\nogr/services/base.py:235:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:228:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:245:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:228: error: Untyped decorator makes\ - \ function \"can_close_issue\" untyped\r\nogr/services/base.py:236:\ + \ context\r\nogr/services/base.py:245: error: Untyped decorator makes\ + \ function \"can_close_issue\" untyped\r\nogr/services/base.py:253:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:236: error: Untyped decorator makes\ - \ function \"get_issue_info\" untyped\r\nogr/services/base.py:244: error:\ + \ context\r\nogr/services/base.py:253: error: Untyped decorator makes\ + \ function \"get_issue_info\" untyped\r\nogr/services/base.py:261: error:\ \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:244: error: Untyped decorator makes function\ - \ \"_get_all_issue_comments\" untyped\r\nogr/services/base.py:252: error:\ + \nogr/services/base.py:261: error: Untyped decorator makes function\ + \ \"_get_all_issue_comments\" untyped\r\nogr/services/base.py:269: error:\ \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:252: error: Untyped decorator makes function\ - \ \"issue_comment\" untyped\r\nogr/services/base.py:260: error: Call\ + \nogr/services/base.py:269: error: Untyped decorator makes function\ + \ \"issue_comment\" untyped\r\nogr/services/base.py:277: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:260: error: Untyped decorator makes function\ - \ \"issue_close\" untyped\r\nogr/services/base.py:268: error: Call to\ + \nogr/services/base.py:277: error: Untyped decorator makes function\ + \ \"issue_close\" untyped\r\nogr/services/base.py:285: error: Call to\ \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:268: error: Untyped decorator makes function \"\ - get_issue_labels\" untyped\r\nogr/services/base.py:276: error: Call\ + ogr/services/base.py:285: error: Untyped decorator makes function \"\ + get_issue_labels\" untyped\r\nogr/services/base.py:293: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:276: error: Untyped decorator makes function\ - \ \"add_issue_labels\" untyped\r\nogr/services/base.py:330: error: Function\ - \ is missing a return type annotation\r\nogr/services/base.py:330: error:\ + \nogr/services/base.py:293: error: Untyped decorator makes function\ + \ \"add_issue_labels\" untyped\r\nogr/services/base.py:367: error: Function\ + \ is missing a return type annotation\r\nogr/services/base.py:367: error:\ \ Argument 1 of \"get_comments\" is incompatible with supertype \"PullRequest\"\ - ; supertype defines the argument type as \"Optional[str]\"\r\nogr/services/base.py:330:\ + ; supertype defines the argument type as \"Optional[str]\"\r\nogr/services/base.py:367:\ \ error: Argument 3 of \"get_comments\" is incompatible with supertype\ \ \"PullRequest\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/base.py:331: error: Incompatible default for argument\ + \r\nogr/services/base.py:368: error: Incompatible default for argument\ \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/base.py:331: error: Incompatible default for\ + str\")\r\nogr/services/base.py:368: error: Incompatible default for\ \ argument \"author\" (default has type \"None\", argument has type\ - \ \"str\")\r\nogr/services/base.py:336: error: Function is missing a\ - \ return type annotation\r\nogr/services/base.py:360: error: Incompatible\ + \ \"str\")\r\nogr/services/base.py:373: error: Function is missing a\ + \ return type annotation\r\nogr/services/base.py:397: error: Incompatible\ \ default for argument \"filter_regex\" (default has type \"None\",\ - \ argument has type \"str\")\r\nogr/services/base.py:360: error: Incompatible\ + \ argument has type \"str\")\r\nogr/services/base.py:397: error: Incompatible\ \ default for argument \"author\" (default has type \"None\", argument\ \ has type \"str\")\r\nogr/services/pagure/release.py:28: error: Name\ \ 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:37:\ \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:42:\ \ error: Function is missing a return type annotation\r\nogr/services/pagure/release.py:46:\ \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:38:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:40:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/pull_request.py:44:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:44:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/pull_request.py:51:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:39:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:41:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/pull_request.py:45:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:45:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/pull_request.py:52:\ \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:52: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:60:\ + ogr/services/pagure/pull_request.py:53: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:61:\ \ error: Returning Any from function declared to return \"int\"\r\n\ - ogr/services/pagure/pull_request.py:64: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:80:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:81: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:89:\ + ogr/services/pagure/pull_request.py:65: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:72:\ + \ error: List item 0 has incompatible type \"Optional[str]\"; expected\ + \ \"str\"\r\nogr/services/pagure/pull_request.py:81: error: Call to\ + \ untyped function \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:82:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/pull_request.py:93: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:97:\ + ogr/services/pagure/pull_request.py:90: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:94:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/pull_request.py:106: error: Function is missing\ - \ a type annotation for one or more arguments\r\nogr/services/pagure/pull_request.py:106:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/pull_request.py:107: error: Returning\ - \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/pull_request.py:113:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:118:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/pull_request.py:139:\ + ogr/services/pagure/pull_request.py:98: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:117:\ + \ error: Returning Any from function declared to return \"bytes\"\r\n\ + ogr/services/pagure/pull_request.py:121: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:124:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:145:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/pull_request.py:145: error: Implicit generic \"\ + Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/pull_request.py:146:\ + \ error: Returning Any from function declared to return \"Dict[Any,\ + \ Any]\"\r\nogr/services/pagure/pull_request.py:152: error: Name 'ogr_pagure.PagureProject'\ + \ is not defined\r\nogr/services/pagure/pull_request.py:157: error:\ + \ Incompatible default for argument \"fork_username\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/pull_request.py:178:\ \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/services/pagure/pull_request.py:139: error: Call to untyped\ - \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:142:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:144:\ + \r\nogr/services/pagure/pull_request.py:178: error: Call to untyped\ + \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:181:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:183:\ \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/services/pagure/pull_request.py:144: error: Call to untyped\ - \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:147:\ + \r\nogr/services/pagure/pull_request.py:183: error: Call to untyped\ + \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:186:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/pull_request.py:148: error: Name 'ogr_pagure.PagureProject'\ - \ is not defined\r\nogr/services/pagure/pull_request.py:160: error:\ + \nogr/services/pagure/pull_request.py:187: error: Name 'ogr_pagure.PagureProject'\ + \ is not defined\r\nogr/services/pagure/pull_request.py:199: error:\ \ Call to untyped function \"PagurePullRequest\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:181: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:228:\ + ogr/services/pagure/pull_request.py:219: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:266:\ \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:229: error: Returning Any from function\ - \ declared to return \"List[CommitFlag]\"\r\nogr/services/pagure/issue.py:33:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:35:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/issue.py:39:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/issue.py:39:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/issue.py:46:\ + ogr/services/pagure/pull_request.py:277: error: Implicit generic \"\ + Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/issue.py:34:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:36:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/issue.py:40:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/issue.py:40:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/issue.py:47:\ \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/issue.py:47: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:51: error:\ - \ Returning Any from function declared to return \"int\"\r\nogr/services/pagure/issue.py:55:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/issue.py:60: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:66: error:\ - \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:67:\ + ogr/services/pagure/issue.py:48: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/issue.py:56: error:\ + \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:57:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/pagure/issue.py:61: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/pagure/issue.py:65: error:\ + \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:70:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/issue.py:71: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:79: error:\ - \ Returning Any from function declared to return \"List[str]\"\r\nogr/services/pagure/issue.py:86:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:97:\ + ogr/services/pagure/issue.py:76: error: Call to untyped function \"\ + __update\" in typed context\r\nogr/services/pagure/issue.py:77: error:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/pagure/issue.py:85:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/issue.py:93: error: Returning Any from function\ + \ declared to return \"List[str]\"\r\nogr/services/pagure/issue.py:118:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:132:\ \ error: Returning Any from function declared to return \"Issue\"\r\n\ - ogr/services/pagure/issue.py:97: error: Call to untyped function \"\ - PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:100:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:102:\ + ogr/services/pagure/issue.py:132: error: Call to untyped function \"\ + PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:135:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:137:\ \ error: Returning Any from function declared to return \"Issue\"\r\n\ - ogr/services/pagure/issue.py:102: error: Call to untyped function \"\ - PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:106:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:118:\ + ogr/services/pagure/issue.py:137: error: Call to untyped function \"\ + PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:141:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:168:\ \ error: Call to untyped function \"PagureIssue\" in typed context\r\ - \nogr/services/pagure/issue.py:121: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/flag.py:41: error:\ - \ Function is missing a return type annotation\r\nogr/services/pagure/flag.py:41:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/flag.py:42:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:43:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:44:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:45:\ + \nogr/services/pagure/issue.py:171: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/flag.py:44: error:\ + \ Function is missing a return type annotation\r\nogr/services/pagure/flag.py:44:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/flag.py:45:\ \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:46:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:47:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:48:\ \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:49:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:58:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:64:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:52:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:61:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:67:\ \ error: Incompatible default for argument \"percent\" (default has\ - \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/flag.py:66:\ + \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/flag.py:69:\ \ error: Incompatible default for argument \"uid\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:47:\ - \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:53:\ - \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:54:\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/flag.py:97:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:103:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/project.py:58:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:64:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:65:\ \ error: Incompatible default for argument \"username\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:57:\ + \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:68:\ \ error: Argument 3 to \"__init__\" of \"GitProject\" has incompatible\ - \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/pagure/project.py:64:\ + \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/pagure/project.py:75:\ \ error: Incompatible types in assignment (expression has type \"Optional[str]\"\ - , variable has type \"str\")\r\nogr/services/pagure/project.py:88: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/pagure/project.py:93: error: Incompatible default for argument\ - \ \"method\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/pagure/project.py:94: error: Implicit generic \"Any\"\ - . Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/project.py:94:\ + , variable has type \"str\")\r\nogr/services/pagure/project.py:102:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/project.py:107: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/project.py:108: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/project.py:108:\ \ error: Incompatible default for argument \"params\" (default has type\ - \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:95:\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:109:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:95: error: Incompatible\ + \ parameters\r\nogr/services/pagure/project.py:109: error: Incompatible\ \ default for argument \"data\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:96:\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:110:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:108: error: Call to untyped\ - \ function \"_get_project_url\" in typed context\r\nogr/services/pagure/project.py:117:\ + \ parameters\r\nogr/services/pagure/project.py:122: error: Call to untyped\ + \ function \"_get_project_url\" in typed context\r\nogr/services/pagure/project.py:128:\ \ error: Returning Any from function declared to return \"Dict[Any,\ - \ Any]\"\r\nogr/services/pagure/project.py:119: error: Function is missing\ - \ a type annotation for one or more arguments\r\nogr/services/pagure/project.py:124:\ + \ Any]\"\r\nogr/services/pagure/project.py:132: error: Function is missing\ + \ a type annotation for one or more arguments\r\nogr/services/pagure/project.py:137:\ \ error: Incompatible default for argument \"method\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:125:\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:138:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:125: error: Incompatible\ + \ parameters\r\nogr/services/pagure/project.py:138: error: Incompatible\ \ default for argument \"params\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:126:\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:139:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:126: error: Incompatible\ + \ parameters\r\nogr/services/pagure/project.py:139: error: Incompatible\ \ default for argument \"data\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:139:\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:152:\ \ error: Call to untyped function \"_get_project_url\" in typed context\r\ - \nogr/services/pagure/project.py:148: error: Returning Any from function\ - \ declared to return \"RequestResponse\"\r\nogr/services/pagure/project.py:150:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/project.py:151:\ + \nogr/services/pagure/project.py:158: error: Returning Any from function\ + \ declared to return \"RequestResponse\"\r\nogr/services/pagure/project.py:162:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/project.py:163:\ \ error: Need type annotation for 'additional_parts' (hint: \"additional_parts:\ - \ List[] = ...\")\r\nogr/services/pagure/project.py:163: error:\ - \ Function is missing a return type annotation\r\nogr/services/pagure/project.py:169:\ + \ List[] = ...\")\r\nogr/services/pagure/project.py:174: error:\ + \ Function is missing a return type annotation\r\nogr/services/pagure/project.py:179:\ \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/pagure/project.py:172: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/project.py:172:\ + \r\nogr/services/pagure/project.py:182: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/project.py:182:\ \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:175: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:176:\ + \nogr/services/pagure/project.py:185: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:186:\ \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/pagure/project.py:180: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:189:\ + \r\nogr/services/pagure/project.py:190: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:199:\ \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:195: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/pagure/project.py:216:\ + \nogr/services/pagure/project.py:205: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/project.py:208:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/project.py:208:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/project.py:236:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/project.py:226: error: Untyped decorator makes\ - \ function \"create_pr\" untyped\r\nogr/services/pagure/project.py:233:\ + \nogr/services/pagure/project.py:246: error: Untyped decorator makes\ + \ function \"create_pr\" untyped\r\nogr/services/pagure/project.py:253:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:243:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:263:\ \ error: Untyped decorator makes function \"fork_create\" untyped\r\n\ - ogr/services/pagure/project.py:275: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:281:\ + ogr/services/pagure/project.py:295: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:301:\ \ error: Returning Any from function declared to return \"Optional[PagureProject]\"\ - \r\nogr/services/pagure/project.py:290: error: Function is missing a\ - \ return type annotation\r\nogr/services/pagure/project.py:301: error:\ - \ Call to untyped function \"exists\" in typed context\r\nogr/services/pagure/project.py:301:\ + \r\nogr/services/pagure/project.py:310: error: Function is missing a\ + \ return type annotation\r\nogr/services/pagure/project.py:342: error:\ + \ Call to untyped function \"exists\" in typed context\r\nogr/services/pagure/project.py:342:\ \ error: Item \"None\" of \"Optional[PagureProject]\" has no attribute\ - \ \"exists\"\r\nogr/services/pagure/project.py:304: error: Call to untyped\ - \ function \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:318:\ + \ \"exists\"\r\nogr/services/pagure/project.py:345: error: Call to untyped\ + \ function \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:359:\ \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:325: error: Returning Any from function\ - \ declared to return \"Dict[str, str]\"\r\nogr/services/pagure/project.py:335:\ + \nogr/services/pagure/project.py:366: error: Returning Any from function\ + \ declared to return \"Dict[str, str]\"\r\nogr/services/pagure/project.py:378:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/project.py:388:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/project.py:353: error: Argument 3 of \"commit_comment\"\ + \nogr/services/pagure/project.py:420: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/project.py:438:\ + \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ + \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/pagure/project.py:438: error: Argument 4 of \"commit_comment\"\ \ is incompatible with supertype \"GitProject\"; supertype defines the\ - \ argument type as \"Optional[str]\"\r\nogr/services/pagure/project.py:353:\ - \ error: Argument 4 of \"commit_comment\" is incompatible with supertype\ - \ \"GitProject\"; supertype defines the argument type as \"Optional[int]\"\ - \r\nogr/services/pagure/project.py:354: error: Incompatible default\ - \ for argument \"filename\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/pagure/project.py:354: error: Incompatible\ - \ default for argument \"row\" (default has type \"None\", argument\ - \ has type \"int\")\r\nogr/services/pagure/project.py:358: error: Untyped\ - \ decorator makes function \"set_commit_status\" untyped\r\nogr/services/pagure/project.py:366:\ - \ error: Incompatible default for argument \"percent\" (default has\ - \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/project.py:367:\ - \ error: Incompatible default for argument \"uid\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:440:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/user.py:31: error: Name 'ogr_pagure.PagureService'\ - \ is not defined\r\nogr/services/pagure/user.py:33: error: Name 'ogr_pagure.PagureService'\ - \ is not defined\r\nogr/services/pagure/user.py:43: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/pagure/service.py:42:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:44: error: Incompatible default for\ - \ argument \"token\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/pagure/service.py:81: error: Returning Any from\ - \ function declared to return \"bool\"\r\nogr/services/pagure/service.py:92:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:103: error: Item \"None\" of \"Optional[RepoUrl]\"\ - \ has no attribute \"repo\"\r\nogr/services/pagure/service.py:104: error:\ - \ Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"namespace\"\ - \r\nogr/services/pagure/service.py:105: error: Item \"None\" of \"Optional[RepoUrl]\"\ - \ has no attribute \"is_fork\"\r\nogr/services/pagure/service.py:106:\ + \ argument type as \"Optional[int]\"\r\nogr/services/pagure/project.py:439:\ + \ error: Incompatible default for argument \"filename\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:439:\ + \ error: Incompatible default for argument \"row\" (default has type\ + \ \"None\", argument has type \"int\")\r\nogr/services/pagure/project.py:443:\ + \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ + \nogr/services/pagure/project.py:451: error: Incompatible default for\ + \ argument \"percent\" (default has type \"None\", argument has type\ + \ \"int\")\r\nogr/services/pagure/project.py:452: error: Incompatible\ + \ default for argument \"uid\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/pagure/project.py:520: error: Call\ + \ to untyped function \"get_project_info\" in typed context\r\nogr/services/pagure/user.py:31:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/user.py:33:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/user.py:43:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/service.py:44: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/service.py:46:\ + \ error: Incompatible default for argument \"token\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/service.py:88:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/pagure/service.py:99: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/service.py:110:\ \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ - username\"\r\nogr/services/pagure/service.py:114: error: Function is\ - \ missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:115:\ - \ error: Incompatible default for argument \"method\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/service.py:115:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/service.py:115: error: Incompatible\ - \ default for argument \"params\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:116:\ + repo\"\r\nogr/services/pagure/service.py:111: error: Item \"None\" of\ + \ \"Optional[RepoUrl]\" has no attribute \"namespace\"\r\nogr/services/pagure/service.py:112:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + is_fork\"\r\nogr/services/pagure/service.py:113: error: Item \"None\"\ + \ of \"Optional[RepoUrl]\" has no attribute \"username\"\r\nogr/services/pagure/service.py:121:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/service.py:122: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/service.py:122: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:122:\ + \ error: Incompatible default for argument \"params\" (default has type\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:123:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/service.py:149: error: Returning\ - \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/service.py:151:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:151:\ + \ parameters\r\nogr/services/pagure/service.py:160: error: Returning\ + \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/service.py:162:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:162:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:152: error: Incompatible default for\ + \nogr/services/pagure/service.py:163: error: Incompatible default for\ \ argument \"method\" (default has type \"None\", argument has type\ - \ \"str\")\r\nogr/services/pagure/service.py:152: error: Implicit generic\ - \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:152:\ + \ \"str\")\r\nogr/services/pagure/service.py:163: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:163:\ \ error: Incompatible default for argument \"params\" (default has type\ - \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:165:\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:176:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:193: error: Function is missing a return\ - \ type annotation\r\nogr/services/pagure/service.py:196: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:209:\ + \nogr/services/pagure/service.py:204: error: Function is missing a return\ + \ type annotation\r\nogr/services/pagure/service.py:207: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:220:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/service.py:219: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/service.py:221:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:230:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:272:\ + ogr/services/pagure/service.py:230: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/service.py:232:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:241:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:283:\ \ error: Argument 2 to \"__handle_project_create_fail\" of \"PagureService\"\ \ has incompatible type \"Optional[str]\"; expected \"str\"\r\nogr/services/gitlab/user.py:28:\ \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:30:\ @@ -25320,133 +25005,161 @@ requests.sessions: \ is not defined\r\nogr/services/gitlab/release.py:46: error: Function\ \ is missing a return type annotation\r\nogr/services/gitlab/release.py:50:\ \ error: Function is missing a return type annotation\r\nogr/services/gitlab/pull_request.py:26:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/pull_request.py:36:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:40:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab.v4.objects'\r\nogr/services/gitlab/pull_request.py:37: error:\ + \ Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:38:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:42:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:49: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/gitlab/pull_request.py:61:\ + ogr/services/gitlab/pull_request.py:51: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/gitlab/pull_request.py:63:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:65: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:74:\ + ogr/services/gitlab/pull_request.py:67: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:76:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:78: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:82:\ + ogr/services/gitlab/pull_request.py:80: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:84:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:86: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/gitlab/pull_request.py:90:\ + ogr/services/gitlab/pull_request.py:88: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/gitlab/pull_request.py:92:\ \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/gitlab/pull_request.py:97: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/pull_request.py:102: error:\ - \ Incompatible default for argument \"fork_username\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/gitlab/pull_request.py:115:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:121:\ + \r\nogr/services/gitlab/pull_request.py:100: error: Returning Any from\ + \ function declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:103:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:117:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:122:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/pull_request.py:169:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:170:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:190:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:196:\ \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:26:\ - \ error: Cannot find module named 'gitlab'\r\nogr/services/gitlab/issue.py:27:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/issue.py:41:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/issue.py:27: error: Cannot find implementation\ + \ or library stub for module named 'gitlab.v4.objects'\r\nogr/services/gitlab/issue.py:41:\ \ error: Returning Any from function declared to return \"str\"\r\n\ ogr/services/gitlab/issue.py:50: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/gitlab/issue.py:62: error:\ - \ Returning Any from function declared to return \"str\"\r\nogr/services/gitlab/issue.py:66:\ + \ declared to return \"int\"\r\nogr/services/gitlab/issue.py:54: error:\ + \ Returning Any from function declared to return \"bool\"\r\nogr/services/gitlab/issue.py:66:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/issue.py:75: error: Returning Any from function\ + ogr/services/gitlab/issue.py:70: error: Returning Any from function\ \ declared to return \"str\"\r\nogr/services/gitlab/issue.py:79: error:\ - \ Returning Any from function declared to return \"datetime\"\r\nogr/services/gitlab/issue.py:82:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/services/gitlab/issue.py:83:\ - \ error: Returning Any from function declared to return \"List[Any]\"\ - \r\nogr/services/gitlab/issue.py:89: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/issue.py:94: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/issue.py:102: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/flag.py:27: error: Cannot find\ - \ module named 'gitlab'\r\nogr/services/gitlab/flag.py:52: error: Function\ - \ is missing a return type annotation\r\nogr/services/gitlab/flag.py:52:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/gitlab/flag.py:53:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/gitlab/issue.py:83:\ + \ error: Returning Any from function declared to return \"datetime\"\ + \r\nogr/services/gitlab/issue.py:86: error: Missing type parameters\ + \ for generic type \"List\"\r\nogr/services/gitlab/issue.py:87: error:\ + \ Returning Any from function declared to return \"List[Any]\"\r\nogr/services/gitlab/issue.py:94:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:107:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:115:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/flag.py:27:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/flag.py:53: error: Function is missing\ + \ a return type annotation\r\nogr/services/gitlab/flag.py:53: note:\ + \ Use \"-> None\" if function does not return a value\r\nogr/services/gitlab/flag.py:54:\ \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"sha\"\ - \r\nogr/services/gitlab/flag.py:54: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"status\"\r\nogr/services/gitlab/flag.py:55: error:\ - \ Item \"None\" of \"Optional[Any]\" has no attribute \"name\"\r\nogr/services/gitlab/flag.py:56:\ + \r\nogr/services/gitlab/flag.py:55: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"status\"\r\nogr/services/gitlab/flag.py:56: error:\ + \ Item \"None\" of \"Optional[Any]\" has no attribute \"name\"\r\nogr/services/gitlab/flag.py:57:\ \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ - \r\nogr/services/gitlab/flag.py:57: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"id\"\r\nogr/services/gitlab/flag.py:58: error:\ + \r\nogr/services/gitlab/flag.py:58: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"id\"\r\nogr/services/gitlab/flag.py:59: error:\ \ Item \"None\" of \"Optional[Any]\" has no attribute \"target_url\"\ - \r\nogr/services/gitlab/flag.py:61: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/flag.py:76: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/project.py:26: error: Cannot\ - \ find module named 'gitlab'\r\nogr/services/gitlab/project.py:27: error:\ - \ Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/project.py:53:\ - \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/project.py:55:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:58: error: Name 'ogr_gitlab.GitlabService'\ - \ is not defined\r\nogr/services/gitlab/project.py:126: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/gitlab/project.py:181:\ + \r\nogr/services/gitlab/flag.py:62: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/flag.py:77: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/flag.py:108: error: Item \"\ + None\" of \"Optional[Any]\" has no attribute \"created_at\"\r\nogr/services/gitlab/project.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/project.py:27: error: Cannot find\ + \ implementation or library stub for module named 'gitlab.v4.objects'\r\ + \nogr/services/gitlab/project.py:54: error: Name 'ogr_gitlab.GitlabService'\ + \ is not defined\r\nogr/services/gitlab/project.py:56: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/gitlab/project.py:59:\ + \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/project.py:129:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/gitlab/project.py:135: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:190:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:209: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/project.py:220:\ + \nogr/services/gitlab/project.py:256: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:267:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:231:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:278:\ \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/gitlab/project.py:231: error: Argument 4 of \"commit_comment\"\ + \r\nogr/services/gitlab/project.py:278: error: Argument 4 of \"commit_comment\"\ \ is incompatible with supertype \"GitProject\"; supertype defines the\ - \ argument type as \"Optional[int]\"\r\nogr/services/gitlab/project.py:232:\ + \ argument type as \"Optional[int]\"\r\nogr/services/gitlab/project.py:279:\ \ error: Incompatible default for argument \"filename\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:232:\ + \ type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:279:\ \ error: Incompatible default for argument \"row\" (default has type\ - \ \"None\", argument has type \"int\")\r\nogr/services/gitlab/project.py:317:\ - \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:323:\ + \ \"None\", argument has type \"int\")\r\nogr/services/gitlab/project.py:364:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:370:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:331: error: Incompatible default for\ - \ argument \"filter_regex\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/gitlab/project.py:389: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/services/gitlab/project.py:395:\ + \nogr/services/gitlab/project.py:373: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:378:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:449:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:413: error: Function is missing a return\ - \ type annotation\r\nogr/services/gitlab/project.py:437: error: Function\ - \ is missing a type annotation\r\nogr/services/gitlab/project.py:449:\ + \nogr/services/gitlab/project.py:455: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:473:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:505:\ + \ error: Function is missing a type annotation\r\nogr/services/gitlab/project.py:517:\ \ error: Call to untyped function \"_normalize_label_color\" in typed\ - \ context\r\nogr/services/gitlab/project.py:462: error: Function is\ - \ missing a type annotation\r\nogr/services/gitlab/project.py:468: error:\ + \ context\r\nogr/services/gitlab/project.py:530: error: Function is\ + \ missing a type annotation\r\nogr/services/gitlab/project.py:536: error:\ \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/gitlab/project.py:473: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:492:\ + ogr/services/gitlab/project.py:541: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:560:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/service.py:23: error: Cannot find module named 'gitlab'\r\ - \nogr/services/gitlab/service.py:36: error: Function is missing a type\ - \ annotation\r\nogr/services/gitlab/service.py:71: error: Returning\ - \ Any from function declared to return \"bool\"\r\nogr/services/gitlab/service.py:80:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/service.py:91: error: Argument 2 of \"project_create\"\ - \ is incompatible with supertype \"GitService\"; supertype defines the\ - \ argument type as \"Optional[str]\"\r\nogr/services/gitlab/service.py:91:\ - \ error: Incompatible default for argument \"namespace\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/github/release.py:23:\ - \ error: Cannot find module named 'github.GitRelease'\r\nogr/services/github/release.py:30:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/release.py:39:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/release.py:46:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/release.py:50:\ + ogr/services/gitlab/service.py:23: error: Cannot find implementation\ + \ or library stub for module named 'gitlab'\r\nogr/services/gitlab/service.py:37:\ + \ error: Function is missing a type annotation\r\nogr/services/gitlab/service.py:75:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/gitlab/service.py:84: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/service.py:104:\ + \ error: Argument 2 of \"project_create\" is incompatible with supertype\ + \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/gitlab/service.py:104: error: Incompatible default\ + \ for argument \"namespace\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/services/github/release.py:23: error: Cannot\ + \ find implementation or library stub for module named 'github.GitRelease'\r\ + \nogr/services/github/release.py:30: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/release.py:39: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/release.py:46: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/release.py:50:\ \ error: Function is missing a return type annotation\r\nogr/services/github/pull_request.py:27:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/pull_request.py:28:\ - \ error: Cannot find module named 'github.Label'\r\nogr/services/github/pull_request.py:29:\ - \ error: Cannot find module named 'github.PullRequest'\r\nogr/services/github/pull_request.py:43:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:47:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/pull_request.py:28: error: Cannot\ + \ find implementation or library stub for module named 'github.Label'\r\ + \nogr/services/github/pull_request.py:29: error: Cannot find implementation\ + \ or library stub for module named 'github.PullRequest'\r\nogr/services/github/pull_request.py:30:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.Repository'\r\nogr/services/github/pull_request.py:31: error:\ + \ Cannot find implementation or library stub for module named 'github.IssueComment'\r\ + \nogr/services/github/pull_request.py:32: error: Cannot find implementation\ + \ or library stub for module named 'github.PullRequestComment'\r\nogr/services/github/pull_request.py:45:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:46:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:50:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:58: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/github/pull_request.py:70:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:55: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/github/pull_request.py:67:\ + ogr/services/github/pull_request.py:74: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/pull_request.py:82:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:71: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/pull_request.py:79:\ + ogr/services/github/pull_request.py:86: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/pull_request.py:90:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:83: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/pull_request.py:87:\ + ogr/services/github/pull_request.py:94: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/pull_request.py:106:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:91: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/github/pull_request.py:102:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:107:\ + ogr/services/github/pull_request.py:109: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/pull_request.py:124: error:\ + \ Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:129:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/github/pull_request.py:129:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:135:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/pull_request.py:166:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:172:\ \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:26:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/issue.py:27:\ - \ error: Cannot find module named 'github.Issue'\r\nogr/services/github/issue.py:40:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/issue.py:27: error: Cannot find implementation\ + \ or library stub for module named 'github.Issue'\r\nogr/services/github/issue.py:40:\ \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:51:\ \ error: Returning Any from function declared to return \"str\"\r\n\ ogr/services/github/issue.py:59: error: Returning Any from function\ @@ -25456,81 +25169,97 @@ requests.sessions: ogr/services/github/issue.py:79: error: Returning Any from function\ \ declared to return \"str\"\r\nogr/services/github/issue.py:83: error:\ \ Returning Any from function declared to return \"datetime\"\r\nogr/services/github/issue.py:86:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/services/github/issue.py:93:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:98:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:104:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/flag.py:25:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/flag.py:42:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/flag.py:42:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/github/flag.py:43:\ + \ error: Missing type parameters for generic type \"List\"\r\nogr/services/github/issue.py:94:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:106:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:112:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/flag.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/flag.py:44: error: Function is missing\ + \ a return type annotation\r\nogr/services/github/flag.py:44: note:\ + \ Use \"-> None\" if function does not return a value\r\nogr/services/github/flag.py:45:\ \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"state\"\ - \r\nogr/services/github/flag.py:44: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"context\"\r\nogr/services/github/flag.py:45: error:\ + \r\nogr/services/github/flag.py:46: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"context\"\r\nogr/services/github/flag.py:47: error:\ \ Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ - \r\nogr/services/github/flag.py:48: error: Name 'ogr_github.GithubProject'\ - \ is not defined\r\nogr/services/github/flag.py:61: error: Name 'ogr_github.GithubProject'\ - \ is not defined\r\nogr/services/github/project.py:26: error: Cannot\ - \ find module named 'github'\r\nogr/services/github/project.py:33: error:\ - \ Cannot find module named 'github.GitRelease'\r\nogr/services/github/project.py:60:\ + \r\nogr/services/github/flag.py:48: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"target_url\"\r\nogr/services/github/flag.py:49:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"id\"\r\ + \nogr/services/github/flag.py:52: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/flag.py:67: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/flag.py:87: error: Returning\ + \ Any from function declared to return \"datetime\"\r\nogr/services/github/flag.py:87:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"created_at\"\ + \r\nogr/services/github/flag.py:91: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/flag.py:91:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"updated_at\"\ + \r\nogr/services/github/project.py:26: error: Cannot find implementation\ + \ or library stub for module named 'github'\r\nogr/services/github/project.py:28:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.Repository'\r\nogr/services/github/project.py:29: error: Cannot\ + \ find implementation or library stub for module named 'github.CommitComment'\r\ + \nogr/services/github/project.py:30: error: Cannot find implementation\ + \ or library stub for module named 'github.GitRelease'\r\nogr/services/github/project.py:58:\ \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/project.py:62:\ \ error: Function is missing a type annotation for one or more arguments\r\ \nogr/services/github/project.py:65: error: Name 'ogr_github.GithubService'\ \ is not defined\r\nogr/services/github/project.py:82: error: Function\ - \ is missing a return type annotation\r\nogr/services/github/project.py:99:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:150:\ + \ is missing a return type annotation\r\nogr/services/github/project.py:91:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:133:\ \ error: Returning Any from function declared to return \"bool\"\r\n\ - ogr/services/github/project.py:166: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/project.py:184:\ + ogr/services/github/project.py:150: error: Returning Any from function\ + \ declared to return \"bool\"\r\nogr/services/github/project.py:167:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/project.py:194: error: Function is missing a return\ + \ type annotation\r\nogr/services/github/project.py:194: note: Use \"\ + -> None\" if function does not return a value\r\nogr/services/github/project.py:213:\ \ error: Returning Any from function declared to return \"Optional[GithubProject]\"\ - \r\nogr/services/github/project.py:219: error: Function is missing a\ - \ type annotation for one or more arguments\r\nogr/services/github/project.py:222:\ + \r\nogr/services/github/project.py:248: error: Function is missing a\ + \ type annotation for one or more arguments\r\nogr/services/github/project.py:254:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/github/project.py:261: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/github/project.py:271:\ + \ parameters\r\nogr/services/github/project.py:302: error: Returning\ + \ Any from function declared to return \"str\"\r\nogr/services/github/project.py:312:\ \ error: Untyped decorator makes function \"create_pr\" untyped\r\n\ - ogr/services/github/project.py:278: error: Incompatible default for\ + ogr/services/github/project.py:319: error: Incompatible default for\ \ argument \"fork_username\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/github/project.py:289: error: Untyped\ - \ decorator makes function \"commit_comment\" untyped\r\nogr/services/github/project.py:294:\ + \ type \"str\")\r\nogr/services/github/project.py:330: error: Untyped\ + \ decorator makes function \"commit_comment\" untyped\r\nogr/services/github/project.py:335:\ \ error: Incompatible default for argument \"filename\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:294:\ + \ type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:335:\ \ error: Incompatible default for argument \"row\" (default has type\ - \ \"None\", argument has type \"int\")\r\nogr/services/github/project.py:314:\ + \ \"None\", argument has type \"int\")\r\nogr/services/github/project.py:355:\ \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ - \nogr/services/github/project.py:315: error: Function is missing a return\ - \ type annotation\r\nogr/services/github/project.py:361: error: Untyped\ - \ decorator makes function \"fork_create\" untyped\r\nogr/services/github/project.py:372:\ - \ error: Argument \"repo\" to \"GithubProject\" has incompatible type\ - \ \"None\"; expected \"str\"\r\nogr/services/github/project.py:372:\ - \ error: Argument \"namespace\" to \"GithubProject\" has incompatible\ - \ type \"None\"; expected \"str\"\r\nogr/services/github/project.py:380:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:383:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:385: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/project.py:392:\ + \nogr/services/github/project.py:359: error: Function is missing a return\ + \ type annotation\r\nogr/services/github/project.py:402: error: Untyped\ + \ decorator makes function \"fork_create\" untyped\r\nogr/services/github/project.py:411:\ + \ error: Returning Any from function declared to return \"GithubProject\"\ + \r\nogr/services/github/project.py:415: error: Function is missing a\ + \ return type annotation\r\nogr/services/github/project.py:418: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/project.py:420: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/project.py:427:\ \ error: Incompatible default for argument \"filter_regex\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:463:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:470:\ - \ error: Function is missing a type annotation\r\nogr/services/github/project.py:481:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:498:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:505:\ + \ error: Function is missing a type annotation\r\nogr/services/github/project.py:516:\ \ error: Call to untyped function \"_normalize_label_color\" in typed\ - \ context\r\nogr/services/github/project.py:490: error: Function is\ - \ missing a type annotation\r\nogr/services/github/project.py:495: error:\ + \ context\r\nogr/services/github/project.py:525: error: Function is\ + \ missing a type annotation\r\nogr/services/github/project.py:530: error:\ \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/github/project.py:499: error: Returning Any from function\ - \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:502:\ + ogr/services/github/project.py:534: error: Returning Any from function\ + \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:537:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:506: error: Returning Any from function\ - \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:509:\ + \nogr/services/github/project.py:541: error: Returning Any from function\ + \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:544:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:518: error: Argument \"git_tag\" to\ + \nogr/services/github/project.py:553: error: Argument \"git_tag\" to\ \ \"_release_from_github_object\" of \"GithubProject\" has incompatible\ - \ type \"Optional[GitTag]\"; expected \"GitTag\"\r\nogr/services/github/project.py:524:\ + \ type \"Optional[GitTag]\"; expected \"GitTag\"\r\nogr/services/github/project.py:559:\ \ error: Argument \"git_tag\" to \"_release_from_github_object\" of\ \ \"GithubProject\" has incompatible type \"Optional[GitTag]\"; expected\ - \ \"GitTag\"\r\nogr/services/github/project.py:532: error: Argument\ + \ \"GitTag\"\r\nogr/services/github/project.py:567: error: Argument\ \ \"git_tag\" to \"_release_from_github_object\" of \"GithubProject\"\ \ has incompatible type \"Optional[GitTag]\"; expected \"GitTag\"\r\n\ - ogr/services/github/project.py:567: error: Returning Any from function\ + ogr/services/github/project.py:596: error: Returning Any from function\ \ declared to return \"str\"\r\nogr/services/github/user.py:31: error:\ \ Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:33:\ \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:40:\ @@ -25544,29 +25273,41 @@ requests.sessions: \r\nogr/services/github/user.py:61: error: Returning Any from function\ \ declared to return \"Optional[str]\"\r\nogr/services/github/user.py:63:\ \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/user.py:75:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/service.py:26:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/service.py:43:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/service.py:47: error: Incompatible default for\ - \ argument \"github_app_id\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/github/service.py:48: error: Incompatible\ - \ default for argument \"github_app_private_key\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/github/service.py:49:\ - \ error: Incompatible default for argument \"github_app_private_key_path\"\ - \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:64:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/service.py:105:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/service.py:25:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/service.py:37: error: Module 'ogr.services.github.auth_providers'\ + \ has no attribute 'GithubAuthentication'\r\nogr/services/github/service.py:37:\ + \ error: Module 'ogr.services.github.auth_providers' has no attribute\ + \ 'TokenAuthentication'\r\nogr/services/github/service.py:37: error:\ + \ Module 'ogr.services.github.auth_providers' has no attribute 'GithubApp'\r\ + \nogr/services/github/service.py:37: error: Module 'ogr.services.github.auth_providers'\ + \ has no attribute 'Tokman'\r\nogr/services/github/service.py:52: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/service.py:56: error: Incompatible default for argument\ + \ \"github_app_id\" (default has type \"None\", argument has type \"\ + str\")\r\nogr/services/github/service.py:57: error: Incompatible default\ + \ for argument \"github_app_private_key\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/services/github/service.py:58: error:\ + \ Incompatible default for argument \"github_app_private_key_path\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:59:\ + \ error: Incompatible default for argument \"tokman_instance_url\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:74:\ + \ error: Call to untyped function \"__set_authentication\" in typed\ + \ context\r\nogr/services/github/service.py:82: error: Function is missing\ + \ a type annotation\r\nogr/services/github/service.py:96: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/service.py:113:\ \ error: Returning Any from function declared to return \"bool\"\r\n\ - ogr/services/github/service.py:118: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/github/service.py:139:\ + ogr/services/github/service.py:121: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/github/service.py:152:\ \ error: Argument 2 of \"project_create\" is incompatible with supertype\ \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/github/service.py:139: error: Incompatible default\ + \r\nogr/services/github/service.py:152: error: Incompatible default\ \ for argument \"namespace\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/__init__.py:30: error: Module 'ogr.services.github'\ - \ has no attribute 'GithubService'\r\nogr/__init__.py:31: error: Module\ - \ 'ogr.services.pagure' has no attribute 'PagureService'\r\nogr/__init__.py:32:\ - \ error: Module 'ogr.services.gitlab' has no attribute 'GitlabService'\r\ - \nFound 439 errors in 30 files (checked 38 source files)\r\n```\r\n\ + \ type \"str\")\r\nogr/__init__.py:35: error: Module 'ogr.services.github'\ + \ has no attribute 'GithubService'\r\nogr/__init__.py:36: error: Module\ + \ 'ogr.services.gitlab' has no attribute 'GitlabService'\r\nogr/__init__.py:37:\ + \ error: Module 'ogr.services.pagure' has no attribute 'PagureService'\r\ + \nFound 512 errors in 34 files (checked 43 source files)\r\n```\r\n\
" closed_at: null closed_by: null @@ -25584,6 +25325,13 @@ requests.sessions: name: EPIC node_id: MDU6TGFiZWwxNDMyNzc5MjA3 url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 7057ff default: false description: Good for newcomers @@ -25607,10 +25355,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Strict mypy - updated_at: '2020-02-14T08:32:52Z' + updated_at: '2020-09-30T15:07:16Z' url: https://api.github.com/repos/packit/ogr/issues/251 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -25629,48 +25377,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.121765 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:48 GMT + ETag: W/"da98d9fd1add92eecdd31050b924ef34050bc5ae666fde88c2252909f720ae62" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D98C:1917C57:6075DC14 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4915' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '85' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.39496445655822754 + latency: 0.09814858436584473 module_call_list: - unittest.case - requre.online_replacing @@ -25705,54 +25448,88 @@ requests.sessions: \ cannot be easily fixed\r\n\r\nThis does not need to be done in one\ \ PR. Also, one fixed error can be useful to us.\r\n\r\n
\r\n\ 'mypy ogr --strict' output\r\n\r\n```\r\n$ mypy ogr\ - \ --strict\r\nogr/deprecation.py:23: error: Cannot find module named\ - \ 'deprecated'\r\nogr/deprecation.py:26: error: Function is missing\ - \ a type annotation\r\nogr/abstract.py:73: error: Function is missing\ - \ a return type annotation\r\nogr/abstract.py:94: error: Incompatible\ + \ --strict\r\nogr/deprecation.py:23: error: Cannot find implementation\ + \ or library stub for module named 'deprecated'\r\nogr/deprecation.py:26:\ + \ error: Function is missing a type annotation\r\nogr/services/github/auth_providers/abstract.py:6:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/auth_providers/abstract.py:6: note:\ + \ See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports\r\ + \nogr/services/github/auth_providers/abstract.py:32: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/parsing.py:99:\ + \ error: Function is missing a return type annotation\r\nogr/parsing.py:155:\ + \ error: Argument 1 to \"RepoUrl\" has incompatible type \"None\"; expected\ + \ \"str\"\r\nogr/services/github/auth_providers/token.py:6: error: Cannot\ + \ find implementation or library stub for module named 'github'\r\n\ + ogr/services/github/auth_providers/token.py:12: error: Function is missing\ + \ a type annotation for one or more arguments\r\nogr/services/github/auth_providers/token.py:35:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/auth_providers/token.py:35: error: Incompatible\ + \ default for argument \"token\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:7:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/auth_providers/github_app.py:26: error:\ + \ Returning Any from function declared to return \"bool\"\r\nogr/services/github/auth_providers/github_app.py:61:\ + \ error: Incompatible return value type (got \"None\", expected \"str\"\ + )\r\nogr/services/github/auth_providers/github_app.py:76: error: Incompatible\ + \ return value type (got \"None\", expected \"str\")\r\nogr/services/github/auth_providers/github_app.py:87:\ + \ error: unused 'type: ignore' comment\r\nogr/services/github/auth_providers/github_app.py:94:\ + \ error: unused 'type: ignore' comment\r\nogr/services/github/auth_providers/github_app.py:95:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/auth_providers/github_app.py:98: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/github/auth_providers/github_app.py:99:\ + \ error: Incompatible default for argument \"github_app_id\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:100:\ + \ error: Incompatible default for argument \"github_app_private_key\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:101:\ + \ error: Incompatible default for argument \"github_app_private_key_path\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/abstract.py:34:\ + \ error: Module 'functools' has no attribute 'cached_property'\r\nogr/abstract.py:82:\ + \ error: Function is missing a return type annotation\r\nogr/abstract.py:103:\ + \ error: Incompatible return value type (got \"Optional[datetime]\"\ + , expected \"datetime\")\r\nogr/abstract.py:107: error: Incompatible\ \ return value type (got \"Optional[datetime]\", expected \"datetime\"\ - )\r\nogr/abstract.py:98: error: Incompatible return value type (got\ - \ \"Optional[datetime]\", expected \"datetime\")\r\nogr/abstract.py:104:\ - \ error: Incompatible return value type (got \"Optional[Any]\", expected\ - \ \"Issue\")\r\nogr/abstract.py:113: error: Incompatible return value\ - \ type (got \"Optional[Any]\", expected \"PullRequest\")\r\nogr/abstract.py:159:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/abstract.py:227:\ - \ error: Incompatible default for argument \"filter_regex\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:227:\ - \ error: Incompatible default for argument \"author\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/abstract.py:282: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/abstract.py:282: error: Untyped decorator makes function \"__init__\"\ - \ untyped\r\nogr/abstract.py:373: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1079: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1099: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1248: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/utils.py:28: error: Cannot find module named 'git'\r\n\ - ogr/read_only.py:52: error: Missing type parameters for generic type\ - \ \"Callable\"\r\nogr/read_only.py:66: error: Function is missing a\ - \ type annotation\r\nogr/read_only.py:68: error: Function is missing\ - \ a type annotation\r\nogr/read_only.py:157: error: Call to untyped\ - \ function \"deprecate_and_set_removal\" in typed context\r\nogr/read_only.py:157:\ - \ error: Untyped decorator makes function \"pr_create\" untyped\r\n\ - ogr/read_only.py:169: error: Incompatible default for argument \"fork_username\"\ - \ (default has type \"None\", argument has type \"str\")\r\nogr/read_only.py:187:\ + )\r\nogr/abstract.py:113: error: Incompatible return value type (got\ + \ \"Optional[Any]\", expected \"Issue\")\r\nogr/abstract.py:122: error:\ + \ Incompatible return value type (got \"Optional[Any]\", expected \"\ + PullRequest\")\r\nogr/abstract.py:172: error: Missing type parameters\ + \ for generic type \"List\"\r\nogr/abstract.py:244: error: Incompatible\ + \ default for argument \"filter_regex\" (default has type \"None\",\ + \ argument has type \"str\")\r\nogr/abstract.py:244: error: Incompatible\ + \ default for argument \"author\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/abstract.py:299: error: Call to untyped function\ + \ \"deprecate_and_set_removal\" in typed context\r\nogr/abstract.py:299:\ + \ error: Untyped decorator makes function \"__init__\" untyped\r\nogr/abstract.py:420:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/read_only.py:208:\ - \ error: Incompatible default for argument \"commit\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/read_only.py:209: error:\ - \ Incompatible default for argument \"filename\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/read_only.py:210: error: Incompatible\ - \ default for argument \"row\" (default has type \"None\", argument\ - \ has type \"int\")\r\nogr/read_only.py:227: error: Returning Any from\ - \ function declared to return \"PullRequest\"\r\nogr/read_only.py:233:\ - \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/read_only.py:252: error: Returning Any from function declared\ - \ to return \"GitProject\"\r\nogr/factory.py:33: error: Function is\ - \ missing a return type annotation\r\nogr/factory.py:33: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/factory.py:57:\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:751:\ + \ error: Untyped decorator makes function \"hostname\" untyped\r\nogr/abstract.py:1204:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:1224:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:1373:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/read_only.py:52:\ + \ error: Missing type parameters for generic type \"Callable\"\r\nogr/read_only.py:66:\ + \ error: Function is missing a type annotation\r\nogr/read_only.py:68:\ + \ error: Function is missing a type annotation\r\nogr/read_only.py:165:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/read_only.py:165: error: Untyped decorator makes function\ + \ \"pr_create\" untyped\r\nogr/read_only.py:177: error: Incompatible\ + \ default for argument \"fork_username\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/read_only.py:195: error: Incompatible\ + \ default for argument \"fork_username\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/read_only.py:215: error: Incompatible\ + \ default for argument \"commit\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/read_only.py:216: error: Incompatible default\ + \ for argument \"filename\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/read_only.py:217: error: Incompatible default\ + \ for argument \"row\" (default has type \"None\", argument has type\ + \ \"int\")\r\nogr/read_only.py:233: error: Returning Any from function\ + \ declared to return \"PullRequest\"\r\nogr/read_only.py:239: error:\ + \ Returning Any from function declared to return \"PullRequest\"\r\n\ + ogr/read_only.py:257: error: Returning Any from function declared to\ + \ return \"GitProject\"\r\nogr/factory.py:33: error: Function is missing\ + \ a return type annotation\r\nogr/factory.py:33: error: Function is\ + \ missing a type annotation for one or more arguments\r\nogr/factory.py:57:\ \ error: Function is missing a type annotation\r\nogr/factory.py:59:\ \ error: Function is missing a return type annotation\r\nogr/factory.py:65:\ \ error: Call to untyped function \"decorator_cover\" in typed context\r\ @@ -25762,338 +25539,370 @@ requests.sessions: , argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:71:\ \ error: Incompatible default for argument \"custom_instances\" (default\ \ has type \"None\", argument has type \"Iterable[GitService]\")\r\n\ - ogr/factory.py:97: error: Item \"None\" of \"Optional[RepoUrl]\" has\ - \ no attribute \"get_instance_url\"\r\nogr/factory.py:103: error: Incompatible\ - \ default for argument \"service_mapping_update\" (default has type\ - \ \"None\", argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:125:\ - \ error: Incompatible default for argument \"service_mapping_update\"\ - \ (default has type \"None\", argument has type \"Dict[str, Type[GitService]]\"\ - )\r\nogr/factory.py:142: error: Implicit generic \"Any\". Use \"typing.Dict\"\ - \ and specify generic parameters\r\nogr/services/gitlab/comments.py:26:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/comments.py:41:\ + ogr/factory.py:86: error: Invalid index type \"Optional[str]\" for \"\ + Dict[str, Type[GitService]]\"; expected type \"str\"\r\nogr/factory.py:95:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + hostname\"\r\nogr/factory.py:105: error: Item \"None\" of \"Optional[RepoUrl]\"\ + \ has no attribute \"get_instance_url\"\r\nogr/factory.py:110: error:\ + \ Incompatible default for argument \"service_mapping_update\" (default\ + \ has type \"None\", argument has type \"Dict[str, Type[GitService]]\"\ + )\r\nogr/factory.py:132: error: Incompatible default for argument \"\ + service_mapping_update\" (default has type \"None\", argument has type\ + \ \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:149: error: Implicit\ + \ generic \"Any\". Use \"typing.Dict\" and specify generic parameters\r\ + \nogr/services/gitlab/comments.py:26: error: Cannot find implementation\ + \ or library stub for module named 'gitlab.v4.objects'\r\nogr/services/gitlab/comments.py:41:\ \ error: Returning Any from function declared to return \"str\"\r\n\ ogr/services/gitlab/comments.py:50: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/github/comments.py:25:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/comments.py:25:\ - \ note: See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports\r\ - \nogr/services/github/comments.py:38: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/comments.py:46:\ + \ declared to return \"datetime\"\r\nogr/services/github/comments.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.IssueComment'\r\nogr/services/github/comments.py:27: error:\ + \ Cannot find implementation or library stub for module named 'github.PullRequestComment'\r\ + \nogr/services/github/comments.py:42: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/comments.py:50:\ \ error: Returning Any from function declared to return \"datetime\"\ - \r\nogr/services/base.py:64: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:64: error: Untyped decorator\ - \ makes function \"get_pr_comments\" untyped\r\nogr/services/base.py:65:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/base.py:70: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/base.py:70: error: Incompatible default for argument\ + \r\nogr/services/github/auth_providers/tokman.py:7: error: Cannot find\ + \ implementation or library stub for module named 'github'\r\nogr/services/github/auth_providers/tokman.py:39:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/auth_providers/tokman.py:42: error: Function is\ + \ missing a type annotation for one or more arguments\r\nogr/services/github/auth_providers/tokman.py:42:\ + \ error: Incompatible default for argument \"tokman_instance_url\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:46:\ + \ error: Module 'functools' has no attribute 'cached_property'\r\nogr/services/base.py:55:\ + \ error: Untyped decorator makes function \"hostname\" untyped\r\nogr/services/base.py:60:\ + \ error: Argument \"potential_url\" to \"parse_git_repo\" has incompatible\ + \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/base.py:81:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:81: error: Untyped decorator makes\ + \ function \"get_pr_comments\" untyped\r\nogr/services/base.py:86: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/base.py:87: error: Incompatible default for argument \"\ + filter_regex\" (default has type \"None\", argument has type \"str\"\ + )\r\nogr/services/base.py:87: error: Incompatible default for argument\ \ \"author\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/base.py:83: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:83: error: Untyped decorator\ - \ makes function \"search_in_pr\" untyped\r\nogr/services/base.py:106:\ - \ error: Untyped decorator makes function \"pr_close\" untyped\r\nogr/services/base.py:107:\ + \nogr/services/base.py:100: error: Call to untyped function \"deprecate_and_set_removal\"\ + \ in typed context\r\nogr/services/base.py:100: error: Untyped decorator\ + \ makes function \"search_in_pr\" untyped\r\nogr/services/base.py:123:\ + \ error: Untyped decorator makes function \"pr_close\" untyped\r\nogr/services/base.py:124:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:107: error: Untyped decorator makes\ - \ function \"pr_close\" untyped\r\nogr/services/base.py:115: error:\ - \ Untyped decorator makes function \"pr_merge\" untyped\r\nogr/services/base.py:116:\ + \ context\r\nogr/services/base.py:124: error: Untyped decorator makes\ + \ function \"pr_close\" untyped\r\nogr/services/base.py:132: error:\ + \ Untyped decorator makes function \"pr_merge\" untyped\r\nogr/services/base.py:133:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:116: error: Untyped decorator makes\ - \ function \"pr_merge\" untyped\r\nogr/services/base.py:124: error:\ + \ context\r\nogr/services/base.py:133: error: Untyped decorator makes\ + \ function \"pr_merge\" untyped\r\nogr/services/base.py:141: error:\ \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:124: error: Untyped decorator makes function\ - \ \"get_pr_labels\" untyped\r\nogr/services/base.py:132: error: Call\ + \nogr/services/base.py:141: error: Untyped decorator makes function\ + \ \"get_pr_labels\" untyped\r\nogr/services/base.py:149: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:132: error: Untyped decorator makes function\ - \ \"add_pr_labels\" untyped\r\nogr/services/base.py:140: error: Call\ + \nogr/services/base.py:149: error: Untyped decorator makes function\ + \ \"add_pr_labels\" untyped\r\nogr/services/base.py:157: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:140: error: Untyped decorator makes function\ - \ \"get_pr_info\" untyped\r\nogr/services/base.py:148: error: Call to\ + \nogr/services/base.py:157: error: Untyped decorator makes function\ + \ \"get_pr_info\" untyped\r\nogr/services/base.py:165: error: Call to\ \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:148: error: Untyped decorator makes function \"\ - update_pr_info\" untyped\r\nogr/services/base.py:158: error: Call to\ + ogr/services/base.py:165: error: Untyped decorator makes function \"\ + update_pr_info\" untyped\r\nogr/services/base.py:175: error: Call to\ \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:158: error: Untyped decorator makes function \"\ - get_all_pr_commits\" untyped\r\nogr/services/base.py:166: error: Call\ + ogr/services/base.py:175: error: Untyped decorator makes function \"\ + get_all_pr_commits\" untyped\r\nogr/services/base.py:183: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:166: error: Untyped decorator makes function\ - \ \"_get_all_pr_comments\" untyped\r\nogr/services/base.py:174: error:\ - \ Untyped decorator makes function \"pr_comment\" untyped\r\nogr/services/base.py:178:\ + \nogr/services/base.py:183: error: Untyped decorator makes function\ + \ \"_get_all_pr_comments\" untyped\r\nogr/services/base.py:191: error:\ + \ Untyped decorator makes function \"pr_comment\" untyped\r\nogr/services/base.py:195:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:178: error: Untyped decorator makes\ - \ function \"pr_comment\" untyped\r\nogr/services/base.py:187: error:\ + \ context\r\nogr/services/base.py:195: error: Untyped decorator makes\ + \ function \"pr_comment\" untyped\r\nogr/services/base.py:204: error:\ \ Incompatible default for argument \"commit\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/services/base.py:188: error:\ + None\", argument has type \"str\")\r\nogr/services/base.py:205: error:\ \ Incompatible default for argument \"filename\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/services/base.py:189: error:\ + None\", argument has type \"str\")\r\nogr/services/base.py:206: error:\ \ Incompatible default for argument \"row\" (default has type \"None\"\ - , argument has type \"int\")\r\nogr/services/base.py:193: error: Call\ + , argument has type \"int\")\r\nogr/services/base.py:210: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:193: error: Untyped decorator makes function\ - \ \"get_issue_comments\" untyped\r\nogr/services/base.py:194: error:\ + \nogr/services/base.py:210: error: Untyped decorator makes function\ + \ \"get_issue_comments\" untyped\r\nogr/services/base.py:215: error:\ \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/base.py:201: error: Incompatible default for argument \"\ + ogr/services/base.py:218: error: Incompatible default for argument \"\ filter_regex\" (default has type \"None\", argument has type \"str\"\ - )\r\nogr/services/base.py:203: error: Incompatible default for argument\ + )\r\nogr/services/base.py:220: error: Incompatible default for argument\ \ \"author\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/base.py:207: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:207: error: Untyped decorator\ - \ makes function \"pr_create\" untyped\r\nogr/services/base.py:218:\ + \nogr/services/base.py:224: error: Call to untyped function \"deprecate_and_set_removal\"\ + \ in typed context\r\nogr/services/base.py:224: error: Untyped decorator\ + \ makes function \"pr_create\" untyped\r\nogr/services/base.py:235:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:228:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:245:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:228: error: Untyped decorator makes\ - \ function \"can_close_issue\" untyped\r\nogr/services/base.py:236:\ + \ context\r\nogr/services/base.py:245: error: Untyped decorator makes\ + \ function \"can_close_issue\" untyped\r\nogr/services/base.py:253:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:236: error: Untyped decorator makes\ - \ function \"get_issue_info\" untyped\r\nogr/services/base.py:244: error:\ + \ context\r\nogr/services/base.py:253: error: Untyped decorator makes\ + \ function \"get_issue_info\" untyped\r\nogr/services/base.py:261: error:\ \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:244: error: Untyped decorator makes function\ - \ \"_get_all_issue_comments\" untyped\r\nogr/services/base.py:252: error:\ + \nogr/services/base.py:261: error: Untyped decorator makes function\ + \ \"_get_all_issue_comments\" untyped\r\nogr/services/base.py:269: error:\ \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:252: error: Untyped decorator makes function\ - \ \"issue_comment\" untyped\r\nogr/services/base.py:260: error: Call\ + \nogr/services/base.py:269: error: Untyped decorator makes function\ + \ \"issue_comment\" untyped\r\nogr/services/base.py:277: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:260: error: Untyped decorator makes function\ - \ \"issue_close\" untyped\r\nogr/services/base.py:268: error: Call to\ + \nogr/services/base.py:277: error: Untyped decorator makes function\ + \ \"issue_close\" untyped\r\nogr/services/base.py:285: error: Call to\ \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:268: error: Untyped decorator makes function \"\ - get_issue_labels\" untyped\r\nogr/services/base.py:276: error: Call\ + ogr/services/base.py:285: error: Untyped decorator makes function \"\ + get_issue_labels\" untyped\r\nogr/services/base.py:293: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:276: error: Untyped decorator makes function\ - \ \"add_issue_labels\" untyped\r\nogr/services/base.py:330: error: Function\ - \ is missing a return type annotation\r\nogr/services/base.py:330: error:\ + \nogr/services/base.py:293: error: Untyped decorator makes function\ + \ \"add_issue_labels\" untyped\r\nogr/services/base.py:367: error: Function\ + \ is missing a return type annotation\r\nogr/services/base.py:367: error:\ \ Argument 1 of \"get_comments\" is incompatible with supertype \"PullRequest\"\ - ; supertype defines the argument type as \"Optional[str]\"\r\nogr/services/base.py:330:\ + ; supertype defines the argument type as \"Optional[str]\"\r\nogr/services/base.py:367:\ \ error: Argument 3 of \"get_comments\" is incompatible with supertype\ \ \"PullRequest\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/base.py:331: error: Incompatible default for argument\ + \r\nogr/services/base.py:368: error: Incompatible default for argument\ \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/base.py:331: error: Incompatible default for\ + str\")\r\nogr/services/base.py:368: error: Incompatible default for\ \ argument \"author\" (default has type \"None\", argument has type\ - \ \"str\")\r\nogr/services/base.py:336: error: Function is missing a\ - \ return type annotation\r\nogr/services/base.py:360: error: Incompatible\ + \ \"str\")\r\nogr/services/base.py:373: error: Function is missing a\ + \ return type annotation\r\nogr/services/base.py:397: error: Incompatible\ \ default for argument \"filter_regex\" (default has type \"None\",\ - \ argument has type \"str\")\r\nogr/services/base.py:360: error: Incompatible\ + \ argument has type \"str\")\r\nogr/services/base.py:397: error: Incompatible\ \ default for argument \"author\" (default has type \"None\", argument\ \ has type \"str\")\r\nogr/services/pagure/release.py:28: error: Name\ \ 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:37:\ \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:42:\ \ error: Function is missing a return type annotation\r\nogr/services/pagure/release.py:46:\ \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:38:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:40:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/pull_request.py:44:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:44:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/pull_request.py:51:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:39:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:41:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/pull_request.py:45:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:45:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/pull_request.py:52:\ \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:52: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:60:\ + ogr/services/pagure/pull_request.py:53: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:61:\ \ error: Returning Any from function declared to return \"int\"\r\n\ - ogr/services/pagure/pull_request.py:64: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:80:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:81: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:89:\ + ogr/services/pagure/pull_request.py:65: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:72:\ + \ error: List item 0 has incompatible type \"Optional[str]\"; expected\ + \ \"str\"\r\nogr/services/pagure/pull_request.py:81: error: Call to\ + \ untyped function \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:82:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/pull_request.py:93: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:97:\ + ogr/services/pagure/pull_request.py:90: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:94:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/pull_request.py:106: error: Function is missing\ - \ a type annotation for one or more arguments\r\nogr/services/pagure/pull_request.py:106:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/pull_request.py:107: error: Returning\ - \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/pull_request.py:113:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:118:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/pull_request.py:139:\ + ogr/services/pagure/pull_request.py:98: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:117:\ + \ error: Returning Any from function declared to return \"bytes\"\r\n\ + ogr/services/pagure/pull_request.py:121: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:124:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:145:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/pull_request.py:145: error: Implicit generic \"\ + Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/pull_request.py:146:\ + \ error: Returning Any from function declared to return \"Dict[Any,\ + \ Any]\"\r\nogr/services/pagure/pull_request.py:152: error: Name 'ogr_pagure.PagureProject'\ + \ is not defined\r\nogr/services/pagure/pull_request.py:157: error:\ + \ Incompatible default for argument \"fork_username\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/pull_request.py:178:\ \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/services/pagure/pull_request.py:139: error: Call to untyped\ - \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:142:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:144:\ + \r\nogr/services/pagure/pull_request.py:178: error: Call to untyped\ + \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:181:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:183:\ \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/services/pagure/pull_request.py:144: error: Call to untyped\ - \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:147:\ + \r\nogr/services/pagure/pull_request.py:183: error: Call to untyped\ + \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:186:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/pull_request.py:148: error: Name 'ogr_pagure.PagureProject'\ - \ is not defined\r\nogr/services/pagure/pull_request.py:160: error:\ + \nogr/services/pagure/pull_request.py:187: error: Name 'ogr_pagure.PagureProject'\ + \ is not defined\r\nogr/services/pagure/pull_request.py:199: error:\ \ Call to untyped function \"PagurePullRequest\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:181: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:228:\ + ogr/services/pagure/pull_request.py:219: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:266:\ \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:229: error: Returning Any from function\ - \ declared to return \"List[CommitFlag]\"\r\nogr/services/pagure/issue.py:33:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:35:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/issue.py:39:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/issue.py:39:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/issue.py:46:\ + ogr/services/pagure/pull_request.py:277: error: Implicit generic \"\ + Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/issue.py:34:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:36:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/issue.py:40:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/issue.py:40:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/issue.py:47:\ \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/issue.py:47: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:51: error:\ - \ Returning Any from function declared to return \"int\"\r\nogr/services/pagure/issue.py:55:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/issue.py:60: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:66: error:\ - \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:67:\ + ogr/services/pagure/issue.py:48: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/issue.py:56: error:\ + \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:57:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/pagure/issue.py:61: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/pagure/issue.py:65: error:\ + \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:70:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/issue.py:71: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:79: error:\ - \ Returning Any from function declared to return \"List[str]\"\r\nogr/services/pagure/issue.py:86:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:97:\ + ogr/services/pagure/issue.py:76: error: Call to untyped function \"\ + __update\" in typed context\r\nogr/services/pagure/issue.py:77: error:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/pagure/issue.py:85:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/issue.py:93: error: Returning Any from function\ + \ declared to return \"List[str]\"\r\nogr/services/pagure/issue.py:118:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:132:\ \ error: Returning Any from function declared to return \"Issue\"\r\n\ - ogr/services/pagure/issue.py:97: error: Call to untyped function \"\ - PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:100:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:102:\ + ogr/services/pagure/issue.py:132: error: Call to untyped function \"\ + PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:135:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:137:\ \ error: Returning Any from function declared to return \"Issue\"\r\n\ - ogr/services/pagure/issue.py:102: error: Call to untyped function \"\ - PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:106:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:118:\ + ogr/services/pagure/issue.py:137: error: Call to untyped function \"\ + PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:141:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:168:\ \ error: Call to untyped function \"PagureIssue\" in typed context\r\ - \nogr/services/pagure/issue.py:121: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/flag.py:41: error:\ - \ Function is missing a return type annotation\r\nogr/services/pagure/flag.py:41:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/flag.py:42:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:43:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:44:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:45:\ + \nogr/services/pagure/issue.py:171: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/flag.py:44: error:\ + \ Function is missing a return type annotation\r\nogr/services/pagure/flag.py:44:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/flag.py:45:\ \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:46:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:47:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:48:\ \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:49:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:58:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:64:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:52:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:61:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:67:\ \ error: Incompatible default for argument \"percent\" (default has\ - \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/flag.py:66:\ + \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/flag.py:69:\ \ error: Incompatible default for argument \"uid\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:47:\ - \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:53:\ - \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:54:\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/flag.py:97:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:103:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/project.py:58:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:64:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:65:\ \ error: Incompatible default for argument \"username\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:57:\ + \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:68:\ \ error: Argument 3 to \"__init__\" of \"GitProject\" has incompatible\ - \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/pagure/project.py:64:\ + \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/pagure/project.py:75:\ \ error: Incompatible types in assignment (expression has type \"Optional[str]\"\ - , variable has type \"str\")\r\nogr/services/pagure/project.py:88: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/pagure/project.py:93: error: Incompatible default for argument\ - \ \"method\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/pagure/project.py:94: error: Implicit generic \"Any\"\ - . Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/project.py:94:\ + , variable has type \"str\")\r\nogr/services/pagure/project.py:102:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/project.py:107: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/project.py:108: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/project.py:108:\ \ error: Incompatible default for argument \"params\" (default has type\ - \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:95:\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:109:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:95: error: Incompatible\ + \ parameters\r\nogr/services/pagure/project.py:109: error: Incompatible\ \ default for argument \"data\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:96:\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:110:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:108: error: Call to untyped\ - \ function \"_get_project_url\" in typed context\r\nogr/services/pagure/project.py:117:\ + \ parameters\r\nogr/services/pagure/project.py:122: error: Call to untyped\ + \ function \"_get_project_url\" in typed context\r\nogr/services/pagure/project.py:128:\ \ error: Returning Any from function declared to return \"Dict[Any,\ - \ Any]\"\r\nogr/services/pagure/project.py:119: error: Function is missing\ - \ a type annotation for one or more arguments\r\nogr/services/pagure/project.py:124:\ + \ Any]\"\r\nogr/services/pagure/project.py:132: error: Function is missing\ + \ a type annotation for one or more arguments\r\nogr/services/pagure/project.py:137:\ \ error: Incompatible default for argument \"method\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:125:\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:138:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:125: error: Incompatible\ + \ parameters\r\nogr/services/pagure/project.py:138: error: Incompatible\ \ default for argument \"params\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:126:\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:139:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:126: error: Incompatible\ + \ parameters\r\nogr/services/pagure/project.py:139: error: Incompatible\ \ default for argument \"data\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:139:\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:152:\ \ error: Call to untyped function \"_get_project_url\" in typed context\r\ - \nogr/services/pagure/project.py:148: error: Returning Any from function\ - \ declared to return \"RequestResponse\"\r\nogr/services/pagure/project.py:150:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/project.py:151:\ + \nogr/services/pagure/project.py:158: error: Returning Any from function\ + \ declared to return \"RequestResponse\"\r\nogr/services/pagure/project.py:162:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/project.py:163:\ \ error: Need type annotation for 'additional_parts' (hint: \"additional_parts:\ - \ List[] = ...\")\r\nogr/services/pagure/project.py:163: error:\ - \ Function is missing a return type annotation\r\nogr/services/pagure/project.py:169:\ + \ List[] = ...\")\r\nogr/services/pagure/project.py:174: error:\ + \ Function is missing a return type annotation\r\nogr/services/pagure/project.py:179:\ \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/pagure/project.py:172: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/project.py:172:\ + \r\nogr/services/pagure/project.py:182: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/project.py:182:\ \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:175: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:176:\ + \nogr/services/pagure/project.py:185: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:186:\ \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/pagure/project.py:180: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:189:\ + \r\nogr/services/pagure/project.py:190: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:199:\ \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:195: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/pagure/project.py:216:\ + \nogr/services/pagure/project.py:205: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/project.py:208:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/project.py:208:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/project.py:236:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/project.py:226: error: Untyped decorator makes\ - \ function \"create_pr\" untyped\r\nogr/services/pagure/project.py:233:\ + \nogr/services/pagure/project.py:246: error: Untyped decorator makes\ + \ function \"create_pr\" untyped\r\nogr/services/pagure/project.py:253:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:243:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:263:\ \ error: Untyped decorator makes function \"fork_create\" untyped\r\n\ - ogr/services/pagure/project.py:275: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:281:\ + ogr/services/pagure/project.py:295: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:301:\ \ error: Returning Any from function declared to return \"Optional[PagureProject]\"\ - \r\nogr/services/pagure/project.py:290: error: Function is missing a\ - \ return type annotation\r\nogr/services/pagure/project.py:301: error:\ - \ Call to untyped function \"exists\" in typed context\r\nogr/services/pagure/project.py:301:\ + \r\nogr/services/pagure/project.py:310: error: Function is missing a\ + \ return type annotation\r\nogr/services/pagure/project.py:342: error:\ + \ Call to untyped function \"exists\" in typed context\r\nogr/services/pagure/project.py:342:\ \ error: Item \"None\" of \"Optional[PagureProject]\" has no attribute\ - \ \"exists\"\r\nogr/services/pagure/project.py:304: error: Call to untyped\ - \ function \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:318:\ + \ \"exists\"\r\nogr/services/pagure/project.py:345: error: Call to untyped\ + \ function \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:359:\ \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:325: error: Returning Any from function\ - \ declared to return \"Dict[str, str]\"\r\nogr/services/pagure/project.py:335:\ + \nogr/services/pagure/project.py:366: error: Returning Any from function\ + \ declared to return \"Dict[str, str]\"\r\nogr/services/pagure/project.py:378:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/project.py:388:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/project.py:353: error: Argument 3 of \"commit_comment\"\ + \nogr/services/pagure/project.py:420: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/project.py:438:\ + \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ + \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/pagure/project.py:438: error: Argument 4 of \"commit_comment\"\ \ is incompatible with supertype \"GitProject\"; supertype defines the\ - \ argument type as \"Optional[str]\"\r\nogr/services/pagure/project.py:353:\ - \ error: Argument 4 of \"commit_comment\" is incompatible with supertype\ - \ \"GitProject\"; supertype defines the argument type as \"Optional[int]\"\ - \r\nogr/services/pagure/project.py:354: error: Incompatible default\ - \ for argument \"filename\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/pagure/project.py:354: error: Incompatible\ - \ default for argument \"row\" (default has type \"None\", argument\ - \ has type \"int\")\r\nogr/services/pagure/project.py:358: error: Untyped\ - \ decorator makes function \"set_commit_status\" untyped\r\nogr/services/pagure/project.py:366:\ - \ error: Incompatible default for argument \"percent\" (default has\ - \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/project.py:367:\ - \ error: Incompatible default for argument \"uid\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:440:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/user.py:31: error: Name 'ogr_pagure.PagureService'\ - \ is not defined\r\nogr/services/pagure/user.py:33: error: Name 'ogr_pagure.PagureService'\ - \ is not defined\r\nogr/services/pagure/user.py:43: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/pagure/service.py:42:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:44: error: Incompatible default for\ - \ argument \"token\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/pagure/service.py:81: error: Returning Any from\ - \ function declared to return \"bool\"\r\nogr/services/pagure/service.py:92:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:103: error: Item \"None\" of \"Optional[RepoUrl]\"\ - \ has no attribute \"repo\"\r\nogr/services/pagure/service.py:104: error:\ - \ Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"namespace\"\ - \r\nogr/services/pagure/service.py:105: error: Item \"None\" of \"Optional[RepoUrl]\"\ - \ has no attribute \"is_fork\"\r\nogr/services/pagure/service.py:106:\ + \ argument type as \"Optional[int]\"\r\nogr/services/pagure/project.py:439:\ + \ error: Incompatible default for argument \"filename\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:439:\ + \ error: Incompatible default for argument \"row\" (default has type\ + \ \"None\", argument has type \"int\")\r\nogr/services/pagure/project.py:443:\ + \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ + \nogr/services/pagure/project.py:451: error: Incompatible default for\ + \ argument \"percent\" (default has type \"None\", argument has type\ + \ \"int\")\r\nogr/services/pagure/project.py:452: error: Incompatible\ + \ default for argument \"uid\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/pagure/project.py:520: error: Call\ + \ to untyped function \"get_project_info\" in typed context\r\nogr/services/pagure/user.py:31:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/user.py:33:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/user.py:43:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/service.py:44: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/service.py:46:\ + \ error: Incompatible default for argument \"token\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/service.py:88:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/pagure/service.py:99: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/service.py:110:\ \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ - username\"\r\nogr/services/pagure/service.py:114: error: Function is\ - \ missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:115:\ - \ error: Incompatible default for argument \"method\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/service.py:115:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/service.py:115: error: Incompatible\ - \ default for argument \"params\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:116:\ + repo\"\r\nogr/services/pagure/service.py:111: error: Item \"None\" of\ + \ \"Optional[RepoUrl]\" has no attribute \"namespace\"\r\nogr/services/pagure/service.py:112:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + is_fork\"\r\nogr/services/pagure/service.py:113: error: Item \"None\"\ + \ of \"Optional[RepoUrl]\" has no attribute \"username\"\r\nogr/services/pagure/service.py:121:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/service.py:122: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/service.py:122: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:122:\ + \ error: Incompatible default for argument \"params\" (default has type\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:123:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/service.py:149: error: Returning\ - \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/service.py:151:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:151:\ + \ parameters\r\nogr/services/pagure/service.py:160: error: Returning\ + \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/service.py:162:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:162:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:152: error: Incompatible default for\ + \nogr/services/pagure/service.py:163: error: Incompatible default for\ \ argument \"method\" (default has type \"None\", argument has type\ - \ \"str\")\r\nogr/services/pagure/service.py:152: error: Implicit generic\ - \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:152:\ + \ \"str\")\r\nogr/services/pagure/service.py:163: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:163:\ \ error: Incompatible default for argument \"params\" (default has type\ - \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:165:\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:176:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:193: error: Function is missing a return\ - \ type annotation\r\nogr/services/pagure/service.py:196: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:209:\ + \nogr/services/pagure/service.py:204: error: Function is missing a return\ + \ type annotation\r\nogr/services/pagure/service.py:207: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:220:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/service.py:219: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/service.py:221:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:230:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:272:\ + ogr/services/pagure/service.py:230: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/service.py:232:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:241:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:283:\ \ error: Argument 2 to \"__handle_project_create_fail\" of \"PagureService\"\ \ has incompatible type \"Optional[str]\"; expected \"str\"\r\nogr/services/gitlab/user.py:28:\ \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:30:\ @@ -26108,133 +25917,161 @@ requests.sessions: \ is not defined\r\nogr/services/gitlab/release.py:46: error: Function\ \ is missing a return type annotation\r\nogr/services/gitlab/release.py:50:\ \ error: Function is missing a return type annotation\r\nogr/services/gitlab/pull_request.py:26:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/pull_request.py:36:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:40:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab.v4.objects'\r\nogr/services/gitlab/pull_request.py:37: error:\ + \ Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:38:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:42:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:49: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/gitlab/pull_request.py:61:\ + ogr/services/gitlab/pull_request.py:51: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/gitlab/pull_request.py:63:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:65: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:74:\ + ogr/services/gitlab/pull_request.py:67: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:76:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:78: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:82:\ + ogr/services/gitlab/pull_request.py:80: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:84:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:86: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/gitlab/pull_request.py:90:\ + ogr/services/gitlab/pull_request.py:88: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/gitlab/pull_request.py:92:\ \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/gitlab/pull_request.py:97: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/pull_request.py:102: error:\ - \ Incompatible default for argument \"fork_username\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/gitlab/pull_request.py:115:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:121:\ + \r\nogr/services/gitlab/pull_request.py:100: error: Returning Any from\ + \ function declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:103:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:117:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:122:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/pull_request.py:169:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:170:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:190:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:196:\ \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:26:\ - \ error: Cannot find module named 'gitlab'\r\nogr/services/gitlab/issue.py:27:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/issue.py:41:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/issue.py:27: error: Cannot find implementation\ + \ or library stub for module named 'gitlab.v4.objects'\r\nogr/services/gitlab/issue.py:41:\ \ error: Returning Any from function declared to return \"str\"\r\n\ ogr/services/gitlab/issue.py:50: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/gitlab/issue.py:62: error:\ - \ Returning Any from function declared to return \"str\"\r\nogr/services/gitlab/issue.py:66:\ + \ declared to return \"int\"\r\nogr/services/gitlab/issue.py:54: error:\ + \ Returning Any from function declared to return \"bool\"\r\nogr/services/gitlab/issue.py:66:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/issue.py:75: error: Returning Any from function\ + ogr/services/gitlab/issue.py:70: error: Returning Any from function\ \ declared to return \"str\"\r\nogr/services/gitlab/issue.py:79: error:\ - \ Returning Any from function declared to return \"datetime\"\r\nogr/services/gitlab/issue.py:82:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/services/gitlab/issue.py:83:\ - \ error: Returning Any from function declared to return \"List[Any]\"\ - \r\nogr/services/gitlab/issue.py:89: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/issue.py:94: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/issue.py:102: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/flag.py:27: error: Cannot find\ - \ module named 'gitlab'\r\nogr/services/gitlab/flag.py:52: error: Function\ - \ is missing a return type annotation\r\nogr/services/gitlab/flag.py:52:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/gitlab/flag.py:53:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/gitlab/issue.py:83:\ + \ error: Returning Any from function declared to return \"datetime\"\ + \r\nogr/services/gitlab/issue.py:86: error: Missing type parameters\ + \ for generic type \"List\"\r\nogr/services/gitlab/issue.py:87: error:\ + \ Returning Any from function declared to return \"List[Any]\"\r\nogr/services/gitlab/issue.py:94:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:107:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:115:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/flag.py:27:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/flag.py:53: error: Function is missing\ + \ a return type annotation\r\nogr/services/gitlab/flag.py:53: note:\ + \ Use \"-> None\" if function does not return a value\r\nogr/services/gitlab/flag.py:54:\ \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"sha\"\ - \r\nogr/services/gitlab/flag.py:54: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"status\"\r\nogr/services/gitlab/flag.py:55: error:\ - \ Item \"None\" of \"Optional[Any]\" has no attribute \"name\"\r\nogr/services/gitlab/flag.py:56:\ + \r\nogr/services/gitlab/flag.py:55: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"status\"\r\nogr/services/gitlab/flag.py:56: error:\ + \ Item \"None\" of \"Optional[Any]\" has no attribute \"name\"\r\nogr/services/gitlab/flag.py:57:\ \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ - \r\nogr/services/gitlab/flag.py:57: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"id\"\r\nogr/services/gitlab/flag.py:58: error:\ + \r\nogr/services/gitlab/flag.py:58: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"id\"\r\nogr/services/gitlab/flag.py:59: error:\ \ Item \"None\" of \"Optional[Any]\" has no attribute \"target_url\"\ - \r\nogr/services/gitlab/flag.py:61: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/flag.py:76: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/project.py:26: error: Cannot\ - \ find module named 'gitlab'\r\nogr/services/gitlab/project.py:27: error:\ - \ Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/project.py:53:\ - \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/project.py:55:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:58: error: Name 'ogr_gitlab.GitlabService'\ - \ is not defined\r\nogr/services/gitlab/project.py:126: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/gitlab/project.py:181:\ + \r\nogr/services/gitlab/flag.py:62: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/flag.py:77: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/flag.py:108: error: Item \"\ + None\" of \"Optional[Any]\" has no attribute \"created_at\"\r\nogr/services/gitlab/project.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/project.py:27: error: Cannot find\ + \ implementation or library stub for module named 'gitlab.v4.objects'\r\ + \nogr/services/gitlab/project.py:54: error: Name 'ogr_gitlab.GitlabService'\ + \ is not defined\r\nogr/services/gitlab/project.py:56: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/gitlab/project.py:59:\ + \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/project.py:129:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/gitlab/project.py:135: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:190:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:209: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/project.py:220:\ + \nogr/services/gitlab/project.py:256: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:267:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:231:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:278:\ \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/gitlab/project.py:231: error: Argument 4 of \"commit_comment\"\ + \r\nogr/services/gitlab/project.py:278: error: Argument 4 of \"commit_comment\"\ \ is incompatible with supertype \"GitProject\"; supertype defines the\ - \ argument type as \"Optional[int]\"\r\nogr/services/gitlab/project.py:232:\ + \ argument type as \"Optional[int]\"\r\nogr/services/gitlab/project.py:279:\ \ error: Incompatible default for argument \"filename\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:232:\ + \ type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:279:\ \ error: Incompatible default for argument \"row\" (default has type\ - \ \"None\", argument has type \"int\")\r\nogr/services/gitlab/project.py:317:\ - \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:323:\ + \ \"None\", argument has type \"int\")\r\nogr/services/gitlab/project.py:364:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:370:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:331: error: Incompatible default for\ - \ argument \"filter_regex\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/gitlab/project.py:389: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/services/gitlab/project.py:395:\ + \nogr/services/gitlab/project.py:373: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:378:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:449:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:413: error: Function is missing a return\ - \ type annotation\r\nogr/services/gitlab/project.py:437: error: Function\ - \ is missing a type annotation\r\nogr/services/gitlab/project.py:449:\ + \nogr/services/gitlab/project.py:455: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:473:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:505:\ + \ error: Function is missing a type annotation\r\nogr/services/gitlab/project.py:517:\ \ error: Call to untyped function \"_normalize_label_color\" in typed\ - \ context\r\nogr/services/gitlab/project.py:462: error: Function is\ - \ missing a type annotation\r\nogr/services/gitlab/project.py:468: error:\ + \ context\r\nogr/services/gitlab/project.py:530: error: Function is\ + \ missing a type annotation\r\nogr/services/gitlab/project.py:536: error:\ \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/gitlab/project.py:473: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:492:\ + ogr/services/gitlab/project.py:541: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:560:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/service.py:23: error: Cannot find module named 'gitlab'\r\ - \nogr/services/gitlab/service.py:36: error: Function is missing a type\ - \ annotation\r\nogr/services/gitlab/service.py:71: error: Returning\ - \ Any from function declared to return \"bool\"\r\nogr/services/gitlab/service.py:80:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/service.py:91: error: Argument 2 of \"project_create\"\ - \ is incompatible with supertype \"GitService\"; supertype defines the\ - \ argument type as \"Optional[str]\"\r\nogr/services/gitlab/service.py:91:\ - \ error: Incompatible default for argument \"namespace\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/github/release.py:23:\ - \ error: Cannot find module named 'github.GitRelease'\r\nogr/services/github/release.py:30:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/release.py:39:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/release.py:46:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/release.py:50:\ + ogr/services/gitlab/service.py:23: error: Cannot find implementation\ + \ or library stub for module named 'gitlab'\r\nogr/services/gitlab/service.py:37:\ + \ error: Function is missing a type annotation\r\nogr/services/gitlab/service.py:75:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/gitlab/service.py:84: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/service.py:104:\ + \ error: Argument 2 of \"project_create\" is incompatible with supertype\ + \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/gitlab/service.py:104: error: Incompatible default\ + \ for argument \"namespace\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/services/github/release.py:23: error: Cannot\ + \ find implementation or library stub for module named 'github.GitRelease'\r\ + \nogr/services/github/release.py:30: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/release.py:39: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/release.py:46: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/release.py:50:\ \ error: Function is missing a return type annotation\r\nogr/services/github/pull_request.py:27:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/pull_request.py:28:\ - \ error: Cannot find module named 'github.Label'\r\nogr/services/github/pull_request.py:29:\ - \ error: Cannot find module named 'github.PullRequest'\r\nogr/services/github/pull_request.py:43:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:47:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/pull_request.py:28: error: Cannot\ + \ find implementation or library stub for module named 'github.Label'\r\ + \nogr/services/github/pull_request.py:29: error: Cannot find implementation\ + \ or library stub for module named 'github.PullRequest'\r\nogr/services/github/pull_request.py:30:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.Repository'\r\nogr/services/github/pull_request.py:31: error:\ + \ Cannot find implementation or library stub for module named 'github.IssueComment'\r\ + \nogr/services/github/pull_request.py:32: error: Cannot find implementation\ + \ or library stub for module named 'github.PullRequestComment'\r\nogr/services/github/pull_request.py:45:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:46:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:50:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:58: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/github/pull_request.py:70:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:55: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/github/pull_request.py:67:\ + ogr/services/github/pull_request.py:74: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/pull_request.py:82:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:71: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/pull_request.py:79:\ + ogr/services/github/pull_request.py:86: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/pull_request.py:90:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:83: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/pull_request.py:87:\ + ogr/services/github/pull_request.py:94: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/pull_request.py:106:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:91: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/github/pull_request.py:102:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:107:\ + ogr/services/github/pull_request.py:109: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/pull_request.py:124: error:\ + \ Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:129:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/github/pull_request.py:129:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:135:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/pull_request.py:166:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:172:\ \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:26:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/issue.py:27:\ - \ error: Cannot find module named 'github.Issue'\r\nogr/services/github/issue.py:40:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/issue.py:27: error: Cannot find implementation\ + \ or library stub for module named 'github.Issue'\r\nogr/services/github/issue.py:40:\ \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:51:\ \ error: Returning Any from function declared to return \"str\"\r\n\ ogr/services/github/issue.py:59: error: Returning Any from function\ @@ -26244,81 +26081,97 @@ requests.sessions: ogr/services/github/issue.py:79: error: Returning Any from function\ \ declared to return \"str\"\r\nogr/services/github/issue.py:83: error:\ \ Returning Any from function declared to return \"datetime\"\r\nogr/services/github/issue.py:86:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/services/github/issue.py:93:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:98:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:104:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/flag.py:25:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/flag.py:42:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/flag.py:42:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/github/flag.py:43:\ + \ error: Missing type parameters for generic type \"List\"\r\nogr/services/github/issue.py:94:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:106:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:112:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/flag.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/flag.py:44: error: Function is missing\ + \ a return type annotation\r\nogr/services/github/flag.py:44: note:\ + \ Use \"-> None\" if function does not return a value\r\nogr/services/github/flag.py:45:\ \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"state\"\ - \r\nogr/services/github/flag.py:44: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"context\"\r\nogr/services/github/flag.py:45: error:\ + \r\nogr/services/github/flag.py:46: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"context\"\r\nogr/services/github/flag.py:47: error:\ \ Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ - \r\nogr/services/github/flag.py:48: error: Name 'ogr_github.GithubProject'\ - \ is not defined\r\nogr/services/github/flag.py:61: error: Name 'ogr_github.GithubProject'\ - \ is not defined\r\nogr/services/github/project.py:26: error: Cannot\ - \ find module named 'github'\r\nogr/services/github/project.py:33: error:\ - \ Cannot find module named 'github.GitRelease'\r\nogr/services/github/project.py:60:\ + \r\nogr/services/github/flag.py:48: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"target_url\"\r\nogr/services/github/flag.py:49:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"id\"\r\ + \nogr/services/github/flag.py:52: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/flag.py:67: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/flag.py:87: error: Returning\ + \ Any from function declared to return \"datetime\"\r\nogr/services/github/flag.py:87:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"created_at\"\ + \r\nogr/services/github/flag.py:91: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/flag.py:91:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"updated_at\"\ + \r\nogr/services/github/project.py:26: error: Cannot find implementation\ + \ or library stub for module named 'github'\r\nogr/services/github/project.py:28:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.Repository'\r\nogr/services/github/project.py:29: error: Cannot\ + \ find implementation or library stub for module named 'github.CommitComment'\r\ + \nogr/services/github/project.py:30: error: Cannot find implementation\ + \ or library stub for module named 'github.GitRelease'\r\nogr/services/github/project.py:58:\ \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/project.py:62:\ \ error: Function is missing a type annotation for one or more arguments\r\ \nogr/services/github/project.py:65: error: Name 'ogr_github.GithubService'\ \ is not defined\r\nogr/services/github/project.py:82: error: Function\ - \ is missing a return type annotation\r\nogr/services/github/project.py:99:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:150:\ + \ is missing a return type annotation\r\nogr/services/github/project.py:91:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:133:\ \ error: Returning Any from function declared to return \"bool\"\r\n\ - ogr/services/github/project.py:166: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/project.py:184:\ + ogr/services/github/project.py:150: error: Returning Any from function\ + \ declared to return \"bool\"\r\nogr/services/github/project.py:167:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/project.py:194: error: Function is missing a return\ + \ type annotation\r\nogr/services/github/project.py:194: note: Use \"\ + -> None\" if function does not return a value\r\nogr/services/github/project.py:213:\ \ error: Returning Any from function declared to return \"Optional[GithubProject]\"\ - \r\nogr/services/github/project.py:219: error: Function is missing a\ - \ type annotation for one or more arguments\r\nogr/services/github/project.py:222:\ + \r\nogr/services/github/project.py:248: error: Function is missing a\ + \ type annotation for one or more arguments\r\nogr/services/github/project.py:254:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/github/project.py:261: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/github/project.py:271:\ + \ parameters\r\nogr/services/github/project.py:302: error: Returning\ + \ Any from function declared to return \"str\"\r\nogr/services/github/project.py:312:\ \ error: Untyped decorator makes function \"create_pr\" untyped\r\n\ - ogr/services/github/project.py:278: error: Incompatible default for\ + ogr/services/github/project.py:319: error: Incompatible default for\ \ argument \"fork_username\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/github/project.py:289: error: Untyped\ - \ decorator makes function \"commit_comment\" untyped\r\nogr/services/github/project.py:294:\ + \ type \"str\")\r\nogr/services/github/project.py:330: error: Untyped\ + \ decorator makes function \"commit_comment\" untyped\r\nogr/services/github/project.py:335:\ \ error: Incompatible default for argument \"filename\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:294:\ + \ type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:335:\ \ error: Incompatible default for argument \"row\" (default has type\ - \ \"None\", argument has type \"int\")\r\nogr/services/github/project.py:314:\ + \ \"None\", argument has type \"int\")\r\nogr/services/github/project.py:355:\ \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ - \nogr/services/github/project.py:315: error: Function is missing a return\ - \ type annotation\r\nogr/services/github/project.py:361: error: Untyped\ - \ decorator makes function \"fork_create\" untyped\r\nogr/services/github/project.py:372:\ - \ error: Argument \"repo\" to \"GithubProject\" has incompatible type\ - \ \"None\"; expected \"str\"\r\nogr/services/github/project.py:372:\ - \ error: Argument \"namespace\" to \"GithubProject\" has incompatible\ - \ type \"None\"; expected \"str\"\r\nogr/services/github/project.py:380:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:383:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:385: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/project.py:392:\ + \nogr/services/github/project.py:359: error: Function is missing a return\ + \ type annotation\r\nogr/services/github/project.py:402: error: Untyped\ + \ decorator makes function \"fork_create\" untyped\r\nogr/services/github/project.py:411:\ + \ error: Returning Any from function declared to return \"GithubProject\"\ + \r\nogr/services/github/project.py:415: error: Function is missing a\ + \ return type annotation\r\nogr/services/github/project.py:418: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/project.py:420: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/project.py:427:\ \ error: Incompatible default for argument \"filter_regex\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:463:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:470:\ - \ error: Function is missing a type annotation\r\nogr/services/github/project.py:481:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:498:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:505:\ + \ error: Function is missing a type annotation\r\nogr/services/github/project.py:516:\ \ error: Call to untyped function \"_normalize_label_color\" in typed\ - \ context\r\nogr/services/github/project.py:490: error: Function is\ - \ missing a type annotation\r\nogr/services/github/project.py:495: error:\ + \ context\r\nogr/services/github/project.py:525: error: Function is\ + \ missing a type annotation\r\nogr/services/github/project.py:530: error:\ \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/github/project.py:499: error: Returning Any from function\ - \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:502:\ + ogr/services/github/project.py:534: error: Returning Any from function\ + \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:537:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:506: error: Returning Any from function\ - \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:509:\ + \nogr/services/github/project.py:541: error: Returning Any from function\ + \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:544:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:518: error: Argument \"git_tag\" to\ + \nogr/services/github/project.py:553: error: Argument \"git_tag\" to\ \ \"_release_from_github_object\" of \"GithubProject\" has incompatible\ - \ type \"Optional[GitTag]\"; expected \"GitTag\"\r\nogr/services/github/project.py:524:\ + \ type \"Optional[GitTag]\"; expected \"GitTag\"\r\nogr/services/github/project.py:559:\ \ error: Argument \"git_tag\" to \"_release_from_github_object\" of\ \ \"GithubProject\" has incompatible type \"Optional[GitTag]\"; expected\ - \ \"GitTag\"\r\nogr/services/github/project.py:532: error: Argument\ + \ \"GitTag\"\r\nogr/services/github/project.py:567: error: Argument\ \ \"git_tag\" to \"_release_from_github_object\" of \"GithubProject\"\ \ has incompatible type \"Optional[GitTag]\"; expected \"GitTag\"\r\n\ - ogr/services/github/project.py:567: error: Returning Any from function\ + ogr/services/github/project.py:596: error: Returning Any from function\ \ declared to return \"str\"\r\nogr/services/github/user.py:31: error:\ \ Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:33:\ \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:40:\ @@ -26332,29 +26185,41 @@ requests.sessions: \r\nogr/services/github/user.py:61: error: Returning Any from function\ \ declared to return \"Optional[str]\"\r\nogr/services/github/user.py:63:\ \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/user.py:75:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/service.py:26:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/service.py:43:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/service.py:47: error: Incompatible default for\ - \ argument \"github_app_id\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/github/service.py:48: error: Incompatible\ - \ default for argument \"github_app_private_key\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/github/service.py:49:\ - \ error: Incompatible default for argument \"github_app_private_key_path\"\ - \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:64:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/service.py:105:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/service.py:25:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/service.py:37: error: Module 'ogr.services.github.auth_providers'\ + \ has no attribute 'GithubAuthentication'\r\nogr/services/github/service.py:37:\ + \ error: Module 'ogr.services.github.auth_providers' has no attribute\ + \ 'TokenAuthentication'\r\nogr/services/github/service.py:37: error:\ + \ Module 'ogr.services.github.auth_providers' has no attribute 'GithubApp'\r\ + \nogr/services/github/service.py:37: error: Module 'ogr.services.github.auth_providers'\ + \ has no attribute 'Tokman'\r\nogr/services/github/service.py:52: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/service.py:56: error: Incompatible default for argument\ + \ \"github_app_id\" (default has type \"None\", argument has type \"\ + str\")\r\nogr/services/github/service.py:57: error: Incompatible default\ + \ for argument \"github_app_private_key\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/services/github/service.py:58: error:\ + \ Incompatible default for argument \"github_app_private_key_path\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:59:\ + \ error: Incompatible default for argument \"tokman_instance_url\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:74:\ + \ error: Call to untyped function \"__set_authentication\" in typed\ + \ context\r\nogr/services/github/service.py:82: error: Function is missing\ + \ a type annotation\r\nogr/services/github/service.py:96: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/service.py:113:\ \ error: Returning Any from function declared to return \"bool\"\r\n\ - ogr/services/github/service.py:118: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/github/service.py:139:\ + ogr/services/github/service.py:121: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/github/service.py:152:\ \ error: Argument 2 of \"project_create\" is incompatible with supertype\ \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/github/service.py:139: error: Incompatible default\ + \r\nogr/services/github/service.py:152: error: Incompatible default\ \ for argument \"namespace\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/__init__.py:30: error: Module 'ogr.services.github'\ - \ has no attribute 'GithubService'\r\nogr/__init__.py:31: error: Module\ - \ 'ogr.services.pagure' has no attribute 'PagureService'\r\nogr/__init__.py:32:\ - \ error: Module 'ogr.services.gitlab' has no attribute 'GitlabService'\r\ - \nFound 439 errors in 30 files (checked 38 source files)\r\n```\r\n\ + \ type \"str\")\r\nogr/__init__.py:35: error: Module 'ogr.services.github'\ + \ has no attribute 'GithubService'\r\nogr/__init__.py:36: error: Module\ + \ 'ogr.services.gitlab' has no attribute 'GitlabService'\r\nogr/__init__.py:37:\ + \ error: Module 'ogr.services.pagure' has no attribute 'PagureService'\r\ + \nFound 512 errors in 34 files (checked 43 source files)\r\n```\r\n\
" closed_at: null closed_by: null @@ -26372,6 +26237,13 @@ requests.sessions: name: EPIC node_id: MDU6TGFiZWwxNDMyNzc5MjA3 url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 7057ff default: false description: Good for newcomers @@ -26395,10 +26267,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Strict mypy - updated_at: '2020-02-14T08:32:52Z' + updated_at: '2020-09-30T15:07:16Z' url: https://api.github.com/repos/packit/ogr/issues/251 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -26417,49 +26289,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.095215 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:11 GMT + ETag: W/"da98d9fd1add92eecdd31050b924ef34050bc5ae666fde88c2252909f720ae62" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81FAE:191E8DF:6075DC67 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4510' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '490' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/253: - metadata: - latency: 0.29456591606140137 + latency: 0.22736620903015137 module_call_list: - unittest.case - requre.online_replacing @@ -26479,7 +26346,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -26498,7 +26365,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -26525,7 +26392,7 @@ requests.sessions: Blocked by #121" closed_at: '2019-11-26T08:52:22Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -26618,7 +26485,7 @@ requests.sessions: updated_at: '2019-11-26T08:52:22Z' url: https://api.github.com/repos/packit/ogr/issues/253 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -26637,48 +26504,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.227165 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:07 GMT + ETag: W/"a62f42015149119bbab2058d8f5c56535292af6a5e035479fc11666da11e9037" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E830:1919384:6075DC27 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4825' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '175' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29065465927124023 + latency: 0.4028136730194092 module_call_list: - unittest.case - requre.online_replacing @@ -26698,7 +26560,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -26717,7 +26579,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -26744,7 +26606,7 @@ requests.sessions: Blocked by #121" closed_at: '2019-11-26T08:52:22Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -26837,7 +26699,7 @@ requests.sessions: updated_at: '2019-11-26T08:52:22Z' url: https://api.github.com/repos/packit/ogr/issues/253 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -26856,49 +26718,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.402576 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:49 GMT + ETag: W/"a62f42015149119bbab2058d8f5c56535292af6a5e035479fc11666da11e9037" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80B1C:191C980:6075DC51 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4615' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '385' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/254: - metadata: - latency: 0.3020315170288086 + latency: 0.39797377586364746 module_call_list: - unittest.case - requre.online_replacing @@ -26918,7 +26775,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -26937,7 +26794,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -26965,7 +26822,7 @@ requests.sessions: \nPart of #86\r\nBlocked by #121" closed_at: '2019-11-29T10:21:52Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -27058,7 +26915,7 @@ requests.sessions: updated_at: '2019-11-29T10:21:52Z' url: https://api.github.com/repos/packit/ogr/issues/254 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -27077,48 +26934,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.397745 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:07 GMT + ETag: W/"d12cce11e24ea614bdee384e3d6eb26978d7ac57cfcd51ed53818581ae2ea77e" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E783:191928C:6075DC26 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4827' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '173' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3390970230102539 + latency: 0.17437410354614258 module_call_list: - unittest.case - requre.online_replacing @@ -27138,7 +26990,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -27157,7 +27009,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -27185,7 +27037,7 @@ requests.sessions: \nPart of #86\r\nBlocked by #121" closed_at: '2019-11-29T10:21:52Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -27278,7 +27130,7 @@ requests.sessions: updated_at: '2019-11-29T10:21:52Z' url: https://api.github.com/repos/packit/ogr/issues/254 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -27297,49 +27149,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.173415 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:49 GMT + ETag: W/"d12cce11e24ea614bdee384e3d6eb26978d7ac57cfcd51ed53818581ae2ea77e" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80ABA:191C8DB:6075DC51 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4617' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '383' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/255: - metadata: - latency: 0.4804375171661377 + latency: 0.19603610038757324 module_call_list: - unittest.case - requre.online_replacing @@ -27359,7 +27206,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -27378,7 +27225,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -27403,7 +27250,7 @@ requests.sessions: \ to `PR`\r\n blocked by #254" closed_at: '2019-12-03T11:21:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -27482,7 +27329,7 @@ requests.sessions: updated_at: '2019-12-03T11:21:59Z' url: https://api.github.com/repos/packit/ogr/issues/255 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -27501,48 +27348,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.195829 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:06 GMT + ETag: W/"c412d872115c1d937e828cdb757d0f9fe3c55f577233f368aee2364feac1eef5" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E6F6:19191B9:6075DC26 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4829' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '171' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2922050952911377 + latency: 0.12264132499694824 module_call_list: - unittest.case - requre.online_replacing @@ -27562,7 +27404,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -27581,7 +27423,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -27606,7 +27448,7 @@ requests.sessions: \ to `PR`\r\n blocked by #254" closed_at: '2019-12-03T11:21:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -27685,7 +27527,7 @@ requests.sessions: updated_at: '2019-12-03T11:21:59Z' url: https://api.github.com/repos/packit/ogr/issues/255 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -27704,49 +27546,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.122468 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:48 GMT + ETag: W/"c412d872115c1d937e828cdb757d0f9fe3c55f577233f368aee2364feac1eef5" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80A8C:191C896:6075DC50 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4619' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '381' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/261: - metadata: - latency: 0.33663392066955566 + latency: 0.1858081817626953 module_call_list: - unittest.case - requre.online_replacing @@ -27800,7 +27637,7 @@ requests.sessions: \n" closed_at: '2020-02-16T09:26:02Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -27845,7 +27682,7 @@ requests.sessions: updated_at: '2020-02-16T09:26:02Z' url: https://api.github.com/repos/packit/ogr/issues/261 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -27864,48 +27701,43 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.185617 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:00 GMT + ETag: W/"21156a6ec860364d5943741a5acb81dfc1b58e39c791d311c77c41b31ec02c55" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E15E:191895A:6075DC20 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4850' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '150' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.32457876205444336 + latency: 0.11970925331115723 module_call_list: - unittest.case - requre.online_replacing @@ -27959,7 +27791,7 @@ requests.sessions: \n" closed_at: '2020-02-16T09:26:02Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -28004,7 +27836,7 @@ requests.sessions: updated_at: '2020-02-16T09:26:02Z' url: https://api.github.com/repos/packit/ogr/issues/261 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -28023,49 +27855,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.119468 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:45 GMT + ETag: W/"21156a6ec860364d5943741a5acb81dfc1b58e39c791d311c77c41b31ec02c55" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F807D3:191C49B:6075DC4D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4640' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '360' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/263: - metadata: - latency: 0.3710293769836426 + latency: 0.19876503944396973 module_call_list: - unittest.case - requre.online_replacing @@ -28085,7 +27912,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -28104,7 +27931,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -28175,7 +28002,7 @@ requests.sessions: updated_at: '2020-08-24T06:40:40Z' url: https://api.github.com/repos/packit/ogr/issues/263 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 events_url: https://api.github.com/users/svenharris/events{/privacy} followers_url: https://api.github.com/users/svenharris/followers following_url: https://api.github.com/users/svenharris/following{/other_user} @@ -28194,48 +28021,43 @@ requests.sessions: type: User url: https://api.github.com/users/svenharris _next: null - elapsed: 0.2 + elapsed: 0.198458 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 06:40:40 GMT + Date: Tue, 13 Apr 2021 17:59:50 GMT + ETag: W/"81809e6d6b3bb5fa8ebe5276921e35924acb92b7b9610bbc9836e076a965461b" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DAC2:1917E63:6075DC15 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4904' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '96' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.293302059173584 + latency: 0.4148392677307129 module_call_list: - unittest.case - requre.online_replacing @@ -28255,7 +28077,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -28274,7 +28096,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -28345,7 +28167,7 @@ requests.sessions: updated_at: '2020-08-24T06:40:40Z' url: https://api.github.com/repos/packit/ogr/issues/263 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 events_url: https://api.github.com/users/svenharris/events{/privacy} followers_url: https://api.github.com/users/svenharris/followers following_url: https://api.github.com/users/svenharris/following{/other_user} @@ -28364,49 +28186,44 @@ requests.sessions: type: User url: https://api.github.com/users/svenharris _next: null - elapsed: 0.2 + elapsed: 0.414669 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 06:40:40 GMT + Date: Tue, 13 Apr 2021 18:01:11 GMT + ETag: W/"81809e6d6b3bb5fa8ebe5276921e35924acb92b7b9610bbc9836e076a965461b" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81FF8:191E92D:6075DC67 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4507' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '493' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/267: - metadata: - latency: 0.21284151077270508 + latency: 0.20115089416503906 module_call_list: - unittest.case - requre.online_replacing @@ -28427,11 +28244,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: Make it possible to clear check status on PR (optionally commit). closed_at: '2019-11-06T11:37:33Z' closed_by: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -28468,7 +28285,7 @@ requests.sessions: updated_at: '2019-11-06T11:37:33Z' url: https://api.github.com/repos/packit/ogr/issues/267 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -28487,48 +28304,43 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.200972 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:00:08 GMT + ETag: W/"5cd114b56829eef8f911f8465a8927a39e031fe989b28527bf43bd9442ff1dbb" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E926:1919511:6075DC28 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4821' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '179' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2583310604095459 + latency: 0.12712931632995605 module_call_list: - unittest.case - requre.online_replacing @@ -28549,11 +28361,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: Make it possible to clear check status on PR (optionally commit). closed_at: '2019-11-06T11:37:33Z' closed_by: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -28590,7 +28402,7 @@ requests.sessions: updated_at: '2019-11-06T11:37:33Z' url: https://api.github.com/repos/packit/ogr/issues/267 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -28609,49 +28421,44 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.126972 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:00:50 GMT + ETag: W/"5cd114b56829eef8f911f8465a8927a39e031fe989b28527bf43bd9442ff1dbb" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80BE5:191CAC7:6075DC52 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4611' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '389' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/270: - metadata: - latency: 0.30218505859375 + latency: 0.25983762741088867 module_call_list: - unittest.case - requre.online_replacing @@ -28671,7 +28478,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/1866652?v=4 + 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} @@ -28690,7 +28497,7 @@ requests.sessions: type: User url: https://api.github.com/users/eliskasl assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/1866652?v=4 + - 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} @@ -28708,7 +28515,7 @@ requests.sessions: subscriptions_url: https://api.github.com/users/eliskasl/subscriptions type: User url: https://api.github.com/users/eliskasl - author_association: MEMBER + author_association: CONTRIBUTOR body: "https://github.com/PyGithub/PyGithub/pull/1135 is now merged\r\n\ \r\nUse the code above to initiate GitHubService, related code (which\ \ we are using in the meantime):\r\n\r\npretty much drop this:\r\nhttps://github.com/packit-service/ogr/blob/253e93bc87c079d0cd8f3dc87fc5e11f5078e53b/ogr/services/github_tweak.py#L11\r\ @@ -28716,7 +28523,7 @@ requests.sessions: \n\r\nAlso please write a test case for this." closed_at: '2019-11-20T15:17:22Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -28775,7 +28582,7 @@ requests.sessions: updated_at: '2019-11-20T15:17:22Z' url: https://api.github.com/repos/packit/ogr/issues/270 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -28794,48 +28601,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.259552 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:08 GMT + ETag: W/"bf4570ae918146a2b275484d0bf2075666d985f1d3eca77330feacde1373810a" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E897:191941B:6075DC27 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4823' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '177' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.274202823638916 + latency: 0.2772040367126465 module_call_list: - unittest.case - requre.online_replacing @@ -28855,7 +28657,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/1866652?v=4 + 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} @@ -28874,7 +28676,7 @@ requests.sessions: type: User url: https://api.github.com/users/eliskasl assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/1866652?v=4 + - 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} @@ -28892,7 +28694,7 @@ requests.sessions: subscriptions_url: https://api.github.com/users/eliskasl/subscriptions type: User url: https://api.github.com/users/eliskasl - author_association: MEMBER + author_association: CONTRIBUTOR body: "https://github.com/PyGithub/PyGithub/pull/1135 is now merged\r\n\ \r\nUse the code above to initiate GitHubService, related code (which\ \ we are using in the meantime):\r\n\r\npretty much drop this:\r\nhttps://github.com/packit-service/ogr/blob/253e93bc87c079d0cd8f3dc87fc5e11f5078e53b/ogr/services/github_tweak.py#L11\r\ @@ -28900,7 +28702,7 @@ requests.sessions: \n\r\nAlso please write a test case for this." closed_at: '2019-11-20T15:17:22Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -28959,7 +28761,7 @@ requests.sessions: updated_at: '2019-11-20T15:17:22Z' url: https://api.github.com/repos/packit/ogr/issues/270 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -28978,49 +28780,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.277018 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:50 GMT + ETag: W/"bf4570ae918146a2b275484d0bf2075666d985f1d3eca77330feacde1373810a" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80B8B:191CA42:6075DC52 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4613' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '387' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/271: - metadata: - latency: 0.2920112609863281 + latency: 0.166306734085083 module_call_list: - unittest.case - requre.online_replacing @@ -29048,7 +28845,7 @@ requests.sessions: \ of docstrings." closed_at: '2020-04-23T11:37:34Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -29113,7 +28910,7 @@ requests.sessions: updated_at: '2020-04-23T11:37:34Z' url: https://api.github.com/repos/packit/ogr/issues/271 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -29132,48 +28929,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.166045 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:57 GMT + ETag: W/"22e3b4cac06e8ff40e8b3502c9a97976c417a294f3c0332b064e8c067a94d5f6" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DEEF:191856B:6075DC1C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4870' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '130' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.21139955520629883 + latency: 0.10483384132385254 module_call_list: - unittest.case - requre.online_replacing @@ -29201,7 +28993,7 @@ requests.sessions: \ of docstrings." closed_at: '2020-04-23T11:37:34Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -29266,7 +29058,7 @@ requests.sessions: updated_at: '2020-04-23T11:37:34Z' url: https://api.github.com/repos/packit/ogr/issues/271 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -29285,49 +29077,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.104578 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:41 GMT + ETag: W/"22e3b4cac06e8ff40e8b3502c9a97976c417a294f3c0332b064e8c067a94d5f6" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80494:191BFD6:6075DC49 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4660' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '340' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/281: - metadata: - latency: 0.2910294532775879 + latency: 0.13939785957336426 module_call_list: - unittest.case - requre.online_replacing @@ -29356,7 +29143,7 @@ requests.sessions: \ has no attribute 'is_write_mode'`" closed_at: '2019-11-25T12:33:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -29393,7 +29180,7 @@ requests.sessions: updated_at: '2019-11-25T12:33:59Z' url: https://api.github.com/repos/packit/ogr/issues/281 user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 events_url: https://api.github.com/users/pawelkopka/events{/privacy} followers_url: https://api.github.com/users/pawelkopka/followers following_url: https://api.github.com/users/pawelkopka/following{/other_user} @@ -29412,48 +29199,43 @@ requests.sessions: type: User url: https://api.github.com/users/pawelkopka _next: null - elapsed: 0.2 + elapsed: 0.139233 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 19 Jun 2020 10:46:00 GMT + Date: Tue, 13 Apr 2021 18:00:07 GMT + ETag: W/"c4a44cfd6ec3365fc14cb6e1bb567741e16b3185c3643ef299ac2790c04472cc" + Last-Modified: Tue, 06 Apr 2021 11:26:28 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E868:19193E1:6075DC27 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4824' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '176' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2579178810119629 + latency: 0.12494158744812012 module_call_list: - unittest.case - requre.online_replacing @@ -29482,7 +29264,7 @@ requests.sessions: \ has no attribute 'is_write_mode'`" closed_at: '2019-11-25T12:33:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -29519,7 +29301,7 @@ requests.sessions: updated_at: '2019-11-25T12:33:59Z' url: https://api.github.com/repos/packit/ogr/issues/281 user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 events_url: https://api.github.com/users/pawelkopka/events{/privacy} followers_url: https://api.github.com/users/pawelkopka/followers following_url: https://api.github.com/users/pawelkopka/following{/other_user} @@ -29538,49 +29320,44 @@ requests.sessions: type: User url: https://api.github.com/users/pawelkopka _next: null - elapsed: 0.2 + elapsed: 0.124719 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 19 Jun 2020 10:46:00 GMT + Date: Tue, 13 Apr 2021 18:00:49 GMT + ETag: W/"c4a44cfd6ec3365fc14cb6e1bb567741e16b3185c3643ef299ac2790c04472cc" + Last-Modified: Tue, 06 Apr 2021 11:26:28 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80B75:191CA10:6075DC51 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4614' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '386' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/288: - metadata: - latency: 0.29519200325012207 + latency: 0.18302416801452637 module_call_list: - unittest.case - requre.online_replacing @@ -29617,7 +29394,7 @@ requests.sessions: \n```" closed_at: '2019-12-03T16:04:47Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -29661,7 +29438,7 @@ requests.sessions: updated_at: '2019-12-03T16:04:47Z' url: https://api.github.com/repos/packit/ogr/issues/288 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -29680,48 +29457,43 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.182845 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:05 GMT + ETag: W/"1440172c0f6758544d46cb22d712cb863ef377f93c05973da689171dd01914d1" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E650:19190D0:6075DC25 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4831' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '169' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3549485206604004 + latency: 0.11285066604614258 module_call_list: - unittest.case - requre.online_replacing @@ -29758,7 +29530,7 @@ requests.sessions: \n```" closed_at: '2019-12-03T16:04:47Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -29802,7 +29574,7 @@ requests.sessions: updated_at: '2019-12-03T16:04:47Z' url: https://api.github.com/repos/packit/ogr/issues/288 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -29821,49 +29593,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.112685 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:48 GMT + ETag: W/"1440172c0f6758544d46cb22d712cb863ef377f93c05973da689171dd01914d1" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80A79:191C874:6075DC50 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4620' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '380' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/29: - metadata: - latency: 0.30060434341430664 + latency: 0.3852851390838623 module_call_list: - unittest.case - requre.online_replacing @@ -29884,14 +29651,14 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "this means to use standard-test-roles to wrap our tests so they\ \ can run when we create PRs on dist-git\r\n\r\nsee [python-docker's\ \ test wrapper](https://src.fedoraproject.org/rpms/python-docker/blob/master/f/tests)\ \ for more details" closed_at: '2020-01-03T14:54:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -29956,7 +29723,7 @@ requests.sessions: updated_at: '2020-01-05T17:00:32Z' url: https://api.github.com/repos/packit/ogr/issues/29 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -29975,48 +29742,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.385113 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:03 GMT + ETag: W/"270c29a6e1ffe5b39eaa0243d78d81ad39c3689a2666952946773cb5199f5565" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E3C3:1918CF5:6075DC22 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4840' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '160' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.558779239654541 + latency: 0.16385817527770996 module_call_list: - unittest.case - requre.online_replacing @@ -30037,14 +29799,14 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "this means to use standard-test-roles to wrap our tests so they\ \ can run when we create PRs on dist-git\r\n\r\nsee [python-docker's\ \ test wrapper](https://src.fedoraproject.org/rpms/python-docker/blob/master/f/tests)\ \ for more details" closed_at: '2020-01-03T14:54:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -30109,7 +29871,7 @@ requests.sessions: updated_at: '2020-01-05T17:00:32Z' url: https://api.github.com/repos/packit/ogr/issues/29 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -30128,49 +29890,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.163657 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:46 GMT + ETag: W/"270c29a6e1ffe5b39eaa0243d78d81ad39c3689a2666952946773cb5199f5565" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F808CB:191C60C:6075DC4E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4630' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '370' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/290: - metadata: - latency: 0.24152040481567383 + latency: 0.20038676261901855 module_call_list: - unittest.case - requre.online_replacing @@ -30196,7 +29953,7 @@ requests.sessions: a new one! closed_at: '2019-12-04T09:37:32Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -30247,7 +30004,7 @@ requests.sessions: updated_at: '2019-12-04T09:37:32Z' url: https://api.github.com/repos/packit/ogr/issues/290 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -30266,48 +30023,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.200143 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:05 GMT + ETag: W/"851e11d074e22b2ca4ea8bd7eba7ee05b09ae353295b2bd3ccf4e721c6f49224" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E5D4:1919013:6075DC25 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4834' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '166' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3004922866821289 + latency: 0.11635732650756836 module_call_list: - unittest.case - requre.online_replacing @@ -30333,7 +30085,7 @@ requests.sessions: a new one! closed_at: '2019-12-04T09:37:32Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -30384,7 +30136,7 @@ requests.sessions: updated_at: '2019-12-04T09:37:32Z' url: https://api.github.com/repos/packit/ogr/issues/290 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -30403,49 +30155,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.116169 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:47 GMT + ETag: W/"851e11d074e22b2ca4ea8bd7eba7ee05b09ae353295b2bd3ccf4e721c6f49224" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F809B7:191C766:6075DC4F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4624' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '376' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/295: - metadata: - latency: 0.2672109603881836 + latency: 0.1332716941833496 module_call_list: - unittest.case - requre.online_replacing @@ -30474,8 +30221,26 @@ requests.sessions: \ would check the same things, but each would need separate yaml for\ \ responses.\r\n\r\nSo I suggest transition from old to new tests right\ \ after 0.13.0 (or before 1.0.0, in case it will be released sooner)" - closed_at: null - closed_by: null + closed_at: '2020-09-24T19:43:18Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D comments: 6 comments_url: https://api.github.com/repos/packit/ogr/issues/295/comments created_at: '2019-12-05T10:40:23Z' @@ -30504,12 +30269,12 @@ requests.sessions: number: 295 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Restructure tests - updated_at: '2020-08-24T10:14:58Z' + updated_at: '2020-09-24T19:43:18Z' url: https://api.github.com/repos/packit/ogr/issues/295 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -30528,48 +30293,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.133062 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 10:14:58 GMT + Date: Tue, 13 Apr 2021 17:59:48 GMT + ETag: W/"69df3a9ad98a71228af0a482526d3417f7cc05b66244d923461dcfcf1bbeaf52" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DA0B:1917D33:6075DC14 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4911' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '89' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2942676544189453 + latency: 0.10710263252258301 module_call_list: - unittest.case - requre.online_replacing @@ -30598,8 +30358,26 @@ requests.sessions: \ would check the same things, but each would need separate yaml for\ \ responses.\r\n\r\nSo I suggest transition from old to new tests right\ \ after 0.13.0 (or before 1.0.0, in case it will be released sooner)" - closed_at: null - closed_by: null + closed_at: '2020-09-24T19:43:18Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D comments: 6 comments_url: https://api.github.com/repos/packit/ogr/issues/295/comments created_at: '2019-12-05T10:40:23Z' @@ -30628,12 +30406,12 @@ requests.sessions: number: 295 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Restructure tests - updated_at: '2020-08-24T10:14:58Z' + updated_at: '2020-09-24T19:43:18Z' url: https://api.github.com/repos/packit/ogr/issues/295 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -30652,49 +30430,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.106858 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 10:14:58 GMT + Date: Tue, 13 Apr 2021 18:00:34 GMT + ETag: W/"69df3a9ad98a71228af0a482526d3417f7cc05b66244d923461dcfcf1bbeaf52" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FEFC:191B759:6075DC42 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4697' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '303' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/299: - metadata: - latency: 0.29395174980163574 + latency: 0.12379264831542969 module_call_list: - unittest.case - requre.online_replacing @@ -30723,7 +30496,7 @@ requests.sessions: \ know about the bug." closed_at: '2020-01-03T10:13:01Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -30760,7 +30533,7 @@ requests.sessions: updated_at: '2020-01-03T10:13:01Z' url: https://api.github.com/repos/packit/ogr/issues/299 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -30779,48 +30552,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.123628 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:03 GMT + ETag: W/"0a172c31a059ac3bad106873ba1c4ffdd434e23ae473ed0f11a8f18efe7f815d" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E430:1918D89:6075DC23 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4839' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '161' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.26024508476257324 + latency: 0.11261272430419922 module_call_list: - unittest.case - requre.online_replacing @@ -30849,7 +30617,7 @@ requests.sessions: \ know about the bug." closed_at: '2020-01-03T10:13:01Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -30886,7 +30654,7 @@ requests.sessions: updated_at: '2020-01-03T10:13:01Z' url: https://api.github.com/repos/packit/ogr/issues/299 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -30905,49 +30673,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.112338 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:46 GMT + ETag: W/"0a172c31a059ac3bad106873ba1c4ffdd434e23ae473ed0f11a8f18efe7f815d" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F808E8:191C63C:6075DC4E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4629' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '371' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/301: - metadata: - latency: 0.29514336585998535 + latency: 0.09831976890563965 module_call_list: - unittest.case - requre.online_replacing @@ -30968,12 +30731,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: started porting upsint to ogr and realized that I can't get all labels defined on a repo closed_at: '2020-01-03T09:14:39Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -31017,7 +30780,7 @@ requests.sessions: updated_at: '2020-01-03T09:14:39Z' url: https://api.github.com/repos/packit/ogr/issues/301 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -31036,48 +30799,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.098159 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:03 GMT + ETag: W/"3eae066e7edfe99357c507ca1cea52e2144c2e16ff4550c82b8a1e116cf96ebc" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E450:1918DBA:6075DC23 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4838' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '162' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29312872886657715 + latency: 0.10191750526428223 module_call_list: - unittest.case - requre.online_replacing @@ -31098,12 +30856,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: started porting upsint to ogr and realized that I can't get all labels defined on a repo closed_at: '2020-01-03T09:14:39Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -31147,7 +30905,7 @@ requests.sessions: updated_at: '2020-01-03T09:14:39Z' url: https://api.github.com/repos/packit/ogr/issues/301 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -31166,49 +30924,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.101716 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:46 GMT + ETag: W/"3eae066e7edfe99357c507ca1cea52e2144c2e16ff4550c82b8a1e116cf96ebc" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F808FC:191C660:6075DC4E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4628' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '372' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/302: - metadata: - latency: 0.4999206066131592 + latency: 0.12314558029174805 module_call_list: - unittest.case - requre.online_replacing @@ -31234,7 +30987,7 @@ requests.sessions: \ the API allows it.\r\n\r\nBlocked by: [Pagure's issue](https://pagure.io/pagure/issue/4704)" closed_at: '2020-04-20T12:38:20Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -31299,7 +31052,7 @@ requests.sessions: updated_at: '2020-04-20T12:38:20Z' url: https://api.github.com/repos/packit/ogr/issues/302 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -31318,48 +31071,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.122888 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:57 GMT + ETag: W/"5cfbe2f577d41cebbb57b0a1b0aca7e13f295f4e2e79ea6bfb35a49e10303db9" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DF29:19185C0:6075DC1D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4868' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '132' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.291553258895874 + latency: 0.1253507137298584 module_call_list: - unittest.case - requre.online_replacing @@ -31385,7 +31133,7 @@ requests.sessions: \ the API allows it.\r\n\r\nBlocked by: [Pagure's issue](https://pagure.io/pagure/issue/4704)" closed_at: '2020-04-20T12:38:20Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -31450,7 +31198,7 @@ requests.sessions: updated_at: '2020-04-20T12:38:20Z' url: https://api.github.com/repos/packit/ogr/issues/302 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -31469,49 +31217,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.125141 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:42 GMT + ETag: W/"5cfbe2f577d41cebbb57b0a1b0aca7e13f295f4e2e79ea6bfb35a49e10303db9" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F804E5:191C04F:6075DC4A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4658' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '342' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/303: - metadata: - latency: 0.2950401306152344 + latency: 0.19985556602478027 module_call_list: - unittest.case - requre.online_replacing @@ -31532,7 +31275,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\nipdb> git_project \ \ \ \ \r\n git_project \ \ \ \ \r\n raise APIError(output['error'])\r\ \nE libpagure.exceptions.APIError: Repo \"forks/ttomecek/sen\"\ @@ -32817,7 +32520,7 @@ requests.sessions: \ \"namespace\": self.namespace, \"wait\": True},\r\n```\r\n\r\nWDYT?" closed_at: '2019-03-26T16:18:24Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -32854,7 +32557,7 @@ requests.sessions: updated_at: '2019-03-26T16:18:24Z' url: https://api.github.com/repos/packit/ogr/issues/31 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -32873,48 +32576,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.12804 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:24 GMT + ETag: W/"be944f0562f27f7f1074411a11a8ece1ae2f11662f6b72a509e78174ff8889aa" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F687:191AA37:6075DC38 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4748' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '252' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.4035768508911133 + latency: 0.31212663650512695 module_call_list: - unittest.case - requre.online_replacing @@ -32934,7 +32632,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -32953,7 +32651,7 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + - 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} @@ -32971,7 +32669,7 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\n if req.status_code != 200:\r\n LOG.error(output)\r\ \n if 'error_code' in output:\r\n> raise APIError(output['error'])\r\ \nE libpagure.exceptions.APIError: Repo \"forks/ttomecek/sen\"\ @@ -32982,7 +32680,7 @@ requests.sessions: \ \"namespace\": self.namespace, \"wait\": True},\r\n```\r\n\r\nWDYT?" closed_at: '2019-03-26T16:18:24Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -33019,7 +32717,7 @@ requests.sessions: updated_at: '2019-03-26T16:18:24Z' url: https://api.github.com/repos/packit/ogr/issues/31 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -33038,49 +32736,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.311962 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:06 GMT + ETag: W/"be944f0562f27f7f1074411a11a8ece1ae2f11662f6b72a509e78174ff8889aa" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81AE4:191E1C3:6075DC62 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4538' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '462' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/310: - metadata: - latency: 0.4641132354736328 + latency: 0.20529389381408691 module_call_list: - unittest.case - requre.online_replacing @@ -33101,17 +32794,44 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Implement get_files() method in Pagure. - closed_at: null - closed_by: null - comments: 9 + author_association: CONTRIBUTOR + body: "Implement `get_files()` method in Pagure.\r\n\r\n- Structure can\ + \ be seen in the docstring of the code that implements that: https://pagure.io/pagure/blob/dd207ee/f/pagure/api/project.py#_709\r\ + \n- Example: https://pagure.io/api/0/pagure/tree\r\n" + closed_at: '2021-02-15T20:48:43Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/310/comments created_at: '2020-01-21T12:50:04Z' events_url: https://api.github.com/repos/packit/ogr/issues/310/events html_url: https://github.com/packit/ogr/issues/310 id: 552856957 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -33133,6 +32853,13 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -33147,12 +32874,12 @@ requests.sessions: number: 310 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Support get_files() in Pagure - updated_at: '2020-07-07T06:21:10Z' + updated_at: '2021-02-15T20:48:43Z' url: https://api.github.com/repos/packit/ogr/issues/310 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -33171,48 +32898,43 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova _next: null - elapsed: 0.2 + elapsed: 0.205038 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 17:59:40 GMT + ETag: W/"b69b8270a181ee52920c58b587d71959feafd55ca235d62bb735720c3eb37143" + Last-Modified: Tue, 09 Mar 2021 07:06:56 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D4AB:191747D:6075DC0C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4960' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '40' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.31658411026000977 + latency: 0.12363672256469727 module_call_list: - unittest.case - requre.online_replacing @@ -33233,17 +32955,44 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Implement get_files() method in Pagure. - closed_at: null - closed_by: null - comments: 9 + author_association: CONTRIBUTOR + body: "Implement `get_files()` method in Pagure.\r\n\r\n- Structure can\ + \ be seen in the docstring of the code that implements that: https://pagure.io/pagure/blob/dd207ee/f/pagure/api/project.py#_709\r\ + \n- Example: https://pagure.io/api/0/pagure/tree\r\n" + closed_at: '2021-02-15T20:48:43Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/310/comments created_at: '2020-01-21T12:50:04Z' events_url: https://api.github.com/repos/packit/ogr/issues/310/events html_url: https://github.com/packit/ogr/issues/310 id: 552856957 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -33265,6 +33014,13 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -33279,12 +33035,12 @@ requests.sessions: number: 310 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Support get_files() in Pagure - updated_at: '2020-07-07T06:21:10Z' + updated_at: '2021-02-15T20:48:43Z' url: https://api.github.com/repos/packit/ogr/issues/310 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -33303,49 +33059,44 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova _next: null - elapsed: 0.2 + elapsed: 0.123288 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:28 GMT + ETag: W/"b69b8270a181ee52920c58b587d71959feafd55ca235d62bb735720c3eb37143" + Last-Modified: Tue, 09 Mar 2021 07:06:56 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F926:191AE6B:6075DC3C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4730' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '270' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/312: - metadata: - latency: 0.29352450370788574 + latency: 0.26403021812438965 module_call_list: - unittest.case - requre.online_replacing @@ -33370,7 +33121,7 @@ requests.sessions: body: Release-bot, it's time to work! closed_at: '2020-01-27T11:51:57Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -33421,7 +33172,7 @@ requests.sessions: updated_at: '2020-01-27T11:51:57Z' url: https://api.github.com/repos/packit/ogr/issues/312 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -33440,48 +33191,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.263796 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:02 GMT + ETag: W/"1a1ed59d2554ee8cdc5ef1ff1adb31e0dd48900196a7c87860546f554b483d36" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E2B5:1918B78:6075DC21 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4845' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '155' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29232096672058105 + latency: 0.1133110523223877 module_call_list: - unittest.case - requre.online_replacing @@ -33506,7 +33252,7 @@ requests.sessions: body: Release-bot, it's time to work! closed_at: '2020-01-27T11:51:57Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -33557,7 +33303,7 @@ requests.sessions: updated_at: '2020-01-27T11:51:57Z' url: https://api.github.com/repos/packit/ogr/issues/312 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -33576,49 +33322,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.113112 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:46 GMT + ETag: W/"1a1ed59d2554ee8cdc5ef1ff1adb31e0dd48900196a7c87860546f554b483d36" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8084B:191C54F:6075DC4D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4635' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '365' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/314: - metadata: - latency: 0.2553389072418213 + latency: 0.6105639934539795 module_call_list: - unittest.case - requre.online_replacing @@ -33658,7 +33399,7 @@ requests.sessions: ' closed_at: '2020-01-28T14:17:18Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -33695,7 +33436,7 @@ requests.sessions: updated_at: '2020-01-28T14:17:18Z' url: https://api.github.com/repos/packit/ogr/issues/314 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -33714,48 +33455,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.610404 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:01 GMT + ETag: W/"d39ca5eb2b4dc4a63e4184676fe07574705b4b5372a2ce249ff25fa171f96f32" Last-Modified: Tue, 28 Jan 2020 14:17:18 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E1B8:19189EE:6075DC20 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4848' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '152' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.30049562454223633 + latency: 0.10225462913513184 module_call_list: - unittest.case - requre.online_replacing @@ -33795,7 +33531,7 @@ requests.sessions: ' closed_at: '2020-01-28T14:17:18Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -33832,7 +33568,7 @@ requests.sessions: updated_at: '2020-01-28T14:17:18Z' url: https://api.github.com/repos/packit/ogr/issues/314 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -33851,49 +33587,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.102093 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:45 GMT + ETag: W/"d39ca5eb2b4dc4a63e4184676fe07574705b4b5372a2ce249ff25fa171f96f32" Last-Modified: Tue, 28 Jan 2020 14:17:18 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80801:191C4E7:6075DC4D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4638' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '362' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/315: - metadata: - latency: 0.30179405212402344 + latency: 0.17207956314086914 module_call_list: - unittest.case - requre.online_replacing @@ -33933,7 +33664,7 @@ requests.sessions: ' closed_at: '2020-01-28T14:17:12Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -33970,7 +33701,7 @@ requests.sessions: updated_at: '2020-01-28T14:17:12Z' url: https://api.github.com/repos/packit/ogr/issues/315 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -33989,48 +33720,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.171904 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:01 GMT + ETag: W/"eedd4920eaf488997f48be0359a96500f1fe04b68f6e0754ccd88c9fd7639fb7" Last-Modified: Tue, 28 Jan 2020 14:17:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E253:1918AE3:6075DC21 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4847' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '153' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29598569869995117 + latency: 0.11914801597595215 module_call_list: - unittest.case - requre.online_replacing @@ -34070,7 +33796,7 @@ requests.sessions: ' closed_at: '2020-01-28T14:17:12Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -34107,7 +33833,7 @@ requests.sessions: updated_at: '2020-01-28T14:17:12Z' url: https://api.github.com/repos/packit/ogr/issues/315 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -34126,49 +33852,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.118872 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:45 GMT + ETag: W/"eedd4920eaf488997f48be0359a96500f1fe04b68f6e0754ccd88c9fd7639fb7" Last-Modified: Tue, 28 Jan 2020 14:17:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80819:191C505:6075DC4D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4637' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '363' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/316: - metadata: - latency: 0.2928755283355713 + latency: 0.16073012351989746 module_call_list: - unittest.case - requre.online_replacing @@ -34208,7 +33929,7 @@ requests.sessions: ' closed_at: '2020-01-28T14:17:02Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -34245,7 +33966,7 @@ requests.sessions: updated_at: '2020-01-28T14:17:02Z' url: https://api.github.com/repos/packit/ogr/issues/316 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -34264,48 +33985,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.160549 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:01 GMT + ETag: W/"d26beb56a93772139c2a9581e1ad829f6fa4efcc08e63b3abe86dd3ff19d8783" Last-Modified: Tue, 28 Jan 2020 14:17:02 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E285:1918B30:6075DC21 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4846' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '154' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3036205768585205 + latency: 0.10588812828063965 module_call_list: - unittest.case - requre.online_replacing @@ -34345,7 +34061,7 @@ requests.sessions: ' closed_at: '2020-01-28T14:17:02Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -34382,7 +34098,7 @@ requests.sessions: updated_at: '2020-01-28T14:17:02Z' url: https://api.github.com/repos/packit/ogr/issues/316 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -34401,49 +34117,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.105653 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:45 GMT + ETag: W/"d26beb56a93772139c2a9581e1ad829f6fa4efcc08e63b3abe86dd3ff19d8783" Last-Modified: Tue, 28 Jan 2020 14:17:02 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80832:191C527:6075DC4D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4636' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '364' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/318: - metadata: - latency: 0.22662806510925293 + latency: 0.21431589126586914 module_call_list: - unittest.case - requre.online_replacing @@ -34464,12 +34175,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\n>>> from ogr.parsing import parse_git_repo\r\n>>> r = parse_git_repo('https://github.com/avocado-framework/avocado/')\r\ \n>>> r.namespace\r\n'avocado'\r\n>>> r.repo\r\n''\r\n```" closed_at: '2020-02-06T12:58:11Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -34520,7 +34231,7 @@ requests.sessions: updated_at: '2020-02-06T12:58:11Z' url: https://api.github.com/repos/packit/ogr/issues/318 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -34539,48 +34250,43 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.214115 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:00:00 GMT + ETag: W/"a6fa07700fdaa12b9816e66904b4b961a430394ab645a71605a77364f800f2f0" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E189:19189B2:6075DC20 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4849' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '151' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29319190979003906 + latency: 0.0993039608001709 module_call_list: - unittest.case - requre.online_replacing @@ -34601,12 +34307,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\n>>> from ogr.parsing import parse_git_repo\r\n>>> r = parse_git_repo('https://github.com/avocado-framework/avocado/')\r\ \n>>> r.namespace\r\n'avocado'\r\n>>> r.repo\r\n''\r\n```" closed_at: '2020-02-06T12:58:11Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -34657,7 +34363,7 @@ requests.sessions: updated_at: '2020-02-06T12:58:11Z' url: https://api.github.com/repos/packit/ogr/issues/318 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -34676,49 +34382,44 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.099075 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:00:45 GMT + ETag: W/"a6fa07700fdaa12b9816e66904b4b961a430394ab645a71605a77364f800f2f0" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F807EC:191C4C9:6075DC4D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4639' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '361' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/323: - metadata: - latency: 0.2604386806488037 + latency: 0.10706520080566406 module_call_list: - unittest.case - requre.online_replacing @@ -34746,7 +34447,7 @@ requests.sessions: \ need to merge [that PR](https://src.fedoraproject.org/rpms/python-ogr/pull-request/159)." closed_at: '2020-03-12T12:24:37Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -34790,7 +34491,7 @@ requests.sessions: updated_at: '2020-03-12T12:24:37Z' url: https://api.github.com/repos/packit/ogr/issues/323 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -34809,48 +34510,43 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.10689 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 17:59:59 GMT + ETag: W/"081a84ba6e076c3faf000a6ba36c499f0df95eee3139585a8a46db26147d005a" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E052:19187A1:6075DC1F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4857' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '143' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2443535327911377 + latency: 0.11255002021789551 module_call_list: - unittest.case - requre.online_replacing @@ -34878,7 +34574,7 @@ requests.sessions: \ need to merge [that PR](https://src.fedoraproject.org/rpms/python-ogr/pull-request/159)." closed_at: '2020-03-12T12:24:37Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -34922,7 +34618,7 @@ requests.sessions: updated_at: '2020-03-12T12:24:37Z' url: https://api.github.com/repos/packit/ogr/issues/323 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -34941,49 +34637,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.112366 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:44 GMT + ETag: W/"081a84ba6e076c3faf000a6ba36c499f0df95eee3139585a8a46db26147d005a" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80688:191C2A5:6075DC4B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4647' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '353' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/325: - metadata: - latency: 0.3017251491546631 + latency: 0.10470199584960938 module_call_list: - unittest.case - requre.online_replacing @@ -35067,7 +34758,7 @@ requests.sessions: updated_at: '2020-05-18T08:42:29Z' url: https://api.github.com/repos/packit/ogr/issues/325 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -35086,48 +34777,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.10446 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:54 GMT + ETag: W/"8271078dc3769d1893a677ab64f8b27d5c2108e2ec14dd6ac439283d3d2e49cd" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DD91:1918325:6075DC1A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4881' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '119' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3101065158843994 + latency: 0.11899256706237793 module_call_list: - unittest.case - requre.online_replacing @@ -35211,7 +34897,7 @@ requests.sessions: updated_at: '2020-05-18T08:42:29Z' url: https://api.github.com/repos/packit/ogr/issues/325 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -35230,49 +34916,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.118814 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:12 GMT + ETag: W/"8271078dc3769d1893a677ab64f8b27d5c2108e2ec14dd6ac439283d3d2e49cd" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F82086:191EA15:6075DC68 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4504' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '496' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/329: - metadata: - latency: 0.3399314880371094 + latency: 0.14449691772460938 module_call_list: - unittest.case - requre.online_replacing @@ -35292,43 +34973,43 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos - site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions - type: User - url: https://api.github.com/users/nasirhm + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/nasirhm + url: https://api.github.com/users/shreyaspapi author_association: CONTRIBUTOR body: "Is it possible to assign Issues to particular user-names using\ \ the issue object by any chance?\r\n\r\n#### Github\r\n- github-api:\ @@ -35346,9 +35027,27 @@ requests.sessions: \ tests for it\r\n- [ ] add the get/set property for the Issue classes\r\ \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ \ tests for it\r\n\r\n\r\nupdated by @lachmanfrantisek " - closed_at: null - closed_by: null - comments: 6 + closed_at: '2020-10-20T14:41:14Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/329/comments created_at: '2020-02-17T15:16:46Z' events_url: https://api.github.com/repos/packit/ogr/issues/329/events @@ -35369,6 +35068,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -35404,12 +35110,12 @@ requests.sessions: number: 329 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Assigning Issues to based on usernames. - updated_at: '2020-07-17T06:32:56Z' + updated_at: '2020-10-20T14:41:14Z' url: https://api.github.com/repos/packit/ogr/issues/329 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} followers_url: https://api.github.com/users/saisankargochhayat/followers following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} @@ -35428,48 +35134,43 @@ requests.sessions: type: User url: https://api.github.com/users/saisankargochhayat _next: null - elapsed: 0.2 + elapsed: 0.144217 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 19:41:28 GMT + Date: Tue, 13 Apr 2021 17:59:46 GMT + ETag: W/"aa448dc93aff8f131aa1be3e47cddef66171d45d86e88900efc28703d8841bae" + Last-Modified: Tue, 13 Apr 2021 14:35:05 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D879:1917A95:6075DC12 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4924' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '76' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.294597864151001 + latency: 0.28231334686279297 module_call_list: - unittest.case - requre.online_replacing @@ -35489,43 +35190,43 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos - site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions - type: User - url: https://api.github.com/users/nasirhm + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/nasirhm + url: https://api.github.com/users/shreyaspapi author_association: CONTRIBUTOR body: "Is it possible to assign Issues to particular user-names using\ \ the issue object by any chance?\r\n\r\n#### Github\r\n- github-api:\ @@ -35543,9 +35244,27 @@ requests.sessions: \ tests for it\r\n- [ ] add the get/set property for the Issue classes\r\ \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ \ tests for it\r\n\r\n\r\nupdated by @lachmanfrantisek " - closed_at: null - closed_by: null - comments: 6 + closed_at: '2020-10-20T14:41:14Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/329/comments created_at: '2020-02-17T15:16:46Z' events_url: https://api.github.com/repos/packit/ogr/issues/329/events @@ -35566,6 +35285,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -35601,12 +35327,12 @@ requests.sessions: number: 329 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Assigning Issues to based on usernames. - updated_at: '2020-07-17T06:32:56Z' + updated_at: '2020-10-20T14:41:14Z' url: https://api.github.com/repos/packit/ogr/issues/329 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} followers_url: https://api.github.com/users/saisankargochhayat/followers following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} @@ -35625,49 +35351,44 @@ requests.sessions: type: User url: https://api.github.com/users/saisankargochhayat _next: null - elapsed: 0.2 + elapsed: 0.282033 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 19:41:28 GMT + Date: Tue, 13 Apr 2021 18:00:32 GMT + ETag: W/"aa448dc93aff8f131aa1be3e47cddef66171d45d86e88900efc28703d8841bae" + Last-Modified: Tue, 13 Apr 2021 14:35:05 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FD70:191B4E2:6075DC40 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4707' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '293' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/33: - metadata: - latency: 0.29083919525146484 + latency: 0.1733076572418213 module_call_list: - unittest.case - requre.online_replacing @@ -35687,7 +35408,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -35706,7 +35427,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -35735,7 +35456,7 @@ requests.sessions: \n* https://pexpect.readthedocs.io" closed_at: '2019-07-09T09:29:53Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -35786,7 +35507,7 @@ requests.sessions: updated_at: '2019-07-09T09:29:53Z' url: https://api.github.com/repos/packit/ogr/issues/33 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -35805,48 +35526,43 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.173131 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:20 GMT + ETag: W/"0c56c36baaa8a1629bb4b2d657e6114c840daf68a668a86532d7d321e56f1a3c" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F2F3:191A485:6075DC34 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4767' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '233' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29303717613220215 + latency: 0.1884782314300537 module_call_list: - unittest.case - requre.online_replacing @@ -35866,7 +35582,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -35885,7 +35601,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -35914,7 +35630,7 @@ requests.sessions: \n* https://pexpect.readthedocs.io" closed_at: '2019-07-09T09:29:53Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -35965,7 +35681,7 @@ requests.sessions: updated_at: '2019-07-09T09:29:53Z' url: https://api.github.com/repos/packit/ogr/issues/33 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -35984,49 +35700,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.188296 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:01:01 GMT + ETag: W/"0c56c36baaa8a1629bb4b2d657e6114c840daf68a668a86532d7d321e56f1a3c" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F815B6:191DA07:6075DC5D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4557' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '443' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/330: - metadata: - latency: 0.300994873046875 + latency: 0.12130260467529297 module_call_list: - unittest.case - requre.online_replacing @@ -36045,16 +35756,52 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR body: "AFAIK at the moment it is not possible to get the info about whether\ \ the repository is private or not in pagure. Now we depend on the info\ \ that in src.fedoraproject.org and pagure.io, the private repositories\ \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" closed_at: null closed_by: null - comments: 4 + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments created_at: '2020-02-18T12:39:00Z' events_url: https://api.github.com/repos/packit/ogr/issues/330/events @@ -36068,6 +35815,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker - color: 42e529 default: false description: This issue was already processed and well defined. @@ -36084,10 +35838,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: better is_private method for pagure projects - updated_at: '2020-07-28T11:32:52Z' + updated_at: '2021-02-05T08:31:21Z' url: https://api.github.com/repos/packit/ogr/issues/330 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -36106,48 +35860,43 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.121127 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 17:59:43 GMT + ETag: W/"ddce3787a3fc9e6ce60343c79e40a65ed12633c63c569d871c981c6750b91d74" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D688:191776B:6075DC0F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4946' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '54' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.294464111328125 + latency: 0.24013733863830566 module_call_list: - unittest.case - requre.online_replacing @@ -36166,16 +35915,52 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR body: "AFAIK at the moment it is not possible to get the info about whether\ \ the repository is private or not in pagure. Now we depend on the info\ \ that in src.fedoraproject.org and pagure.io, the private repositories\ \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" closed_at: null closed_by: null - comments: 4 + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments created_at: '2020-02-18T12:39:00Z' events_url: https://api.github.com/repos/packit/ogr/issues/330/events @@ -36189,6 +35974,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker - color: 42e529 default: false description: This issue was already processed and well defined. @@ -36205,10 +35997,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: better is_private method for pagure projects - updated_at: '2020-07-28T11:32:52Z' + updated_at: '2021-02-05T08:31:21Z' url: https://api.github.com/repos/packit/ogr/issues/330 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -36227,49 +36019,44 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.23997 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:01:10 GMT + ETag: W/"ddce3787a3fc9e6ce60343c79e40a65ed12633c63c569d871c981c6750b91d74" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81F19:191E7FF:6075DC66 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4515' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '485' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/331: - metadata: - latency: 0.32980799674987793 + latency: 0.12363886833190918 module_call_list: - unittest.case - requre.online_replacing @@ -36289,7 +36076,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -36308,7 +36095,7 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -36326,12 +36113,12 @@ requests.sessions: subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User url: https://api.github.com/users/sakalosj - author_association: MEMBER + author_association: CONTRIBUTOR body: pagure provides more detailed error info stored under 'errors' key, which is not currently not used in output closed_at: '2020-03-12T12:16:11Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -36383,7 +36170,7 @@ requests.sessions: updated_at: '2020-03-12T12:16:11Z' url: https://api.github.com/repos/packit/ogr/issues/331 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -36402,48 +36189,43 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.123444 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 17:59:59 GMT + ETag: W/"a10ef6f2e5565eac3a477444d92c6c3e13b927b9c939604fc1fc2536cbf8c33e" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E06A:19187BD:6075DC1F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4856' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '144' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2541196346282959 + latency: 0.1275472640991211 module_call_list: - unittest.case - requre.online_replacing @@ -36463,7 +36245,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -36482,7 +36264,7 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -36500,12 +36282,12 @@ requests.sessions: subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User url: https://api.github.com/users/sakalosj - author_association: MEMBER + author_association: CONTRIBUTOR body: pagure provides more detailed error info stored under 'errors' key, which is not currently not used in output closed_at: '2020-03-12T12:16:11Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -36557,7 +36339,7 @@ requests.sessions: updated_at: '2020-03-12T12:16:11Z' url: https://api.github.com/repos/packit/ogr/issues/331 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -36576,49 +36358,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.127337 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 18:00:44 GMT + ETag: W/"a10ef6f2e5565eac3a477444d92c6c3e13b927b9c939604fc1fc2536cbf8c33e" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F806A4:191C2D0:6075DC4C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4646' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '354' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/334: - metadata: - latency: 0.25195741653442383 + latency: 0.11831068992614746 module_call_list: - unittest.case - requre.online_replacing @@ -36638,7 +36415,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -36657,7 +36434,7 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + - 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} @@ -36675,13 +36452,13 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek - author_association: MEMBER + author_association: CONTRIBUTOR body: "edited by @lachmanfrantisek :\r\n\r\nTODO:\r\n- Add tests for https://github.com/packit-service/ogr/pull/333\ \ (better pagure error messages)\r\n - e.g. wrong URL, wrong token,\ \ not-found object,..." closed_at: '2020-04-09T11:55:54Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -36746,7 +36523,7 @@ requests.sessions: updated_at: '2020-04-09T11:55:54Z' url: https://api.github.com/repos/packit/ogr/issues/334 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -36765,48 +36542,43 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.118144 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 17:59:57 GMT + ETag: W/"162c7b9eaffb31207d7ded4ec16a8d816f26971f3ffddcb9f7b5e9528f6de53e" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DF66:191861C:6075DC1D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4865' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '135' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2799263000488281 + latency: 0.2325911521911621 module_call_list: - unittest.case - requre.online_replacing @@ -36826,7 +36598,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -36845,7 +36617,7 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + - 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} @@ -36863,13 +36635,13 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek - author_association: MEMBER + author_association: CONTRIBUTOR body: "edited by @lachmanfrantisek :\r\n\r\nTODO:\r\n- Add tests for https://github.com/packit-service/ogr/pull/333\ \ (better pagure error messages)\r\n - e.g. wrong URL, wrong token,\ \ not-found object,..." closed_at: '2020-04-09T11:55:54Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -36934,7 +36706,7 @@ requests.sessions: updated_at: '2020-04-09T11:55:54Z' url: https://api.github.com/repos/packit/ogr/issues/334 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -36953,49 +36725,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.232359 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:42 GMT + ETag: W/"162c7b9eaffb31207d7ded4ec16a8d816f26971f3ffddcb9f7b5e9528f6de53e" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80534:191C0D1:6075DC4A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4655' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '345' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/338: - metadata: - latency: 0.23453330993652344 + latency: 0.12952494621276855 module_call_list: - unittest.case - requre.online_replacing @@ -37015,43 +36782,43 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} + 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/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions + 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/dinolinjob + url: https://api.github.com/users/lachmanfrantisek assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} + - 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/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions + 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/dinolinjob + url: https://api.github.com/users/lachmanfrantisek author_association: MEMBER body: "Multiple times in the code (mostly in the `parsing.py`), we need\ \ to parse the hostname of the instance.\r\n\r\n```python\r\nservice_repo_url\ @@ -37063,9 +36830,27 @@ requests.sessions: \n- [ ] hardcode the value for static instances (GitHub)\r\n- [ ] use\ \ that property in places, where we are getting hostname of the instance\r\ \n- [ ] create some unit tests for that" - closed_at: null - closed_by: null - comments: 4 + closed_at: '2020-09-18T14:55:56Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/338/comments created_at: '2020-02-21T08:57:50Z' events_url: https://api.github.com/repos/packit/ogr/issues/338/events @@ -37129,12 +36914,12 @@ requests.sessions: number: 338 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: hostname property in the service classes - updated_at: '2020-07-14T06:47:13Z' + updated_at: '2020-09-18T14:55:56Z' url: https://api.github.com/repos/packit/ogr/issues/338 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -37153,48 +36938,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.129296 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 05:52:11 GMT + Date: Tue, 13 Apr 2021 17:59:48 GMT + ETag: W/"530fe08527cd0831c979cf17907404effdb9cf24a68696f072916385c441657b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DA23:1917D63:6075DC14 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4910' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '90' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.30159664154052734 + latency: 0.2905256748199463 module_call_list: - unittest.case - requre.online_replacing @@ -37214,43 +36994,43 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} + 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/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions + 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/dinolinjob + url: https://api.github.com/users/lachmanfrantisek assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} + - 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/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions + 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/dinolinjob + url: https://api.github.com/users/lachmanfrantisek author_association: MEMBER body: "Multiple times in the code (mostly in the `parsing.py`), we need\ \ to parse the hostname of the instance.\r\n\r\n```python\r\nservice_repo_url\ @@ -37262,9 +37042,27 @@ requests.sessions: \n- [ ] hardcode the value for static instances (GitHub)\r\n- [ ] use\ \ that property in places, where we are getting hostname of the instance\r\ \n- [ ] create some unit tests for that" - closed_at: null - closed_by: null - comments: 4 + closed_at: '2020-09-18T14:55:56Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/338/comments created_at: '2020-02-21T08:57:50Z' events_url: https://api.github.com/repos/packit/ogr/issues/338/events @@ -37328,12 +37126,12 @@ requests.sessions: number: 338 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: hostname property in the service classes - updated_at: '2020-07-14T06:47:13Z' + updated_at: '2020-09-18T14:55:56Z' url: https://api.github.com/repos/packit/ogr/issues/338 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -37352,49 +37150,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.290261 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 05:52:11 GMT + Date: Tue, 13 Apr 2021 18:00:34 GMT + ETag: W/"530fe08527cd0831c979cf17907404effdb9cf24a68696f072916385c441657b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FF21:191B780:6075DC42 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4696' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '304' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/339: - metadata: - latency: 0.477144718170166 + latency: 0.1119377613067627 module_call_list: - unittest.case - requre.online_replacing @@ -37424,7 +37217,7 @@ requests.sessions: \ to the user." closed_at: '2020-04-07T12:06:30Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -37496,7 +37289,7 @@ requests.sessions: updated_at: '2020-04-07T12:06:30Z' url: https://api.github.com/repos/packit/ogr/issues/339 user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 events_url: https://api.github.com/users/cverna/events{/privacy} followers_url: https://api.github.com/users/cverna/followers following_url: https://api.github.com/users/cverna/following{/other_user} @@ -37515,48 +37308,43 @@ requests.sessions: type: User url: https://api.github.com/users/cverna _next: null - elapsed: 0.2 + elapsed: 0.111758 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 09:12:10 GMT + Date: Tue, 13 Apr 2021 17:59:57 GMT + ETag: W/"e018fb2de2ee635d353f785fd20861715eaa8ba5ff30e512cd5c1b3345a447c8" + Last-Modified: Mon, 12 Apr 2021 06:55:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DF74:191863D:6075DC1D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4864' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '136' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3799777030944824 + latency: 0.12248516082763672 module_call_list: - unittest.case - requre.online_replacing @@ -37586,7 +37374,7 @@ requests.sessions: \ to the user." closed_at: '2020-04-07T12:06:30Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -37658,7 +37446,7 @@ requests.sessions: updated_at: '2020-04-07T12:06:30Z' url: https://api.github.com/repos/packit/ogr/issues/339 user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 events_url: https://api.github.com/users/cverna/events{/privacy} followers_url: https://api.github.com/users/cverna/followers following_url: https://api.github.com/users/cverna/following{/other_user} @@ -37677,49 +37465,44 @@ requests.sessions: type: User url: https://api.github.com/users/cverna _next: null - elapsed: 0.2 + elapsed: 0.122308 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 09:12:10 GMT + Date: Tue, 13 Apr 2021 18:00:42 GMT + ETag: W/"e018fb2de2ee635d353f785fd20861715eaa8ba5ff30e512cd5c1b3345a447c8" + Last-Modified: Mon, 12 Apr 2021 06:55:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80566:191C112:6075DC4A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4654' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '346' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/342: - metadata: - latency: 0.5068295001983643 + latency: 0.19309163093566895 module_call_list: - unittest.case - requre.online_replacing @@ -37739,7 +37522,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/20343475?v=4 + avatar_url: https://avatars.githubusercontent.com/u/20343475?v=4 events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} followers_url: https://api.github.com/users/RafayGhafoor/followers following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} @@ -37758,7 +37541,7 @@ requests.sessions: type: User url: https://api.github.com/users/RafayGhafoor assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/20343475?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/20343475?v=4 events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} followers_url: https://api.github.com/users/RafayGhafoor/followers following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} @@ -37784,7 +37567,7 @@ requests.sessions: \ lines." closed_at: '2020-05-25T14:18:31Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -37857,7 +37640,7 @@ requests.sessions: updated_at: '2020-05-25T14:18:31Z' url: https://api.github.com/repos/packit/ogr/issues/342 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -37876,48 +37659,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.192915 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 20 Aug 2020 13:20:29 GMT + Date: Tue, 13 Apr 2021 17:59:54 GMT + ETag: W/"1a4a469151089685ab03a2aa4855472e80b2380c06baca3dadfa58a9811f0739" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DD4D:19182B3:6075DC1A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4883' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '117' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2734661102294922 + latency: 0.11693930625915527 module_call_list: - unittest.case - requre.online_replacing @@ -37937,7 +37715,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/20343475?v=4 + avatar_url: https://avatars.githubusercontent.com/u/20343475?v=4 events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} followers_url: https://api.github.com/users/RafayGhafoor/followers following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} @@ -37956,7 +37734,7 @@ requests.sessions: type: User url: https://api.github.com/users/RafayGhafoor assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/20343475?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/20343475?v=4 events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} followers_url: https://api.github.com/users/RafayGhafoor/followers following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} @@ -37982,7 +37760,7 @@ requests.sessions: \ lines." closed_at: '2020-05-25T14:18:31Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -38055,7 +37833,7 @@ requests.sessions: updated_at: '2020-05-25T14:18:31Z' url: https://api.github.com/repos/packit/ogr/issues/342 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -38074,49 +37852,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.116665 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 20 Aug 2020 13:20:29 GMT + Date: Tue, 13 Apr 2021 18:00:39 GMT + ETag: W/"1a4a469151089685ab03a2aa4855472e80b2380c06baca3dadfa58a9811f0739" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8029A:191BCB1:6075DC47 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4672' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '328' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/344: - metadata: - latency: 0.23875904083251953 + latency: 0.13057327270507812 module_call_list: - unittest.case - requre.online_replacing @@ -38136,7 +37909,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 + avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 events_url: https://api.github.com/users/TomasJani/events{/privacy} followers_url: https://api.github.com/users/TomasJani/followers following_url: https://api.github.com/users/TomasJani/following{/other_user} @@ -38155,7 +37928,7 @@ requests.sessions: type: User url: https://api.github.com/users/TomasJani assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 events_url: https://api.github.com/users/TomasJani/events{/privacy} followers_url: https://api.github.com/users/TomasJani/followers following_url: https://api.github.com/users/TomasJani/following{/other_user} @@ -38182,7 +37955,7 @@ requests.sessions: \n- [x] tests for all implementations" closed_at: '2020-05-16T16:37:40Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -38268,7 +38041,7 @@ requests.sessions: updated_at: '2020-05-18T08:05:17Z' url: https://api.github.com/repos/packit/ogr/issues/344 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -38287,48 +38060,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.130374 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 04 Aug 2020 10:09:27 GMT + Date: Tue, 13 Apr 2021 17:59:55 GMT + ETag: W/"94eedc26cf0b083b60644fce989272efd34e9095ccc11e11f4eef9d97791ca91" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DDA5:1918349:6075DC1B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4880' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '120' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29536008834838867 + latency: 0.11728501319885254 module_call_list: - unittest.case - requre.online_replacing @@ -38348,7 +38116,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 + avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 events_url: https://api.github.com/users/TomasJani/events{/privacy} followers_url: https://api.github.com/users/TomasJani/followers following_url: https://api.github.com/users/TomasJani/following{/other_user} @@ -38367,7 +38135,7 @@ requests.sessions: type: User url: https://api.github.com/users/TomasJani assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 events_url: https://api.github.com/users/TomasJani/events{/privacy} followers_url: https://api.github.com/users/TomasJani/followers following_url: https://api.github.com/users/TomasJani/following{/other_user} @@ -38394,7 +38162,7 @@ requests.sessions: \n- [x] tests for all implementations" closed_at: '2020-05-16T16:37:40Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -38480,7 +38248,7 @@ requests.sessions: updated_at: '2020-05-18T08:05:17Z' url: https://api.github.com/repos/packit/ogr/issues/344 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -38499,49 +38267,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.117104 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 04 Aug 2020 10:09:27 GMT + Date: Tue, 13 Apr 2021 18:00:39 GMT + ETag: W/"94eedc26cf0b083b60644fce989272efd34e9095ccc11e11f4eef9d97791ca91" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F802EF:191BD3F:6075DC47 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4670' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '330' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/346: - metadata: - latency: 0.28063058853149414 + latency: 0.11479353904724121 module_call_list: - unittest.case - requre.online_replacing @@ -38566,7 +38329,7 @@ requests.sessions: body: '' closed_at: '2020-03-07T06:10:20Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -38617,7 +38380,7 @@ requests.sessions: updated_at: '2020-03-07T06:10:20Z' url: https://api.github.com/repos/packit/ogr/issues/346 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -38636,48 +38399,43 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.114577 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 17:59:59 GMT + ETag: W/"da1920640227af69105cea7ab831420d1bac653109f4d90b4fc95146972b4642" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E089:19187E7:6075DC1F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4854' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '146' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3006455898284912 + latency: 0.11255574226379395 module_call_list: - unittest.case - requre.online_replacing @@ -38702,7 +38460,7 @@ requests.sessions: body: '' closed_at: '2020-03-07T06:10:20Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -38753,7 +38511,7 @@ requests.sessions: updated_at: '2020-03-07T06:10:20Z' url: https://api.github.com/repos/packit/ogr/issues/346 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -38772,49 +38530,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.112399 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:44 GMT + ETag: W/"da1920640227af69105cea7ab831420d1bac653109f4d90b4fc95146972b4642" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F806DA:191C31D:6075DC4C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4644' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '356' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/348: - metadata: - latency: 0.3013465404510498 + latency: 0.10586166381835938 module_call_list: - unittest.case - requre.online_replacing @@ -38863,7 +38616,7 @@ requests.sessions: ' closed_at: '2020-03-09T14:02:41Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -38900,7 +38653,7 @@ requests.sessions: updated_at: '2020-03-10T09:57:32Z' url: https://api.github.com/repos/packit/ogr/issues/348 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -38919,48 +38672,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.105703 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:59 GMT + ETag: W/"9db9b56fd102e46af8eb8dbdd8a46d6753be011f437ddf5610973680350f9956" Last-Modified: Tue, 10 Mar 2020 09:57:32 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E07D:19187D8:6075DC1F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4855' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '145' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.28154683113098145 + latency: 0.11355018615722656 module_call_list: - unittest.case - requre.online_replacing @@ -39009,7 +38757,7 @@ requests.sessions: ' closed_at: '2020-03-09T14:02:41Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -39046,7 +38794,7 @@ requests.sessions: updated_at: '2020-03-10T09:57:32Z' url: https://api.github.com/repos/packit/ogr/issues/348 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -39065,49 +38813,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.113385 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:44 GMT + ETag: W/"9db9b56fd102e46af8eb8dbdd8a46d6753be011f437ddf5610973680350f9956" Last-Modified: Tue, 10 Mar 2020 09:57:32 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F806C2:191C2ED:6075DC4C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4645' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '355' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/353: - metadata: - latency: 0.36170005798339844 + latency: 0.23149967193603516 module_call_list: - unittest.case - requre.online_replacing @@ -39128,7 +38871,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\n$ tox\r\nGLOB sdist-make: /home/tt/g/user-cont/ogr/setup.py\ \ \r\npy36 inst-nodeps: /home/tt/g/user-cont/ogr/.tox/.tmp/package/1/ogr-0.11.1.dev4+g022e9df.zip\r\ \nWARNING: Discarding $PYTHONPATH from environment, to override specify\ @@ -39187,7 +38930,7 @@ requests.sessions: \ when I use older pygithub." closed_at: '2020-03-18T12:37:12Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -39231,7 +38974,7 @@ requests.sessions: updated_at: '2020-03-18T12:37:12Z' url: https://api.github.com/repos/packit/ogr/issues/353 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -39250,48 +38993,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.231312 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 17:59:58 GMT + ETag: W/"1856bcb7bf76df82e98169a619be0571d6832091dfa837c435afad165beb61f6" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E00B:1918724:6075DC1E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4859' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '141' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.39700818061828613 + latency: 0.12136459350585938 module_call_list: - unittest.case - requre.online_replacing @@ -39312,7 +39050,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\n$ tox\r\nGLOB sdist-make: /home/tt/g/user-cont/ogr/setup.py\ \ \r\npy36 inst-nodeps: /home/tt/g/user-cont/ogr/.tox/.tmp/package/1/ogr-0.11.1.dev4+g022e9df.zip\r\ \nWARNING: Discarding $PYTHONPATH from environment, to override specify\ @@ -39371,7 +39109,7 @@ requests.sessions: \ when I use older pygithub." closed_at: '2020-03-18T12:37:12Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -39415,7 +39153,7 @@ requests.sessions: updated_at: '2020-03-18T12:37:12Z' url: https://api.github.com/repos/packit/ogr/issues/353 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -39434,49 +39172,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.120003 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:43 GMT + ETag: W/"1856bcb7bf76df82e98169a619be0571d6832091dfa837c435afad165beb61f6" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80645:191C248:6075DC4B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4649' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '351' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/354: - metadata: - latency: 0.30044007301330566 + latency: 0.20090174674987793 module_call_list: - unittest.case - requre.online_replacing @@ -39506,7 +39239,7 @@ requests.sessions: hosted Gitlab. ' closed_at: '2020-03-17T14:46:29Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -39550,7 +39283,7 @@ requests.sessions: updated_at: '2020-03-17T14:58:14Z' url: https://api.github.com/repos/packit/ogr/issues/354 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} followers_url: https://api.github.com/users/saisankargochhayat/followers following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} @@ -39569,48 +39302,43 @@ requests.sessions: type: User url: https://api.github.com/users/saisankargochhayat _next: null - elapsed: 0.2 + elapsed: 0.200693 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 20 Aug 2020 01:17:30 GMT + Date: Tue, 13 Apr 2021 17:59:58 GMT + ETag: W/"a5505d03804bc942bc51c9426ab9162eb078b4bcc6f6afe325035826f391222a" + Last-Modified: Tue, 13 Apr 2021 14:35:05 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E031:1918768:6075DC1E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4858' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '142' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3005387783050537 + latency: 0.11361908912658691 module_call_list: - unittest.case - requre.online_replacing @@ -39640,7 +39368,7 @@ requests.sessions: hosted Gitlab. ' closed_at: '2020-03-17T14:46:29Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -39684,7 +39412,7 @@ requests.sessions: updated_at: '2020-03-17T14:58:14Z' url: https://api.github.com/repos/packit/ogr/issues/354 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} followers_url: https://api.github.com/users/saisankargochhayat/followers following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} @@ -39703,49 +39431,44 @@ requests.sessions: type: User url: https://api.github.com/users/saisankargochhayat _next: null - elapsed: 0.2 + elapsed: 0.113442 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 20 Aug 2020 01:17:30 GMT + Date: Tue, 13 Apr 2021 18:00:43 GMT + ETag: W/"a5505d03804bc942bc51c9426ab9162eb078b4bcc6f6afe325035826f391222a" + Last-Modified: Tue, 13 Apr 2021 14:35:05 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80667:191C270:6075DC4B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4648' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '352' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/356: - metadata: - latency: 0.32363367080688477 + latency: 0.14231538772583008 module_call_list: - unittest.case - requre.online_replacing @@ -39773,7 +39496,7 @@ requests.sessions: \n - ignore the SSL verification (`ssl_verify` argument)" closed_at: null closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -39791,7 +39514,7 @@ requests.sessions: subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions type: Bot url: https://api.github.com/users/stale%5Bbot%5D - comments: 4 + comments: 9 comments_url: https://api.github.com/repos/packit/ogr/issues/356/comments created_at: '2020-03-17T14:45:26Z' events_url: https://api.github.com/repos/packit/ogr/issues/356/events @@ -39805,6 +39528,13 @@ requests.sessions: name: documentation node_id: MDU6TGFiZWwxNDMyNzc5MjY3 url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -39821,10 +39551,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Document the usage of custom instances and certificates - updated_at: '2020-08-24T06:10:50Z' + updated_at: '2021-03-08T17:41:56Z' url: https://api.github.com/repos/packit/ogr/issues/356 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -39843,48 +39573,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.142093 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 06:10:50 GMT + Date: Tue, 13 Apr 2021 17:59:38 GMT + ETag: W/"c16752e39d98a4870c7d51ee909b668eb3415c3d5323de75a7b9f7ed923f884e" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D3AA:19172F6:6075DC0A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4966' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '34' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29993534088134766 + latency: 0.13760590553283691 module_call_list: - unittest.case - requre.online_replacing @@ -39912,7 +39637,7 @@ requests.sessions: \n - ignore the SSL verification (`ssl_verify` argument)" closed_at: null closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -39930,7 +39655,7 @@ requests.sessions: subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions type: Bot url: https://api.github.com/users/stale%5Bbot%5D - comments: 4 + comments: 9 comments_url: https://api.github.com/repos/packit/ogr/issues/356/comments created_at: '2020-03-17T14:45:26Z' events_url: https://api.github.com/repos/packit/ogr/issues/356/events @@ -39944,6 +39669,13 @@ requests.sessions: name: documentation node_id: MDU6TGFiZWwxNDMyNzc5MjY3 url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -39960,10 +39692,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Document the usage of custom instances and certificates - updated_at: '2020-08-24T06:10:50Z' + updated_at: '2021-03-08T17:41:56Z' url: https://api.github.com/repos/packit/ogr/issues/356 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -39982,49 +39714,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.137324 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 06:10:50 GMT + Date: Tue, 13 Apr 2021 18:01:09 GMT + ETag: W/"c16752e39d98a4870c7d51ee909b668eb3415c3d5323de75a7b9f7ed923f884e" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81E1E:191E694:6075DC65 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4524' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '476' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/359: - metadata: - latency: 0.29208850860595703 + latency: 0.19937729835510254 module_call_list: - unittest.case - requre.online_replacing @@ -40045,22 +39772,30 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "and ideally link it with pull request and git project\r\n\r\nThe\ \ expectation here is that when ogr returns name of a branch, it would\ \ return a GitBranch instance instead.\r\n\r\nThe class should contain\ - \ at minimum:\r\n* name\r\n* be linked to a repository\r\n\r\nWould\ - \ be nice if:\r\n* there was a connection to a PR if there is one\r\n\ - * datetime it was created\r\n* datetime of last change" + \ at minimum:\r\n* name\r\n* be linked to a repository\r\n* commit SHA\ + \ of the HEAD\r\n\r\nWould be nice if:\r\n* there was a connection to\ + \ a PR if there is one\r\n* datetime it was created\r\n* datetime of\ + \ last change" closed_at: null closed_by: null - comments: 4 + comments: 6 comments_url: https://api.github.com/repos/packit/ogr/issues/359/comments created_at: '2020-03-23T12:36:31Z' events_url: https://api.github.com/repos/packit/ogr/issues/359/events html_url: https://github.com/packit/ogr/issues/359 id: 586176845 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -40091,10 +39826,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: introduce a class for a git branch - updated_at: '2020-08-10T09:23:58Z' + updated_at: '2021-02-09T08:39:32Z' url: https://api.github.com/repos/packit/ogr/issues/359 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -40113,48 +39848,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.199209 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 17:59:42 GMT + ETag: W/"53565dcdeeab393bcbf927921c5ecc5266ba41fc7f77f1486ddcd3d83a6b54af" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D5D2:1917639:6075DC0D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4952' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '48' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2930793762207031 + latency: 0.1178886890411377 module_call_list: - unittest.case - requre.online_replacing @@ -40175,22 +39905,30 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "and ideally link it with pull request and git project\r\n\r\nThe\ \ expectation here is that when ogr returns name of a branch, it would\ \ return a GitBranch instance instead.\r\n\r\nThe class should contain\ - \ at minimum:\r\n* name\r\n* be linked to a repository\r\n\r\nWould\ - \ be nice if:\r\n* there was a connection to a PR if there is one\r\n\ - * datetime it was created\r\n* datetime of last change" + \ at minimum:\r\n* name\r\n* be linked to a repository\r\n* commit SHA\ + \ of the HEAD\r\n\r\nWould be nice if:\r\n* there was a connection to\ + \ a PR if there is one\r\n* datetime it was created\r\n* datetime of\ + \ last change" closed_at: null closed_by: null - comments: 4 + comments: 6 comments_url: https://api.github.com/repos/packit/ogr/issues/359/comments created_at: '2020-03-23T12:36:31Z' events_url: https://api.github.com/repos/packit/ogr/issues/359/events html_url: https://github.com/packit/ogr/issues/359 id: 586176845 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -40221,10 +39959,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: introduce a class for a git branch - updated_at: '2020-08-10T09:23:58Z' + updated_at: '2021-02-09T08:39:32Z' url: https://api.github.com/repos/packit/ogr/issues/359 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -40243,49 +39981,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.117629 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:10 GMT + ETag: W/"53565dcdeeab393bcbf927921c5ecc5266ba41fc7f77f1486ddcd3d83a6b54af" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81ECD:191E78A:6075DC65 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4518' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '482' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/36: - metadata: - latency: 0.24857831001281738 + latency: 0.11878013610839844 module_call_list: - unittest.case - requre.online_replacing @@ -40306,11 +40039,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2019-03-18T17:45:29Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -40361,7 +40094,7 @@ requests.sessions: updated_at: '2019-03-18T17:45:29Z' url: https://api.github.com/repos/packit/ogr/issues/36 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -40380,48 +40113,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.118618 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:25 GMT + ETag: W/"a2868499e7e920a58636f2adc983e140a8b8d7cd0b23e26f35c69a9176b41ba2" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F69F:191AA4E:6075DC39 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4747' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '253' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.292999267578125 + latency: 0.09804177284240723 module_call_list: - unittest.case - requre.online_replacing @@ -40442,11 +40170,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2019-03-18T17:45:29Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -40497,7 +40225,7 @@ requests.sessions: updated_at: '2019-03-18T17:45:29Z' url: https://api.github.com/repos/packit/ogr/issues/36 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -40516,49 +40244,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.097875 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:06 GMT + ETag: W/"a2868499e7e920a58636f2adc983e140a8b8d7cd0b23e26f35c69a9176b41ba2" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81B35:191E24D:6075DC62 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4537' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '463' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/360: - metadata: - latency: 0.3971247673034668 + latency: 0.11445856094360352 module_call_list: - unittest.case - requre.online_replacing @@ -40579,7 +40302,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "and ideally link it with pull request, branch, author and git project\r\ \n\r\nThe expectation here is that when ogr returns a commit has, it\ \ would return a GitCommit instance instead.\r\n\r\nThe class should\ @@ -40596,13 +40319,20 @@ requests.sessions: \ -> `Pull-request information`" closed_at: null closed_by: null - comments: 2 + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/360/comments created_at: '2020-03-23T12:38:34Z' events_url: https://api.github.com/repos/packit/ogr/issues/360/events html_url: https://github.com/packit/ogr/issues/360 id: 586178020 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -40633,10 +40363,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: introduce a new class for GitCommit - updated_at: '2020-08-10T09:23:51Z' + updated_at: '2021-02-04T19:58:47Z' url: https://api.github.com/repos/packit/ogr/issues/360 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -40655,48 +40385,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.114221 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 17:59:43 GMT + ETag: W/"2ed97c2a1da8bb26815148119c55fba2041dfc28d5d66f5a2d02d978053117a2" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D6AD:191779A:6075DC0F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4944' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '56' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3015928268432617 + latency: 0.10432291030883789 module_call_list: - unittest.case - requre.online_replacing @@ -40717,7 +40442,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "and ideally link it with pull request, branch, author and git project\r\ \n\r\nThe expectation here is that when ogr returns a commit has, it\ \ would return a GitCommit instance instead.\r\n\r\nThe class should\ @@ -40734,13 +40459,20 @@ requests.sessions: \ -> `Pull-request information`" closed_at: null closed_by: null - comments: 2 + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/360/comments created_at: '2020-03-23T12:38:34Z' events_url: https://api.github.com/repos/packit/ogr/issues/360/events html_url: https://github.com/packit/ogr/issues/360 id: 586178020 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -40771,10 +40503,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: introduce a new class for GitCommit - updated_at: '2020-08-10T09:23:51Z' + updated_at: '2021-02-04T19:58:47Z' url: https://api.github.com/repos/packit/ogr/issues/360 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -40793,49 +40525,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.104156 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:10 GMT + ETag: W/"2ed97c2a1da8bb26815148119c55fba2041dfc28d5d66f5a2d02d978053117a2" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81F5B:191E872:6075DC66 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4513' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '487' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/364: - metadata: - latency: 0.30066776275634766 + latency: 0.13797903060913086 module_call_list: - unittest.case - requre.online_replacing @@ -40856,7 +40583,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "* We first to need to create an abstraction on top of all forges\r\ \n* and then implement it for each\r\n\r\nThis is an example how pagure\ \ does it:\r\n```python\r\nmod_acls = {\r\n 'user_type': 'group',\r\ @@ -40866,7 +40593,7 @@ requests.sessions: \n data=mod_acls\r\n)\r\n```" closed_at: '2020-06-22T13:36:26Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -40924,7 +40651,7 @@ requests.sessions: updated_at: '2020-06-22T13:36:27Z' url: https://api.github.com/repos/packit/ogr/issues/364 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -40943,48 +40670,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.137786 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 17:59:53 GMT + ETag: W/"916c3293edc2d24363e38a5e7193932f524155f842c1d6a22c1a538b62133410" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DCD9:19181F6:6075DC19 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4888' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '112' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29177427291870117 + latency: 0.10718417167663574 module_call_list: - unittest.case - requre.online_replacing @@ -41005,7 +40727,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "* We first to need to create an abstraction on top of all forges\r\ \n* and then implement it for each\r\n\r\nThis is an example how pagure\ \ does it:\r\n```python\r\nmod_acls = {\r\n 'user_type': 'group',\r\ @@ -41015,7 +40737,7 @@ requests.sessions: \n data=mod_acls\r\n)\r\n```" closed_at: '2020-06-22T13:36:26Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -41073,7 +40795,7 @@ requests.sessions: updated_at: '2020-06-22T13:36:27Z' url: https://api.github.com/repos/packit/ogr/issues/364 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -41092,49 +40814,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.107019 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:38 GMT + ETag: W/"916c3293edc2d24363e38a5e7193932f524155f842c1d6a22c1a538b62133410" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80227:191BBFD:6075DC46 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4676' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '324' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/365: - metadata: - latency: 0.39365434646606445 + latency: 0.26888513565063477 module_call_list: - unittest.case - requre.online_replacing @@ -41155,18 +40872,43 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "* [ ] Project\r\n* [ ] Service (**don't** include secrets)\r\n\ * [ ] Release\r\n* [ ] PR\r\n* [ ] Issue" - closed_at: null - closed_by: null - comments: 4 + closed_at: '2020-12-09T11:20:42Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 6 comments_url: https://api.github.com/repos/packit/ogr/issues/365/comments created_at: '2020-03-25T13:23:05Z' events_url: https://api.github.com/repos/packit/ogr/issues/365/events html_url: https://github.com/packit/ogr/issues/365 id: 587692896 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -41202,12 +40944,12 @@ requests.sessions: number: 365 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: add __repr__ to classes - updated_at: '2020-08-10T09:23:44Z' + updated_at: '2020-12-09T11:20:42Z' url: https://api.github.com/repos/packit/ogr/issues/365 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -41226,48 +40968,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.26872 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 17:59:45 GMT + ETag: W/"4d18745dede2a5a18353c5b7504f166e331eeb946d708c4702c88fd4902c773a" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D7E5:191799B:6075DC11 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4930' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '70' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.24050354957580566 + latency: 0.2720620632171631 module_call_list: - unittest.case - requre.online_replacing @@ -41288,18 +41025,43 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "* [ ] Project\r\n* [ ] Service (**don't** include secrets)\r\n\ * [ ] Release\r\n* [ ] PR\r\n* [ ] Issue" - closed_at: null - closed_by: null - comments: 4 + closed_at: '2020-12-09T11:20:42Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 6 comments_url: https://api.github.com/repos/packit/ogr/issues/365/comments created_at: '2020-03-25T13:23:05Z' events_url: https://api.github.com/repos/packit/ogr/issues/365/events html_url: https://github.com/packit/ogr/issues/365 id: 587692896 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -41335,12 +41097,12 @@ requests.sessions: number: 365 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: add __repr__ to classes - updated_at: '2020-08-10T09:23:44Z' + updated_at: '2020-12-09T11:20:42Z' url: https://api.github.com/repos/packit/ogr/issues/365 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -41359,49 +41121,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.271796 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:31 GMT + ETag: W/"4d18745dede2a5a18353c5b7504f166e331eeb946d708c4702c88fd4902c773a" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FC77:191B366:6075DC3F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4713' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '287' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/368: - metadata: - latency: 0.2176370620727539 + latency: 0.12584829330444336 module_call_list: - unittest.case - requre.online_replacing @@ -41422,11 +41179,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: Implement PullRequest.head_commit for github and gitlab closed_at: '2020-04-30T13:57:51Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -41491,7 +41248,7 @@ requests.sessions: updated_at: '2020-04-30T13:57:51Z' url: https://api.github.com/repos/packit/ogr/issues/368 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -41510,48 +41267,43 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.125657 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 17:59:55 GMT + ETag: W/"59769038796085b7360f53d1f7a2ff2c7c3a13a17f26f4271b3b99bc6874148e" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DE1D:191840E:6075DC1B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4875' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '125' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3054642677307129 + latency: 0.376340389251709 module_call_list: - unittest.case - requre.online_replacing @@ -41572,11 +41324,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: Implement PullRequest.head_commit for github and gitlab closed_at: '2020-04-30T13:57:51Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -41641,7 +41393,7 @@ requests.sessions: updated_at: '2020-04-30T13:57:51Z' url: https://api.github.com/repos/packit/ogr/issues/368 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -41660,49 +41412,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.376136 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 18:00:41 GMT + ETag: W/"59769038796085b7360f53d1f7a2ff2c7c3a13a17f26f4271b3b99bc6874148e" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F803F3:191BEE4:6075DC48 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4664' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '336' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/370: - metadata: - latency: 0.5200090408325195 + latency: 0.11278700828552246 module_call_list: - unittest.case - requre.online_replacing @@ -41723,11 +41470,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2020-04-01T08:33:46Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -41778,7 +41525,7 @@ requests.sessions: updated_at: '2020-04-01T08:33:46Z' url: https://api.github.com/repos/packit/ogr/issues/370 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -41797,48 +41544,43 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.112514 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 17:59:58 GMT + ETag: W/"16be6dfc10bf91e34ec208cfd6935e7e692184180458a63447929c28ca6b236f" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DFF9:1918706:6075DC1E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4860' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '140' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2937178611755371 + latency: 0.10399889945983887 module_call_list: - unittest.case - requre.online_replacing @@ -41859,11 +41601,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2020-04-01T08:33:46Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -41914,7 +41656,7 @@ requests.sessions: updated_at: '2020-04-01T08:33:46Z' url: https://api.github.com/repos/packit/ogr/issues/370 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -41933,49 +41675,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.103803 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 18:00:43 GMT + ETag: W/"16be6dfc10bf91e34ec208cfd6935e7e692184180458a63447929c28ca6b236f" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80631:191C222:6075DC4B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4650' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '350' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/372: - metadata: - latency: 0.3408975601196289 + latency: 0.09713268280029297 module_call_list: - unittest.case - requre.online_replacing @@ -42024,7 +41761,7 @@ requests.sessions: ' closed_at: '2020-04-01T13:27:44Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -42061,7 +41798,7 @@ requests.sessions: updated_at: '2020-04-01T13:27:44Z' url: https://api.github.com/repos/packit/ogr/issues/372 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -42080,48 +41817,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.096876 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:58 GMT + ETag: W/"d5c6705a232fea71f2e886d0b3acd2d641bc2edb1ed3662d2ad53cf3ec9af2da" Last-Modified: Wed, 01 Apr 2020 13:27:44 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DFE6:19186EB:6075DC1E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4861' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '139' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29352378845214844 + latency: 0.09939932823181152 module_call_list: - unittest.case - requre.online_replacing @@ -42170,7 +41902,7 @@ requests.sessions: ' closed_at: '2020-04-01T13:27:44Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -42207,7 +41939,7 @@ requests.sessions: updated_at: '2020-04-01T13:27:44Z' url: https://api.github.com/repos/packit/ogr/issues/372 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -42226,49 +41958,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.099238 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:43 GMT + ETag: W/"d5c6705a232fea71f2e886d0b3acd2d641bc2edb1ed3662d2ad53cf3ec9af2da" Last-Modified: Wed, 01 Apr 2020 13:27:44 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80614:191C1FD:6075DC4B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4651' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '349' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/377: - metadata: - latency: 0.4800529479980469 + latency: 0.11270451545715332 module_call_list: - unittest.case - requre.online_replacing @@ -42289,12 +42016,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: PaureProject.get_files() not implemented. Maybe not possible because pagure api doesnt provide any possiblity to get repository content. closed_at: '2020-04-14T09:13:43Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -42359,7 +42086,7 @@ requests.sessions: updated_at: '2020-04-14T09:13:43Z' url: https://api.github.com/repos/packit/ogr/issues/377 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -42378,48 +42105,43 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.112533 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 17:59:57 GMT + ETag: W/"43de849dc3d92584b2cb06e8b4af372f7fd3d20a0f2070c966f30de07c6818bf" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DF56:1918603:6075DC1D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4866' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '134' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2930908203125 + latency: 0.11064934730529785 module_call_list: - unittest.case - requre.online_replacing @@ -42440,12 +42162,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: PaureProject.get_files() not implemented. Maybe not possible because pagure api doesnt provide any possiblity to get repository content. closed_at: '2020-04-14T09:13:43Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -42510,7 +42232,7 @@ requests.sessions: updated_at: '2020-04-14T09:13:43Z' url: https://api.github.com/repos/packit/ogr/issues/377 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -42529,49 +42251,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.110445 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 18:00:42 GMT + ETag: W/"43de849dc3d92584b2cb06e8b4af372f7fd3d20a0f2070c966f30de07c6818bf" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8051B:191C0AC:6075DC4A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4656' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '344' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/383: - metadata: - latency: 0.29465460777282715 + latency: 0.10803532600402832 module_call_list: - unittest.case - requre.online_replacing @@ -42592,7 +42309,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Shoudn't be this working?\r\n\r\nconfig:\r\n```\r\nauthentication:\r\ \n git.stg.centos.org:\r\n instance_url: https://git.stg.centos.org\r\ \n token: ---token---\r\n type: pagure\r\n```\r\nerror:\r\n```\r\ @@ -42617,9 +42334,27 @@ requests.sessions: \ for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ \ is missing in the config.\", OgrException('No matching service was\ \ found.'))\r\n```" - closed_at: null - closed_by: null - comments: 1 + closed_at: '2020-09-30T15:25:59Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 comments_url: https://api.github.com/repos/packit/ogr/issues/383/comments created_at: '2020-04-15T21:50:26Z' events_url: https://api.github.com/repos/packit/ogr/issues/383/events @@ -42647,13 +42382,13 @@ requests.sessions: number: 383 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Initializing service via get_instances_from_dict() not working as expected - updated_at: '2020-04-23T11:27:50Z' + updated_at: '2020-09-30T15:25:59Z' url: https://api.github.com/repos/packit/ogr/issues/383 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -42672,48 +42407,43 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.107774 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 17:59:48 GMT + ETag: W/"6adeb324916f28d2da45cb455eb8236ed85e735ff1182f6a021ce0820b566249" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D975:1917C32:6075DC13 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4916' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '84' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3962514400482178 + latency: 0.30792808532714844 module_call_list: - unittest.case - requre.online_replacing @@ -42734,7 +42464,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Shoudn't be this working?\r\n\r\nconfig:\r\n```\r\nauthentication:\r\ \n git.stg.centos.org:\r\n instance_url: https://git.stg.centos.org\r\ \n token: ---token---\r\n type: pagure\r\n```\r\nerror:\r\n```\r\ @@ -42759,9 +42489,27 @@ requests.sessions: \ for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ \ is missing in the config.\", OgrException('No matching service was\ \ found.'))\r\n```" - closed_at: null - closed_by: null - comments: 1 + closed_at: '2020-09-30T15:25:59Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 comments_url: https://api.github.com/repos/packit/ogr/issues/383/comments created_at: '2020-04-15T21:50:26Z' events_url: https://api.github.com/repos/packit/ogr/issues/383/events @@ -42789,13 +42537,13 @@ requests.sessions: number: 383 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Initializing service via get_instances_from_dict() not working as expected - updated_at: '2020-04-23T11:27:50Z' + updated_at: '2020-09-30T15:25:59Z' url: https://api.github.com/repos/packit/ogr/issues/383 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -42814,49 +42562,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.30768 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 18:00:34 GMT + ETag: W/"6adeb324916f28d2da45cb455eb8236ed85e735ff1182f6a021ce0820b566249" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FE9B:191B6B1:6075DC42 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4699' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '301' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/384: - metadata: - latency: 0.3749260902404785 + latency: 0.11567854881286621 module_call_list: - unittest.case - requre.online_replacing @@ -42884,7 +42627,7 @@ requests.sessions: \ flags easier." closed_at: null closed_by: null - comments: 2 + comments: 7 comments_url: https://api.github.com/repos/packit/ogr/issues/384/comments created_at: '2020-04-16T07:35:14Z' events_url: https://api.github.com/repos/packit/ogr/issues/384/events @@ -42928,10 +42671,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Create a class to hold information on pull-request flags - updated_at: '2020-08-24T06:39:05Z' + updated_at: '2021-03-08T17:43:30Z' url: https://api.github.com/repos/packit/ogr/issues/384 user: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -42950,48 +42693,43 @@ requests.sessions: type: User url: https://api.github.com/users/csomh _next: null - elapsed: 0.2 + elapsed: 0.115515 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 06:39:05 GMT + Date: Tue, 13 Apr 2021 17:59:38 GMT + ETag: W/"c26ef79c958d0e0bf0587c10ac71ec2be3e4b558ba55208bd1185f9610ee16cb" + Last-Modified: Thu, 01 Apr 2021 12:28:54 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D38B:19172CD:6075DC0A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4967' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '33' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.4980001449584961 + latency: 0.1149759292602539 module_call_list: - unittest.case - requre.online_replacing @@ -43019,7 +42757,7 @@ requests.sessions: \ flags easier." closed_at: null closed_by: null - comments: 2 + comments: 7 comments_url: https://api.github.com/repos/packit/ogr/issues/384/comments created_at: '2020-04-16T07:35:14Z' events_url: https://api.github.com/repos/packit/ogr/issues/384/events @@ -43063,10 +42801,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Create a class to hold information on pull-request flags - updated_at: '2020-08-24T06:39:05Z' + updated_at: '2021-03-08T17:43:30Z' url: https://api.github.com/repos/packit/ogr/issues/384 user: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -43085,49 +42823,44 @@ requests.sessions: type: User url: https://api.github.com/users/csomh _next: null - elapsed: 0.2 + elapsed: 0.114716 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 06:39:05 GMT + Date: Tue, 13 Apr 2021 18:01:09 GMT + ETag: W/"c26ef79c958d0e0bf0587c10ac71ec2be3e4b558ba55208bd1185f9610ee16cb" + Last-Modified: Thu, 01 Apr 2021 12:28:54 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81E00:191E66C:6075DC65 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4525' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '475' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/385: - metadata: - latency: 0.2962820529937744 + latency: 0.1062469482421875 module_call_list: - unittest.case - requre.online_replacing @@ -43152,7 +42885,7 @@ requests.sessions: body: Thanks in advance! closed_at: '2020-04-24T07:15:34Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -43203,7 +42936,7 @@ requests.sessions: updated_at: '2020-04-24T07:15:34Z' url: https://api.github.com/repos/packit/ogr/issues/385 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -43222,48 +42955,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.106051 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:56 GMT + ETag: W/"c452605cae8a946515c16fb6251b089e10126992b274883c6702030829da10ae" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DEE0:191854E:6075DC1C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4871' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '129' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.23316740989685059 + latency: 0.11164283752441406 module_call_list: - unittest.case - requre.online_replacing @@ -43288,7 +43016,7 @@ requests.sessions: body: Thanks in advance! closed_at: '2020-04-24T07:15:34Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -43339,7 +43067,7 @@ requests.sessions: updated_at: '2020-04-24T07:15:34Z' url: https://api.github.com/repos/packit/ogr/issues/385 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -43358,49 +43086,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.111477 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:41 GMT + ETag: W/"c452605cae8a946515c16fb6251b089e10126992b274883c6702030829da10ae" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80479:191BFAF:6075DC49 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4661' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '339' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/387: - metadata: - latency: 0.30094408988952637 + latency: 0.11487364768981934 module_call_list: - unittest.case - requre.online_replacing @@ -43440,7 +43163,7 @@ requests.sessions: ' closed_at: '2020-04-16T14:27:25Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -43477,7 +43200,7 @@ requests.sessions: updated_at: '2020-04-16T15:02:35Z' url: https://api.github.com/repos/packit/ogr/issues/387 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -43496,48 +43219,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.114715 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:57 GMT + ETag: W/"0b1c45eba8927fc8dcc1d586c074dd582f05814908c036ebef89c63b6f682534" Last-Modified: Thu, 16 Apr 2020 15:02:35 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DF3D:19185E0:6075DC1D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4867' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '133' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2987101078033447 + latency: 0.13017845153808594 module_call_list: - unittest.case - requre.online_replacing @@ -43577,7 +43295,7 @@ requests.sessions: ' closed_at: '2020-04-16T14:27:25Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -43614,7 +43332,7 @@ requests.sessions: updated_at: '2020-04-16T15:02:35Z' url: https://api.github.com/repos/packit/ogr/issues/387 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -43633,49 +43351,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.129993 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:42 GMT + ETag: W/"0b1c45eba8927fc8dcc1d586c074dd582f05814908c036ebef89c63b6f682534" Last-Modified: Thu, 16 Apr 2020 15:02:35 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F804FD:191C07C:6075DC4A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4657' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '343' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/391: - metadata: - latency: 0.3027355670928955 + latency: 0.11769366264343262 module_call_list: - unittest.case - requre.online_replacing @@ -43695,7 +43408,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -43714,7 +43427,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -43738,7 +43451,7 @@ requests.sessions: \ have that on some other method." closed_at: '2020-04-22T13:38:46Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -43796,7 +43509,7 @@ requests.sessions: updated_at: '2020-04-22T13:38:46Z' url: https://api.github.com/repos/packit/ogr/issues/391 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -43815,48 +43528,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.117511 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:57 GMT + ETag: W/"de307d1d98cc7d71d7b60b74a4d4c9bdff2f9b854ef60250b9569ec206c69772" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DF0A:191859F:6075DC1D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4869' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '131' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.32572507858276367 + latency: 0.3648707866668701 module_call_list: - unittest.case - requre.online_replacing @@ -43876,7 +43584,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -43895,7 +43603,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -43919,7 +43627,7 @@ requests.sessions: \ have that on some other method." closed_at: '2020-04-22T13:38:46Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -43977,7 +43685,7 @@ requests.sessions: updated_at: '2020-04-22T13:38:46Z' url: https://api.github.com/repos/packit/ogr/issues/391 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -43996,49 +43704,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.364658 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:41 GMT + ETag: W/"de307d1d98cc7d71d7b60b74a4d4c9bdff2f9b854ef60250b9569ec206c69772" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F804A9:191BFEE:6075DC49 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4659' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '341' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/396: - metadata: - latency: 0.29484987258911133 + latency: 0.12469100952148438 module_call_list: - unittest.case - requre.online_replacing @@ -44058,7 +43761,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -44077,7 +43780,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -44103,7 +43806,7 @@ requests.sessions: \ ogr use apostrophes instead?" closed_at: '2020-04-26T19:23:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -44140,7 +43843,7 @@ requests.sessions: updated_at: '2020-04-26T19:23:07Z' url: https://api.github.com/repos/packit/ogr/issues/396 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -44159,48 +43862,43 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.124485 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:56 GMT + ETag: W/"21aa6dabead441ebc5382c21492aee87977c8c6ddb4dfa9ce02dd2059a06fc21" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DEC8:1918527:6075DC1C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4872' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '128' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3008453845977783 + latency: 0.11655139923095703 module_call_list: - unittest.case - requre.online_replacing @@ -44220,7 +43918,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -44239,7 +43937,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -44265,7 +43963,7 @@ requests.sessions: \ ogr use apostrophes instead?" closed_at: '2020-04-26T19:23:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -44302,7 +44000,7 @@ requests.sessions: updated_at: '2020-04-26T19:23:07Z' url: https://api.github.com/repos/packit/ogr/issues/396 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -44321,49 +44019,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.116297 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:41 GMT + ETag: W/"21aa6dabead441ebc5382c21492aee87977c8c6ddb4dfa9ce02dd2059a06fc21" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8045E:191BF86:6075DC49 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4662' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '338' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/398: - metadata: - latency: 0.24346208572387695 + latency: 0.11918258666992188 module_call_list: - unittest.case - requre.online_replacing @@ -44412,7 +44105,7 @@ requests.sessions: ' closed_at: '2020-04-27T10:09:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -44449,7 +44142,7 @@ requests.sessions: updated_at: '2020-04-27T10:11:01Z' url: https://api.github.com/repos/packit/ogr/issues/398 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -44468,48 +44161,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.118963 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:56 GMT + ETag: W/"644e36cd1c4d01aef122496e063c12054a4ceed4158cdfcd44b9c9351b898328" Last-Modified: Mon, 27 Apr 2020 10:11:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DEB7:1918502:6075DC1C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4873' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '127' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29460573196411133 + latency: 0.10258889198303223 module_call_list: - unittest.case - requre.online_replacing @@ -44558,7 +44246,7 @@ requests.sessions: ' closed_at: '2020-04-27T10:09:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -44595,7 +44283,7 @@ requests.sessions: updated_at: '2020-04-27T10:11:01Z' url: https://api.github.com/repos/packit/ogr/issues/398 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -44614,49 +44302,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.102307 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:41 GMT + ETag: W/"644e36cd1c4d01aef122496e063c12054a4ceed4158cdfcd44b9c9351b898328" Last-Modified: Mon, 27 Apr 2020 10:11:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8043C:191BF64:6075DC49 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4663' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '337' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/4: - metadata: - latency: 0.2932589054107666 + latency: 0.19794774055480957 module_call_list: - unittest.case - requre.online_replacing @@ -44691,7 +44374,7 @@ requests.sessions: \ [G]it-forge [R]uler @jpopelka @lachmanfrantisek @TomasTomecek " closed_at: '2019-02-14T13:28:27Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -44739,10 +44422,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: closed title: Better name - updated_at: '2020-08-21T07:51:33Z' + updated_at: '2020-08-26T10:58:41Z' url: https://api.github.com/repos/packit/ogr/issues/4 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -44761,48 +44444,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.197735 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:51:33 GMT + Date: Tue, 13 Apr 2021 17:59:49 GMT + ETag: W/"089a812bca6557755405c3698b899365e4a9d5c1c253b9a9a0d119947cf93de6" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DAA7:1917E41:6075DC15 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4905' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '95' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2918553352355957 + latency: 0.12498784065246582 module_call_list: - unittest.case - requre.online_replacing @@ -44837,7 +44515,7 @@ requests.sessions: \ [G]it-forge [R]uler @jpopelka @lachmanfrantisek @TomasTomecek " closed_at: '2019-02-14T13:28:27Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -44885,10 +44563,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: closed title: Better name - updated_at: '2020-08-21T07:51:33Z' + updated_at: '2020-08-26T10:58:41Z' url: https://api.github.com/repos/packit/ogr/issues/4 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -44907,49 +44585,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.12475 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:51:33 GMT + Date: Tue, 13 Apr 2021 18:00:36 GMT + ETag: W/"089a812bca6557755405c3698b899365e4a9d5c1c253b9a9a0d119947cf93de6" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80010:191B8E1:6075DC43 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4690' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '310' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/400: - metadata: - latency: 0.23947381973266602 + latency: 0.29302024841308594 module_call_list: - unittest.case - requre.online_replacing @@ -44969,7 +44642,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -44988,7 +44661,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -45019,7 +44692,7 @@ requests.sessions: \n - [ ] don't forget to support both and deprecate the old one" closed_at: '2020-04-30T16:23:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -45084,7 +44757,7 @@ requests.sessions: updated_at: '2020-04-30T16:23:19Z' url: https://api.github.com/repos/packit/ogr/issues/400 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -45103,48 +44776,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.292818 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:55 GMT + ETag: W/"fe92ccdde369e18a48b046cdbf412e12ebf273d9ce33fd5be9fc448f2c663a90" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DDEF:19183B4:6075DC1B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4876' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '124' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.28844499588012695 + latency: 0.3683481216430664 module_call_list: - unittest.case - requre.online_replacing @@ -45164,7 +44832,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -45183,7 +44851,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -45214,7 +44882,7 @@ requests.sessions: \n - [ ] don't forget to support both and deprecate the old one" closed_at: '2020-04-30T16:23:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -45279,7 +44947,7 @@ requests.sessions: updated_at: '2020-04-30T16:23:19Z' url: https://api.github.com/repos/packit/ogr/issues/400 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -45298,49 +44966,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.36817 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:40 GMT + ETag: W/"fe92ccdde369e18a48b046cdbf412e12ebf273d9ce33fd5be9fc448f2c663a90" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80365:191BE05:6075DC48 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4666' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '334' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/406: - metadata: - latency: 0.30147480964660645 + latency: 0.21172237396240234 module_call_list: - unittest.case - requre.online_replacing @@ -45370,7 +45033,7 @@ requests.sessions: \ handle non-existing fork" closed_at: '2020-05-26T09:47:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -45414,7 +45077,7 @@ requests.sessions: updated_at: '2020-05-26T09:47:07Z' url: https://api.github.com/repos/packit/ogr/issues/406 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -45433,48 +45096,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.211561 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:54 GMT + ETag: W/"104f97f957bf19990c77d33c74d1cfdd65fe02c04296634a9dd72cd879ab8027" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DD1B:191825B:6075DC1A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4885' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '115' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29402828216552734 + latency: 0.11217832565307617 module_call_list: - unittest.case - requre.online_replacing @@ -45504,7 +45162,7 @@ requests.sessions: \ handle non-existing fork" closed_at: '2020-05-26T09:47:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -45548,7 +45206,7 @@ requests.sessions: updated_at: '2020-05-26T09:47:07Z' url: https://api.github.com/repos/packit/ogr/issues/406 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -45567,49 +45225,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.112003 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:38 GMT + ETag: W/"104f97f957bf19990c77d33c74d1cfdd65fe02c04296634a9dd72cd879ab8027" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8025A:191BC4B:6075DC46 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4674' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '326' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/407: - metadata: - latency: 0.404827356338501 + latency: 0.10801410675048828 module_call_list: - unittest.case - requre.online_replacing @@ -45634,7 +45287,7 @@ requests.sessions: body: Let's create a new release! closed_at: '2020-05-06T13:34:20Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -45685,7 +45338,7 @@ requests.sessions: updated_at: '2020-05-06T13:34:20Z' url: https://api.github.com/repos/packit/ogr/issues/407 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -45704,48 +45357,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.107734 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:55 GMT + ETag: W/"1757d39f0bfac05d6a3dc886a516dfbb2106aed90c47ddd3a546c0b73fd2fe25" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DDCD:1918387:6075DC1B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4878' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '122' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2993743419647217 + latency: 0.10767078399658203 module_call_list: - unittest.case - requre.online_replacing @@ -45770,7 +45418,7 @@ requests.sessions: body: Let's create a new release! closed_at: '2020-05-06T13:34:20Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -45821,7 +45469,7 @@ requests.sessions: updated_at: '2020-05-06T13:34:20Z' url: https://api.github.com/repos/packit/ogr/issues/407 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -45840,49 +45488,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.107495 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:39 GMT + ETag: W/"1757d39f0bfac05d6a3dc886a516dfbb2106aed90c47ddd3a546c0b73fd2fe25" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8033A:191BDB1:6075DC47 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4668' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '332' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/409: - metadata: - latency: 0.291492223739624 + latency: 0.20112013816833496 module_call_list: - unittest.case - requre.online_replacing @@ -45931,7 +45574,7 @@ requests.sessions: ' closed_at: '2020-05-21T11:58:35Z' closed_by: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -45968,7 +45611,7 @@ requests.sessions: updated_at: '2020-05-21T11:58:35Z' url: https://api.github.com/repos/packit/ogr/issues/409 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -45987,48 +45630,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.200962 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:54 GMT + ETag: W/"b5b88c3a1f9441620e65ffe26c853d9938665c42b9a499aa635320cbf0a58534" Last-Modified: Thu, 21 May 2020 11:58:35 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DD6B:19182EB:6075DC1A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4882' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '118' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.4972989559173584 + latency: 0.27234888076782227 module_call_list: - unittest.case - requre.online_replacing @@ -46077,7 +45715,7 @@ requests.sessions: ' closed_at: '2020-05-21T11:58:35Z' closed_by: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -46114,7 +45752,7 @@ requests.sessions: updated_at: '2020-05-21T11:58:35Z' url: https://api.github.com/repos/packit/ogr/issues/409 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -46133,49 +45771,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.272182 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:39 GMT + ETag: W/"b5b88c3a1f9441620e65ffe26c853d9938665c42b9a499aa635320cbf0a58534" Last-Modified: Thu, 21 May 2020 11:58:35 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F802B2:191BCDF:6075DC47 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4671' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '329' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/412: - metadata: - latency: 0.27985262870788574 + latency: 0.14017868041992188 module_call_list: - unittest.case - requre.online_replacing @@ -46212,7 +45845,7 @@ requests.sessions: lachmanfrantisek\", repo=\"ogr\")\r\n```" closed_at: null closed_by: null - comments: 11 + comments: 18 comments_url: https://api.github.com/repos/packit/ogr/issues/412/comments created_at: '2020-05-19T20:57:01Z' events_url: https://api.github.com/repos/packit/ogr/issues/412/events @@ -46242,10 +45875,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Revisiting API for creating PRs - updated_at: '2020-07-21T09:28:30Z' + updated_at: '2021-03-26T14:19:55Z' url: https://api.github.com/repos/packit/ogr/issues/412 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -46264,48 +45897,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.140006 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:36 GMT + ETag: W/"59be0c54aa2355f4d264cfe5c2dc54ec4edbef0cf1e470b4b06444938c922d06" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D21B:19170A2:6075DC08 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4976' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '24' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.294140100479126 + latency: 0.11208820343017578 module_call_list: - unittest.case - requre.online_replacing @@ -46342,7 +45970,7 @@ requests.sessions: lachmanfrantisek\", repo=\"ogr\")\r\n```" closed_at: null closed_by: null - comments: 11 + comments: 18 comments_url: https://api.github.com/repos/packit/ogr/issues/412/comments created_at: '2020-05-19T20:57:01Z' events_url: https://api.github.com/repos/packit/ogr/issues/412/events @@ -46372,10 +46000,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Revisiting API for creating PRs - updated_at: '2020-07-21T09:28:30Z' + updated_at: '2021-03-26T14:19:55Z' url: https://api.github.com/repos/packit/ogr/issues/412 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -46394,49 +46022,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.111897 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:08 GMT + ETag: W/"59be0c54aa2355f4d264cfe5c2dc54ec4edbef0cf1e470b4b06444938c922d06" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81D1D:191E527:6075DC64 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4529' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '471' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/413: - metadata: - latency: 0.5612943172454834 + latency: 0.11815428733825684 module_call_list: - unittest.case - requre.online_replacing @@ -46465,9 +46088,27 @@ requests.sessions: 1. adding new commit flag that replaces old one\r\n2. adding new commit\ \ flag, but keeping the old one\r\n\r\nExample output from docs doesn't\ \ contain commit flag with same name." - closed_at: null - closed_by: null - comments: 1 + closed_at: '2021-01-22T13:24:39Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/413/comments created_at: '2020-05-20T21:27:51Z' events_url: https://api.github.com/repos/packit/ogr/issues/413/events @@ -46502,12 +46143,12 @@ requests.sessions: number: 413 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: edited on Gitlab's commit flag - updated_at: '2020-07-21T09:27:54Z' + updated_at: '2021-01-22T13:24:39Z' url: https://api.github.com/repos/packit/ogr/issues/413 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -46526,48 +46167,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.117872 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:44 GMT + ETag: W/"aa63d106d4bf6bac4c85a6c7d338f63796edd71cea6d91954cfc10ccb33caa35" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D746:1917888:6075DC10 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4937' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '63' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3013434410095215 + latency: 0.12102818489074707 module_call_list: - unittest.case - requre.online_replacing @@ -46596,9 +46232,27 @@ requests.sessions: 1. adding new commit flag that replaces old one\r\n2. adding new commit\ \ flag, but keeping the old one\r\n\r\nExample output from docs doesn't\ \ contain commit flag with same name." - closed_at: null - closed_by: null - comments: 1 + closed_at: '2021-01-22T13:24:39Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/413/comments created_at: '2020-05-20T21:27:51Z' events_url: https://api.github.com/repos/packit/ogr/issues/413/events @@ -46633,12 +46287,12 @@ requests.sessions: number: 413 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: edited on Gitlab's commit flag - updated_at: '2020-07-21T09:27:54Z' + updated_at: '2021-01-22T13:24:39Z' url: https://api.github.com/repos/packit/ogr/issues/413 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -46657,49 +46311,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.120814 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:30 GMT + ETag: W/"aa63d106d4bf6bac4c85a6c7d338f63796edd71cea6d91954cfc10ccb33caa35" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FB4F:191B1AA:6075DC3E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4720' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '280' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/414: - metadata: - latency: 0.30469775199890137 + latency: 0.12430143356323242 module_call_list: - unittest.case - requre.online_replacing @@ -46728,7 +46377,7 @@ requests.sessions: \ blocked by #412" closed_at: '2020-06-25T10:41:12Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -46786,7 +46435,7 @@ requests.sessions: updated_at: '2020-06-25T10:41:12Z' url: https://api.github.com/repos/packit/ogr/issues/414 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -46805,48 +46454,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.124088 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:53 GMT + ETag: W/"7f37dabe11d76d6c99c534f5b4e9f25d1f164941a1bb497e985bbb3e54b32b67" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DC6E:1918133:6075DC18 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4890' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '110' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.22542262077331543 + latency: 0.11281275749206543 module_call_list: - unittest.case - requre.online_replacing @@ -46875,7 +46519,7 @@ requests.sessions: \ blocked by #412" closed_at: '2020-06-25T10:41:12Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -46933,7 +46577,7 @@ requests.sessions: updated_at: '2020-06-25T10:41:12Z' url: https://api.github.com/repos/packit/ogr/issues/414 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -46952,49 +46596,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.112555 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:38 GMT + ETag: W/"7f37dabe11d76d6c99c534f5b4e9f25d1f164941a1bb497e985bbb3e54b32b67" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8020E:191BBE3:6075DC46 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4677' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '323' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/416: - metadata: - latency: 0.6081960201263428 + latency: 0.32123494148254395 module_call_list: - unittest.case - requre.online_replacing @@ -47018,10 +46657,19 @@ requests.sessions: author_association: MEMBER body: "https://github.com/packit-service/ogr/pull/415 implements `PagurePullRequest.patch`\ \ property to get a patch from a pull request.\r\n`Gitlab` & `Github`\ - \ implementation are missing." + \ implementation are missing.\r\n\r\nUpdate by @lachmanfrantisek :\r\ + \n\r\nThe task is to implement `patch` property fo `GithubPullRequest`\ + \ and `GitlabPullRequest` that will return `patch` of the changes for\ + \ pull-request (not the URL of it).\r\n\r\n- Github:\r\n - URL of\ + \ patch: https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.patch_url\r\ + \n - The URL looks like this: https://patch-diff.githubusercontent.com/raw/packit/packit-service/pull/1003.patch\r\ + \n - But this one works as well: https://github.com/packit/ogr/issues/416.patch\r\ + \n- Gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ + \n - I am not sure if `diffs` will work.\r\n - The same approach\ + \ as in GitHub (adding `.patch` to the URL) works well: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/800.patch" closed_at: null closed_by: null - comments: 1 + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/416/comments created_at: '2020-05-22T16:21:38Z' events_url: https://api.github.com/repos/packit/ogr/issues/416/events @@ -47042,6 +46690,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -47049,13 +46704,13 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: fef2c0 + - color: 7057ff default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue labels_url: https://api.github.com/repos/packit/ogr/issues/416/labels{/name} locked: false milestone: null @@ -47065,10 +46720,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Implement patch property in GitlabPullRequest and GithubPullRequest - updated_at: '2020-07-23T11:20:56Z' + updated_at: '2021-02-25T13:04:37Z' url: https://api.github.com/repos/packit/ogr/issues/416 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -47087,48 +46742,43 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.321035 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 17:59:39 GMT + ETag: W/"b290c208df626f0fa849e3bfc6c36ce24c00aadbe3c0f3d8c7c7f39b2254e49f" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D44E:19173E6:6075DC0B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4963' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '37' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29531192779541016 + latency: 0.10272026062011719 module_call_list: - unittest.case - requre.online_replacing @@ -47152,10 +46802,19 @@ requests.sessions: author_association: MEMBER body: "https://github.com/packit-service/ogr/pull/415 implements `PagurePullRequest.patch`\ \ property to get a patch from a pull request.\r\n`Gitlab` & `Github`\ - \ implementation are missing." + \ implementation are missing.\r\n\r\nUpdate by @lachmanfrantisek :\r\ + \n\r\nThe task is to implement `patch` property fo `GithubPullRequest`\ + \ and `GitlabPullRequest` that will return `patch` of the changes for\ + \ pull-request (not the URL of it).\r\n\r\n- Github:\r\n - URL of\ + \ patch: https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.patch_url\r\ + \n - The URL looks like this: https://patch-diff.githubusercontent.com/raw/packit/packit-service/pull/1003.patch\r\ + \n - But this one works as well: https://github.com/packit/ogr/issues/416.patch\r\ + \n- Gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ + \n - I am not sure if `diffs` will work.\r\n - The same approach\ + \ as in GitHub (adding `.patch` to the URL) works well: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/800.patch" closed_at: null closed_by: null - comments: 1 + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/416/comments created_at: '2020-05-22T16:21:38Z' events_url: https://api.github.com/repos/packit/ogr/issues/416/events @@ -47176,6 +46835,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -47183,13 +46849,13 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: fef2c0 + - color: 7057ff default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue labels_url: https://api.github.com/repos/packit/ogr/issues/416/labels{/name} locked: false milestone: null @@ -47199,10 +46865,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Implement patch property in GitlabPullRequest and GithubPullRequest - updated_at: '2020-07-23T11:20:56Z' + updated_at: '2021-02-25T13:04:37Z' url: https://api.github.com/repos/packit/ogr/issues/416 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -47221,49 +46887,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.102491 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:01:09 GMT + ETag: W/"b290c208df626f0fa849e3bfc6c36ce24c00aadbe3c0f3d8c7c7f39b2254e49f" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81E4A:191E6BC:6075DC65 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4523' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '477' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/417: - metadata: - latency: 0.3959462642669678 + latency: 0.13913917541503906 module_call_list: - unittest.case - requre.online_replacing @@ -47299,7 +46960,7 @@ requests.sessions: \ only the pagure token, which allows both forking and creating PR." closed_at: '2020-05-26T05:56:28Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -47336,7 +46997,7 @@ requests.sessions: updated_at: '2020-05-26T05:56:28Z' url: https://api.github.com/repos/packit/ogr/issues/417 user: - avatar_url: https://avatars3.githubusercontent.com/u/6943409?v=4 + avatar_url: https://avatars.githubusercontent.com/u/6943409?v=4 events_url: https://api.github.com/users/Zlopez/events{/privacy} followers_url: https://api.github.com/users/Zlopez/followers following_url: https://api.github.com/users/Zlopez/following{/other_user} @@ -47355,48 +47016,43 @@ requests.sessions: type: User url: https://api.github.com/users/Zlopez _next: null - elapsed: 0.2 + elapsed: 0.138973 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 17:54:17 GMT + Date: Tue, 13 Apr 2021 17:59:54 GMT + ETag: W/"8da8ba2b0a0ed65b39b2956b35d7b93c699e4f38623af37618b31904127eeb90" + Last-Modified: Mon, 05 Apr 2021 14:44:21 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DD3D:1918291:6075DC1A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4884' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '116' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.22283935546875 + latency: 0.17704200744628906 module_call_list: - unittest.case - requre.online_replacing @@ -47432,7 +47088,7 @@ requests.sessions: \ only the pagure token, which allows both forking and creating PR." closed_at: '2020-05-26T05:56:28Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -47469,7 +47125,7 @@ requests.sessions: updated_at: '2020-05-26T05:56:28Z' url: https://api.github.com/repos/packit/ogr/issues/417 user: - avatar_url: https://avatars3.githubusercontent.com/u/6943409?v=4 + avatar_url: https://avatars.githubusercontent.com/u/6943409?v=4 events_url: https://api.github.com/users/Zlopez/events{/privacy} followers_url: https://api.github.com/users/Zlopez/followers following_url: https://api.github.com/users/Zlopez/following{/other_user} @@ -47488,49 +47144,44 @@ requests.sessions: type: User url: https://api.github.com/users/Zlopez _next: null - elapsed: 0.2 + elapsed: 0.176875 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 17:54:17 GMT + Date: Tue, 13 Apr 2021 18:00:38 GMT + ETag: W/"8da8ba2b0a0ed65b39b2956b35d7b93c699e4f38623af37618b31904127eeb90" + Last-Modified: Mon, 05 Apr 2021 14:44:21 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80271:191BC7C:6075DC46 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4673' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '327' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/420: - metadata: - latency: 0.5011169910430908 + latency: 0.20325160026550293 module_call_list: - unittest.case - requre.online_replacing @@ -47567,7 +47218,7 @@ requests.sessions: \ for anything that can be implemented later." closed_at: null closed_by: null - comments: 4 + comments: 8 comments_url: https://api.github.com/repos/packit/ogr/issues/420/comments created_at: '2020-05-26T14:37:43Z' events_url: https://api.github.com/repos/packit/ogr/issues/420/events @@ -47597,10 +47248,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Support for GitLab pipelines - updated_at: '2020-08-03T07:28:07Z' + updated_at: '2021-02-09T08:43:48Z' url: https://api.github.com/repos/packit/ogr/issues/420 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -47619,48 +47270,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.20306 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 03 Aug 2020 07:28:07 GMT + Date: Tue, 13 Apr 2021 17:59:41 GMT + ETag: W/"ae83f5a0cb8811c49c55c0b41aa02ec3ebbfc00445f97cdeeaab2f331c75e803" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D5A4:19175FC:6075DC0D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4953' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '47' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2941780090332031 + latency: 0.11277008056640625 module_call_list: - unittest.case - requre.online_replacing @@ -47697,7 +47343,7 @@ requests.sessions: \ for anything that can be implemented later." closed_at: null closed_by: null - comments: 4 + comments: 8 comments_url: https://api.github.com/repos/packit/ogr/issues/420/comments created_at: '2020-05-26T14:37:43Z' events_url: https://api.github.com/repos/packit/ogr/issues/420/events @@ -47727,10 +47373,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Support for GitLab pipelines - updated_at: '2020-08-03T07:28:07Z' + updated_at: '2021-02-09T08:43:48Z' url: https://api.github.com/repos/packit/ogr/issues/420 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -47749,49 +47395,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.112519 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 03 Aug 2020 07:28:07 GMT + Date: Tue, 13 Apr 2021 18:01:09 GMT + ETag: W/"ae83f5a0cb8811c49c55c0b41aa02ec3ebbfc00445f97cdeeaab2f331c75e803" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81EAE:191E760:6075DC65 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4519' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '481' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/421: - metadata: - latency: 0.2951076030731201 + latency: 0.19777870178222656 module_call_list: - unittest.case - requre.online_replacing @@ -47812,11 +47453,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2020-05-26T15:00:38Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -47867,7 +47508,7 @@ requests.sessions: updated_at: '2020-05-26T15:00:38Z' url: https://api.github.com/repos/packit/ogr/issues/421 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -47886,48 +47527,43 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.1976 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 17:59:54 GMT + ETag: W/"0bc36e6fc4dc64d6fc56f66f5e2b8341854fde0f9dff2d8cc5430ecd8a0071d4" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DD01:1918224:6075DC19 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4886' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '114' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29196786880493164 + latency: 0.11319375038146973 module_call_list: - unittest.case - requre.online_replacing @@ -47948,11 +47584,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2020-05-26T15:00:38Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -48003,7 +47639,7 @@ requests.sessions: updated_at: '2020-05-26T15:00:38Z' url: https://api.github.com/repos/packit/ogr/issues/421 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -48022,49 +47658,44 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.113027 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:00:38 GMT + ETag: W/"0bc36e6fc4dc64d6fc56f66f5e2b8341854fde0f9dff2d8cc5430ecd8a0071d4" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8023C:191BC21:6075DC46 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4675' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '325' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/423: - metadata: - latency: 0.397475004196167 + latency: 0.11516880989074707 module_call_list: - unittest.case - requre.online_replacing @@ -48110,7 +47741,7 @@ requests.sessions: ' closed_at: '2020-08-09T16:57:04Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -48154,7 +47785,7 @@ requests.sessions: updated_at: '2020-08-09T16:57:04Z' url: https://api.github.com/repos/packit/ogr/issues/423 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -48173,48 +47804,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.115005 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:51 GMT + ETag: W/"f922d17b157210da50a38d7e1b0a40bcbb5bb96ab545c0ef76a313faef6b912c" Last-Modified: Sun, 09 Aug 2020 16:57:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DBC8:1918012:6075DC17 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4897' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '103' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.26156020164489746 + latency: 0.1897745132446289 module_call_list: - unittest.case - requre.online_replacing @@ -48260,7 +47886,7 @@ requests.sessions: ' closed_at: '2020-08-09T16:57:04Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -48304,7 +47930,7 @@ requests.sessions: updated_at: '2020-08-09T16:57:04Z' url: https://api.github.com/repos/packit/ogr/issues/423 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -48323,49 +47949,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.189546 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:37 GMT + ETag: W/"f922d17b157210da50a38d7e1b0a40bcbb5bb96ab545c0ef76a313faef6b912c" Last-Modified: Sun, 09 Aug 2020 16:57:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F800D9:191BA0C:6075DC44 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4684' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '316' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/424: - metadata: - latency: 0.2961616516113281 + latency: 0.11110472679138184 module_call_list: - unittest.case - requre.online_replacing @@ -48395,7 +48016,7 @@ requests.sessions: \ diff comments on pull requests, e.g. `get_diff_comments`" closed_at: null closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -48413,13 +48034,20 @@ requests.sessions: subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions type: Bot url: https://api.github.com/users/stale%5Bbot%5D - comments: 2 + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/424/comments created_at: '2020-05-29T09:01:09Z' events_url: https://api.github.com/repos/packit/ogr/issues/424/events html_url: https://github.com/packit/ogr/issues/424 id: 627115330 labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: a2eeef default: false description: New feature or a request for enhancement. @@ -48443,10 +48071,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Diff/review comments on pull requests - updated_at: '2020-08-17T08:56:04Z' + updated_at: '2021-02-04T12:01:57Z' url: https://api.github.com/repos/packit/ogr/issues/424 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -48465,48 +48093,43 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.110878 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:44 GMT + ETag: W/"90ab58b464cd7c7b85b7a9a90fb8135bc367d5ea22456f16d05e9970265aff19" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D70E:191782E:6075DC0F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4939' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '61' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.30161452293395996 + latency: 0.1211397647857666 module_call_list: - unittest.case - requre.online_replacing @@ -48536,7 +48159,7 @@ requests.sessions: \ diff comments on pull requests, e.g. `get_diff_comments`" closed_at: null closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -48554,13 +48177,20 @@ requests.sessions: subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions type: Bot url: https://api.github.com/users/stale%5Bbot%5D - comments: 2 + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/424/comments created_at: '2020-05-29T09:01:09Z' events_url: https://api.github.com/repos/packit/ogr/issues/424/events html_url: https://github.com/packit/ogr/issues/424 id: 627115330 labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: a2eeef default: false description: New feature or a request for enhancement. @@ -48584,10 +48214,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Diff/review comments on pull requests - updated_at: '2020-08-17T08:56:04Z' + updated_at: '2021-02-04T12:01:57Z' url: https://api.github.com/repos/packit/ogr/issues/424 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -48606,49 +48236,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.120963 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:10 GMT + ETag: W/"90ab58b464cd7c7b85b7a9a90fb8135bc367d5ea22456f16d05e9970265aff19" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81F95:191E8BE:6075DC66 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4511' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '489' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/432: - metadata: - latency: 0.29330873489379883 + latency: 0.11507987976074219 module_call_list: - unittest.case - requre.online_replacing @@ -48673,7 +48298,7 @@ requests.sessions: body: '' closed_at: '2020-07-09T07:36:32Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -48724,7 +48349,7 @@ requests.sessions: updated_at: '2020-07-09T07:36:32Z' url: https://api.github.com/repos/packit/ogr/issues/432 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -48743,48 +48368,43 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.114919 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 17:59:52 GMT + ETag: W/"629082dadd5bcf9aefd39a05be48c306b4390b0348aad4dd659358bbef1f2a5a" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DC3C:19180E1:6075DC18 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4892' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '108' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.22824835777282715 + latency: 0.10554647445678711 module_call_list: - unittest.case - requre.online_replacing @@ -48809,7 +48429,7 @@ requests.sessions: body: '' closed_at: '2020-07-09T07:36:32Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -48860,7 +48480,7 @@ requests.sessions: updated_at: '2020-07-09T07:36:32Z' url: https://api.github.com/repos/packit/ogr/issues/432 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -48879,49 +48499,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.105381 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:37 GMT + ETag: W/"629082dadd5bcf9aefd39a05be48c306b4390b0348aad4dd659358bbef1f2a5a" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80191:191BB3D:6075DC45 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4679' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '321' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/434: - metadata: - latency: 0.2825760841369629 + latency: 0.10513877868652344 module_call_list: - unittest.case - requre.online_replacing @@ -48964,7 +48579,7 @@ requests.sessions: ' closed_at: '2020-07-10T05:57:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -49001,7 +48616,7 @@ requests.sessions: updated_at: '2020-07-10T09:36:14Z' url: https://api.github.com/repos/packit/ogr/issues/434 user: - avatar_url: https://avatars0.githubusercontent.com/in/29180?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} @@ -49020,48 +48635,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.104908 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:52 GMT + ETag: W/"05becbe7f4795187a8c8933607f25c5ca878a7ce4001f26140a66e18b71731ea" Last-Modified: Fri, 10 Jul 2020 09:36:14 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DC2D:19180BA:6075DC18 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4893' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '107' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3004319667816162 + latency: 0.12238526344299316 module_call_list: - unittest.case - requre.online_replacing @@ -49104,7 +48714,7 @@ requests.sessions: ' closed_at: '2020-07-10T05:57:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -49141,7 +48751,7 @@ requests.sessions: updated_at: '2020-07-10T09:36:14Z' url: https://api.github.com/repos/packit/ogr/issues/434 user: - avatar_url: https://avatars0.githubusercontent.com/in/29180?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} @@ -49160,49 +48770,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.122202 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:37 GMT + ETag: W/"05becbe7f4795187a8c8933607f25c5ca878a7ce4001f26140a66e18b71731ea" Last-Modified: Fri, 10 Jul 2020 09:36:14 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80175:191BB0B:6075DC45 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4680' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '320' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/437: - metadata: - latency: 0.26828479766845703 + latency: 0.14224004745483398 module_call_list: - unittest.case - requre.online_replacing @@ -49223,11 +48828,29 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: 'Related: https://github.com/packit-service/ogr/pull/436' closed_at: null - closed_by: null - comments: 0 + closed_by: + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 + events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/stale%5Bbot%5D/followers + following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/stale%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/stale + id: 26384082 + login: stale[bot] + node_id: MDM6Qm90MjYzODQwODI= + organizations_url: https://api.github.com/users/stale%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/stale%5Bbot%5D/received_events + repos_url: https://api.github.com/users/stale%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/stale%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/stale%5Bbot%5D + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/437/comments created_at: '2020-07-16T12:54:27Z' events_url: https://api.github.com/repos/packit/ogr/issues/437/events @@ -49271,10 +48894,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Support adding group permission for Gitlab and Github projects - updated_at: '2020-07-16T13:21:03Z' + updated_at: '2021-02-04T19:58:55Z' url: https://api.github.com/repos/packit/ogr/issues/437 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -49293,48 +48916,43 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.142065 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 17:59:43 GMT + ETag: W/"4977f2a9d8cd97e279c669eb1f33aba2e20288dff5938b46f99860bb4161fb34" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D698:191777F:6075DC0F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4945' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '55' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.4980130195617676 + latency: 0.11295557022094727 module_call_list: - unittest.case - requre.online_replacing @@ -49355,11 +48973,29 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: 'Related: https://github.com/packit-service/ogr/pull/436' closed_at: null - closed_by: null - comments: 0 + closed_by: + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 + events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/stale%5Bbot%5D/followers + following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/stale%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/stale + id: 26384082 + login: stale[bot] + node_id: MDM6Qm90MjYzODQwODI= + organizations_url: https://api.github.com/users/stale%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/stale%5Bbot%5D/received_events + repos_url: https://api.github.com/users/stale%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/stale%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/stale%5Bbot%5D + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/437/comments created_at: '2020-07-16T12:54:27Z' events_url: https://api.github.com/repos/packit/ogr/issues/437/events @@ -49403,10 +49039,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Support adding group permission for Gitlab and Github projects - updated_at: '2020-07-16T13:21:03Z' + updated_at: '2021-02-04T19:58:55Z' url: https://api.github.com/repos/packit/ogr/issues/437 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -49425,49 +49061,44 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.112788 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:01:10 GMT + ETag: W/"4977f2a9d8cd97e279c669eb1f33aba2e20288dff5938b46f99860bb4161fb34" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81F49:191E84E:6075DC66 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4514' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '486' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/440: - metadata: - latency: 0.28309035301208496 + latency: 0.1073145866394043 module_call_list: - unittest.case - requre.online_replacing @@ -49496,7 +49127,7 @@ requests.sessions: \ about the support (But unable to find anything here - https://pagure.io/api/0/#projects-tab)" closed_at: '2020-08-17T00:45:05Z' closed_by: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -49540,7 +49171,7 @@ requests.sessions: updated_at: '2020-08-17T00:45:05Z' url: https://api.github.com/repos/packit/ogr/issues/440 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -49559,48 +49190,43 @@ requests.sessions: type: User url: https://api.github.com/users/shreyaspapi _next: null - elapsed: 0.2 + elapsed: 0.107104 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 01:42:30 GMT + Date: Tue, 13 Apr 2021 17:59:50 GMT + ETag: W/"01a4ce4811880cfd8cbe7923cf743d3e82f93844db85f724e23f8643ea3061a0" + Last-Modified: Tue, 13 Apr 2021 01:50:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DB54:1917F4B:6075DC16 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4901' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '99' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.26786017417907715 + latency: 0.10001158714294434 module_call_list: - unittest.case - requre.online_replacing @@ -49629,7 +49255,7 @@ requests.sessions: \ about the support (But unable to find anything here - https://pagure.io/api/0/#projects-tab)" closed_at: '2020-08-17T00:45:05Z' closed_by: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -49673,7 +49299,7 @@ requests.sessions: updated_at: '2020-08-17T00:45:05Z' url: https://api.github.com/repos/packit/ogr/issues/440 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -49692,49 +49318,44 @@ requests.sessions: type: User url: https://api.github.com/users/shreyaspapi _next: null - elapsed: 0.2 + elapsed: 0.099762 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 01:42:30 GMT + Date: Tue, 13 Apr 2021 18:00:36 GMT + ETag: W/"01a4ce4811880cfd8cbe7923cf743d3e82f93844db85f724e23f8643ea3061a0" + Last-Modified: Tue, 13 Apr 2021 01:50:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80044:191B937:6075DC44 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4688' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '312' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/442: - metadata: - latency: 0.2935962677001953 + latency: 0.10702085494995117 module_call_list: - unittest.case - requre.online_replacing @@ -49759,7 +49380,7 @@ requests.sessions: body: Example of Issue description closed_at: '2020-07-30T21:15:08Z' closed_by: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -49796,7 +49417,7 @@ requests.sessions: updated_at: '2020-07-31T12:43:32Z' url: https://api.github.com/repos/packit/ogr/issues/442 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -49815,48 +49436,43 @@ requests.sessions: type: User url: https://api.github.com/users/shreyaspapi _next: null - elapsed: 0.2 + elapsed: 0.106864 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 01:42:30 GMT + Date: Tue, 13 Apr 2021 17:59:52 GMT + ETag: W/"4d7abef3d596bc5feb5c49f1c4fa32a8d784bef2c7a031d07b4fcaaab04200de" + Last-Modified: Tue, 13 Apr 2021 01:50:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DBE8:1918032:6075DC18 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4895' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '105' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2939181327819824 + latency: 0.15728068351745605 module_call_list: - unittest.case - requre.online_replacing @@ -49881,7 +49497,7 @@ requests.sessions: body: Example of Issue description closed_at: '2020-07-30T21:15:08Z' closed_by: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -49918,7 +49534,7 @@ requests.sessions: updated_at: '2020-07-31T12:43:32Z' url: https://api.github.com/repos/packit/ogr/issues/442 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -49937,49 +49553,44 @@ requests.sessions: type: User url: https://api.github.com/users/shreyaspapi _next: null - elapsed: 0.2 + elapsed: 0.157121 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 01:42:30 GMT + Date: Tue, 13 Apr 2021 18:00:37 GMT + ETag: W/"4d7abef3d596bc5feb5c49f1c4fa32a8d784bef2c7a031d07b4fcaaab04200de" + Last-Modified: Tue, 13 Apr 2021 01:50:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8011D:191BA88:6075DC45 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4682' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '318' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/445: - metadata: - latency: 0.5157978534698486 + latency: 0.1122443675994873 module_call_list: - unittest.case - requre.online_replacing @@ -50026,7 +49637,7 @@ requests.sessions: \ guide. " closed_at: null closed_by: null - comments: 0 + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/445/comments created_at: '2020-08-03T13:50:00Z' events_url: https://api.github.com/repos/packit/ogr/issues/445/events @@ -50043,10 +49654,10 @@ requests.sessions: state: open title: Regenerating the test data for the integration tests should be trivial - updated_at: '2020-08-03T13:50:00Z' + updated_at: '2021-02-08T08:27:43Z' url: https://api.github.com/repos/packit/ogr/issues/445 user: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -50065,48 +49676,43 @@ requests.sessions: type: User url: https://api.github.com/users/csomh _next: null - elapsed: 0.2 + elapsed: 0.112014 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 09:44:02 GMT + Date: Tue, 13 Apr 2021 17:59:42 GMT + ETag: W/"f0a46742e82603fc90b044e05d6ad475b2bcfebdfc19d506854c65c518d82184" + Last-Modified: Thu, 01 Apr 2021 12:28:54 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D5F7:1917679:6075DC0E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4951' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '49' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2935166358947754 + latency: 0.12793421745300293 module_call_list: - unittest.case - requre.online_replacing @@ -50153,7 +49759,7 @@ requests.sessions: \ guide. " closed_at: null closed_by: null - comments: 0 + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/445/comments created_at: '2020-08-03T13:50:00Z' events_url: https://api.github.com/repos/packit/ogr/issues/445/events @@ -50170,10 +49776,10 @@ requests.sessions: state: open title: Regenerating the test data for the integration tests should be trivial - updated_at: '2020-08-03T13:50:00Z' + updated_at: '2021-02-08T08:27:43Z' url: https://api.github.com/repos/packit/ogr/issues/445 user: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -50192,49 +49798,44 @@ requests.sessions: type: User url: https://api.github.com/users/csomh _next: null - elapsed: 0.2 + elapsed: 0.127765 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 09:44:02 GMT + Date: Tue, 13 Apr 2021 18:01:10 GMT + ETag: W/"f0a46742e82603fc90b044e05d6ad475b2bcfebdfc19d506854c65c518d82184" + Last-Modified: Thu, 01 Apr 2021 12:28:54 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81EE5:191E7AF:6075DC66 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4517' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '483' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/446: - metadata: - latency: 0.39522862434387207 + latency: 0.11159348487854004 module_call_list: - unittest.case - requre.online_replacing @@ -50255,11 +49856,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2020-08-05T14:20:46Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -50310,7 +49911,7 @@ requests.sessions: updated_at: '2020-08-05T14:20:46Z' url: https://api.github.com/repos/packit/ogr/issues/446 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -50329,48 +49930,43 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.111408 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 05 Aug 2020 14:20:46 GMT + Date: Tue, 13 Apr 2021 17:59:52 GMT + ETag: W/"aee3fedb69faa8ac66d31e64a9f317b68904f10829a9287ca6fbe776426a8599" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DBD5:1918020:6075DC17 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4896' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '104' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.6014654636383057 + latency: 0.2109363079071045 module_call_list: - unittest.case - requre.online_replacing @@ -50391,11 +49987,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2020-08-05T14:20:46Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -50446,7 +50042,7 @@ requests.sessions: updated_at: '2020-08-05T14:20:46Z' url: https://api.github.com/repos/packit/ogr/issues/446 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -50465,49 +50061,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.210693 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 05 Aug 2020 14:20:46 GMT + Date: Tue, 13 Apr 2021 18:00:37 GMT + ETag: W/"aee3fedb69faa8ac66d31e64a9f317b68904f10829a9287ca6fbe776426a8599" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F800FB:191BA49:6075DC45 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4683' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '317' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/448: - metadata: - latency: 0.3006429672241211 + latency: 0.20647478103637695 module_call_list: - unittest.case - requre.online_replacing @@ -50551,15 +50142,40 @@ requests.sessions: the issue comment. ' - closed_at: null - closed_by: null - comments: 0 + closed_at: '2020-10-06T12:06:10Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 comments_url: https://api.github.com/repos/packit/ogr/issues/448/comments created_at: '2020-08-07T09:12:33Z' events_url: https://api.github.com/repos/packit/ogr/issues/448/events html_url: https://github.com/packit/ogr/issues/448 id: 674879684 - labels: [] + labels: + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale labels_url: https://api.github.com/repos/packit/ogr/issues/448/labels{/name} locked: false milestone: null @@ -50567,12 +50183,12 @@ requests.sessions: number: 448 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: '[packit] Propose update failed for release 0.13.0' - updated_at: '2020-08-07T09:12:33Z' + updated_at: '2020-10-06T12:06:10Z' url: https://api.github.com/repos/packit/ogr/issues/448 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -50591,48 +50207,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.206255 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 07 Aug 2020 09:12:33 GMT + Date: Tue, 13 Apr 2021 17:59:47 GMT + ETag: W/"50f33048cfca0933d4a6cd2e68290d5519af90d36195e1df06aa276d9159015f" + Last-Modified: Tue, 06 Oct 2020 12:06:10 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D8FE:1917B89:6075DC13 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4919' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '81' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.24635529518127441 + latency: 0.12891507148742676 module_call_list: - unittest.case - requre.online_replacing @@ -50676,15 +50287,40 @@ requests.sessions: the issue comment. ' - closed_at: null - closed_by: null - comments: 0 + closed_at: '2020-10-06T12:06:10Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 comments_url: https://api.github.com/repos/packit/ogr/issues/448/comments created_at: '2020-08-07T09:12:33Z' events_url: https://api.github.com/repos/packit/ogr/issues/448/events html_url: https://github.com/packit/ogr/issues/448 id: 674879684 - labels: [] + labels: + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale labels_url: https://api.github.com/repos/packit/ogr/issues/448/labels{/name} locked: false milestone: null @@ -50692,12 +50328,12 @@ requests.sessions: number: 448 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: '[packit] Propose update failed for release 0.13.0' - updated_at: '2020-08-07T09:12:33Z' + updated_at: '2020-10-06T12:06:10Z' url: https://api.github.com/repos/packit/ogr/issues/448 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -50716,49 +50352,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.128749 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 07 Aug 2020 09:12:33 GMT + Date: Tue, 13 Apr 2021 18:00:34 GMT + ETag: W/"50f33048cfca0933d4a6cd2e68290d5519af90d36195e1df06aa276d9159015f" + Last-Modified: Tue, 06 Oct 2020 12:06:10 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FE63:191B655:6075DC41 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4701' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '299' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/449: - metadata: - latency: 0.3627042770385742 + latency: 0.1149604320526123 module_call_list: - unittest.case - requre.online_replacing @@ -50796,7 +50427,7 @@ requests.sessions: \ [] so that it does not fail on the line with `assert`." closed_at: '2020-08-13T07:00:04Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -50855,7 +50486,7 @@ requests.sessions: updated_at: '2020-08-13T07:00:04Z' url: https://api.github.com/repos/packit/ogr/issues/449 user: - avatar_url: https://avatars2.githubusercontent.com/in/12637?v=4 + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} @@ -50874,48 +50505,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/sentry-io%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.114783 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 17:59:51 GMT + ETag: W/"784b80a76c6f0fd81391546f3ec090023e3e7cc66c50bff93a731746ec1ea6c0" Last-Modified: Thu, 13 Aug 2020 07:00:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DBB6:1918004:6075DC17 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4898' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '102' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.22540736198425293 + latency: 0.2621481418609619 module_call_list: - unittest.case - requre.online_replacing @@ -50953,7 +50579,7 @@ requests.sessions: \ [] so that it does not fail on the line with `assert`." closed_at: '2020-08-13T07:00:04Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -51012,7 +50638,7 @@ requests.sessions: updated_at: '2020-08-13T07:00:04Z' url: https://api.github.com/repos/packit/ogr/issues/449 user: - avatar_url: https://avatars2.githubusercontent.com/in/12637?v=4 + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} @@ -51031,49 +50657,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/sentry-io%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.261749 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:00:36 GMT + ETag: W/"784b80a76c6f0fd81391546f3ec090023e3e7cc66c50bff93a731746ec1ea6c0" Last-Modified: Thu, 13 Aug 2020 07:00:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F800A7:191B9CA:6075DC44 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4685' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '315' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/454: - metadata: - latency: 0.39594030380249023 + latency: 0.19942092895507812 module_call_list: - unittest.case - requre.online_replacing @@ -51094,11 +50715,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2020-08-19T11:07:53Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -51149,7 +50770,7 @@ requests.sessions: updated_at: '2020-08-19T11:07:53Z' url: https://api.github.com/repos/packit/ogr/issues/454 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -51168,48 +50789,43 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.199203 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 11:07:53 GMT + Date: Tue, 13 Apr 2021 17:59:50 GMT + ETag: W/"aa554a81afd50751b97f0d8ef7a8dd569583aaaf745baa5f7c5b49601c878db1" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DAE0:1917E9B:6075DC16 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4903' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '97' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.239943265914917 + latency: 0.12092971801757812 module_call_list: - unittest.case - requre.online_replacing @@ -51230,11 +50846,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2020-08-19T11:07:53Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -51285,7 +50901,7 @@ requests.sessions: updated_at: '2020-08-19T11:07:53Z' url: https://api.github.com/repos/packit/ogr/issues/454 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -51304,49 +50920,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.120705 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 11:07:53 GMT + Date: Tue, 13 Apr 2021 18:00:36 GMT + ETag: W/"aa554a81afd50751b97f0d8ef7a8dd569583aaaf745baa5f7c5b49601c878db1" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8002E:191B906:6075DC44 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4689' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '311' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/456: - metadata: - latency: 0.293748140335083 + latency: 0.2245466709136963 module_call_list: - unittest.case - requre.online_replacing @@ -51389,9 +51000,27 @@ requests.sessions: the issue comment. ' - closed_at: null - closed_by: null - comments: 0 + closed_at: '2020-09-16T09:45:50Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 1 comments_url: https://api.github.com/repos/packit/ogr/issues/456/comments created_at: '2020-08-20T08:09:32Z' events_url: https://api.github.com/repos/packit/ogr/issues/456/events @@ -51405,12 +51034,12 @@ requests.sessions: number: 456 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: '[packit] Propose update failed for release 0.13.1' - updated_at: '2020-08-20T08:09:32Z' + updated_at: '2020-09-16T09:45:50Z' url: https://api.github.com/repos/packit/ogr/issues/456 user: - avatar_url: https://avatars0.githubusercontent.com/in/29180?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} @@ -51429,48 +51058,43 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.224333 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 20 Aug 2020 08:09:32 GMT + Date: Tue, 13 Apr 2021 17:59:49 GMT + ETag: W/"35ed1c4dce80c1c60a53d49caa94ce3dad3634d67c1e885a3b573098decf3ed4" + Last-Modified: Wed, 16 Sep 2020 09:45:50 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DA67:1917DDB:6075DC15 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4907' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '93' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.30480051040649414 + latency: 0.09424638748168945 module_call_list: - unittest.case - requre.online_replacing @@ -51513,9 +51137,27 @@ requests.sessions: the issue comment. ' - closed_at: null - closed_by: null - comments: 0 + closed_at: '2020-09-16T09:45:50Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 1 comments_url: https://api.github.com/repos/packit/ogr/issues/456/comments created_at: '2020-08-20T08:09:32Z' events_url: https://api.github.com/repos/packit/ogr/issues/456/events @@ -51529,12 +51171,12 @@ requests.sessions: number: 456 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: '[packit] Propose update failed for release 0.13.1' - updated_at: '2020-08-20T08:09:32Z' + updated_at: '2020-09-16T09:45:50Z' url: https://api.github.com/repos/packit/ogr/issues/456 user: - avatar_url: https://avatars0.githubusercontent.com/in/29180?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} @@ -51553,49 +51195,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.094046 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 20 Aug 2020 08:09:32 GMT + Date: Tue, 13 Apr 2021 18:00:35 GMT + ETag: W/"35ed1c4dce80c1c60a53d49caa94ce3dad3634d67c1e885a3b573098decf3ed4" + Last-Modified: Wed, 16 Sep 2020 09:45:50 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FF93:191B82C:6075DC43 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4693' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '307' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/49: + https://api.github.com:443/repos/packit/ogr/issues/457: - metadata: - latency: 0.2948932647705078 + latency: 0.10833430290222168 module_call_list: - unittest.case - requre.online_replacing @@ -51616,133 +51253,117 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\nName Stmts Miss Cover Missing\r\ - \n----------------------------------------------------------\r\nservices/github.py\ - \ 114 63 45% 17-19, 24-26, 30, 33-34, 41-42, 47, 51,\ - \ 58-61, 64, 67, 70, 73-79, 82-83, 86-87, 95-98, 108, 111, 114-115,\ - \ 118, 121, 124, 127-132, 135, 149, 170, 184, 193-203, 207-209, 212-213,\ - \ 216-217, 227, 230\r\nservices/gitlab.py 66 66 0%\ - \ 1-144\r\nservices/our_pagure.py 79 46 42% 33, 36-39,\ - \ 134-148, 160-176, 180-186, 249-256, 259-264, 267-270, 273, 276, 279-282,\ - \ 285-288, 291-294, 297-298\r\nutils.py 150 110\ - \ 27% 35-77, 82-83, 88-89, 94, 98-116, 120-130, 145-148, 163-165,\ - \ 169-176, 180-214, 219-248, 252, 260, 273\r\n```\r\n\r\nI know the\ - \ `gitlab` module is WIP, but the others deserve more tests IMHO" - closed_at: '2020-01-15T11:22:38Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-09-16T13:15:51Z' closed_by: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/49/comments - created_at: '2019-03-26T14:47:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/49/events - html_url: https://github.com/packit/ogr/issues/49 - id: 425463412 + url: https://api.github.com/users/usercont-release-bot + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/457/comments + created_at: '2020-09-01T13:57:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/457/events + html_url: https://github.com/packit/ogr/issues/457 + id: 690166541 labels: - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9d0c4 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/49/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/457/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjU0NjM0MTI= - number: 49 + node_id: MDU6SXNzdWU2OTAxNjY1NDE= + number: 457 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Modules with poor code coverage - updated_at: '2020-01-15T11:22:38Z' - url: https://api.github.com/repos/packit/ogr/issues/49 + title: New minor release + updated_at: '2020-09-16T13:15:51Z' + url: https://api.github.com/repos/packit/ogr/issues/457 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.108131 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 17:59:49 GMT + ETag: W/"5e1b4788896ff87598990c7ff356347b3e123a299e9a6f8448dff2faee37307c" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DA56:1917DB6:6075DC15 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4908' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '92' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.302201509475708 + latency: 0.11487221717834473 module_call_list: - unittest.case - requre.online_replacing @@ -51763,134 +51384,118 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\nName Stmts Miss Cover Missing\r\ - \n----------------------------------------------------------\r\nservices/github.py\ - \ 114 63 45% 17-19, 24-26, 30, 33-34, 41-42, 47, 51,\ - \ 58-61, 64, 67, 70, 73-79, 82-83, 86-87, 95-98, 108, 111, 114-115,\ - \ 118, 121, 124, 127-132, 135, 149, 170, 184, 193-203, 207-209, 212-213,\ - \ 216-217, 227, 230\r\nservices/gitlab.py 66 66 0%\ - \ 1-144\r\nservices/our_pagure.py 79 46 42% 33, 36-39,\ - \ 134-148, 160-176, 180-186, 249-256, 259-264, 267-270, 273, 276, 279-282,\ - \ 285-288, 291-294, 297-298\r\nutils.py 150 110\ - \ 27% 35-77, 82-83, 88-89, 94, 98-116, 120-130, 145-148, 163-165,\ - \ 169-176, 180-214, 219-248, 252, 260, 273\r\n```\r\n\r\nI know the\ - \ `gitlab` module is WIP, but the others deserve more tests IMHO" - closed_at: '2020-01-15T11:22:38Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-09-16T13:15:51Z' closed_by: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/49/comments - created_at: '2019-03-26T14:47:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/49/events - html_url: https://github.com/packit/ogr/issues/49 - id: 425463412 + url: https://api.github.com/users/usercont-release-bot + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/457/comments + created_at: '2020-09-01T13:57:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/457/events + html_url: https://github.com/packit/ogr/issues/457 + id: 690166541 labels: - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9d0c4 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/49/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/457/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjU0NjM0MTI= - number: 49 + node_id: MDU6SXNzdWU2OTAxNjY1NDE= + number: 457 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Modules with poor code coverage - updated_at: '2020-01-15T11:22:38Z' - url: https://api.github.com/repos/packit/ogr/issues/49 + title: New minor release + updated_at: '2020-09-16T13:15:51Z' + url: https://api.github.com/repos/packit/ogr/issues/457 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.114602 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:35 GMT + ETag: W/"5e1b4788896ff87598990c7ff356347b3e123a299e9a6f8448dff2faee37307c" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FF75:191B803:6075DC43 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4694' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '306' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/50: + https://api.github.com:443/repos/packit/ogr/issues/459: - metadata: - latency: 0.24521493911743164 + latency: 0.19930267333984375 module_call_list: - unittest.case - requre.online_replacing @@ -51911,122 +51516,123 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-03-27T09:03:50Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-02T08:18:37Z' closed_by: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lachmanfrantisek comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/50/comments - created_at: '2019-03-27T08:58:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/50/events - html_url: https://github.com/packit/ogr/issues/50 - id: 425835263 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/50/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/459/comments + created_at: '2020-09-02T07:22:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/459/events + html_url: https://github.com/packit/ogr/issues/459 + id: 690786308 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/459/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjU4MzUyNjM= - number: 50 + node_id: MDU6SXNzdWU2OTA3ODYzMDg= + number: 459 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.2.0 release - updated_at: '2019-03-27T09:03:50Z' - url: https://api.github.com/repos/packit/ogr/issues/50 + title: '[packit] Propose update failed for release 0.14.0' + updated_at: '2020-09-02T08:18:37Z' + url: https://api.github.com/repos/packit/ogr/issues/459 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.199097 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 17:59:49 GMT + ETag: W/"75fed87c38eaa7554f897c78f9f0a5267e8545e07ba24638e041c86bbafb95dc" + Last-Modified: Wed, 02 Sep 2020 08:18:37 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DA8E:1917E11:6075DC15 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4906' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '94' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29358625411987305 + latency: 0.11559391021728516 module_call_list: - unittest.case - requre.online_replacing @@ -52047,123 +51653,124 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-03-27T09:03:50Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-02T08:18:37Z' closed_by: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lachmanfrantisek comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/50/comments - created_at: '2019-03-27T08:58:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/50/events - html_url: https://github.com/packit/ogr/issues/50 - id: 425835263 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/50/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/459/comments + created_at: '2020-09-02T07:22:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/459/events + html_url: https://github.com/packit/ogr/issues/459 + id: 690786308 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/459/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjU4MzUyNjM= - number: 50 + node_id: MDU6SXNzdWU2OTA3ODYzMDg= + number: 459 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.2.0 release - updated_at: '2019-03-27T09:03:50Z' - url: https://api.github.com/repos/packit/ogr/issues/50 + title: '[packit] Propose update failed for release 0.14.0' + updated_at: '2020-09-02T08:18:37Z' + url: https://api.github.com/repos/packit/ogr/issues/459 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.115346 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:35 GMT + ETag: W/"75fed87c38eaa7554f897c78f9f0a5267e8545e07ba24638e041c86bbafb95dc" + Last-Modified: Wed, 02 Sep 2020 08:18:37 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FFA3:191B83D:6075DC43 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4692' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '308' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/52: + https://api.github.com:443/repos/packit/ogr/issues/461: - metadata: - latency: 0.2756505012512207 + latency: 0.14357638359069824 module_call_list: - unittest.case - requre.online_replacing @@ -52182,75 +51789,25 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "Just spent some time debugging an issue where packit.yaml was not\ - \ found while being 100 % it's in there.\r\n\r\nIt turned out that my\ - \ token was incorrect and github kept throwing 401: that should bubble\ - \ up, we should catch 404 only. " - closed_at: '2019-07-10T07:35:48Z' - closed_by: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/52/comments - created_at: '2019-03-27T21:00:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/52/events - html_url: https://github.com/packit/ogr/issues/52 - id: 426181525 + body: "There is a [check-runs API](https://docs.github.com/en/rest/reference/checks)\ + \ that allows more functionality and e.g `neutral` state requested in\ + \ https://github.com/packit/packit-service/issues/760.\r\n\r\nUnfortunately,\ + \ it's [not implemented in PyGithub yet](https://github.com/PyGithub/PyGithub/issues/1621).\r\ + \n\r\nThis project builds on top of `PyGithub` and implements that:\ + \ https://github.com/webknjaz/check-in/blob/master/check_in/github_api.py\r\ + \n\r\nWe can either help on `PyGithub` side or implement it here or\ + \ wait for `PyGithub`." + closed_at: null + closed_by: null + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/461/comments + created_at: '2020-09-08T07:02:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/461/events + html_url: https://github.com/packit/ogr/issues/461 + id: 695610247 labels: - color: '000000' default: false @@ -52259,100 +51816,88 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff + - color: a2eeef default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: ff9990 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/52/labels{/name} + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + labels_url: https://api.github.com/repos/packit/ogr/issues/461/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjYxODE1MjU= - number: 52 + node_id: MDU6SXNzdWU2OTU2MTAyNDc= + number: 461 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'get_file_content: catch only 404, raise everything else' - updated_at: '2019-07-10T07:35:48Z' - url: https://api.github.com/repos/packit/ogr/issues/52 + state: open + title: '[github] Use check-runs for richer API' + updated_at: '2021-03-26T13:15:58Z' + url: https://api.github.com/repos/packit/ogr/issues/461 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.143415 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 17:59:37 GMT + ETag: W/"e43f860711202e6b823d0ee418505e63aeaa431aca4032311a04fbf4214e5d0d" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D253:19170FD:6075DC09 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4974' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '26' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2953987121582031 + latency: 0.0957479476928711 module_call_list: - unittest.case - requre.online_replacing @@ -52371,75 +51916,25 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "Just spent some time debugging an issue where packit.yaml was not\ - \ found while being 100 % it's in there.\r\n\r\nIt turned out that my\ - \ token was incorrect and github kept throwing 401: that should bubble\ - \ up, we should catch 404 only. " - closed_at: '2019-07-10T07:35:48Z' - closed_by: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/52/comments - created_at: '2019-03-27T21:00:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/52/events - html_url: https://github.com/packit/ogr/issues/52 - id: 426181525 + body: "There is a [check-runs API](https://docs.github.com/en/rest/reference/checks)\ + \ that allows more functionality and e.g `neutral` state requested in\ + \ https://github.com/packit/packit-service/issues/760.\r\n\r\nUnfortunately,\ + \ it's [not implemented in PyGithub yet](https://github.com/PyGithub/PyGithub/issues/1621).\r\ + \n\r\nThis project builds on top of `PyGithub` and implements that:\ + \ https://github.com/webknjaz/check-in/blob/master/check_in/github_api.py\r\ + \n\r\nWe can either help on `PyGithub` side or implement it here or\ + \ wait for `PyGithub`." + closed_at: null + closed_by: null + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/461/comments + created_at: '2020-09-08T07:02:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/461/events + html_url: https://github.com/packit/ogr/issues/461 + id: 695610247 labels: - color: '000000' default: false @@ -52448,101 +51943,89 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff + - color: a2eeef default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: ff9990 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/52/labels{/name} + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + labels_url: https://api.github.com/repos/packit/ogr/issues/461/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjYxODE1MjU= - number: 52 + node_id: MDU6SXNzdWU2OTU2MTAyNDc= + number: 461 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'get_file_content: catch only 404, raise everything else' - updated_at: '2019-07-10T07:35:48Z' - url: https://api.github.com/repos/packit/ogr/issues/52 + state: open + title: '[github] Use check-runs for richer API' + updated_at: '2021-03-26T13:15:58Z' + url: https://api.github.com/repos/packit/ogr/issues/461 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.09558 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:01:08 GMT + ETag: W/"e43f860711202e6b823d0ee418505e63aeaa431aca4032311a04fbf4214e5d0d" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81D93:191E5CF:6075DC64 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4527' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '473' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/53: + https://api.github.com:443/repos/packit/ogr/issues/464: - metadata: - latency: 0.24137115478515625 + latency: 0.19677352905273438 module_call_list: - unittest.case - requre.online_replacing @@ -52564,115 +52047,151 @@ requests.sessions: assignee: null assignees: [] author_association: NONE - body: "There is no documentation on how to use the library, currently.\ - \ A documentation will help people on how to use ogr, and showcase it's\ - \ features and functions.\r\n\r\nThis can be done by adding the wiki\ - \ pages (on Github), since the documentation might be quite long and\ - \ the Wiki will help in segregating several topics (for instance, how\ - \ to use ogr for GitHub, GitLab and Pagure).\r\n\r\n" - closed_at: null - closed_by: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/53/comments - created_at: '2019-04-04T13:30:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/53/events - html_url: https://github.com/packit/ogr/issues/53 - id: 429280678 + body: "Sentry Issue: [RED-HAT-0P-2PA](https://sentry.io/organizations/red-hat-0p/issues/1785839618/?referrer=github_integration)\n\ + \n```\nRemoteDisconnected: Remote end closed connection without response\n\ + (2 additional frame(s) were not displayed)\n...\n File \"\"\ + , line 3, in raise_from\n # Permission is hereby granted, free of\ + \ charge, to any person obtaining a copy\n File \"urllib3/connectionpool.py\"\ + , line 416, in _make_request\n httplib_response = conn.getresponse()\n\ + \ File \"http/client.py\", line 1369, in getresponse\n response.begin()\n\ + \ File \"http/client.py\", line 310, in begin\n version, status,\ + \ reason = self._read_status()\n File \"http/client.py\", line 279,\ + \ in _read_status\n raise RemoteDisconnected(\"Remote end closed\ + \ connection without\"\n\nProtocolError: ('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))\n(6 additional frame(s)\ + \ were not displayed)\n...\n File \"\", line 3, in raise_from\n\ + \ # Permission is hereby granted, free of charge, to any person obtaining\ + \ a copy\n File \"urllib3/connectionpool.py\", line 416, in _make_request\n\ + \ httplib_response = conn.getresponse()\n File \"http/client.py\"\ + , line 1369, in getresponse\n response.begin()\n File \"http/client.py\"\ + , line 310, in begin\n version, status, reason = self._read_status()\n\ + \ File \"http/client.py\", line 279, in _read_status\n raise RemoteDisconnected(\"\ + Remote end closed connection without\"\n\nConnectionError: ('Connection\ + \ aborted.', RemoteDisconnected('Remote end closed connection without\ + \ response'))\n File \"ogr/services/pagure/service.py\", line 168,\ + \ in call_api_raw\n method=method, url=url, params=params, data=data\n\ + \ File \"ogr/services/pagure/service.py\", line 186, in get_raw_request\n\ + \ verify=not self.insecure,\n File \"requests/sessions.py\", line\ + \ 533, in request\n resp = self.send(prep, **send_kwargs)\n File\ + \ \"requests/sessions.py\", line 646, in send\n r = adapter.send(request,\ + \ **kwargs)\n File \"requests/adapters.py\", line 498, in send\n \ + \ raise ConnectionError(err, request=request)\n\nPagureAPIException:\ + \ (\"Cannot connect to url: 'https://git.stg.centos.org/api/0/source-git/acl/c/48d4feb54ebcb47cb593ab3c304ec36b755e8769/flag'.\"\ + , ConnectionError(ProtocolError('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))))\n(11 additional frame(s)\ + \ were not displayed)\n...\n File \"ogr/services/pagure/project.py\"\ + , line 464, in set_commit_status\n uid=uid,\n File \"ogr/services/pagure/flag.py\"\ + , line 88, in set\n \"c\", commit, \"flag\", method=\"POST\", data=data\n\ + \ File \"ogr/services/pagure/project.py\", line 129, in _call_project_api\n\ + \ url=request_url, method=method, params=params, data=data\n File\ + \ \"ogr/services/pagure/service.py\", line 128, in call_api\n response\ + \ = self.call_api_raw(url=url, method=method, params=params, data=data)\n\ + \ File \"ogr/services/pagure/service.py\", line 173, in call_api_raw\n\ + \ raise PagureAPIException(f\"Cannot connect to url: '{url}'.\",\ + \ er)\n```" + closed_at: '2021-02-12T12:22:11Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/464/comments + created_at: '2020-09-16T07:25:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/464/events + html_url: https://github.com/packit/ogr/issues/464 + id: 702525467 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: 42e529 + - color: 1d76db default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/53/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + labels_url: https://api.github.com/repos/packit/ogr/issues/464/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjkyODA2Nzg= - number: 53 + node_id: MDU6SXNzdWU3MDI1MjU0Njc= + number: 464 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Add a documentation for API - updated_at: '2020-06-01T08:45:12Z' - url: https://api.github.com/repos/packit/ogr/issues/53 + state: closed + title: '[Pagure] ProtocolError: (''Connection aborted.'', RemoteDisconnected(''Remote + end closed connection without response''))' + updated_at: '2021-02-12T12:22:11Z' + url: https://api.github.com/repos/packit/ogr/issues/464 user: - avatar_url: https://avatars3.githubusercontent.com/u/31067398?v=4 - events_url: https://api.github.com/users/Aniket-Pradhan/events{/privacy} - followers_url: https://api.github.com/users/Aniket-Pradhan/followers - following_url: https://api.github.com/users/Aniket-Pradhan/following{/other_user} - gists_url: https://api.github.com/users/Aniket-Pradhan/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 + events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers + following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/Aniket-Pradhan - id: 31067398 - login: Aniket-Pradhan - node_id: MDQ6VXNlcjMxMDY3Mzk4 - organizations_url: https://api.github.com/users/Aniket-Pradhan/orgs - received_events_url: https://api.github.com/users/Aniket-Pradhan/received_events - repos_url: https://api.github.com/users/Aniket-Pradhan/repos + html_url: https://github.com/apps/sentry-io + id: 39604003 + login: sentry-io[bot] + node_id: MDM6Qm90Mzk2MDQwMDM= + organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events + repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/Aniket-Pradhan/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/Aniket-Pradhan/subscriptions - type: User - url: https://api.github.com/users/Aniket-Pradhan + starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/sentry-io%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.196595 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 20 Aug 2020 07:31:02 GMT + Date: Tue, 13 Apr 2021 17:59:40 GMT + ETag: W/"b15ec1eba19e61f4eb6d78f02e426d6b5b48ed01f7f8d5ac09714a3a8557ec8d" + Last-Modified: Fri, 12 Feb 2021 12:22:11 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D4D2:19174AD:6075DC0C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4959' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '41' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.4471759796142578 + latency: 0.26340651512145996 module_call_list: - unittest.case - requre.online_replacing @@ -52694,116 +52213,152 @@ requests.sessions: assignee: null assignees: [] author_association: NONE - body: "There is no documentation on how to use the library, currently.\ - \ A documentation will help people on how to use ogr, and showcase it's\ - \ features and functions.\r\n\r\nThis can be done by adding the wiki\ - \ pages (on Github), since the documentation might be quite long and\ - \ the Wiki will help in segregating several topics (for instance, how\ - \ to use ogr for GitHub, GitLab and Pagure).\r\n\r\n" - closed_at: null - closed_by: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/53/comments - created_at: '2019-04-04T13:30:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/53/events - html_url: https://github.com/packit/ogr/issues/53 - id: 429280678 + body: "Sentry Issue: [RED-HAT-0P-2PA](https://sentry.io/organizations/red-hat-0p/issues/1785839618/?referrer=github_integration)\n\ + \n```\nRemoteDisconnected: Remote end closed connection without response\n\ + (2 additional frame(s) were not displayed)\n...\n File \"\"\ + , line 3, in raise_from\n # Permission is hereby granted, free of\ + \ charge, to any person obtaining a copy\n File \"urllib3/connectionpool.py\"\ + , line 416, in _make_request\n httplib_response = conn.getresponse()\n\ + \ File \"http/client.py\", line 1369, in getresponse\n response.begin()\n\ + \ File \"http/client.py\", line 310, in begin\n version, status,\ + \ reason = self._read_status()\n File \"http/client.py\", line 279,\ + \ in _read_status\n raise RemoteDisconnected(\"Remote end closed\ + \ connection without\"\n\nProtocolError: ('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))\n(6 additional frame(s)\ + \ were not displayed)\n...\n File \"\", line 3, in raise_from\n\ + \ # Permission is hereby granted, free of charge, to any person obtaining\ + \ a copy\n File \"urllib3/connectionpool.py\", line 416, in _make_request\n\ + \ httplib_response = conn.getresponse()\n File \"http/client.py\"\ + , line 1369, in getresponse\n response.begin()\n File \"http/client.py\"\ + , line 310, in begin\n version, status, reason = self._read_status()\n\ + \ File \"http/client.py\", line 279, in _read_status\n raise RemoteDisconnected(\"\ + Remote end closed connection without\"\n\nConnectionError: ('Connection\ + \ aborted.', RemoteDisconnected('Remote end closed connection without\ + \ response'))\n File \"ogr/services/pagure/service.py\", line 168,\ + \ in call_api_raw\n method=method, url=url, params=params, data=data\n\ + \ File \"ogr/services/pagure/service.py\", line 186, in get_raw_request\n\ + \ verify=not self.insecure,\n File \"requests/sessions.py\", line\ + \ 533, in request\n resp = self.send(prep, **send_kwargs)\n File\ + \ \"requests/sessions.py\", line 646, in send\n r = adapter.send(request,\ + \ **kwargs)\n File \"requests/adapters.py\", line 498, in send\n \ + \ raise ConnectionError(err, request=request)\n\nPagureAPIException:\ + \ (\"Cannot connect to url: 'https://git.stg.centos.org/api/0/source-git/acl/c/48d4feb54ebcb47cb593ab3c304ec36b755e8769/flag'.\"\ + , ConnectionError(ProtocolError('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))))\n(11 additional frame(s)\ + \ were not displayed)\n...\n File \"ogr/services/pagure/project.py\"\ + , line 464, in set_commit_status\n uid=uid,\n File \"ogr/services/pagure/flag.py\"\ + , line 88, in set\n \"c\", commit, \"flag\", method=\"POST\", data=data\n\ + \ File \"ogr/services/pagure/project.py\", line 129, in _call_project_api\n\ + \ url=request_url, method=method, params=params, data=data\n File\ + \ \"ogr/services/pagure/service.py\", line 128, in call_api\n response\ + \ = self.call_api_raw(url=url, method=method, params=params, data=data)\n\ + \ File \"ogr/services/pagure/service.py\", line 173, in call_api_raw\n\ + \ raise PagureAPIException(f\"Cannot connect to url: '{url}'.\",\ + \ er)\n```" + closed_at: '2021-02-12T12:22:11Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/464/comments + created_at: '2020-09-16T07:25:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/464/events + html_url: https://github.com/packit/ogr/issues/464 + id: 702525467 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: 42e529 + - color: 1d76db default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/53/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + labels_url: https://api.github.com/repos/packit/ogr/issues/464/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjkyODA2Nzg= - number: 53 + node_id: MDU6SXNzdWU3MDI1MjU0Njc= + number: 464 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Add a documentation for API - updated_at: '2020-06-01T08:45:12Z' - url: https://api.github.com/repos/packit/ogr/issues/53 + state: closed + title: '[Pagure] ProtocolError: (''Connection aborted.'', RemoteDisconnected(''Remote + end closed connection without response''))' + updated_at: '2021-02-12T12:22:11Z' + url: https://api.github.com/repos/packit/ogr/issues/464 user: - avatar_url: https://avatars3.githubusercontent.com/u/31067398?v=4 - events_url: https://api.github.com/users/Aniket-Pradhan/events{/privacy} - followers_url: https://api.github.com/users/Aniket-Pradhan/followers - following_url: https://api.github.com/users/Aniket-Pradhan/following{/other_user} - gists_url: https://api.github.com/users/Aniket-Pradhan/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 + events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers + following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/Aniket-Pradhan - id: 31067398 - login: Aniket-Pradhan - node_id: MDQ6VXNlcjMxMDY3Mzk4 - organizations_url: https://api.github.com/users/Aniket-Pradhan/orgs - received_events_url: https://api.github.com/users/Aniket-Pradhan/received_events - repos_url: https://api.github.com/users/Aniket-Pradhan/repos + html_url: https://github.com/apps/sentry-io + id: 39604003 + login: sentry-io[bot] + node_id: MDM6Qm90Mzk2MDQwMDM= + organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events + repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/Aniket-Pradhan/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/Aniket-Pradhan/subscriptions - type: User - url: https://api.github.com/users/Aniket-Pradhan + starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/sentry-io%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.263164 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 20 Aug 2020 07:31:02 GMT + Date: Tue, 13 Apr 2021 18:00:28 GMT + ETag: W/"b15ec1eba19e61f4eb6d78f02e426d6b5b48ed01f7f8d5ac09714a3a8557ec8d" + Last-Modified: Fri, 12 Feb 2021 12:22:11 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F94A:191AEA1:6075DC3C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4729' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '271' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/54: + https://api.github.com:443/repos/packit/ogr/issues/466: - metadata: - latency: 0.259601354598999 + latency: 0.19597721099853516 module_call_list: - unittest.case - requre.online_replacing @@ -52824,117 +52379,123 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "we need this in packit this sprint when we start building in copr\r\ - \n\r\nthis should be implemented soonish and land in next release\r\n\ - \r\nrelevant code for github:\r\nhttps://github.com/packit-service/packit/blob/04793f16d5ced27b5e7fec7d963d650b065a4276/packit/watcher.py#L94" - closed_at: '2019-06-25T07:31:05Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-16T15:47:15Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/54/comments - created_at: '2019-04-04T14:24:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/54/events - html_url: https://github.com/packit/ogr/issues/54 - id: 429309114 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/54/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/466/comments + created_at: '2020-09-16T15:33:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/466/events + html_url: https://github.com/packit/ogr/issues/466 + id: 702867074 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/466/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjkzMDkxMTQ= - number: 54 + node_id: MDU6SXNzdWU3MDI4NjcwNzQ= + number: 466 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add a way to set check results for a commit - updated_at: '2019-06-25T07:31:05Z' - url: https://api.github.com/repos/packit/ogr/issues/54 + title: '[packit] Propose update failed for release 0.15.0' + updated_at: '2020-09-16T15:47:15Z' + url: https://api.github.com/repos/packit/ogr/issues/466 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.195765 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 17:59:49 GMT + ETag: W/"8ebfd19a9d7aedfb20e0729b2e31b1b81e1a4ba9dc2de53186cb08d4226a99da" + Last-Modified: Wed, 16 Sep 2020 15:47:15 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DA3B:1917D8E:6075DC15 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4909' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '91' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.4955589771270752 + latency: 0.10405182838439941 module_call_list: - unittest.case - requre.online_replacing @@ -52955,118 +52516,124 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "we need this in packit this sprint when we start building in copr\r\ - \n\r\nthis should be implemented soonish and land in next release\r\n\ - \r\nrelevant code for github:\r\nhttps://github.com/packit-service/packit/blob/04793f16d5ced27b5e7fec7d963d650b065a4276/packit/watcher.py#L94" - closed_at: '2019-06-25T07:31:05Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-16T15:47:15Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/54/comments - created_at: '2019-04-04T14:24:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/54/events - html_url: https://github.com/packit/ogr/issues/54 - id: 429309114 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/54/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/466/comments + created_at: '2020-09-16T15:33:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/466/events + html_url: https://github.com/packit/ogr/issues/466 + id: 702867074 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/466/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjkzMDkxMTQ= - number: 54 + node_id: MDU6SXNzdWU3MDI4NjcwNzQ= + number: 466 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add a way to set check results for a commit - updated_at: '2019-06-25T07:31:05Z' - url: https://api.github.com/repos/packit/ogr/issues/54 + title: '[packit] Propose update failed for release 0.15.0' + updated_at: '2020-09-16T15:47:15Z' + url: https://api.github.com/repos/packit/ogr/issues/466 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.103336 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:35 GMT + ETag: W/"8ebfd19a9d7aedfb20e0729b2e31b1b81e1a4ba9dc2de53186cb08d4226a99da" + Last-Modified: Wed, 16 Sep 2020 15:47:15 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FF64:191B7E0:6075DC43 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4695' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '305' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/56: + https://api.github.com:443/repos/packit/ogr/issues/472: - metadata: - latency: 0.2938551902770996 + latency: 0.10957217216491699 module_call_list: - unittest.case - requre.online_replacing @@ -53088,111 +52655,117 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "The `@readonly` decorator should be renamed as it can confuse newcomers\ - \ that the method itself is \"readonly\". The fact is that it has the\ - \ opposite meaning of the read-only.\r\n\r\nFeel free to add your ideas\ - \ as a single comment so we can easily vote.\r\n\r\n-----\r\n\r\nFollow-up\ - \ from #48" - closed_at: '2019-06-24T14:46:14Z' + body: "Introduced in #452 \r\n\r\nThere's a missing response for GitLab\ + \ (F31 version of python-gitlab) tests" + closed_at: '2020-11-30T08:37:14Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/56/comments - created_at: '2019-04-09T08:17:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/56/events - html_url: https://github.com/packit/ogr/issues/56 - id: 430829968 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/56/labels{/name} + url: https://api.github.com/users/csomh + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/472/comments + created_at: '2020-09-24T19:38:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/472/events + html_url: https://github.com/packit/ogr/issues/472 + id: 708425597 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/472/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzA4Mjk5Njg= - number: 56 + node_id: MDU6SXNzdWU3MDg0MjU1OTc= + number: 472 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'better name for @readonly decorator ' - updated_at: '2019-06-24T14:46:14Z' - url: https://api.github.com/repos/packit/ogr/issues/56 + title: Missing response for F31 + updated_at: '2020-11-30T08:37:14Z' + url: https://api.github.com/repos/packit/ogr/issues/472 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.109375 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:45 GMT + ETag: W/"d4e6e8dee72ebb9eb9fcaee0f5f42980ca1c149538fd09ff25175e0564f619fd" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D81D:1917A00:6075DC11 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4928' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '72' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.30578017234802246 + latency: 0.11312246322631836 module_call_list: - unittest.case - requre.online_replacing @@ -53214,112 +52787,118 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "The `@readonly` decorator should be renamed as it can confuse newcomers\ - \ that the method itself is \"readonly\". The fact is that it has the\ - \ opposite meaning of the read-only.\r\n\r\nFeel free to add your ideas\ - \ as a single comment so we can easily vote.\r\n\r\n-----\r\n\r\nFollow-up\ - \ from #48" - closed_at: '2019-06-24T14:46:14Z' + body: "Introduced in #452 \r\n\r\nThere's a missing response for GitLab\ + \ (F31 version of python-gitlab) tests" + closed_at: '2020-11-30T08:37:14Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/56/comments - created_at: '2019-04-09T08:17:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/56/events - html_url: https://github.com/packit/ogr/issues/56 - id: 430829968 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/56/labels{/name} + url: https://api.github.com/users/csomh + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/472/comments + created_at: '2020-09-24T19:38:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/472/events + html_url: https://github.com/packit/ogr/issues/472 + id: 708425597 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/472/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzA4Mjk5Njg= - number: 56 + node_id: MDU6SXNzdWU3MDg0MjU1OTc= + number: 472 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'better name for @readonly decorator ' - updated_at: '2019-06-24T14:46:14Z' - url: https://api.github.com/repos/packit/ogr/issues/56 + title: Missing response for F31 + updated_at: '2020-11-30T08:37:14Z' + url: https://api.github.com/repos/packit/ogr/issues/472 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.112935 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:32 GMT + ETag: W/"d4e6e8dee72ebb9eb9fcaee0f5f42980ca1c149538fd09ff25175e0564f619fd" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FCF4:191B420:6075DC40 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4711' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '289' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/58: + https://api.github.com:443/repos/packit/ogr/issues/473: - metadata: - latency: 0.2438805103302002 + latency: 0.15487408638000488 module_call_list: - unittest.case - requre.online_replacing @@ -53338,162 +52917,119 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "FML!\r\n\r\nSo my fork of packit is named source-git, not packit.\r\ - \n\r\nWe should use an API call to obtain github forks, not a guess\ - \ work." - closed_at: '2019-06-27T10:34:34Z' + body: '' + closed_at: '2020-10-14T15:44:17Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/58/comments - created_at: '2019-04-15T11:38:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/58/events - html_url: https://github.com/packit/ogr/issues/58 - id: 433234905 + url: https://api.github.com/users/usercont-release-bot + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/473/comments + created_at: '2020-09-30T09:36:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/473/events + html_url: https://github.com/packit/ogr/issues/473 + id: 711792673 labels: - - color: '000000' + - color: ededed default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/58/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/473/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzMyMzQ5MDU= - number: 58 + node_id: MDU6SXNzdWU3MTE3OTI2NzM= + number: 473 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github: fork repository name may not match the upstream repo name' - updated_at: '2019-06-27T10:34:34Z' - url: https://api.github.com/repos/packit/ogr/issues/58 + title: New minor release + updated_at: '2020-10-14T15:44:17Z' + url: https://api.github.com/repos/packit/ogr/issues/473 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.154399 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 17:59:46 GMT + ETag: W/"ec8018ffb29071c99f18cc54730689ee500f96f0a5444cea811e678f003b1ac9" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D8B9:1917AFA:6075DC12 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4921' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '79' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3079204559326172 + latency: 0.12337970733642578 module_call_list: - unittest.case - requre.online_replacing @@ -53512,163 +53048,120 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "FML!\r\n\r\nSo my fork of packit is named source-git, not packit.\r\ - \n\r\nWe should use an API call to obtain github forks, not a guess\ - \ work." - closed_at: '2019-06-27T10:34:34Z' + body: '' + closed_at: '2020-10-14T15:44:17Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/58/comments - created_at: '2019-04-15T11:38:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/58/events - html_url: https://github.com/packit/ogr/issues/58 - id: 433234905 + url: https://api.github.com/users/usercont-release-bot + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/473/comments + created_at: '2020-09-30T09:36:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/473/events + html_url: https://github.com/packit/ogr/issues/473 + id: 711792673 labels: - - color: '000000' + - color: ededed default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/58/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/473/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzMyMzQ5MDU= - number: 58 + node_id: MDU6SXNzdWU3MTE3OTI2NzM= + number: 473 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github: fork repository name may not match the upstream repo name' - updated_at: '2019-06-27T10:34:34Z' - url: https://api.github.com/repos/packit/ogr/issues/58 + title: New minor release + updated_at: '2020-10-14T15:44:17Z' + url: https://api.github.com/repos/packit/ogr/issues/473 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.123201 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:33 GMT + ETag: W/"ec8018ffb29071c99f18cc54730689ee500f96f0a5444cea811e678f003b1ac9" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FE2C:191B5FF:6075DC41 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4703' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '297' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/61: + https://api.github.com:443/repos/packit/ogr/issues/475: - metadata: - latency: 0.24515199661254883 + latency: 0.09953141212463379 module_call_list: - unittest.case - requre.online_replacing @@ -53689,116 +53182,123 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "as integration tests needs regeneration stored yaml API communication.\r\ - \nWould be nice to add there target to be able to regenerate these files" - closed_at: '2019-06-25T14:47:44Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-01T08:40:05Z' closed_by: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/61/comments - created_at: '2019-04-26T07:35:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/61/events - html_url: https://github.com/packit/ogr/issues/61 - id: 437538907 - labels: - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/61/labels{/name} + url: https://api.github.com/users/lachmanfrantisek + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/475/comments + created_at: '2020-09-30T19:27:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/475/events + html_url: https://github.com/packit/ogr/issues/475 + id: 712218395 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/475/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Mzc1Mzg5MDc= - number: 61 + node_id: MDU6SXNzdWU3MTIyMTgzOTU= + number: 475 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: create target for makefile for regeneration testing yaml files - updated_at: '2019-06-25T14:47:44Z' - url: https://api.github.com/repos/packit/ogr/issues/61 + title: '[packit] Propose update failed for release 0.16.0' + updated_at: '2020-10-01T08:40:06Z' + url: https://api.github.com/repos/packit/ogr/issues/475 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.09927 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 17:59:47 GMT + ETag: W/"092cc3233cb74c50389ef98bb668aadfb4f133ad22e6e562d19e665a105e2c6c" + Last-Modified: Thu, 01 Oct 2020 08:40:06 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D962:1917C14:6075DC13 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4917' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '83' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29216957092285156 + latency: 0.11911249160766602 module_call_list: - unittest.case - requre.online_replacing @@ -53819,117 +53319,124 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "as integration tests needs regeneration stored yaml API communication.\r\ - \nWould be nice to add there target to be able to regenerate these files" - closed_at: '2019-06-25T14:47:44Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-01T08:40:05Z' closed_by: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/61/comments - created_at: '2019-04-26T07:35:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/61/events - html_url: https://github.com/packit/ogr/issues/61 - id: 437538907 - labels: - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/61/labels{/name} + url: https://api.github.com/users/lachmanfrantisek + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/475/comments + created_at: '2020-09-30T19:27:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/475/events + html_url: https://github.com/packit/ogr/issues/475 + id: 712218395 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/475/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Mzc1Mzg5MDc= - number: 61 + node_id: MDU6SXNzdWU3MTIyMTgzOTU= + number: 475 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: create target for makefile for regeneration testing yaml files - updated_at: '2019-06-25T14:47:44Z' - url: https://api.github.com/repos/packit/ogr/issues/61 + title: '[packit] Propose update failed for release 0.16.0' + updated_at: '2020-10-01T08:40:06Z' + url: https://api.github.com/repos/packit/ogr/issues/475 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.11895 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:00:34 GMT + ETag: W/"092cc3233cb74c50389ef98bb668aadfb4f133ad22e6e562d19e665a105e2c6c" + Last-Modified: Thu, 01 Oct 2020 08:40:06 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FE81:191B686:6075DC42 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4700' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '300' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/62: + https://api.github.com:443/repos/packit/ogr/issues/478: - metadata: - latency: 0.3060605525970459 + latency: 0.2926459312438965 module_call_list: - unittest.case - requre.online_replacing @@ -53948,120 +53455,171 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "now each integration test class contains right one file with stored\ - \ API data.\r\nWe could reconsider it, and maybe have file for each\ - \ test, to avoid to regenerate big file and have big commits.\r\nWe\ - \ have to solve several issues:\r\n * How to handle it per test, now\ - \ there is right one service pytest fixture function what contains it\r\ - \n * How to regenerate just relevant part \r\n * maybe remove some\ - \ timestamps, UIDs and similar objects what can change on every request\r\ - \n * or manually(semiautomatically) call just affected tests - ie:\ - \ run tests, find failures (key errors) and then try to just regenerate\ - \ files for failed tests" - closed_at: '2019-04-30T19:32:17Z' + assignee: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + author_association: MEMBER + body: "Change all exceptions that are raised for an unsupported feature\ + \ to `OperationNotSupported` (from the default `NotImplementedError`)\r\ + \n\r\ncloser info: https://github.com/packit/ogr/pull/477#discussion_r503077265" + closed_at: null closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 + events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/stale%5Bbot%5D/followers + following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/stale%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/apps/stale + id: 26384082 + login: stale[bot] + node_id: MDM6Qm90MjYzODQwODI= + organizations_url: https://api.github.com/users/stale%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/stale%5Bbot%5D/received_events + repos_url: https://api.github.com/users/stale%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/62/comments - created_at: '2019-04-26T13:21:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/62/events - html_url: https://github.com/packit/ogr/issues/62 - id: 437670314 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/62/labels{/name} + starred_url: https://api.github.com/users/stale%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/stale%5Bbot%5D + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/478/comments + created_at: '2020-10-12T12:23:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/478/events + html_url: https://github.com/packit/ogr/issues/478 + id: 719337260 + labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/478/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Mzc2NzAzMTQ= - number: 62 + node_id: MDU6SXNzdWU3MTkzMzcyNjA= + number: 478 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'testing: split yaml files with data for each test to avoid regeneration - big file and big commits' - updated_at: '2019-04-30T19:32:17Z' - url: https://api.github.com/repos/packit/ogr/issues/62 + state: open + title: Refactor exceptions for non-supported features + updated_at: '2021-03-25T16:21:38Z' + url: https://api.github.com/repos/packit/ogr/issues/478 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.292476 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 17:59:37 GMT + ETag: W/"5db0cc05435063a247b6bf3932d60400785a04cfe309cd565ba36176eb1279c0" + Last-Modified: Tue, 30 Mar 2021 15:22:21 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D26E:1917122:6075DC09 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4973' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '27' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.26204609870910645 + latency: 0.30513429641723633 module_call_list: - unittest.case - requre.online_replacing @@ -54080,121 +53638,172 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "now each integration test class contains right one file with stored\ - \ API data.\r\nWe could reconsider it, and maybe have file for each\ - \ test, to avoid to regenerate big file and have big commits.\r\nWe\ - \ have to solve several issues:\r\n * How to handle it per test, now\ - \ there is right one service pytest fixture function what contains it\r\ - \n * How to regenerate just relevant part \r\n * maybe remove some\ - \ timestamps, UIDs and similar objects what can change on every request\r\ - \n * or manually(semiautomatically) call just affected tests - ie:\ - \ run tests, find failures (key errors) and then try to just regenerate\ - \ files for failed tests" - closed_at: '2019-04-30T19:32:17Z' + assignee: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + author_association: MEMBER + body: "Change all exceptions that are raised for an unsupported feature\ + \ to `OperationNotSupported` (from the default `NotImplementedError`)\r\ + \n\r\ncloser info: https://github.com/packit/ogr/pull/477#discussion_r503077265" + closed_at: null closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 + events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/stale%5Bbot%5D/followers + following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/stale%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/apps/stale + id: 26384082 + login: stale[bot] + node_id: MDM6Qm90MjYzODQwODI= + organizations_url: https://api.github.com/users/stale%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/stale%5Bbot%5D/received_events + repos_url: https://api.github.com/users/stale%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/62/comments - created_at: '2019-04-26T13:21:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/62/events - html_url: https://github.com/packit/ogr/issues/62 - id: 437670314 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/62/labels{/name} + starred_url: https://api.github.com/users/stale%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/stale%5Bbot%5D + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/478/comments + created_at: '2020-10-12T12:23:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/478/events + html_url: https://github.com/packit/ogr/issues/478 + id: 719337260 + labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/478/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Mzc2NzAzMTQ= - number: 62 + node_id: MDU6SXNzdWU3MTkzMzcyNjA= + number: 478 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'testing: split yaml files with data for each test to avoid regeneration - big file and big commits' - updated_at: '2019-04-30T19:32:17Z' - url: https://api.github.com/repos/packit/ogr/issues/62 + state: open + title: Refactor exceptions for non-supported features + updated_at: '2021-03-25T16:21:38Z' + url: https://api.github.com/repos/packit/ogr/issues/478 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.304685 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:01:08 GMT + ETag: W/"5db0cc05435063a247b6bf3932d60400785a04cfe309cd565ba36176eb1279c0" + Last-Modified: Tue, 30 Mar 2021 15:22:21 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81DB1:191E5F6:6075DC64 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4526' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '474' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/64: + https://api.github.com:443/repos/packit/ogr/issues/480: - metadata: - latency: 0.2935965061187744 + latency: 0.10903239250183105 module_call_list: - unittest.case - requre.online_replacing @@ -54213,17 +53822,110 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ - \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ - \nhas to be adapted, currenly I've added dependency on lower version\ - \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ - \nto avoid this issue." - closed_at: '2019-05-29T07:46:28Z' + assignee: + avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu + author_association: MEMBER + body: "We already have `exists` method implemented for Pagure and the\ + \ #479 adds the support for GitLab. GitHub is the last one missing.\r\ + \n\r\n- [ ] Look at the other implementations and add `exists` method\ + \ to the `GithubProject` class." + closed_at: '2021-02-04T19:32:54Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/480/comments + created_at: '2020-10-14T08:39:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/480/events + html_url: https://github.com/packit/ogr/issues/480 + id: 721260961 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/480/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MjEyNjA5NjE= + number: 480 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement project.exists for GitHub + updated_at: '2021-02-04T19:32:54Z' + url: https://api.github.com/repos/packit/ogr/issues/480 + 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} @@ -54241,100 +53943,44 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments - created_at: '2019-04-29T14:41:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/64/events - html_url: https://github.com/packit/ogr/issues/64 - id: 438351136 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0MzgzNTExMzY= - number: 64 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'libpagure has changed ' - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/64 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos - site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.108693 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 17:59:43 GMT + ETag: W/"4c5f63b8e67c8dd28b60493ca7e02bc68bb526671777bda0061571dced1fc8e4" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D6FB:1917812:6075DC0F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4940' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '60' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2920839786529541 + latency: 0.19757437705993652 module_call_list: - unittest.case - requre.online_replacing @@ -54353,17 +53999,110 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ - \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ - \nhas to be adapted, currenly I've added dependency on lower version\ - \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ - \nto avoid this issue." - closed_at: '2019-05-29T07:46:28Z' + assignee: + avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu + author_association: MEMBER + body: "We already have `exists` method implemented for Pagure and the\ + \ #479 adds the support for GitLab. GitHub is the last one missing.\r\ + \n\r\n- [ ] Look at the other implementations and add `exists` method\ + \ to the `GithubProject` class." + closed_at: '2021-02-04T19:32:54Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/480/comments + created_at: '2020-10-14T08:39:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/480/events + html_url: https://github.com/packit/ogr/issues/480 + id: 721260961 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/480/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MjEyNjA5NjE= + number: 480 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement project.exists for GitHub + updated_at: '2021-02-04T19:32:54Z' + url: https://api.github.com/repos/packit/ogr/issues/480 + 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} @@ -54381,101 +54120,45 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments - created_at: '2019-04-29T14:41:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/64/events - html_url: https://github.com/packit/ogr/issues/64 - id: 438351136 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0MzgzNTExMzY= - number: 64 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'libpagure has changed ' - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/64 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos - site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.19734 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:00:29 GMT + ETag: W/"4c5f63b8e67c8dd28b60493ca7e02bc68bb526671777bda0061571dced1fc8e4" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FA85:191B091:6075DC3D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4722' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '278' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/67: + https://api.github.com:443/repos/packit/ogr/issues/481: - metadata: - latency: 0.25146913528442383 + latency: 0.10899734497070312 module_call_list: - unittest.case - requre.online_replacing @@ -54497,53 +54180,45 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "While debugging https://github.com/packit-service/packit/issues/305\ - \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ - \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ - \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ attribute has a value `rpm/packit`, while libpagure probably expects\ - \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ - \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ - \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ - \ expects `/` in `self.repo`, which is probably not what `libpagure`\ - \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ - \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ - \ even more recently." - closed_at: '2019-05-29T07:46:28Z' + body: "ogr allows creating GitHub service instances without any authentication\ + \ (provides read-only access)\r\n\r\nBased on testing for #479 it's\ + \ been found out that we cannot create GitLab instance without providing\ + \ token (as we can with GitHub) *even though* it is supported by `python-gitlab`\ + \ (https://python-gitlab.readthedocs.io/en/stable/api-usage.html#gitlab-gitlab-class)" + closed_at: '2020-10-21T12:44:59Z' closed_by: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos 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 - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments - created_at: '2019-05-10T11:09:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/67/events - html_url: https://github.com/packit/ogr/issues/67 - id: 442664622 + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/481/comments + created_at: '2020-10-14T10:27:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/481/events + html_url: https://github.com/packit/ogr/issues/481 + id: 721337045 labels: - - color: 1d76db + - color: d93f0b default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: d73a4a default: true description: Something isn't working @@ -54551,79 +54226,81 @@ requests.sessions: name: bug node_id: MDU6TGFiZWwxMTYwMzExMjYy url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/481/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDI2NjQ2MjI= - number: 67 + node_id: MDU6SXNzdWU3MjEzMzcwNDU= + number: 481 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: libpagure.Pagure expects '/' not in repo attribute - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/67 + title: GitLab service cannot be created without providing auth + updated_at: '2020-10-21T12:44:59Z' + url: https://api.github.com/repos/packit/ogr/issues/481 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.108734 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 17:59:46 GMT + ETag: W/"36b4a9a570fa7fa09936e40a4369133efa70fc368cdea3402e4459baa813c4d7" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D849:1917A57:6075DC12 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4926' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '74' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.26294684410095215 + latency: 0.1811513900756836 module_call_list: - unittest.case - requre.online_replacing @@ -54645,53 +54322,45 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "While debugging https://github.com/packit-service/packit/issues/305\ - \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ - \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ - \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ attribute has a value `rpm/packit`, while libpagure probably expects\ - \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ - \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ - \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ - \ expects `/` in `self.repo`, which is probably not what `libpagure`\ - \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ - \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ - \ even more recently." - closed_at: '2019-05-29T07:46:28Z' + body: "ogr allows creating GitHub service instances without any authentication\ + \ (provides read-only access)\r\n\r\nBased on testing for #479 it's\ + \ been found out that we cannot create GitLab instance without providing\ + \ token (as we can with GitHub) *even though* it is supported by `python-gitlab`\ + \ (https://python-gitlab.readthedocs.io/en/stable/api-usage.html#gitlab-gitlab-class)" + closed_at: '2020-10-21T12:44:59Z' closed_by: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos 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 - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments - created_at: '2019-05-10T11:09:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/67/events - html_url: https://github.com/packit/ogr/issues/67 - id: 442664622 + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/481/comments + created_at: '2020-10-14T10:27:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/481/events + html_url: https://github.com/packit/ogr/issues/481 + id: 721337045 labels: - - color: 1d76db + - color: d93f0b default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: d73a4a default: true description: Something isn't working @@ -54699,80 +54368,82 @@ requests.sessions: name: bug node_id: MDU6TGFiZWwxMTYwMzExMjYy url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/481/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDI2NjQ2MjI= - number: 67 + node_id: MDU6SXNzdWU3MjEzMzcwNDU= + number: 481 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: libpagure.Pagure expects '/' not in repo attribute - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/67 + title: GitLab service cannot be created without providing auth + updated_at: '2020-10-21T12:44:59Z' + url: https://api.github.com/repos/packit/ogr/issues/481 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.180985 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:32 GMT + ETag: W/"36b4a9a570fa7fa09936e40a4369133efa70fc368cdea3402e4459baa813c4d7" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FD2B:191B473:6075DC40 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4709' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '291' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/68: + https://api.github.com:443/repos/packit/ogr/issues/484: - metadata: - latency: 0.22475862503051758 + latency: 0.10454797744750977 module_call_list: - unittest.case - requre.online_replacing @@ -54793,122 +54464,130 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-05-13T12:52:45Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `The distgit repository /tmp/packit-dist-gitbut5ttez is dirty.This + is not supported.` | + + | `f32` | `Cmd(''git'') failed due to: exit code(128) cmdline: git + reset --hard remotes/origin/0.17.0-f32-update stderr: ''fatal: ambiguous + argument ''remotes/origin/0.17.0-f32-update'': unknown revision or path + not in the working tree. Use ''--'' to separate paths from revisions, + like this: ''git [...] -- [...]''''` | + + | `f33` | `The distgit repository /tmp/packit-dist-gitbut5ttez is dirty.This + is not supported.` | + + | `master` | `The distgit repository /tmp/packit-dist-gitbut5ttez is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-15T07:28:47Z' closed_by: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/68/comments - created_at: '2019-05-13T12:50:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/68/events - html_url: https://github.com/packit/ogr/issues/68 - id: 443380561 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/68/labels{/name} + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/484/comments + created_at: '2020-10-15T06:05:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/484/events + html_url: https://github.com/packit/ogr/issues/484 + id: 722023608 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/484/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDMzODA1NjE= - number: 68 + node_id: MDU6SXNzdWU3MjIwMjM2MDg= + number: 484 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-05-13T12:52:45Z' - url: https://api.github.com/repos/packit/ogr/issues/68 + title: '[packit] Propose update failed for release 0.17.0' + updated_at: '2020-10-15T15:38:59Z' + url: https://api.github.com/repos/packit/ogr/issues/484 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.104299 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 17:59:46 GMT + ETag: W/"0f3ac76ab0f552d3c9d6d8aeedf822cc5b24e1d830c537c05293f8d3ecc0a81b" + Last-Modified: Thu, 15 Oct 2020 15:38:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D8A4:1917AE1:6075DC12 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4922' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '78' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.22472071647644043 + latency: 0.11911225318908691 module_call_list: - unittest.case - requre.online_replacing @@ -54929,123 +54608,131 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-05-13T12:52:45Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `The distgit repository /tmp/packit-dist-gitbut5ttez is dirty.This + is not supported.` | + + | `f32` | `Cmd(''git'') failed due to: exit code(128) cmdline: git + reset --hard remotes/origin/0.17.0-f32-update stderr: ''fatal: ambiguous + argument ''remotes/origin/0.17.0-f32-update'': unknown revision or path + not in the working tree. Use ''--'' to separate paths from revisions, + like this: ''git [...] -- [...]''''` | + + | `f33` | `The distgit repository /tmp/packit-dist-gitbut5ttez is dirty.This + is not supported.` | + + | `master` | `The distgit repository /tmp/packit-dist-gitbut5ttez is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-15T07:28:47Z' closed_by: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/68/comments - created_at: '2019-05-13T12:50:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/68/events - html_url: https://github.com/packit/ogr/issues/68 - id: 443380561 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/68/labels{/name} + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/484/comments + created_at: '2020-10-15T06:05:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/484/events + html_url: https://github.com/packit/ogr/issues/484 + id: 722023608 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/484/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDMzODA1NjE= - number: 68 + node_id: MDU6SXNzdWU3MjIwMjM2MDg= + number: 484 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-05-13T12:52:45Z' - url: https://api.github.com/repos/packit/ogr/issues/68 + title: '[packit] Propose update failed for release 0.17.0' + updated_at: '2020-10-15T15:38:59Z' + url: https://api.github.com/repos/packit/ogr/issues/484 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.11884 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:33 GMT + ETag: W/"0f3ac76ab0f552d3c9d6d8aeedf822cc5b24e1d830c537c05293f8d3ecc0a81b" + Last-Modified: Thu, 15 Oct 2020 15:38:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FDC5:191B559:6075DC41 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4705' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '295' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/73: + https://api.github.com:443/repos/packit/ogr/issues/485: - metadata: - latency: 0.29718828201293945 + latency: 0.23084568977355957 module_call_list: - unittest.case - requre.online_replacing @@ -55064,38 +54751,90 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "What about changing `CommitStatus`/`PullRequestStatus` to `CommitFlag`/`PullRequestFlag`?\r\ - \n\r\n_Original discussion: https://github.com/packit-service/ogr/pull/71#pullrequestreview-240461635_" - closed_at: '2019-07-17T12:52:02Z' - closed_by: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/73/comments - created_at: '2019-05-29T07:10:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/73/events - html_url: https://github.com/packit/ogr/issues/73 - id: 449635096 + assignee: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + author_association: MEMBER + body: "It would be nice to be able to list projects for given criteria:\r\ + \n\r\n- namespace\r\n- owner\r\n- search patter\r\n- order options (name,\ + \ update, activity, ...) (ascending x descending)\r\n- ... feel free\ + \ to add/propose more (we can implement only a subset for the first\ + \ version)\r\n\r\n\r\nAdd `list_projects` method:\r\n- [ ] to the `abstract.py`\ + \ to the `GitService` class\r\n- [ ] for each implementaion `GithubService`,\ + \ `GitlabService`, `PagureService`\r\n- [ ] implement all (or a subset)\ + \ of the options from the criteria list above" + closed_at: null + closed_by: null + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/485/comments + created_at: '2020-10-15T12:35:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/485/events + html_url: https://github.com/packit/ogr/issues/485 + id: 722295054 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: 7057ff default: false description: Good for newcomers @@ -55103,33 +54842,19 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/73/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/485/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDk2MzUwOTY= - number: 73 + node_id: MDU6SXNzdWU3MjIyOTUwNTQ= + number: 485 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Change "Status" to "Flag" in the class names - updated_at: '2019-07-17T12:52:02Z' - url: https://api.github.com/repos/packit/ogr/issues/73 + state: open + title: Listing of the projects + updated_at: '2021-03-26T13:18:56Z' + url: https://api.github.com/repos/packit/ogr/issues/485 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -55148,48 +54873,43 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.230622 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:36 GMT + ETag: W/"d62c8d939f94e3b8b231df4475be1307a6c408587d98d68d933d797518e65224" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D22E:19170C2:6075DC08 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4975' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '25' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.35032105445861816 + latency: 0.2935488224029541 module_call_list: - unittest.case - requre.online_replacing @@ -55208,38 +54928,90 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "What about changing `CommitStatus`/`PullRequestStatus` to `CommitFlag`/`PullRequestFlag`?\r\ - \n\r\n_Original discussion: https://github.com/packit-service/ogr/pull/71#pullrequestreview-240461635_" - closed_at: '2019-07-17T12:52:02Z' - closed_by: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/73/comments - created_at: '2019-05-29T07:10:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/73/events - html_url: https://github.com/packit/ogr/issues/73 - id: 449635096 + assignee: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + author_association: MEMBER + body: "It would be nice to be able to list projects for given criteria:\r\ + \n\r\n- namespace\r\n- owner\r\n- search patter\r\n- order options (name,\ + \ update, activity, ...) (ascending x descending)\r\n- ... feel free\ + \ to add/propose more (we can implement only a subset for the first\ + \ version)\r\n\r\n\r\nAdd `list_projects` method:\r\n- [ ] to the `abstract.py`\ + \ to the `GitService` class\r\n- [ ] for each implementaion `GithubService`,\ + \ `GitlabService`, `PagureService`\r\n- [ ] implement all (or a subset)\ + \ of the options from the criteria list above" + closed_at: null + closed_by: null + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/485/comments + created_at: '2020-10-15T12:35:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/485/events + html_url: https://github.com/packit/ogr/issues/485 + id: 722295054 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: 7057ff default: false description: Good for newcomers @@ -55247,33 +55019,19 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/73/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/485/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDk2MzUwOTY= - number: 73 + node_id: MDU6SXNzdWU3MjIyOTUwNTQ= + number: 485 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Change "Status" to "Flag" in the class names - updated_at: '2019-07-17T12:52:02Z' - url: https://api.github.com/repos/packit/ogr/issues/73 + state: open + title: Listing of the projects + updated_at: '2021-03-26T13:18:56Z' + url: https://api.github.com/repos/packit/ogr/issues/485 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -55292,49 +55050,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.293318 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:08 GMT + ETag: W/"d62c8d939f94e3b8b231df4475be1307a6c408587d98d68d933d797518e65224" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81D3E:191E559:6075DC64 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4528' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '472' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/74: + https://api.github.com:443/repos/packit/ogr/issues/486: - metadata: - latency: 0.2934255599975586 + latency: 0.1073155403137207 module_call_list: - unittest.case - requre.online_replacing @@ -55355,12 +55108,31 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ - \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" - closed_at: '2019-07-11T08:48:44Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-19T07:46:55Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -55378,121 +55150,81 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments - created_at: '2019-05-29T07:12:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/74/events - html_url: https://github.com/packit/ogr/issues/74 - id: 449635655 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/486/comments + created_at: '2020-10-15T15:36:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/486/events + html_url: https://github.com/packit/ogr/issues/486 + id: 722446903 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/486/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDk2MzU2NTU= - number: 74 + node_id: MDU6SXNzdWU3MjI0NDY5MDM= + number: 486 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add a link to `GitTag` from `Release`. - updated_at: '2019-07-11T08:48:44Z' - url: https://api.github.com/repos/packit/ogr/issues/74 + title: '[packit] Propose update failed for release 0.17.0' + updated_at: '2020-10-19T07:46:55Z' + url: https://api.github.com/repos/packit/ogr/issues/486 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.10708 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:46 GMT + ETag: W/"9eea2912a06dfe691ebe56819e173be7e66dcba0df060ed1f83b04dbca8fd7cf" + Last-Modified: Mon, 19 Oct 2020 07:46:55 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D890:1917ABB:6075DC12 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4923' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '77' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.29401588439941406 + latency: 0.11458277702331543 module_call_list: - unittest.case - requre.online_replacing @@ -55513,12 +55245,31 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ - \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" - closed_at: '2019-07-11T08:48:44Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-19T07:46:55Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -55536,122 +55287,82 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments - created_at: '2019-05-29T07:12:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/74/events - html_url: https://github.com/packit/ogr/issues/74 - id: 449635655 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/486/comments + created_at: '2020-10-15T15:36:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/486/events + html_url: https://github.com/packit/ogr/issues/486 + id: 722446903 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/486/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDk2MzU2NTU= - number: 74 + node_id: MDU6SXNzdWU3MjI0NDY5MDM= + number: 486 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add a link to `GitTag` from `Release`. - updated_at: '2019-07-11T08:48:44Z' - url: https://api.github.com/repos/packit/ogr/issues/74 + title: '[packit] Propose update failed for release 0.17.0' + updated_at: '2020-10-19T07:46:55Z' + url: https://api.github.com/repos/packit/ogr/issues/486 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.114416 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:33 GMT + ETag: W/"9eea2912a06dfe691ebe56819e173be7e66dcba0df060ed1f83b04dbca8fd7cf" + Last-Modified: Mon, 19 Oct 2020 07:46:55 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FDA6:191B52F:6075DC41 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4706' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '294' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/76: + https://api.github.com:443/repos/packit/ogr/issues/49: - metadata: - latency: 0.2765209674835205 + latency: 0.13697481155395508 module_call_list: - unittest.case - requre.online_replacing @@ -55673,61 +55384,21 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-06-11T13:19:01Z' + body: "```\r\nName Stmts Miss Cover Missing\r\ + \n----------------------------------------------------------\r\nservices/github.py\ + \ 114 63 45% 17-19, 24-26, 30, 33-34, 41-42, 47, 51,\ + \ 58-61, 64, 67, 70, 73-79, 82-83, 86-87, 95-98, 108, 111, 114-115,\ + \ 118, 121, 124, 127-132, 135, 149, 170, 184, 193-203, 207-209, 212-213,\ + \ 216-217, 227, 230\r\nservices/gitlab.py 66 66 0%\ + \ 1-144\r\nservices/our_pagure.py 79 46 42% 33, 36-39,\ + \ 134-148, 160-176, 180-186, 249-256, 259-264, 267-270, 273, 276, 279-282,\ + \ 285-288, 291-294, 297-298\r\nutils.py 150 110\ + \ 27% 35-77, 82-83, 88-89, 94, 98-116, 120-130, 145-148, 163-165,\ + \ 169-176, 180-214, 219-248, 252, 260, 273\r\n```\r\n\r\nI know the\ + \ `gitlab` module is WIP, but the others deserve more tests IMHO" + closed_at: '2020-01-15T11:22:38Z' closed_by: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos - 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 - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/76/comments - created_at: '2019-06-11T13:18:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/76/events - html_url: https://github.com/packit/ogr/issues/76 - id: 454685925 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/76/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NTQ2ODU5MjU= - number: 76 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: new minor release - updated_at: '2019-06-11T13:19:01Z' - url: https://api.github.com/repos/packit/ogr/issues/76 - user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -55745,49 +55416,95 @@ requests.sessions: subscriptions_url: https://api.github.com/users/jpopelka/subscriptions type: User url: https://api.github.com/users/jpopelka - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - X-Accepted-OAuth-Scopes: repo - X-Content-Type-Options: nosniff + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/49/comments + created_at: '2019-03-26T14:47:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/49/events + html_url: https://github.com/packit/ogr/issues/49 + id: 425463412 + labels: + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/49/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MjU0NjM0MTI= + number: 49 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Modules with poor code coverage + updated_at: '2020-01-15T11:22:38Z' + url: https://api.github.com/repos/packit/ogr/issues/49 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.136738 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:02 GMT + ETag: W/"2e97106eef837c84f82a8302297339d5304c65acec25fe08229c8d44114eecbb" + Last-Modified: Fri, 09 Apr 2021 14:26:36 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E327:1918C1A:6075DC22 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4843' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '157' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2954597473144531 + latency: 0.10982966423034668 module_call_list: - unittest.case - requre.online_replacing @@ -55809,61 +55526,72 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-06-11T13:19:01Z' + body: "```\r\nName Stmts Miss Cover Missing\r\ + \n----------------------------------------------------------\r\nservices/github.py\ + \ 114 63 45% 17-19, 24-26, 30, 33-34, 41-42, 47, 51,\ + \ 58-61, 64, 67, 70, 73-79, 82-83, 86-87, 95-98, 108, 111, 114-115,\ + \ 118, 121, 124, 127-132, 135, 149, 170, 184, 193-203, 207-209, 212-213,\ + \ 216-217, 227, 230\r\nservices/gitlab.py 66 66 0%\ + \ 1-144\r\nservices/our_pagure.py 79 46 42% 33, 36-39,\ + \ 134-148, 160-176, 180-186, 249-256, 259-264, 267-270, 273, 276, 279-282,\ + \ 285-288, 291-294, 297-298\r\nutils.py 150 110\ + \ 27% 35-77, 82-83, 88-89, 94, 98-116, 120-130, 145-148, 163-165,\ + \ 169-176, 180-214, 219-248, 252, 260, 273\r\n```\r\n\r\nI know the\ + \ `gitlab` module is WIP, but the others deserve more tests IMHO" + closed_at: '2020-01-15T11:22:38Z' closed_by: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos 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 + 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/usercont-release-bot - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/76/comments - created_at: '2019-06-11T13:18:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/76/events - html_url: https://github.com/packit/ogr/issues/76 - id: 454685925 + url: https://api.github.com/users/jpopelka + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/49/comments + created_at: '2019-03-26T14:47:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/49/events + html_url: https://github.com/packit/ogr/issues/49 + id: 425463412 labels: - - color: ededed + - color: 7057ff default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9d0c4 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/76/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/49/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTQ2ODU5MjU= - number: 76 + node_id: MDU6SXNzdWU0MjU0NjM0MTI= + number: 49 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-06-11T13:19:01Z' - url: https://api.github.com/repos/packit/ogr/issues/76 + title: Modules with poor code coverage + updated_at: '2020-01-15T11:22:38Z' + url: https://api.github.com/repos/packit/ogr/issues/49 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -55882,49 +55610,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.109551 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:00:46 GMT + ETag: W/"2e97106eef837c84f82a8302297339d5304c65acec25fe08229c8d44114eecbb" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8087A:191C5A4:6075DC4E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4633' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '367' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/79: + https://api.github.com:443/repos/packit/ogr/issues/490: - metadata: - latency: 0.2935056686401367 + latency: 0.20114374160766602 module_call_list: - unittest.case - requre.online_replacing @@ -55945,138 +55668,121 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "I'm trying to implement ogr into [release-bot](https://github.com/user-cont/release-bot)\ - \ and it's a little bit painful without documentation from ogr. \r\n\ - \r\nI was playing with ogr on my Github projects and everything is working\ - \ fine. When I tried to reimplement [release-bot's](https://github.com/user-cont/release-bot)\ - \ functionalities which communicate with Github via GraphQL or rest\ - \ API I got stuck. \r\n\r\nOne of the examples could be comments. I\ - \ want to implement commenting on Github issues and PRs via ogr. \r\n\ - - In [release-bot](https://github.com/user-cont/release-bot) it works\ - \ via graphQL and sending some `node_id` inside query which recognizes\ - \ a PR or an Issue. \r\n- In ogr there is `pr_comment` function in ogr/services/github.py.\ - \ If am I right this is an alternative I'm looking for. However, I don't\ - \ fully understand the function's parameters since it needs something\ - \ else then API query.\r\n\r\nI understand that this could be a very\ - \ complex problem since ogr need to preserve compatibility with all\ - \ git forges. I'm just looking for some starting point on how to change\ - \ GraphQL/rest API with ogr. Maybe I just misunderstand some ogr's fundamentals.\r\ - \n" - closed_at: '2019-06-27T12:40:34Z' + author_association: CONTRIBUTOR + body: "By running `pre-commit run --all-files` getting the below error\ + \ without using the strict mode. I am not sure what NotSet does in this\ + \ case.\r\n```\r\nogr/services/github/service.py:169: error: Module\ + \ has no attribute \"NotSet\"\r\n```\r\nThe changes were made in this\ + \ PR - https://github.com/packit/ogr/pull/476\r\n\r\n" + closed_at: '2021-03-16T04:50:13Z' closed_by: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 + events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/stale%5Bbot%5D/followers + following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/stale%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/stale + id: 26384082 + login: stale[bot] + node_id: MDM6Qm90MjYzODQwODI= + organizations_url: https://api.github.com/users/stale%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/stale%5Bbot%5D/received_events + repos_url: https://api.github.com/users/stale%5Bbot%5D/repos 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 - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/79/comments - created_at: '2019-06-17T22:01:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/79/events - html_url: https://github.com/packit/ogr/issues/79 - id: 457168292 + starred_url: https://api.github.com/users/stale%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/stale%5Bbot%5D + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/490/comments + created_at: '2020-10-21T05:27:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/490/events + html_url: https://github.com/packit/ogr/issues/490 + id: 726145698 labels: - color: '000000' default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/79/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/490/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTcxNjgyOTI= - number: 79 + node_id: MDU6SXNzdWU3MjYxNDU2OTg= + number: 490 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add compatibility with Github's GraphQL API v4 and rest API v3 - updated_at: '2019-06-27T12:40:34Z' - url: https://api.github.com/repos/packit/ogr/issues/79 + title: GithubObject has no attribute "NotSet" + updated_at: '2021-03-17T14:44:59Z' + url: https://api.github.com/repos/packit/ogr/issues/490 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/marusinm + url: https://api.github.com/users/shreyaspapi _next: null - elapsed: 0.2 + elapsed: 0.200964 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 17:59:37 GMT + ETag: W/"3aad46afc39629db0615cad3603ceec2815363aacb562f52dc0e401e1ad07e54" + Last-Modified: Tue, 13 Apr 2021 01:50:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D2C3:19171A7:6075DC09 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4971' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '29' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.38304734230041504 + latency: 0.11265969276428223 module_call_list: - unittest.case - requre.online_replacing @@ -56097,139 +55803,122 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "I'm trying to implement ogr into [release-bot](https://github.com/user-cont/release-bot)\ - \ and it's a little bit painful without documentation from ogr. \r\n\ - \r\nI was playing with ogr on my Github projects and everything is working\ - \ fine. When I tried to reimplement [release-bot's](https://github.com/user-cont/release-bot)\ - \ functionalities which communicate with Github via GraphQL or rest\ - \ API I got stuck. \r\n\r\nOne of the examples could be comments. I\ - \ want to implement commenting on Github issues and PRs via ogr. \r\n\ - - In [release-bot](https://github.com/user-cont/release-bot) it works\ - \ via graphQL and sending some `node_id` inside query which recognizes\ - \ a PR or an Issue. \r\n- In ogr there is `pr_comment` function in ogr/services/github.py.\ - \ If am I right this is an alternative I'm looking for. However, I don't\ - \ fully understand the function's parameters since it needs something\ - \ else then API query.\r\n\r\nI understand that this could be a very\ - \ complex problem since ogr need to preserve compatibility with all\ - \ git forges. I'm just looking for some starting point on how to change\ - \ GraphQL/rest API with ogr. Maybe I just misunderstand some ogr's fundamentals.\r\ - \n" - closed_at: '2019-06-27T12:40:34Z' + author_association: CONTRIBUTOR + body: "By running `pre-commit run --all-files` getting the below error\ + \ without using the strict mode. I am not sure what NotSet does in this\ + \ case.\r\n```\r\nogr/services/github/service.py:169: error: Module\ + \ has no attribute \"NotSet\"\r\n```\r\nThe changes were made in this\ + \ PR - https://github.com/packit/ogr/pull/476\r\n\r\n" + closed_at: '2021-03-16T04:50:13Z' closed_by: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 + events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/stale%5Bbot%5D/followers + following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/stale%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/stale + id: 26384082 + login: stale[bot] + node_id: MDM6Qm90MjYzODQwODI= + organizations_url: https://api.github.com/users/stale%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/stale%5Bbot%5D/received_events + repos_url: https://api.github.com/users/stale%5Bbot%5D/repos 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 - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/79/comments - created_at: '2019-06-17T22:01:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/79/events - html_url: https://github.com/packit/ogr/issues/79 - id: 457168292 + starred_url: https://api.github.com/users/stale%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/stale%5Bbot%5D + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/490/comments + created_at: '2020-10-21T05:27:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/490/events + html_url: https://github.com/packit/ogr/issues/490 + id: 726145698 labels: - color: '000000' default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/79/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/490/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTcxNjgyOTI= - number: 79 + node_id: MDU6SXNzdWU3MjYxNDU2OTg= + number: 490 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add compatibility with Github's GraphQL API v4 and rest API v3 - updated_at: '2019-06-27T12:40:34Z' - url: https://api.github.com/repos/packit/ogr/issues/79 + title: GithubObject has no attribute "NotSet" + updated_at: '2021-03-17T14:44:59Z' + url: https://api.github.com/repos/packit/ogr/issues/490 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/marusinm + url: https://api.github.com/users/shreyaspapi _next: null - elapsed: 0.2 + elapsed: 0.112497 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:00:26 GMT + ETag: W/"3aad46afc39629db0615cad3603ceec2815363aacb562f52dc0e401e1ad07e54" + Last-Modified: Tue, 13 Apr 2021 01:50:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F7F4:191AC7C:6075DC3A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4738' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '262' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/8: + https://api.github.com:443/repos/packit/ogr/issues/492: - metadata: - latency: 0.22696733474731445 + latency: 0.1226952075958252 module_call_list: - unittest.case - requre.online_replacing @@ -56251,111 +55940,116 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "* [x] don't fail when PAGURE_{TOKEN,USER} are not specified\r\n\ - * [x] mock remote API and write complete unit tests using those data\ - \ (or even have a single test suite and enable it to run against live\ - \ instance and mocked data)\r\n* [x] [tox](https://developer.fedoraproject.org/tech/languages/python/multiple-pythons.html)-ify\ - \ it (#27)" - closed_at: '2019-06-25T08:59:43Z' + body: '' + closed_at: '2021-02-04T19:33:53Z' closed_by: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/8/comments - created_at: '2019-01-30T10:19:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/8/events - html_url: https://github.com/packit/ogr/issues/8 - id: 404698352 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/8/labels{/name} + url: https://api.github.com/users/mfocko + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/492/comments + created_at: '2020-10-27T12:41:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/492/events + html_url: https://github.com/packit/ogr/issues/492 + id: 730415953 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/492/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MDQ2OTgzNTI= - number: 8 + node_id: MDU6SXNzdWU3MzA0MTU5NTM= + number: 492 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve testing - updated_at: '2019-06-25T08:59:43Z' - url: https://api.github.com/repos/packit/ogr/issues/8 + title: New minor release + updated_at: '2021-02-04T19:33:53Z' + url: https://api.github.com/repos/packit/ogr/issues/492 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.122466 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 17:59:43 GMT + ETag: W/"3052fdd3a353053772f77eb19a13e433a03b3eedddaa4f57521ec5780decd087" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D6E3:19177F5:6075DC0F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4941' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '59' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2944464683532715 + latency: 0.1979050636291504 module_call_list: - unittest.case - requre.online_replacing @@ -56377,112 +56071,117 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "* [x] don't fail when PAGURE_{TOKEN,USER} are not specified\r\n\ - * [x] mock remote API and write complete unit tests using those data\ - \ (or even have a single test suite and enable it to run against live\ - \ instance and mocked data)\r\n* [x] [tox](https://developer.fedoraproject.org/tech/languages/python/multiple-pythons.html)-ify\ - \ it (#27)" - closed_at: '2019-06-25T08:59:43Z' + body: '' + closed_at: '2021-02-04T19:33:53Z' closed_by: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/8/comments - created_at: '2019-01-30T10:19:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/8/events - html_url: https://github.com/packit/ogr/issues/8 - id: 404698352 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/8/labels{/name} + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/492/comments + created_at: '2020-10-27T12:41:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/492/events + html_url: https://github.com/packit/ogr/issues/492 + id: 730415953 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/492/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MDQ2OTgzNTI= - number: 8 + node_id: MDU6SXNzdWU3MzA0MTU5NTM= + number: 492 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve testing - updated_at: '2019-06-25T08:59:43Z' - url: https://api.github.com/repos/packit/ogr/issues/8 + title: New minor release + updated_at: '2021-02-04T19:33:53Z' + url: https://api.github.com/repos/packit/ogr/issues/492 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.197685 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:29 GMT + ETag: W/"3052fdd3a353053772f77eb19a13e433a03b3eedddaa4f57521ec5780decd087" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FA4C:191B047:6075DC3D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4723' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '277' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/80: + https://api.github.com:443/repos/packit/ogr/issues/494: - metadata: - latency: 0.29231739044189453 + latency: 0.1180121898651123 module_call_list: - unittest.case - requre.online_replacing @@ -56501,50 +56200,33 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - author_association: COLLABORATOR - body: 'Based on our discussion on Issue #79, there is no functionality - in ogr for commenting on Github/Pagure issues.' - closed_at: '2019-07-10T06:57:03Z' + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-29T10:19:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -56562,93 +56244,81 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/80/comments - created_at: '2019-06-19T07:21:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/80/events - html_url: https://github.com/packit/ogr/issues/80 - id: 457847996 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/80/labels{/name} + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/494/comments + created_at: '2020-10-29T09:59:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/494/events + html_url: https://github.com/packit/ogr/issues/494 + id: 732170676 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/494/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTc4NDc5OTY= - number: 80 + node_id: MDU6SXNzdWU3MzIxNzA2NzY= + number: 494 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Commenting on Issues - updated_at: '2019-07-10T06:57:03Z' - url: https://api.github.com/repos/packit/ogr/issues/80 + title: '[packit] Propose update failed for release 0.18.0' + updated_at: '2020-10-29T10:19:07Z' + url: https://api.github.com/repos/packit/ogr/issues/494 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.117842 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 17:59:46 GMT + ETag: W/"b439f8d94487f6647b9bad1c3856c1a987b7907275692f0baa0415fabcb9da87" + Last-Modified: Thu, 29 Oct 2020 10:19:07 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D82D:1917A31:6075DC12 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4927' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '73' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2925376892089844 + latency: 0.10200619697570801 module_call_list: - unittest.case - requre.online_replacing @@ -56667,50 +56337,33 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - author_association: COLLABORATOR - body: 'Based on our discussion on Issue #79, there is no functionality - in ogr for commenting on Github/Pagure issues.' - closed_at: '2019-07-10T06:57:03Z' + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-29T10:19:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -56728,94 +56381,82 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/80/comments - created_at: '2019-06-19T07:21:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/80/events - html_url: https://github.com/packit/ogr/issues/80 - id: 457847996 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/80/labels{/name} + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/494/comments + created_at: '2020-10-29T09:59:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/494/events + html_url: https://github.com/packit/ogr/issues/494 + id: 732170676 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/494/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTc4NDc5OTY= - number: 80 + node_id: MDU6SXNzdWU3MzIxNzA2NzY= + number: 494 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Commenting on Issues - updated_at: '2019-07-10T06:57:03Z' - url: https://api.github.com/repos/packit/ogr/issues/80 + title: '[packit] Propose update failed for release 0.18.0' + updated_at: '2020-10-29T10:19:07Z' + url: https://api.github.com/repos/packit/ogr/issues/494 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.101843 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:00:32 GMT + ETag: W/"b439f8d94487f6647b9bad1c3856c1a987b7907275692f0baa0415fabcb9da87" + Last-Modified: Thu, 29 Oct 2020 10:19:07 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FD15:191B446:6075DC40 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4710' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '290' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/82: + https://api.github.com:443/repos/packit/ogr/issues/496: - metadata: - latency: 0.2924959659576416 + latency: 0.12422418594360352 module_call_list: - unittest.case - requre.online_replacing @@ -56836,54 +56477,57 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\nHi, see lines in: https://github.com/packit-service/ogr/blob/master/tests/integration/test_github.py#L20\r\ - \nSo for regenereation these files, you have to use syntax eg:\r\n``FORCE_WRITE=yes\ - \ GITHUB_TOKEN=yourtoken GITHUB_USER=yourname pytest3 tests/integration/test_github.py``\r\ - \nor this will also work ``FORCE_WRITE=yes GITHUB_TOKEN=yourtoken GITHUB_USER=yourname\ - \ make check`` with make check, you have to have set PAGURE_TOKEN and\ - \ USER env vars\r\n```\r\n\r\n_Originally posted by @jscotka in https://github.com/packit-service/ogr/issues/80#issuecomment-503991164_\r\ - \n" - closed_at: '2019-06-27T12:56:06Z' + author_association: CONTRIBUTOR + body: "```\r\nIn [1]: from ogr.parsing import parse_git_repo \r\n\r\n\ + In [2]: parse_git_repo(\"git@gitlab.com:packit-service/src/libvirt.git\"\ + ) \r\n\r\nIn [3]: :( \r\n ...: \r\n```" + closed_at: '2020-12-01T11:46:18Z' closed_by: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos 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 - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/82/comments - created_at: '2019-06-21T09:12:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/82/events - html_url: https://github.com/packit/ogr/issues/82 - id: 459096186 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/82/labels{/name} + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/496/comments + created_at: '2020-11-26T14:01:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/496/events + html_url: https://github.com/packit/ogr/issues/496 + id: 751614853 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/496/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTkwOTYxODY= - number: 82 + node_id: MDU6SXNzdWU3NTE2MTQ4NTM= + number: 496 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Document how to save HTTP sessions for sake of testing - updated_at: '2019-06-27T12:56:06Z' - url: https://api.github.com/repos/packit/ogr/issues/82 + title: ogr can't parse a subnamespace in gitlab's URL + updated_at: '2020-12-03T12:08:10Z' + url: https://api.github.com/repos/packit/ogr/issues/496 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -56902,48 +56546,43 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.123943 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 17:59:45 GMT + ETag: W/"173350297536a29d77cce0432097ee4ae0dee5332631049c1930dcf09b21808b" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D80E:19179DB:6075DC11 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4929' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '71' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2934753894805908 + latency: 0.2024061679840088 module_call_list: - unittest.case - requre.online_replacing @@ -56964,54 +56603,57 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\nHi, see lines in: https://github.com/packit-service/ogr/blob/master/tests/integration/test_github.py#L20\r\ - \nSo for regenereation these files, you have to use syntax eg:\r\n``FORCE_WRITE=yes\ - \ GITHUB_TOKEN=yourtoken GITHUB_USER=yourname pytest3 tests/integration/test_github.py``\r\ - \nor this will also work ``FORCE_WRITE=yes GITHUB_TOKEN=yourtoken GITHUB_USER=yourname\ - \ make check`` with make check, you have to have set PAGURE_TOKEN and\ - \ USER env vars\r\n```\r\n\r\n_Originally posted by @jscotka in https://github.com/packit-service/ogr/issues/80#issuecomment-503991164_\r\ - \n" - closed_at: '2019-06-27T12:56:06Z' + author_association: CONTRIBUTOR + body: "```\r\nIn [1]: from ogr.parsing import parse_git_repo \r\n\r\n\ + In [2]: parse_git_repo(\"git@gitlab.com:packit-service/src/libvirt.git\"\ + ) \r\n\r\nIn [3]: :( \r\n ...: \r\n```" + closed_at: '2020-12-01T11:46:18Z' closed_by: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos 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 - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/82/comments - created_at: '2019-06-21T09:12:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/82/events - html_url: https://github.com/packit/ogr/issues/82 - id: 459096186 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/82/labels{/name} + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/496/comments + created_at: '2020-11-26T14:01:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/496/events + html_url: https://github.com/packit/ogr/issues/496 + id: 751614853 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/496/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTkwOTYxODY= - number: 82 + node_id: MDU6SXNzdWU3NTE2MTQ4NTM= + number: 496 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Document how to save HTTP sessions for sake of testing - updated_at: '2019-06-27T12:56:06Z' - url: https://api.github.com/repos/packit/ogr/issues/82 + title: ogr can't parse a subnamespace in gitlab's URL + updated_at: '2020-12-03T12:08:10Z' + url: https://api.github.com/repos/packit/ogr/issues/496 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -57030,49 +56672,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.202242 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:00:32 GMT + ETag: W/"173350297536a29d77cce0432097ee4ae0dee5332631049c1930dcf09b21808b" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FCBE:191B3D4:6075DC40 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4712' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '288' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/86: + https://api.github.com:443/repos/packit/ogr/issues/50: - metadata: - latency: 0.22618842124938965 + latency: 0.29509449005126953 module_call_list: - unittest.case - requre.online_replacing @@ -57091,183 +56728,119 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-27T09:03:50Z' + closed_by: + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko - author_association: MEMBER - body: "- [ ] Forward some object to the issue/pr/... instances to allow\ - \ connection to the service. (Classes are not only data-holders.)\r\n\ - - [ ] All ogr classes to have properties with setters allowing to update\ - \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ - - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ - \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ - \ \r\n" - closed_at: null - closed_by: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments - created_at: '2019-06-25T13:15:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/86/events - html_url: https://github.com/packit/ogr/issues/86 - id: 460418171 + url: https://api.github.com/users/usercont-release-bot + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/50/comments + created_at: '2019-03-27T08:58:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/50/events + html_url: https://github.com/packit/ogr/issues/50 + id: 425835263 labels: - - color: 134ac1 + - color: ededed default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/50/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA0MTgxNzE= - number: 86 + node_id: MDU6SXNzdWU0MjU4MzUyNjM= + number: 50 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: object-specific methods bound to ogr classes - updated_at: '2020-03-27T13:50:33Z' - url: https://api.github.com/repos/packit/ogr/issues/86 + state: closed + title: 0.2.0 release + updated_at: '2019-03-27T09:03:50Z' + url: https://api.github.com/repos/packit/ogr/issues/50 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.294906 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:00:24 GMT + ETag: W/"5be585e1da3d53cb280a6087f18f456a5154490edbe679dc2a585644822bbfc0" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F64D:191A9CB:6075DC38 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4749' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '251' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.3020913600921631 + latency: 0.23508810997009277 module_call_list: - unittest.case - requre.online_replacing @@ -57286,184 +56859,120 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-27T09:03:50Z' + closed_by: + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko - author_association: MEMBER - body: "- [ ] Forward some object to the issue/pr/... instances to allow\ - \ connection to the service. (Classes are not only data-holders.)\r\n\ - - [ ] All ogr classes to have properties with setters allowing to update\ - \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ - - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ - \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ - \ \r\n" - closed_at: null - closed_by: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments - created_at: '2019-06-25T13:15:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/86/events - html_url: https://github.com/packit/ogr/issues/86 - id: 460418171 + url: https://api.github.com/users/usercont-release-bot + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/50/comments + created_at: '2019-03-27T08:58:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/50/events + html_url: https://github.com/packit/ogr/issues/50 + id: 425835263 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/50/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA0MTgxNzE= - number: 86 + node_id: MDU6SXNzdWU0MjU4MzUyNjM= + number: 50 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: object-specific methods bound to ogr classes - updated_at: '2020-03-27T13:50:33Z' - url: https://api.github.com/repos/packit/ogr/issues/86 + state: closed + title: 0.2.0 release + updated_at: '2019-03-27T09:03:50Z' + url: https://api.github.com/repos/packit/ogr/issues/50 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.234909 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:06 GMT + ETag: W/"5be585e1da3d53cb280a6087f18f456a5154490edbe679dc2a585644822bbfc0" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81A9C:191E16C:6075DC61 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4539' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '461' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/87: + https://api.github.com:443/repos/packit/ogr/issues/506: - metadata: - latency: 0.2901132106781006 + latency: 0.137131929397583 module_call_list: - unittest.case - requre.online_replacing @@ -57482,177 +56991,124 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "Add methods to `GithubProject`/`PagureProject` for editing title\ - \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ - \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ - \ information " - closed_at: '2019-06-28T06:51:21Z' + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n2020-12-09 12:32:08.652548 | container | /usr/local/lib/python3.8/site-packages/ogr/abstract.py:47:\ + \ in __repr__\r\n2020-12-09 12:32:08.652556 | container | return\ + \ f\"<{str(self)}>\"\r\n2020-12-09 12:32:08.652565 | container | \ + \ self = <[RecursionError('maximum recursion depth exceeded')\ + \ raised in repr()] GitProject object at 0x7f8380a9ca90>\r\n2020-12-09\ + \ 12:32:08.652574 | container | /usr/local/lib/python3.8/site-packages/ogr/abstract.py:47:\ + \ in __repr__\r\n2020-12-09 12:32:08.652582 | container | return\ + \ f\"<{str(self)}>\"\r\n2020-12-09 12:32:08.652591 | container | E \ + \ RecursionError: maximum recursion depth exceeded\r\n2020-12-09 12:32:08.652599\ + \ | container | self = <[RecursionError('maximum recursion\ + \ depth exceeded') raised in repr()] GitProject object at 0x7f8380a9ca90>\r\ + \n2020-12-09 12:32:08.652608 | container | !!! Recursion detected (same\ + \ locals & position)\r\n```\r\n\r\nhttps://softwarefactory-project.io/logs/70/970/b8e3aa6794ccc0999106539acb1829d5ea08d03b/check/reverse-dep-packit-service-tests/bc1e055/job-output.txt.gz" + closed_at: '2020-12-09T13:21:57Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments - created_at: '2019-06-26T07:17:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/87/events - html_url: https://github.com/packit/ogr/issues/87 - id: 460802132 + comments_url: https://api.github.com/repos/packit/ogr/issues/506/comments + created_at: '2020-12-09T13:19:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/506/events + html_url: https://github.com/packit/ogr/issues/506 + id: 760323336 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/506/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA4MDIxMzI= - number: 87 + node_id: MDU6SXNzdWU3NjAzMjMzMzY= + number: 506 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ' Update pull-request information' - updated_at: '2019-06-28T06:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/87 + title: python doesn't like the new __repr__ + updated_at: '2020-12-09T13:21:57Z' + url: https://api.github.com/repos/packit/ogr/issues/506 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.136932 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 17:59:45 GMT + ETag: W/"b47ec75802b80ee62ba4ed5b5b36f9e3bfe3acb49e08a56dfe627542890ff2eb" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D7D0:191797A:6075DC11 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4931' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '69' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.28722691535949707 + latency: 0.12642264366149902 module_call_list: - unittest.case - requre.online_replacing @@ -57671,178 +57127,125 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "Add methods to `GithubProject`/`PagureProject` for editing title\ - \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ - \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ - \ information " - closed_at: '2019-06-28T06:51:21Z' + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n2020-12-09 12:32:08.652548 | container | /usr/local/lib/python3.8/site-packages/ogr/abstract.py:47:\ + \ in __repr__\r\n2020-12-09 12:32:08.652556 | container | return\ + \ f\"<{str(self)}>\"\r\n2020-12-09 12:32:08.652565 | container | \ + \ self = <[RecursionError('maximum recursion depth exceeded')\ + \ raised in repr()] GitProject object at 0x7f8380a9ca90>\r\n2020-12-09\ + \ 12:32:08.652574 | container | /usr/local/lib/python3.8/site-packages/ogr/abstract.py:47:\ + \ in __repr__\r\n2020-12-09 12:32:08.652582 | container | return\ + \ f\"<{str(self)}>\"\r\n2020-12-09 12:32:08.652591 | container | E \ + \ RecursionError: maximum recursion depth exceeded\r\n2020-12-09 12:32:08.652599\ + \ | container | self = <[RecursionError('maximum recursion\ + \ depth exceeded') raised in repr()] GitProject object at 0x7f8380a9ca90>\r\ + \n2020-12-09 12:32:08.652608 | container | !!! Recursion detected (same\ + \ locals & position)\r\n```\r\n\r\nhttps://softwarefactory-project.io/logs/70/970/b8e3aa6794ccc0999106539acb1829d5ea08d03b/check/reverse-dep-packit-service-tests/bc1e055/job-output.txt.gz" + closed_at: '2020-12-09T13:21:57Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments - created_at: '2019-06-26T07:17:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/87/events - html_url: https://github.com/packit/ogr/issues/87 - id: 460802132 + comments_url: https://api.github.com/repos/packit/ogr/issues/506/comments + created_at: '2020-12-09T13:19:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/506/events + html_url: https://github.com/packit/ogr/issues/506 + id: 760323336 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/506/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA4MDIxMzI= - number: 87 + node_id: MDU6SXNzdWU3NjAzMjMzMzY= + number: 506 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ' Update pull-request information' - updated_at: '2019-06-28T06:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/87 + title: python doesn't like the new __repr__ + updated_at: '2020-12-09T13:21:57Z' + url: https://api.github.com/repos/packit/ogr/issues/506 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.126183 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:00:31 GMT + ETag: W/"b47ec75802b80ee62ba4ed5b5b36f9e3bfe3acb49e08a56dfe627542890ff2eb" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FC58:191B338:6075DC3F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4714' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '286' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/88: + https://api.github.com:443/repos/packit/ogr/issues/507: - metadata: - latency: 0.30482983589172363 + latency: 0.10215640068054199 module_call_list: - unittest.case - requre.online_replacing @@ -57861,183 +57264,119 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - author_association: MEMBER - body: "It would be useful to have a method for getting the owner(s) of\ - \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ - \ `get_owners` and return list of strings." - closed_at: '2019-07-18T07:11:53Z' + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-09T13:27:43Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments - created_at: '2019-06-26T07:44:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/88/events - html_url: https://github.com/packit/ogr/issues/88 - id: 460813032 + url: https://api.github.com/users/usercont-release-bot + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/507/comments + created_at: '2020-12-09T13:27:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/507/events + html_url: https://github.com/packit/ogr/issues/507 + id: 760329156 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/507/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA4MTMwMzI= - number: 88 + node_id: MDU6SXNzdWU3NjAzMjkxNTY= + number: 507 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add get_owner/get_owners method to project classes - updated_at: '2019-07-18T07:11:53Z' - url: https://api.github.com/repos/packit/ogr/issues/88 + title: New patch release + updated_at: '2020-12-09T13:27:43Z' + url: https://api.github.com/repos/packit/ogr/issues/507 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.101912 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 17:59:45 GMT + ETag: W/"c1d77aa9041afda643e2a965a26dccb03d129f1ea74a6ec206f8422f39f0433c" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D7BF:1917960:6075DC11 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4932' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '68' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.23559212684631348 + latency: 0.1744232177734375 module_call_list: - unittest.case - requre.online_replacing @@ -58056,184 +57395,120 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - author_association: MEMBER - body: "It would be useful to have a method for getting the owner(s) of\ - \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ - \ `get_owners` and return list of strings." - closed_at: '2019-07-18T07:11:53Z' + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-09T13:27:43Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments - created_at: '2019-06-26T07:44:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/88/events - html_url: https://github.com/packit/ogr/issues/88 - id: 460813032 + url: https://api.github.com/users/usercont-release-bot + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/507/comments + created_at: '2020-12-09T13:27:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/507/events + html_url: https://github.com/packit/ogr/issues/507 + id: 760329156 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/507/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA4MTMwMzI= - number: 88 + node_id: MDU6SXNzdWU3NjAzMjkxNTY= + number: 507 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add get_owner/get_owners method to project classes - updated_at: '2019-07-18T07:11:53Z' - url: https://api.github.com/repos/packit/ogr/issues/88 + title: New patch release + updated_at: '2020-12-09T13:27:43Z' + url: https://api.github.com/repos/packit/ogr/issues/507 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.174226 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:00:31 GMT + ETag: W/"c1d77aa9041afda643e2a965a26dccb03d129f1ea74a6ec206f8422f39f0433c" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FC36:191B302:6075DC3F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4715' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '285' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/90: + https://api.github.com:443/repos/packit/ogr/issues/509: - metadata: - latency: 0.2942965030670166 + latency: 0.11969447135925293 module_call_list: - unittest.case - requre.online_replacing @@ -58252,50 +57527,16 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos - site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions - type: User - url: https://api.github.com/users/shreyanshrs44 - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos - site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions - type: User - url: https://api.github.com/users/shreyanshrs44 + assignee: null + assignees: [] author_association: MEMBER - body: It would be nice to implement `__str__` methods for all classes - (e.g. `GithubProject`, `Issue`,...). - closed_at: '2019-07-10T06:51:37Z' + body: "Similar to how `get_tags()` return `GitTag` objects which also\ + \ store the commit sha, would be nice if `get_branches()` would return\ + \ `GitBranch` objects with a `head` attribute storing the commit sha\ + \ of the HEAD of the branch.\r\n\r\nMost probably related to #359." + closed_at: '2020-12-11T09:19:03Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -58313,107 +57554,82 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments - created_at: '2019-06-27T10:29:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/90/events - html_url: https://github.com/packit/ogr/issues/90 - id: 461449910 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/509/comments + created_at: '2020-12-09T14:16:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/509/events + html_url: https://github.com/packit/ogr/issues/509 + id: 760368277 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/509/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE0NDk5MTA= - number: 90 + node_id: MDU6SXNzdWU3NjAzNjgyNzc= + number: 509 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: String representations for classes - updated_at: '2019-07-10T06:51:37Z' - url: https://api.github.com/repos/packit/ogr/issues/90 + title: '`project.get_branches()` should also return the HEAD commits for + each branch' + updated_at: '2020-12-11T09:19:03Z' + url: https://api.github.com/repos/packit/ogr/issues/509 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/csomh _next: null - elapsed: 0.2 + elapsed: 0.1195 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:33:42 GMT + Date: Tue, 13 Apr 2021 17:59:44 GMT + ETag: W/"b333f99d7d86eef8679c4f410ffc4cfcae64b6a19f4149e9e083d7540a1fbd3a" + Last-Modified: Thu, 01 Apr 2021 12:28:54 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D765:19178C9:6075DC10 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4935' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '65' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.30048155784606934 + latency: 0.1067805290222168 module_call_list: - unittest.case - requre.online_replacing @@ -58432,54 +57648,20 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos - site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions - type: User - url: https://api.github.com/users/shreyanshrs44 - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos - site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions - type: User - url: https://api.github.com/users/shreyanshrs44 - author_association: MEMBER - body: It would be nice to implement `__str__` methods for all classes - (e.g. `GithubProject`, `Issue`,...). - closed_at: '2019-07-10T06:51:37Z' - closed_by: - avatar_url: https://avatars1.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} + assignee: null + assignees: [] + author_association: MEMBER + body: "Similar to how `get_tags()` return `GitTag` objects which also\ + \ store the commit sha, would be nice if `get_branches()` would return\ + \ `GitBranch` objects with a `head` attribute storing the commit sha\ + \ of the HEAD of the branch.\r\n\r\nMost probably related to #359." + closed_at: '2020-12-11T09:19:03Z' + closed_by: + 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 @@ -58493,108 +57675,83 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments - created_at: '2019-06-27T10:29:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/90/events - html_url: https://github.com/packit/ogr/issues/90 - id: 461449910 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/509/comments + created_at: '2020-12-09T14:16:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/509/events + html_url: https://github.com/packit/ogr/issues/509 + id: 760368277 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/509/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE0NDk5MTA= - number: 90 + node_id: MDU6SXNzdWU3NjAzNjgyNzc= + number: 509 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: String representations for classes - updated_at: '2019-07-10T06:51:37Z' - url: https://api.github.com/repos/packit/ogr/issues/90 + title: '`project.get_branches()` should also return the HEAD commits for + each branch' + updated_at: '2020-12-11T09:19:03Z' + url: https://api.github.com/repos/packit/ogr/issues/509 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/csomh _next: null - elapsed: 0.2 + elapsed: 0.106528 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:33:42 GMT + Date: Tue, 13 Apr 2021 18:00:31 GMT + ETag: W/"b333f99d7d86eef8679c4f410ffc4cfcae64b6a19f4149e9e083d7540a1fbd3a" + Last-Modified: Thu, 01 Apr 2021 12:28:54 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FC02:191B2B6:6075DC3F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4717' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '283' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/91: + https://api.github.com:443/repos/packit/ogr/issues/511: - metadata: - latency: 0.24987435340881348 + latency: 0.10958719253540039 module_call_list: - unittest.case - requre.online_replacing @@ -58615,169 +57772,123 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "I would like to solve an issue https://github.com/packit-service/packit/issues/328\r\ - \nbut it failed with traceback:\r\n\r\n~~~\r\n$ packit -d propose-update\r\ - \n[..snip..]\r\n10:40:20.990 upstream.py DEBUG Version in spec\ - \ file: 0.16.3\r\nPicking version found in spec file.\r\nChecking out\ - \ upstream version 0.16.3\r\n10:40:21.013 base_git.py DEBUG Allowed\ - \ GPG keys are not set, skipping the verification.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running ActionName.pre_sync hook.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running ActionName.pre_sync.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running default implementation for ActionName.pre_sync.\r\ - \nUsing 'master' dist-git branch\r\n10:40:21.017 base_git.py DEBUG\ - \ It seems that branch master already exists, checking it out.\r\n\ - 10:40:21.020 distgit.py DEBUG About to update branch 'master'\r\ - \n10:40:21.727 api.py DEBUG Path of README /tmp/tmpzla3qy3y/README.packit\r\ - \n10:40:21.728 base_git.py DEBUG Running ActionName.prepare_files.\r\ - \n10:40:21.729 base_git.py DEBUG Running default implementation\ - \ for ActionName.prepare_files.\r\n10:40:21.729 sync.py DEBUG\ - \ Copy synced files [RawSyncFilesItem(src=/home/vagrant/rebase-helper/.packit.yml,\ - \ dest=/tmp/tmpzla3qy3y/.packit.yml, dist_is_dir=False), RawSyncFilesItem(src=/home/vagrant/rebase-helper/rebase-helper.spec,\ - \ dest=/tmp/tmpzla3qy3y/rebase-helper.spec, dist_is_dir=False)]\r\n\ - 10:40:21.730 sync.py DEBUG src = /home/vagrant/rebase-helper/.packit.yml,\ - \ dest = /tmp/tmpzla3qy3y/.packit.yml\r\nCopying /home/vagrant/rebase-helper/.packit.yml\ - \ to /tmp/tmpzla3qy3y/.packit.yml.\r\n10:40:21.731 sync.py \ - \ DEBUG src = /home/vagrant/rebase-helper/rebase-helper.spec, dest\ - \ = /tmp/tmpzla3qy3y/rebase-helper.spec\r\nCopying /home/vagrant/rebase-helper/rebase-helper.spec\ - \ to /tmp/tmpzla3qy3y/rebase-helper.spec.\r\n10:40:21.814 distgit.py\ - \ DEBUG Upstream archive name is 'rebase-helper-0.16.3.tar.gz'\r\ - \nArchive rebase-helper-0.16.3.tar.gz found in lookaside cache (skipping\ - \ upload).\r\n10:40:22.347 distgit.py DEBUG Upstream archive\ - \ name is 'rebase-helper-0.16.3.tar.gz'\r\n10:40:22.348 base_git.py\ - \ DEBUG About to add all & commit\r\n10:40:22.366 distgit.py\ - \ DEBUG About to force push changes to branch 0.16.3-master-update\ - \ of a fork fork of the dist-git repo\r\n10:40:32.251 distgit.py \ - \ DEBUG About to create dist-git pull request from 0.16.3-master-update\ - \ to master\r\nERROR There was an error while creating the PR: PagureAPIException('Page\ - \ `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.')\r\nERROR Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.\r\nTraceback (most recent call\ - \ last):\r\n File \"/usr/local/lib/python3.7/site-packages/packit/cli/utils.py\"\ - , line 58, in covered_func\r\n func(config=config, *args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/packit/cli/update.py\"\ - , line 113, in update\r\n upstream_ref=upstream_ref,\r\n File \"\ - /usr/local/lib/python3.7/site-packages/packit/api.py\", line 229, in\ - \ sync_release\r\n dist_git_branch=dist_git_branch,\r\n File \"\ - /usr/local/lib/python3.7/site-packages/packit/api.py\", line 316, in\ - \ push_and_create_pr\r\n target_branch=dist_git_branch,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit/distgit.py\", line\ - \ 211, in create_pull\r\n target_branch=target_branch,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/ogr/mock_core.py\", line\ - \ 49, in readonly_func\r\n return func(self, *args, **kwargs)\r\n\ - \ File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 377, in pr_create\r\n \"initial_comment\": body,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 232, in _call_project_api\r\n url=request_url, method=method,\ - \ params=params, data=data\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 71, in call_api\r\n raise PagureAPIException(f\"Page `{url}`\ - \ not found when calling Pagure API.\")\r\nogr.exceptions.PagureAPIException:\ - \ Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.\r\n10:40:34.958 local_project.py\ - \ DEBUG Cleaning: /tmp/tmpzla3qy3y\r\n~~~\r\n\r\n\r\nReferenced issues:\r\ - \nhttps://pagure.io/pagure/issue/4512\r\nhttps://github.com/packit-service/packit/issues/328\r\ - \n" - closed_at: '2019-09-12T11:17:19Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `f34` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can retrigger the update by adding a comment (`/packit propose-update`) + into this issue. + + ' + closed_at: '2020-12-11T09:14:01Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 - events_url: https://api.github.com/users/rpitonak/events{/privacy} - followers_url: https://api.github.com/users/rpitonak/followers - following_url: https://api.github.com/users/rpitonak/following{/other_user} - gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + 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/rpitonak - id: 26160778 - login: rpitonak - node_id: MDQ6VXNlcjI2MTYwNzc4 - organizations_url: https://api.github.com/users/rpitonak/orgs - received_events_url: https://api.github.com/users/rpitonak/received_events - repos_url: https://api.github.com/users/rpitonak/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + 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/rpitonak + url: https://api.github.com/users/lachmanfrantisek comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/91/comments - created_at: '2019-06-27T10:41:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/91/events - html_url: https://github.com/packit/ogr/issues/91 - id: 461455149 + comments_url: https://api.github.com/repos/packit/ogr/issues/511/comments + created_at: '2020-12-10T11:17:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/511/events + html_url: https://github.com/packit/ogr/issues/511 + id: 761149749 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/91/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/511/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE0NTUxNDk= - number: 91 + node_id: MDU6SXNzdWU3NjExNDk3NDk= + number: 511 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ' Page `/fork/phracek/rpms/rebase-helper/pull-request/new` not - found when calling Pagure API' - updated_at: '2019-09-12T11:17:20Z' - url: https://api.github.com/repos/packit/ogr/issues/91 + title: '[packit] Propose update failed for release 0.18.1' + updated_at: '2020-12-11T09:14:01Z' + url: https://api.github.com/repos/packit/ogr/issues/511 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions - type: User - url: https://api.github.com/users/phracek + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.109386 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 17:59:44 GMT + ETag: W/"6b58cba8cb05f0af6ca405446c216b1c41f1827e9aa172a9d164c9497aeec020" + Last-Modified: Fri, 11 Dec 2020 09:14:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D774:19178E9:6075DC10 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4934' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '66' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.39458727836608887 + latency: 0.10020685195922852 module_call_list: - unittest.case - requre.online_replacing @@ -58798,170 +57909,124 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "I would like to solve an issue https://github.com/packit-service/packit/issues/328\r\ - \nbut it failed with traceback:\r\n\r\n~~~\r\n$ packit -d propose-update\r\ - \n[..snip..]\r\n10:40:20.990 upstream.py DEBUG Version in spec\ - \ file: 0.16.3\r\nPicking version found in spec file.\r\nChecking out\ - \ upstream version 0.16.3\r\n10:40:21.013 base_git.py DEBUG Allowed\ - \ GPG keys are not set, skipping the verification.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running ActionName.pre_sync hook.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running ActionName.pre_sync.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running default implementation for ActionName.pre_sync.\r\ - \nUsing 'master' dist-git branch\r\n10:40:21.017 base_git.py DEBUG\ - \ It seems that branch master already exists, checking it out.\r\n\ - 10:40:21.020 distgit.py DEBUG About to update branch 'master'\r\ - \n10:40:21.727 api.py DEBUG Path of README /tmp/tmpzla3qy3y/README.packit\r\ - \n10:40:21.728 base_git.py DEBUG Running ActionName.prepare_files.\r\ - \n10:40:21.729 base_git.py DEBUG Running default implementation\ - \ for ActionName.prepare_files.\r\n10:40:21.729 sync.py DEBUG\ - \ Copy synced files [RawSyncFilesItem(src=/home/vagrant/rebase-helper/.packit.yml,\ - \ dest=/tmp/tmpzla3qy3y/.packit.yml, dist_is_dir=False), RawSyncFilesItem(src=/home/vagrant/rebase-helper/rebase-helper.spec,\ - \ dest=/tmp/tmpzla3qy3y/rebase-helper.spec, dist_is_dir=False)]\r\n\ - 10:40:21.730 sync.py DEBUG src = /home/vagrant/rebase-helper/.packit.yml,\ - \ dest = /tmp/tmpzla3qy3y/.packit.yml\r\nCopying /home/vagrant/rebase-helper/.packit.yml\ - \ to /tmp/tmpzla3qy3y/.packit.yml.\r\n10:40:21.731 sync.py \ - \ DEBUG src = /home/vagrant/rebase-helper/rebase-helper.spec, dest\ - \ = /tmp/tmpzla3qy3y/rebase-helper.spec\r\nCopying /home/vagrant/rebase-helper/rebase-helper.spec\ - \ to /tmp/tmpzla3qy3y/rebase-helper.spec.\r\n10:40:21.814 distgit.py\ - \ DEBUG Upstream archive name is 'rebase-helper-0.16.3.tar.gz'\r\ - \nArchive rebase-helper-0.16.3.tar.gz found in lookaside cache (skipping\ - \ upload).\r\n10:40:22.347 distgit.py DEBUG Upstream archive\ - \ name is 'rebase-helper-0.16.3.tar.gz'\r\n10:40:22.348 base_git.py\ - \ DEBUG About to add all & commit\r\n10:40:22.366 distgit.py\ - \ DEBUG About to force push changes to branch 0.16.3-master-update\ - \ of a fork fork of the dist-git repo\r\n10:40:32.251 distgit.py \ - \ DEBUG About to create dist-git pull request from 0.16.3-master-update\ - \ to master\r\nERROR There was an error while creating the PR: PagureAPIException('Page\ - \ `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.')\r\nERROR Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.\r\nTraceback (most recent call\ - \ last):\r\n File \"/usr/local/lib/python3.7/site-packages/packit/cli/utils.py\"\ - , line 58, in covered_func\r\n func(config=config, *args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/packit/cli/update.py\"\ - , line 113, in update\r\n upstream_ref=upstream_ref,\r\n File \"\ - /usr/local/lib/python3.7/site-packages/packit/api.py\", line 229, in\ - \ sync_release\r\n dist_git_branch=dist_git_branch,\r\n File \"\ - /usr/local/lib/python3.7/site-packages/packit/api.py\", line 316, in\ - \ push_and_create_pr\r\n target_branch=dist_git_branch,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit/distgit.py\", line\ - \ 211, in create_pull\r\n target_branch=target_branch,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/ogr/mock_core.py\", line\ - \ 49, in readonly_func\r\n return func(self, *args, **kwargs)\r\n\ - \ File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 377, in pr_create\r\n \"initial_comment\": body,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 232, in _call_project_api\r\n url=request_url, method=method,\ - \ params=params, data=data\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 71, in call_api\r\n raise PagureAPIException(f\"Page `{url}`\ - \ not found when calling Pagure API.\")\r\nogr.exceptions.PagureAPIException:\ - \ Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.\r\n10:40:34.958 local_project.py\ - \ DEBUG Cleaning: /tmp/tmpzla3qy3y\r\n~~~\r\n\r\n\r\nReferenced issues:\r\ - \nhttps://pagure.io/pagure/issue/4512\r\nhttps://github.com/packit-service/packit/issues/328\r\ - \n" - closed_at: '2019-09-12T11:17:19Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `f34` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can retrigger the update by adding a comment (`/packit propose-update`) + into this issue. + + ' + closed_at: '2020-12-11T09:14:01Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 - events_url: https://api.github.com/users/rpitonak/events{/privacy} - followers_url: https://api.github.com/users/rpitonak/followers - following_url: https://api.github.com/users/rpitonak/following{/other_user} - gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + 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/rpitonak - id: 26160778 - login: rpitonak - node_id: MDQ6VXNlcjI2MTYwNzc4 - organizations_url: https://api.github.com/users/rpitonak/orgs - received_events_url: https://api.github.com/users/rpitonak/received_events - repos_url: https://api.github.com/users/rpitonak/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + 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/rpitonak + url: https://api.github.com/users/lachmanfrantisek comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/91/comments - created_at: '2019-06-27T10:41:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/91/events - html_url: https://github.com/packit/ogr/issues/91 - id: 461455149 + comments_url: https://api.github.com/repos/packit/ogr/issues/511/comments + created_at: '2020-12-10T11:17:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/511/events + html_url: https://github.com/packit/ogr/issues/511 + id: 761149749 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/91/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/511/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE0NTUxNDk= - number: 91 + node_id: MDU6SXNzdWU3NjExNDk3NDk= + number: 511 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ' Page `/fork/phracek/rpms/rebase-helper/pull-request/new` not - found when calling Pagure API' - updated_at: '2019-09-12T11:17:20Z' - url: https://api.github.com/repos/packit/ogr/issues/91 + title: '[packit] Propose update failed for release 0.18.1' + updated_at: '2020-12-11T09:14:01Z' + url: https://api.github.com/repos/packit/ogr/issues/511 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions - type: User - url: https://api.github.com/users/phracek + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.100006 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 18:00:31 GMT + ETag: W/"6b58cba8cb05f0af6ca405446c216b1c41f1827e9aa172a9d164c9497aeec020" + Last-Modified: Fri, 11 Dec 2020 09:14:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7FC1F:191B2E0:6075DC3F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4716' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '284' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/96: + https://api.github.com:443/repos/packit/ogr/issues/512: - metadata: - latency: 0.29186034202575684 + latency: 0.10644698143005371 module_call_list: - unittest.case - requre.online_replacing @@ -58982,123 +58047,118 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "ReleaseBot, we would like to release a new version.\r\n\r\nThanks\ - \ in advance!" - closed_at: '2019-06-28T08:43:29Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + + + You can retrigger the update by adding a comment (`/packit propose-update`) + into this issue. + + ' + closed_at: '2021-02-04T19:34:57Z' closed_by: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/mfocko comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/96/comments - created_at: '2019-06-28T08:38:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/96/events - html_url: https://github.com/packit/ogr/issues/96 - id: 461923699 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/96/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/512/comments + created_at: '2020-12-10T11:18:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/512/events + html_url: https://github.com/packit/ogr/issues/512 + id: 761150482 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/512/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE5MjM2OTk= - number: 96 + node_id: MDU6SXNzdWU3NjExNTA0ODI= + number: 512 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-06-28T08:43:29Z' - url: https://api.github.com/repos/packit/ogr/issues/96 + title: '[packit] Propose update failed for release 0.18.1' + updated_at: '2021-02-04T19:34:57Z' + url: https://api.github.com/repos/packit/ogr/issues/512 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.106215 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 17:59:43 GMT + ETag: W/"9a52da98fc0157e599859e965ae27ef279bb50a62013f48cfb06f98b67276fa0" + Last-Modified: Thu, 04 Feb 2021 19:34:57 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7D6C2:19177B9:6075DC0F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4943' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '57' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - metadata: - latency: 0.2752499580383301 + latency: 0.3268451690673828 module_call_list: - unittest.case - requre.online_replacing @@ -59119,131 +58179,127 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "ReleaseBot, we would like to release a new version.\r\n\r\nThanks\ - \ in advance!" - closed_at: '2019-06-28T08:43:29Z' - closed_by: - avatar_url: https://avatars1.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} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + + + You can retrigger the update by adding a comment (`/packit propose-update`) + into this issue. + + ' + closed_at: '2021-02-04T19:34:57Z' + closed_by: + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/mfocko comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/96/comments - created_at: '2019-06-28T08:38:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/96/events - html_url: https://github.com/packit/ogr/issues/96 - id: 461923699 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/96/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/512/comments + created_at: '2020-12-10T11:18:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/512/events + html_url: https://github.com/packit/ogr/issues/512 + id: 761150482 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/512/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE5MjM2OTk= - number: 96 + node_id: MDU6SXNzdWU3NjExNTA0ODI= + number: 512 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-06-28T08:43:29Z' - url: https://api.github.com/repos/packit/ogr/issues/96 + title: '[packit] Propose update failed for release 0.18.1' + updated_at: '2021-02-04T19:34:57Z' + url: https://api.github.com/repos/packit/ogr/issues/512 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.326625 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:00:29 GMT + ETag: W/"9a52da98fc0157e599859e965ae27ef279bb50a62013f48cfb06f98b67276fa0" + Last-Modified: Thu, 04 Feb 2021 19:34:57 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7F9F3:191AFB6:6075DC3D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4724' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '276' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues?state=all&sort=updated&direction=desc: + https://api.github.com:443/repos/packit/ogr/issues/52: - metadata: - latency: 0.9563500881195068 + latency: 0.12258672714233398 module_call_list: - unittest.case - requre.online_replacing - tests.integration.github.test_issues - ogr.services.github.project - ogr.services.github.issue - - github.PaginatedList + - github.Issue + - github.GithubObject - github.Requester - requests.sessions - requre.objects @@ -59253,307 +58309,91 @@ requests.sessions: output: __store_indicator: 2 _content: - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: there is just one issue, and it is that __init__.py has to be clear, - because now it causes confusion, and try sto store keys with various - depth -> raise error. - closed_at: null - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/452/comments - created_at: '2020-08-13T13:44:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/452/events - html_url: https://github.com/packit/ogr/pull/452 - id: 678448961 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/452/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDY3Mzk1MTgz - number: 452 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/452.diff - html_url: https://github.com/packit/ogr/pull/452 - patch_url: https://github.com/packit/ogr/pull/452.patch - url: https://api.github.com/repos/packit/ogr/pulls/452 - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: this is first draft how new tests could look like - updated_at: '2020-08-26T09:18:59Z' - url: https://api.github.com/repos/packit/ogr/issues/452 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos - site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "- [x] Interface for token manager using github app\r\n- [x] Refactor\ - \ default solution\r\n- [x] Implement support for `tokman`" - closed_at: '2020-08-25T09:31:39Z' - comments: 18 - comments_url: https://api.github.com/repos/packit/ogr/issues/450/comments - created_at: '2020-08-11T09:16:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/450/events - html_url: https://github.com/packit/ogr/pull/450 - id: 676716034 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/450/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDY1OTc3NzQ2 - number: 450 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/450.diff - html_url: https://github.com/packit/ogr/pull/450 - patch_url: https://github.com/packit/ogr/pull/450.patch - url: https://api.github.com/repos/packit/ogr/pulls/450 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Use tokman in ogr - updated_at: '2020-08-25T17:28:39Z' - url: https://api.github.com/repos/packit/ogr/issues/450 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Split tests into files like the implementations are.\r\n\r\nAs\ - \ @lachmanfrantisek suggested, it would be great to have both old tests\ - \ (checking that deprecated interfaces are still usable) and new ones,\ - \ but this would lead to keeping duplicates of test_data, since they\ - \ would check the same things, but each would need separate yaml for\ - \ responses.\r\n\r\nSo I suggest transition from old to new tests right\ - \ after 0.13.0 (or before 1.0.0, in case it will be released sooner)" - closed_at: null - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/295/comments - created_at: '2019-12-05T10:40:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/295/events - html_url: https://github.com/packit/ogr/issues/295 - id: 533267519 - labels: - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/295/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1MzMyNjc1MTk= - number: 295 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Restructure tests - updated_at: '2020-08-24T10:14:58Z' - url: https://api.github.com/repos/packit/ogr/issues/295 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null + active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars0.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} + - 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova author_association: CONTRIBUTOR - body: "The current implementation of labels has no implementation of GitLabel\ - \ defined in the abstract classes, which would be consistent with what\ - \ is done for GitUser, GitProject etc. This is leading to inconsistent\ - \ typing in the library where we have the following function signatures\ - \ within the codebase:\r\n\r\nabstract.py\r\n`def get_issue_labels(self,\ - \ issue_id: int) -> List[Any]`\r\n\r\ngithub/project.py\r\n`def get_issue_labels(self,\ - \ issue_id: int) -> List[GithubLabel]`\r\n\r\ngitlab/project.py\r\n\ - `def get_issue_labels(self, issue_id: int) -> List[str]`\r\n\r\nWould\ - \ be good to make this consistent and inherit from a base class of GitLabel.\r\ - \n\r\n@lachmanfrantisek " - closed_at: null - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/263/comments - created_at: '2019-11-02T14:16:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/263/events - html_url: https://github.com/packit/ogr/issues/263 - id: 516607686 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/263/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1MTY2MDc2ODY= - number: 263 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Improve class structure for Labels type - updated_at: '2020-08-24T06:40:40Z' - url: https://api.github.com/repos/packit/ogr/issues/263 - user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + body: "Just spent some time debugging an issue where packit.yaml was not\ + \ found while being 100 % it's in there.\r\n\r\nIt turned out that my\ + \ token was incorrect and github kept throwing 401: that should bubble\ + \ up, we should catch 404 only. " + closed_at: '2019-07-10T07:35:48Z' + closed_by: + 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/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + 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/svenharris - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "In *Set PR flags in Pagure #381*, the `set_flag` method for Pagure\ - \ pull-requests was left to return the `dict` from the response. \r\n\ - \r\nWrap that response in a class to make working with these kind of\ - \ flags easier." - closed_at: null - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/384/comments - created_at: '2020-04-16T07:35:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/384/events - html_url: https://github.com/packit/ogr/issues/384 - id: 600814459 + url: https://api.github.com/users/TomasTomecek + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/52/comments + created_at: '2019-03-27T21:00:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/52/events + html_url: https://github.com/packit/ogr/issues/52 + id: 426181525 labels: - - color: 1d76db + - color: '000000' default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug - color: 7057ff default: false description: Good for newcomers @@ -59568,66 +58408,183 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/384/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/52/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDA4MTQ0NTk= - number: 384 + node_id: MDU6SXNzdWU0MjYxODE1MjU= + number: 52 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Create a class to hold information on pull-request flags - updated_at: '2020-08-24T06:39:05Z' - url: https://api.github.com/repos/packit/ogr/issues/384 + state: closed + title: 'get_file_content: catch only 404, raise everything else' + updated_at: '2019-07-10T07:35:48Z' + url: https://api.github.com/repos/packit/ogr/issues/52 user: - avatar_url: https://avatars0.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} + 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/csomh - id: 11816497 - login: csomh - node_id: MDQ6VXNlcjExODE2NDk3 - organizations_url: https://api.github.com/users/csomh/orgs - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + 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/csomh - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "We need to document usage of ogr on custom/internal instances:\r\ - \n\r\n- [ ] usage of `instance_url`\r\n- [ ] setup of custom/internal\ - \ certificates:\r\n - export `REQUESTS_CA_BUNDLE=/etc/pki/tls/certs/ca-bundle.crt`\r\ - \n - ignore the SSL verification (`ssl_verify` argument)" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/356/comments - created_at: '2020-03-17T14:45:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/356/events - html_url: https://github.com/packit/ogr/issues/356 - id: 583065980 + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.1224 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:20 GMT + ETag: W/"7e2cc2656e978da31a8c40b0be6991beec16b2fc6ec3cd01d8572be58f579e90" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F7F287:191A3CA:6075DC33 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4770' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '230' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.4058709144592285 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: CONTRIBUTOR + body: "Just spent some time debugging an issue where packit.yaml was not\ + \ found while being 100 % it's in there.\r\n\r\nIt turned out that my\ + \ token was incorrect and github kept throwing 401: that should bubble\ + \ up, we should catch 404 only. " + closed_at: '2019-07-10T07:35:48Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/52/comments + created_at: '2019-03-27T21:00:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/52/events + html_url: https://github.com/packit/ogr/issues/52 + id: 426181525 labels: - - color: c5def5 + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -59635,166 +58592,230 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/356/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/52/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODMwNjU5ODA= - number: 356 + node_id: MDU6SXNzdWU0MjYxODE1MjU= + number: 52 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Document the usage of custom instances and certificates - updated_at: '2020-08-24T06:10:50Z' - url: https://api.github.com/repos/packit/ogr/issues/356 + state: closed + title: 'get_file_content: catch only 404, raise everything else' + updated_at: '2019-07-10T07:35:48Z' + url: https://api.github.com/repos/packit/ogr/issues/52 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - - active_lock_reason: null + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.405672 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:00 GMT + ETag: W/"7e2cc2656e978da31a8c40b0be6991beec16b2fc6ec3cd01d8572be58f579e90" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F814D1:191D88C:6075DC5C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4560' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '440' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/520: + - metadata: + latency: 0.10695075988769531 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: changed description - closed_at: '2018-12-13T14:24:08Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/1/comments - created_at: '2018-12-13T13:01:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/1/events - html_url: https://github.com/packit/ogr/pull/1 - id: 390668872 - labels: - - color: ededed - default: false - description: null - id: 1457192587 - name: test_lb1 - node_id: MDU6TGFiZWwxNDU3MTkyNTg3 - url: https://api.github.com/repos/packit/ogr/labels/test_lb1 - - color: ededed - default: false - description: null - id: 1457192593 - name: test_lb2 - node_id: MDU6TGFiZWwxNDU3MTkyNTkz - url: https://api.github.com/repos/packit/ogr/labels/test_lb2 - labels_url: https://api.github.com/repos/packit/ogr/issues/1/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjM4MzgxNzIz - number: 1 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/1.diff - html_url: https://github.com/packit/ogr/pull/1 - patch_url: https://github.com/packit/ogr/pull/1.patch - url: https://api.github.com/repos/packit/ogr/pulls/1 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'WIP: API' - updated_at: '2020-08-21T07:51:37Z' - url: https://api.github.com/repos/packit/ogr/issues/1 - user: - avatar_url: https://avatars1.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} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `f34` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-01-07T12:55:21Z' + closed_by: + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "The `ogr` is a nice, short name, but the 'meaning' should be changed.\r\ - \n\r\nFeel free to edit this comment.\r\n\r\n| O | G | R |\r\n| - |\ - \ - | - |\r\n| our | git | rule |\r\n| one | git-forge | revolution\ - \ |\r\n| open | | rebellion |\r\n| object | | realm |\r\n| only | |\ - \ route |\r\n| omnipotent | | rocket |\r\n| | | recipe |\r\n| | | rainbow\ - \ |\r\n| | | roadway |\r\n| | | reactor |\r\n| | | reunion |\r\n| |\ - \ | rebel |\r\n| | | ruler |\r\n\r\nPossible combinations (and votes):\r\ - \n- our-git-rebel @phracek \r\n- open-git-rainbow @phracek @TomasTomecek\ - \ \r\n- object-git-reactor @phracek \r\n- the [O]ne [G]it [R]uler @TomasTomecek\ - \ \r\n- [O]ne [G]it library to [R]ule @TomasTomecek @jpopelka\r\n- [O]mniponent\ - \ [G]it-forge [R]uler @jpopelka @lachmanfrantisek @TomasTomecek " - closed_at: '2019-02-14T13:28:27Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/4/comments - created_at: '2019-01-17T08:26:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/4/events - html_url: https://github.com/packit/ogr/issues/4 - id: 400160755 - labels: - - color: ededed - default: false - description: null - id: 1457192587 - name: test_lb1 - node_id: MDU6TGFiZWwxNDU3MTkyNTg3 - url: https://api.github.com/repos/packit/ogr/labels/test_lb1 - - color: ededed - default: false - description: null - id: 1457192593 - name: test_lb2 - node_id: MDU6TGFiZWwxNDU3MTkyNTkz - url: https://api.github.com/repos/packit/ogr/labels/test_lb2 - labels_url: https://api.github.com/repos/packit/ogr/issues/4/labels{/name} + url: https://api.github.com/users/TomasTomecek + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/520/comments + created_at: '2021-01-07T12:07:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/520/events + html_url: https://github.com/packit/ogr/issues/520 + id: 781266150 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/520/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MDAxNjA3NTU= - number: 4 + node_id: MDU6SXNzdWU3ODEyNjYxNTA= + number: 520 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Better name - updated_at: '2020-08-21T07:51:33Z' - url: https://api.github.com/repos/packit/ogr/issues/4 + title: '[packit] Propose downstream failed for release 0.19.0' + updated_at: '2021-01-07T12:55:21Z' + url: https://api.github.com/repos/packit/ogr/issues/520 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 - - active_lock_reason: null + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + _next: null + elapsed: 0.106634 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:44 GMT + ETag: W/"326b0e0c56a33ecb755026a437110c28f608faad596f218a5ed6ebbcdab84bb8" + Last-Modified: Thu, 07 Jan 2021 12:55:21 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: 85EE:7CFE:F7D755:19178A6:6075DC10 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4936' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '64' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.10688066482543945 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: NONE @@ -59805,41 +58826,60 @@ requests.sessions: | --------------- | ----- | - | `f31` | `Failed to init kerberos ticket:` | - | `f32` | `Failed to init kerberos ticket:` | | `f33` | `Failed to init kerberos ticket:` | + | `f34` | `Failed to init kerberos ticket:` | + | `master` | `Failed to init kerberos ticket:` | - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. ' - closed_at: null + closed_at: '2021-01-07T12:55:21Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/456/comments - created_at: '2020-08-20T08:09:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/456/events - html_url: https://github.com/packit/ogr/issues/456 - id: 682514734 + comments_url: https://api.github.com/repos/packit/ogr/issues/520/comments + created_at: '2021-01-07T12:07:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/520/events + html_url: https://github.com/packit/ogr/issues/520 + id: 781266150 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/456/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/520/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2ODI1MTQ3MzQ= - number: 456 + node_id: MDU6SXNzdWU3ODEyNjYxNTA= + number: 520 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: '[packit] Propose update failed for release 0.13.1' - updated_at: '2020-08-20T08:09:32Z' - url: https://api.github.com/repos/packit/ogr/issues/456 + state: closed + title: '[packit] Propose downstream failed for release 0.19.0' + updated_at: '2021-01-07T12:55:21Z' + url: https://api.github.com/repos/packit/ogr/issues/520 user: - avatar_url: https://avatars0.githubusercontent.com/in/29180?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} @@ -59857,158 +58897,387 @@ requests.sessions: subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions type: Bot url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - - active_lock_reason: null + _next: null + elapsed: 0.106578 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:30 GMT + ETag: W/"326b0e0c56a33ecb755026a437110c28f608faad596f218a5ed6ebbcdab84bb8" + Last-Modified: Thu, 07 Jan 2021 12:55:21 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: 85EE:7CFE:F7FB6E:191B1E3:6075DC3E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4719' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '281' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/529: + - metadata: + latency: 0.10981082916259766 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* https://github.com/packit-service\ - \ -> https://github.com/packit\n* Add Jupyter examples\n* fix create\ - \ issue in Github and add test\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.13.1-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-08-20T07:58:30Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/455/comments - created_at: '2020-08-19T11:07:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/455/events - html_url: https://github.com/packit/ogr/pull/455 - id: 681753984 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/455/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f33` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + | `main` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-02-05T09:28:13Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/529/comments + created_at: '2021-02-05T09:07:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/529/events + html_url: https://github.com/packit/ogr/issues/529 + id: 801987621 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/529/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDcwMDkyNTEx - number: 455 + node_id: MDU6SXNzdWU4MDE5ODc2MjE= + number: 529 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/455.diff - html_url: https://github.com/packit/ogr/pull/455 - patch_url: https://github.com/packit/ogr/pull/455.patch - url: https://api.github.com/repos/packit/ogr/pulls/455 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.13.1 release - updated_at: '2020-08-20T08:04:32Z' - url: https://api.github.com/repos/packit/ogr/issues/455 + title: '[packit] Propose downstream failed for release 0.20.0' + updated_at: '2021-02-05T09:28:13Z' + url: https://api.github.com/repos/packit/ogr/issues/529 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 - - active_lock_reason: null + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + _next: null + elapsed: 0.10959 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:42 GMT + ETag: W/"f571ac93e347d70fe7a6382156886bd330752b3b151791f7eb8189c659cec7f0" + Last-Modified: Fri, 05 Feb 2021 09:28:13 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: 85EE:7CFE:F7D646:19176FF:6075DC0E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4949' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '51' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.11896228790283203 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-08-19T11:07:53Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f33` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + | `main` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-02-05T09:28:13Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/454/comments - created_at: '2020-08-19T11:02:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/454/events - html_url: https://github.com/packit/ogr/issues/454 - id: 681751158 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/454/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/529/comments + created_at: '2021-02-05T09:07:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/529/events + html_url: https://github.com/packit/ogr/issues/529 + id: 801987621 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/529/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2ODE3NTExNTg= - number: 454 + node_id: MDU6SXNzdWU4MDE5ODc2MjE= + number: 529 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New patch release - updated_at: '2020-08-19T11:07:53Z' - url: https://api.github.com/repos/packit/ogr/issues/454 + title: '[packit] Propose downstream failed for release 0.20.0' + updated_at: '2021-02-05T09:28:13Z' + url: https://api.github.com/repos/packit/ogr/issues/529 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - - active_lock_reason: null + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + _next: null + elapsed: 0.118703 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:28 GMT + ETag: W/"f571ac93e347d70fe7a6382156886bd330752b3b151791f7eb8189c659cec7f0" + Last-Modified: Fri, 05 Feb 2021 09:28:13 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: 85EE:7CFE:F7F9B8:191AF59:6075DC3C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4726' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '274' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/53: + - metadata: + latency: 0.20104408264160156 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Currently, we can instantiate objects (i.e. GitProject), that does\ - \ not exist.\r\n\r\nWe probably need to agree on the common understanding\ - \ of this approach:\r\n\r\n1. allow creating non-existing objects\r\n\ - \ - add `exists() -> Bool` method\r\n - add `create() -> ????`\ - \ methods\r\n - we do not need to connect to servers on each instantiation\r\ - \n - due to laziness it can fail at not-predictable places\r\n2.\ - \ raise an exception in methods like `get_project`\r\n - easier implementation\r\ - \n - we need to connect to the remote service even when it is not\ - \ needed" - closed_at: null - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/214/comments - created_at: '2019-09-19T19:30:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/214/events - html_url: https://github.com/packit/ogr/issues/214 - id: 495986265 + author_association: NONE + body: "There is no documentation on how to use the library, currently.\ + \ A documentation will help people on how to use ogr, and showcase it's\ + \ features and functions.\r\n\r\nThis can be done by adding the wiki\ + \ pages (on Github), since the documentation might be quite long and\ + \ the Wiki will help in segregating several topics (for instance, how\ + \ to use ogr for GitHub, GitLab and Pagure).\r\n\r\n" + closed_at: '2021-02-09T14:13:50Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/53/comments + created_at: '2019-04-04T13:30:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/53/events + html_url: https://github.com/packit/ogr/issues/53 + id: 429280678 labels: - color: c5def5 default: true @@ -60017,242 +59286,343 @@ requests.sessions: name: documentation node_id: MDU6TGFiZWwxNDMyNzc5MjY3 url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: ff9990 + - color: bf6b0b default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - - color: 8be567 + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: 42e529 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/214/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/53/labels{/name} locked: false - milestone: null - node_id: MDU6SXNzdWU0OTU5ODYyNjU= - number: 214 + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0MjkyODA2Nzg= + number: 53 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: '[question] Allow objects representing nonexisting objects' - updated_at: '2020-08-17T12:28:02Z' - url: https://api.github.com/repos/packit/ogr/issues/214 + state: closed + title: Add a documentation for API + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/issues/53 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/31067398?v=4 + events_url: https://api.github.com/users/Aniket-Pradhan/events{/privacy} + followers_url: https://api.github.com/users/Aniket-Pradhan/followers + following_url: https://api.github.com/users/Aniket-Pradhan/following{/other_user} + gists_url: https://api.github.com/users/Aniket-Pradhan/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/Aniket-Pradhan + id: 31067398 + login: Aniket-Pradhan + node_id: MDQ6VXNlcjMxMDY3Mzk4 + organizations_url: https://api.github.com/users/Aniket-Pradhan/orgs + received_events_url: https://api.github.com/users/Aniket-Pradhan/received_events + repos_url: https://api.github.com/users/Aniket-Pradhan/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/Aniket-Pradhan/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Aniket-Pradhan/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null + url: https://api.github.com/users/Aniket-Pradhan + _next: null + elapsed: 0.200878 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:41 GMT + ETag: W/"74459336ed4f9235731e89a68a212d4ad9cda17d51196193eda65922bc2d8e06" + Last-Modified: Mon, 12 Apr 2021 15:28:15 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: 85EE:7CFE:F7D53D:1917557:6075DC0D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4956' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '44' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.11304855346679688 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Add method to project classes to delete project.\r\n\r\nAC:\r\n\ - - [ ] In each implementation, add the `delete` method to project class\ - \ and implement it.\r\n - If possible/supported. (Document that if\ - \ it is not possible.)\r\n- [ ] Add tests for that.\r\n\r\nLinks:\r\n\ - - https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ - \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ - \n- https://pagure.io/api/0/ (not found the possible API call for that\ - \ on the first look)" - closed_at: null - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/215/comments - created_at: '2019-09-20T05:36:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/215/events - html_url: https://github.com/packit/ogr/issues/215 - id: 496154927 + author_association: NONE + body: "There is no documentation on how to use the library, currently.\ + \ A documentation will help people on how to use ogr, and showcase it's\ + \ features and functions.\r\n\r\nThis can be done by adding the wiki\ + \ pages (on Github), since the documentation might be quite long and\ + \ the Wiki will help in segregating several topics (for instance, how\ + \ to use ogr for GitHub, GitLab and Pagure).\r\n\r\n" + closed_at: '2021-02-09T14:13:50Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/53/comments + created_at: '2019-04-04T13:30:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/53/events + html_url: https://github.com/packit/ogr/issues/53 + id: 429280678 labels: - - color: '000000' + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: bf6b0b default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: 42e529 default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/215/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0OTYxNTQ5Mjc= - number: 215 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Implement GitProject.delete() - updated_at: '2020-08-17T10:59:13Z' - url: https://api.github.com/repos/packit/ogr/issues/215 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-08-17T08:56:28Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/453/comments - created_at: '2020-08-13T16:21:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/453/events - html_url: https://github.com/packit/ogr/pull/453 - id: 678564351 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/453/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/53/labels{/name} locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDY3NDkwMTYz - number: 453 + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0MjkyODA2Nzg= + number: 53 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/453.diff - html_url: https://github.com/packit/ogr/pull/453 - patch_url: https://github.com/packit/ogr/pull/453.patch - url: https://api.github.com/repos/packit/ogr/pulls/453 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: https://github.com/packit-service -> https://github.com/packit - updated_at: '2020-08-17T09:27:06Z' - url: https://api.github.com/repos/packit/ogr/issues/453 + title: Add a documentation for API + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/issues/53 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/31067398?v=4 + events_url: https://api.github.com/users/Aniket-Pradhan/events{/privacy} + followers_url: https://api.github.com/users/Aniket-Pradhan/followers + following_url: https://api.github.com/users/Aniket-Pradhan/following{/other_user} + gists_url: https://api.github.com/users/Aniket-Pradhan/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/Aniket-Pradhan + id: 31067398 + login: Aniket-Pradhan + node_id: MDQ6VXNlcjMxMDY3Mzk4 + organizations_url: https://api.github.com/users/Aniket-Pradhan/orgs + received_events_url: https://api.github.com/users/Aniket-Pradhan/received_events + repos_url: https://api.github.com/users/Aniket-Pradhan/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/Aniket-Pradhan/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Aniket-Pradhan/subscriptions type: User - url: https://api.github.com/users/jpopelka - - active_lock_reason: null + url: https://api.github.com/users/Aniket-Pradhan + _next: null + elapsed: 0.11276 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:28 GMT + ETag: W/"74459336ed4f9235731e89a68a212d4ad9cda17d51196193eda65922bc2d8e06" + Last-Modified: Mon, 12 Apr 2021 15:28:15 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: 85EE:7CFE:F7F99F:191AF27:6075DC3C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4727' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '273' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/530: + - metadata: + latency: 0.2013716697692871 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- [ ] Check tests and create them if necessary\r\n- [ ] Implement\ - \ creating diff comments for GitLab (already implemented for GitHub\ - \ and Pagure)\r\n- [ ] Create and implement interface for properties\ - \ of diff comments (`is_diff_comment`, `commit`, `path`, `position`;\ - \ consider new/old or only one)\r\n- [ ] Implement functions for acquiring\ - \ diff comments on pull requests, e.g. `get_diff_comments`" - closed_at: null - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/424/comments - created_at: '2020-05-29T09:01:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/424/events - html_url: https://github.com/packit/ogr/issues/424 - id: 627115330 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/424/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MjcxMTUzMzA= - number: 424 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Diff/review comments on pull requests - updated_at: '2020-08-17T08:56:04Z' - url: https://api.github.com/repos/packit/ogr/issues/424 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `[Errno 2] No such file or directory: ''/tmp/packit-dist-gitl5r40_6q/sources''` + | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-02-12T12:21:06Z' + closed_by: + 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} @@ -60270,129 +59640,253 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "Add method where user can request access for a project.\r\n\r\n\ - - Gitlab - Implemented here - #439 \r\n- Github - After looking into\ - \ https://pygithub.readthedocs.io/en/latest/index.html (Seems its not\ - \ possible in Github to request for project access)\r\n- Pagure - Unsure\ - \ about the support (But unable to find anything here - https://pagure.io/api/0/#projects-tab)" - closed_at: '2020-08-17T00:45:05Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/440/comments - created_at: '2020-07-28T17:53:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/440/events - html_url: https://github.com/packit/ogr/issues/440 - id: 667259796 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/440/labels{/name} + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/530/comments + created_at: '2021-02-05T09:26:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/530/events + html_url: https://github.com/packit/ogr/issues/530 + id: 802000731 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/530/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NjcyNTk3OTY= - number: 440 + node_id: MDU6SXNzdWU4MDIwMDA3MzE= + number: 530 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement request_access for project - updated_at: '2020-08-17T00:45:05Z' - url: https://api.github.com/repos/packit/ogr/issues/440 + title: '[packit] Propose downstream failed for release 0.20.0' + updated_at: '2021-02-12T12:21:06Z' + url: https://api.github.com/repos/packit/ogr/issues/530 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions - type: User - url: https://api.github.com/users/shreyaspapi - - active_lock_reason: null + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + _next: null + elapsed: 0.201023 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:40 GMT + ETag: W/"4a4fae61716fbbb3bf2f96b17988ef9767525e6acf8fb0064c25eccca359d1c5" + Last-Modified: Fri, 12 Feb 2021 12:21:06 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: 85EE:7CFE:F7D4F9:19174E4:6075DC0C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4958' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '42' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.09927773475646973 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Added unit test for Pagure.PullRequest.head_commit - closed_at: '2020-08-15T10:15:27Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/369/comments - created_at: '2020-03-27T14:53:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/369/events - html_url: https://github.com/packit/ogr/pull/369 - id: 589189620 - labels: - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/369/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `[Errno 2] No such file or directory: ''/tmp/packit-dist-gitl5r40_6q/sources''` + | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-02-12T12:21:06Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/530/comments + created_at: '2021-02-05T09:26:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/530/events + html_url: https://github.com/packit/ogr/issues/530 + id: 802000731 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/530/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzk0ODAwMjA0 - number: 369 + node_id: MDU6SXNzdWU4MDIwMDA3MzE= + number: 530 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/369.diff - html_url: https://github.com/packit/ogr/pull/369 - patch_url: https://github.com/packit/ogr/pull/369.patch - url: https://api.github.com/repos/packit/ogr/pulls/369 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Added unit test for Pagure.PullRequest.head_commit - updated_at: '2020-08-15T10:15:27Z' - url: https://api.github.com/repos/packit/ogr/issues/369 + title: '[packit] Propose downstream failed for release 0.20.0' + updated_at: '2021-02-12T12:21:06Z' + url: https://api.github.com/repos/packit/ogr/issues/530 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - - active_lock_reason: null + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + _next: null + elapsed: 0.09906 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:28 GMT + ETag: W/"4a4fae61716fbbb3bf2f96b17988ef9767525e6acf8fb0064c25eccca359d1c5" + Last-Modified: Fri, 12 Feb 2021 12:21:06 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: 85EE:7CFE:F7F988:191AF04:6075DC3C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4728' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '272' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/532: + - metadata: + latency: 0.19835615158081055 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- [x] The contribution guide should be accessible from the README.md.\ - \ (#265 )\r\n- [ ] We need to be sure that the guide is current and\ - \ describes the testing approach well.\r\n- [ ] Document `/packit` command." - closed_at: '2020-08-14T09:27:22Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/165/comments - created_at: '2019-09-05T13:37:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/165/events - html_url: https://github.com/packit/ogr/issues/165 - id: 489761258 + body: "Tools that we use for autogeneration of documentation support mainly\ + \ markdown (also optionally numpy or google style of docstrings). We\ + \ should transition from our current sphinx-style of comments to one\ + \ of those.\r\n\r\n- [ ] decide between markdown, numpy or google style\r\ + \n - [ ] update GitHub action for generating of documentation if necessary\r\ + \n- [ ] update docstrings to adhere to the chosen style/format\r\n\r\ + \nFollow-up of #531 " + closed_at: null + closed_by: null + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/532/comments + created_at: '2021-02-09T13:57:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/532/events + html_url: https://github.com/packit/ogr/issues/532 + id: 804575574 labels: - color: c5def5 default: true @@ -60408,88 +59902,166 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: '000000' + - color: 8be567 default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - - color: f9d0c4 + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/165/labels{/name} + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/532/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODk3NjEyNTg= - number: 165 + node_id: MDU6SXNzdWU4MDQ1NzU1NzQ= + number: 532 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Update and link the contribution guide in README - updated_at: '2020-08-14T17:30:15Z' - url: https://api.github.com/repos/packit/ogr/issues/165 + state: open + title: Docstrings' format + updated_at: '2021-02-11T14:47:10Z' + url: https://api.github.com/repos/packit/ogr/issues/532 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - - active_lock_reason: null + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.198168 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:41 GMT + ETag: W/"a35500eab43af7acf0c5b3cc749fb8ea26a9e5a911690d6f58f99303c2057468" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 85EE:7CFE:F7D51E:1917529:6075DC0C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4957' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '43' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.09806227684020996 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Closes #196 ' - closed_at: '2020-08-13T10:28:26Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/444/comments - created_at: '2020-08-03T09:30:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/444/events - html_url: https://github.com/packit/ogr/pull/444 - id: 671937907 + body: "Tools that we use for autogeneration of documentation support mainly\ + \ markdown (also optionally numpy or google style of docstrings). We\ + \ should transition from our current sphinx-style of comments to one\ + \ of those.\r\n\r\n- [ ] decide between markdown, numpy or google style\r\ + \n - [ ] update GitHub action for generating of documentation if necessary\r\ + \n- [ ] update docstrings to adhere to the chosen style/format\r\n\r\ + \nFollow-up of #531 " + closed_at: null + closed_by: null + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/532/comments + created_at: '2021-02-09T13:57:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/532/events + html_url: https://github.com/packit/ogr/issues/532 + id: 804575574 labels: - - color: 0e8a16 + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/444/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/532/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDYyMDYyMjUw - number: 444 + node_id: MDU6SXNzdWU4MDQ1NzU1NzQ= + number: 532 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/444.diff - html_url: https://github.com/packit/ogr/pull/444 - patch_url: https://github.com/packit/ogr/pull/444.patch - url: https://api.github.com/repos/packit/ogr/pulls/444 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Jupyter examples - updated_at: '2020-08-13T10:29:44Z' - url: https://api.github.com/repos/packit/ogr/issues/444 + state: open + title: Docstrings' format + updated_at: '2021-02-11T14:47:10Z' + url: https://api.github.com/repos/packit/ogr/issues/532 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -60507,9 +60079,124 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + _next: null + elapsed: 0.09788 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:09 GMT + ETag: W/"a35500eab43af7acf0c5b3cc749fb8ea26a9e5a911690d6f58f99303c2057468" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 85EE:7CFE:F81E66:191E6E6:6075DC65 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4522' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '478' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/533: + - metadata: + latency: 0.1999526023864746 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "pdoc(3) supports inheriting of docstrings, there is no need to\ + \ have multiple identical docstrings and also try to rethink exporting\ + \ of the classes/modules through `__all__`, since it makes the documentation\ + \ harder to navigate\r\n\r\n- [ ] remove duplicit docstrings\r\n -\ + \ [ ] add specific docstrings where the interface deviates\r\n- [ ]\ + \ try to think about better structure of exports for `__all__` (shouldn't\ + \ be a problem in specific services, just clean it up at the top-level)\r\ + \n\r\nFollow-up of #531" + closed_at: null + closed_by: null + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/533/comments + created_at: '2021-02-09T14:01:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/533/events + html_url: https://github.com/packit/ogr/issues/533 + id: 804579179 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/533/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MDQ1NzkxNzk= + number: 533 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Remove duplicit docstrings + make documentation easier to navigate + updated_at: '2021-02-09T14:01:52Z' + url: https://api.github.com/repos/packit/ogr/issues/533 + 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} @@ -60527,8 +60214,123 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + _next: null + elapsed: 0.199788 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:41 GMT + ETag: W/"cadbc080a911170f5e4cbdac2307df66f6586d47d4aefd8c9d6e5572defe9131" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 85EE:7CFE:F7D586:19175C4:6075DC0D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4954' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '46' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.10356616973876953 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "pdoc(3) supports inheriting of docstrings, there is no need to\ + \ have multiple identical docstrings and also try to rethink exporting\ + \ of the classes/modules through `__all__`, since it makes the documentation\ + \ harder to navigate\r\n\r\n- [ ] remove duplicit docstrings\r\n -\ + \ [ ] add specific docstrings where the interface deviates\r\n- [ ]\ + \ try to think about better structure of exports for `__all__` (shouldn't\ + \ be a problem in specific services, just clean it up at the top-level)\r\ + \n\r\nFollow-up of #531" + closed_at: null + closed_by: null + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/533/comments + created_at: '2021-02-09T14:01:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/533/events + html_url: https://github.com/packit/ogr/issues/533 + id: 804579179 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/533/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MDQ1NzkxNzk= + number: 533 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Remove duplicit docstrings + make documentation easier to navigate + updated_at: '2021-02-09T14:01:52Z' + url: https://api.github.com/repos/packit/ogr/issues/533 + 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} @@ -60546,36 +60348,94 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - author_association: CONTRIBUTOR - body: "We have recently added a short usage section into the README.md\ - \ (#195).\r\n\r\nIt would be nice to create a new folder in the root\ - \ of this repository called `examples` and demonstrate various ogr functions.\r\ - \n\r\nFor me, the best way how to do it is to create a [Jupyter notebook](https://jupyter.org/)\ - \ as it is supported by GitHub and we can easily combine code snippets,\ - \ with outputs and comments in Markdown.\r\n\r\n*update by @lachmanfrantisek*\r\ - \n\r\nTODO:\r\n- [ ] Update the example in the README (something short).\r\ - \n- [ ] Create a folder `examples`.\r\n- [ ] Create some interesting\ - \ examples / usecases using [jupyter-notebook](https://jupyter.org/)\ - \ in that folder (github can display the `ipynb` files pretty well).\r\ - \n - Be sure, that you are not commiting your authentication tokens..;)\r\ - \n- [ ] Link the examples in the README or link the `examples/README.md`\ - \ where we can have more descriptive text for examples and links for\ - \ the specific `ipynb` files." - closed_at: '2020-08-13T10:28:26Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/196/comments - created_at: '2019-09-12T10:02:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/196/events - html_url: https://github.com/packit/ogr/issues/196 - id: 492708275 + _next: null + elapsed: 0.103371 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:09 GMT + ETag: W/"cadbc080a911170f5e4cbdac2307df66f6586d47d4aefd8c9d6e5572defe9131" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 85EE:7CFE:F81E92:191E73D:6075DC65 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4520' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '480' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/534: + - metadata: + latency: 0.12640047073364258 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Residing at https://packit.github.io/ogr\r\n\r\nFollow-up of #531 " + closed_at: '2021-03-12T17:37:21Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/534/comments + created_at: '2021-02-09T14:05:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/534/events + html_url: https://github.com/packit/ogr/issues/534 + id: 804582194 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: c5def5 default: true description: Documentation needs updates @@ -60590,13 +60450,6 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - color: 8be567 default: false description: Usability issue. @@ -60604,328 +60457,528 @@ requests.sessions: name: user-experience node_id: MDU6TGFiZWwxNDMyNzc5NDY0 url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/196/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/534/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTI3MDgyNzU= - number: 196 + node_id: MDU6SXNzdWU4MDQ1ODIxOTQ= + number: 534 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Examples for ogr usage using Jupyter notebook - updated_at: '2020-08-13T10:28:26Z' - url: https://api.github.com/repos/packit/ogr/issues/196 + title: Add a link to documentation to README + updated_at: '2021-03-12T17:37:21Z' + url: https://api.github.com/repos/packit/ogr/issues/534 user: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 - events_url: https://api.github.com/users/rpitonak/events{/privacy} - followers_url: https://api.github.com/users/rpitonak/followers - following_url: https://api.github.com/users/rpitonak/following{/other_user} - gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + 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/rpitonak - id: 26160778 - login: rpitonak - node_id: MDQ6VXNlcjI2MTYwNzc4 - organizations_url: https://api.github.com/users/rpitonak/orgs - received_events_url: https://api.github.com/users/rpitonak/received_events - repos_url: https://api.github.com/users/rpitonak/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + 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/rpitonak - - active_lock_reason: null + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.126194 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:38 GMT + ETag: W/"e32a47040fa52be754996e5194b9241c2542d78e13adcca0515029fc9d48c9aa" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 85EE:7CFE:F7D325:191722D:6075DC0A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4969' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '31' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.1167457103729248 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: 'Fixes #449 ' - closed_at: '2020-08-13T07:00:04Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/451/comments - created_at: '2020-08-12T21:44:08Z' - events_url: https://api.github.com/repos/packit/ogr/issues/451/events - html_url: https://github.com/packit/ogr/pull/451 - id: 677997734 + author_association: MEMBER + body: "Residing at https://packit.github.io/ogr\r\n\r\nFollow-up of #531 " + closed_at: '2021-03-12T17:37:21Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/534/comments + created_at: '2021-02-09T14:05:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/534/events + html_url: https://github.com/packit/ogr/issues/534 + id: 804582194 labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/451/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDY3MDIzODIw - number: 451 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/451.diff - html_url: https://github.com/packit/ogr/pull/451 - patch_url: https://github.com/packit/ogr/pull/451.patch - url: https://api.github.com/repos/packit/ogr/pulls/451 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Create issue in Github without labels - updated_at: '2020-08-13T07:00:04Z' - url: https://api.github.com/repos/packit/ogr/issues/451 - user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos - site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions - type: User - url: https://api.github.com/users/shreyaspapi - - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: "Sentry Issue: [RED-HAT-0P-2RX](https://sentry.io/organizations/red-hat-0p/issues/1828647684/?referrer=github_integration)\r\ - \n\r\n```\r\nTypeError: 'NoneType' object is not iterable\r\n(2 additional\ - \ frame(s) were not displayed)\r\n...\r\n File \"packit_service/worker/handlers/abstract.py\"\ - , line 152, in run_n_clean\r\n return self.run()\r\n File \"packit_service/worker/handlers/github_handlers.py\"\ - , line 213, in run\r\n body=body_msg,\r\n File \"ogr/services/github/project.py\"\ - , line 313, in create_issue\r\n return GithubIssue.create(project=self,\ - \ title=title, body=body, labels=labels)\r\n File \"ogr/services/github/issue.py\"\ - , line 101, in create\r\n title=title, body=body, labels=labels\r\ - \n File \"github/Repository.py\", line 1063, in create_issue\r\n \ - \ assert labels is github.GithubObject.NotSet or all(isinstance(element,\ - \ github.Label.Label) or isinstance(element, str) for element in labels),\ - \ labels\r\n```\r\n\r\nRecently we added `labels` parameters to `create_issue`\ - \ method and it defaults to None, but it should probably default to\ - \ [] so that it does not fail on the line with `assert`." - closed_at: '2020-08-13T07:00:04Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/449/comments - created_at: '2020-08-10T07:47:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/449/events - html_url: https://github.com/packit/ogr/issues/449 - id: 675938538 - labels: - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff default: false description: Good for newcomers id: 1160311266 name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9e231 + - color: 8be567 default: false - description: High priority. - id: 1432779316 - name: high-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzE2 - url: https://api.github.com/repos/packit/ogr/labels/high-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/449/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/534/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NzU5Mzg1Mzg= - number: 449 + node_id: MDU6SXNzdWU4MDQ1ODIxOTQ= + number: 534 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Creating issues in Github fails with TypeError: ''NoneType'' object - is not iterable' - updated_at: '2020-08-13T07:00:04Z' - url: https://api.github.com/repos/packit/ogr/issues/449 + title: Add a link to documentation to README + updated_at: '2021-03-12T17:37:21Z' + url: https://api.github.com/repos/packit/ogr/issues/534 user: - avatar_url: https://avatars2.githubusercontent.com/in/12637?v=4 - events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers - following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/gists{/gist_id} + 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/apps/sentry-io - id: 39604003 - login: sentry-io[bot] - node_id: MDM6Qm90Mzk2MDQwMDM= - organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events - repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/sentry-io%5Bbot%5D - - active_lock_reason: null + 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.11658 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:26 GMT + ETag: W/"e32a47040fa52be754996e5194b9241c2542d78e13adcca0515029fc9d48c9aa" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 85EE:7CFE:F7F822:191ACCA:6075DC3A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4736' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '264' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/535: + - metadata: + latency: 0.20253944396972656 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "and ideally link it with pull request and git project\r\n\r\nThe\ - \ expectation here is that when ogr returns name of a branch, it would\ - \ return a GitBranch instance instead.\r\n\r\nThe class should contain\ - \ at minimum:\r\n* name\r\n* be linked to a repository\r\n\r\nWould\ - \ be nice if:\r\n* there was a connection to a PR if there is one\r\n\ - * datetime it was created\r\n* datetime of last change" + body: "Currently we use [pdoc3](https://pypi.org/project/pdoc3/) to generate\ + \ our documentation, it would be in our interest to switch to original\ + \ project [pdoc](https://pypi.org/project/pdoc/), since it provides\ + \ built-in search feature and cleaner UI.\r\n\r\nCurrently can't be\ + \ used since there is a failure while parsing our source files.\r\n\r\ + \nFollow-up of #531" closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/359/comments - created_at: '2020-03-23T12:36:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/359/events - html_url: https://github.com/packit/ogr/issues/359 - id: 586176845 + closed_by: null + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/535/comments + created_at: '2021-02-09T14:12:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/535/events + html_url: https://github.com/packit/ogr/issues/535 + id: 804588067 labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 8be567 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/359/labels{/name} + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/535/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODYxNzY4NDU= - number: 359 + node_id: MDU6SXNzdWU4MDQ1ODgwNjc= + number: 535 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: introduce a class for a git branch - updated_at: '2020-08-10T09:23:58Z' - url: https://api.github.com/repos/packit/ogr/issues/359 + title: Transition to pdoc from pdoc3 + updated_at: '2021-02-09T14:12:22Z' + url: https://api.github.com/repos/packit/ogr/issues/535 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek - - active_lock_reason: null + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.202376 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:41 GMT + ETag: W/"779aedfa3597a1877418d3f560c5b291343dd30139ee40d16921d446ef85e0c6" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 85EE:7CFE:F7D561:1917587:6075DC0D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4955' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '45' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.1058344841003418 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "and ideally link it with pull request, branch, author and git project\r\ - \n\r\nThe expectation here is that when ogr returns a commit has, it\ - \ would return a GitCommit instance instead.\r\n\r\nThe class should\ - \ contain at minimum:\r\n* sha\r\n* be linked to a repository\r\n* author\r\ - \n* datetime it was created\r\n* subject\r\n* body\r\n* branch it's\ - \ on\r\n\r\n@lachmanfrantisek added links to the documentation:\r\n\ - - Github:\r\n - https://pygithub.readthedocs.io/en/latest/examples/Commit.html\r\ - \n - https://pygithub.readthedocs.io/en/latest/github_objects/Commit.html\r\ - \n - https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.get_commits\r\ - \n - https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.merge_commit_sha\ - \ (?)\r\n- Gitlab:\r\n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html\r\ - \n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\ - \ -> `List commits of a MR:`\r\n- Pagure:\r\n - https://src.fedoraproject.org/api/0/\ - \ -> `Pull-request information`" + body: "Currently we use [pdoc3](https://pypi.org/project/pdoc3/) to generate\ + \ our documentation, it would be in our interest to switch to original\ + \ project [pdoc](https://pypi.org/project/pdoc/), since it provides\ + \ built-in search feature and cleaner UI.\r\n\r\nCurrently can't be\ + \ used since there is a failure while parsing our source files.\r\n\r\ + \nFollow-up of #531" closed_at: null - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/360/comments - created_at: '2020-03-23T12:38:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/360/events - html_url: https://github.com/packit/ogr/issues/360 - id: 586178020 + closed_by: null + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/535/comments + created_at: '2021-02-09T14:12:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/535/events + html_url: https://github.com/packit/ogr/issues/535 + id: 804588067 labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 8be567 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/360/labels{/name} + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/535/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODYxNzgwMjA= - number: 360 + node_id: MDU6SXNzdWU4MDQ1ODgwNjc= + number: 535 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: introduce a new class for GitCommit - updated_at: '2020-08-10T09:23:51Z' - url: https://api.github.com/repos/packit/ogr/issues/360 + title: Transition to pdoc from pdoc3 + updated_at: '2021-02-09T14:12:22Z' + url: https://api.github.com/repos/packit/ogr/issues/535 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek - - active_lock_reason: null + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.105668 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:09 GMT + ETag: W/"779aedfa3597a1877418d3f560c5b291343dd30139ee40d16921d446ef85e0c6" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 85EE:7CFE:F81E7D:191E716:6075DC65 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4521' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '479' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/54: + - metadata: + latency: 0.20140790939331055 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "* [ ] Project\r\n* [ ] Service (**don't** include secrets)\r\n\ - * [ ] Release\r\n* [ ] PR\r\n* [ ] Issue" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/365/comments - created_at: '2020-03-25T13:23:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/365/events - html_url: https://github.com/packit/ogr/issues/365 - id: 587692896 + author_association: CONTRIBUTOR + body: "we need this in packit this sprint when we start building in copr\r\ + \n\r\nthis should be implemented soonish and land in next release\r\n\ + \r\nrelevant code for github:\r\nhttps://github.com/packit-service/packit/blob/04793f16d5ced27b5e7fec7d963d650b065a4276/packit/watcher.py#L94" + closed_at: '2019-06-25T07:31:05Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/54/comments + created_at: '2019-04-04T14:24:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/54/events + html_url: https://github.com/packit/ogr/issues/54 + id: 429309114 labels: - color: a2eeef default: false @@ -60934,40 +60987,19 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/365/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/54/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODc2OTI4OTY= - number: 365 + node_id: MDU6SXNzdWU0MjkzMDkxMTQ= + number: 54 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: add __repr__ to classes - updated_at: '2020-08-10T09:23:44Z' - url: https://api.github.com/repos/packit/ogr/issues/365 + state: closed + title: add a way to set check results for a commit + updated_at: '2019-06-25T07:31:05Z' + url: https://api.github.com/repos/packit/ogr/issues/54 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -60985,386 +61017,179 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `The distgit repository /tmp/packit-dist-gitwfi22npg is dirty.This - is not supported.` | - - | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.12.1.tar.gz. - Reason: ''Not Found''. ` | - - | `master` | `The distgit repository /tmp/packit-dist-gitwfi22npg is - dirty.This is not supported.` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-08-09T16:57:04Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/423/comments - created_at: '2020-05-27T13:46:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/423/events - html_url: https://github.com/packit/ogr/issues/423 - id: 625711319 - labels: - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/423/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MjU3MTEzMTk= - number: 423 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[packit] Propose update failed for release 0.12.1' - updated_at: '2020-08-09T16:57:04Z' - url: https://api.github.com/repos/packit/ogr/issues/423 - user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - - active_lock_reason: null + _next: null + elapsed: 0.201248 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:22 GMT + ETag: W/"0d9ce5674f2349271cb9b36545162750aedb0a27b3aeba31c045fafd45adba7f" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F7F4DE:191A77C:6075DC36 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4757' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '243' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.4037132263183594 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Making create_issue uniform\ - \ by adding labels\n* Add support to create private issue\n* Fix getting\ - \ the installation ID after PyGithub 1.52\n* Org rename: fix integration\ - \ tests\n* zuul: org rename\n* request access to project on Gitlab\n\ - * Support add group for pagure\n* Revert \"Drop python 3.6\"\n* Update\ - \ ogr/utils.py\n* Remove unused util functions\n* Refactor using sourcery\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.13.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2020-08-07T09:09:02Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/447/comments - created_at: '2020-08-05T14:20:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/447/events - html_url: https://github.com/packit/ogr/pull/447 - id: 673578649 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/447/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDYzNDE2MTE4 - number: 447 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/447.diff - html_url: https://github.com/packit/ogr/pull/447 - patch_url: https://github.com/packit/ogr/pull/447.patch - url: https://api.github.com/repos/packit/ogr/pulls/447 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.13.0 release - updated_at: '2020-08-07T11:19:04Z' - url: https://api.github.com/repos/packit/ogr/issues/447 - user: - avatar_url: https://avatars1.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} + author_association: CONTRIBUTOR + body: "we need this in packit this sprint when we start building in copr\r\ + \n\r\nthis should be implemented soonish and land in next release\r\n\ + \r\nrelevant code for github:\r\nhttps://github.com/packit-service/packit/blob/04793f16d5ced27b5e7fec7d963d650b065a4276/packit/watcher.py#L94" + closed_at: '2019-06-25T07:31:05Z' + closed_by: + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos 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 + 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/usercont-release-bot - - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `The distgit repository /tmp/packit-dist-git9pvi9zgh is dirty.This - is not supported.` | - - | `f32` | `The distgit repository /tmp/packit-dist-git9pvi9zgh is dirty.This - is not supported.` | - - | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.13.0.tar.gz. - Reason: ''Not Found''. ` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: null - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/448/comments - created_at: '2020-08-07T09:12:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/448/events - html_url: https://github.com/packit/ogr/issues/448 - id: 674879684 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/448/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2NzQ4Nzk2ODQ= - number: 448 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: '[packit] Propose update failed for release 0.13.0' - updated_at: '2020-08-07T09:12:33Z' - url: https://api.github.com/repos/packit/ogr/issues/448 - user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-08-05T14:20:46Z' + url: https://api.github.com/users/lachmanfrantisek comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/446/comments - created_at: '2020-08-05T14:16:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/446/events - html_url: https://github.com/packit/ogr/issues/446 - id: 673575463 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/446/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2NzM1NzU0NjM= - number: 446 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: New minor release - updated_at: '2020-08-05T14:20:46Z' - url: https://api.github.com/repos/packit/ogr/issues/446 - user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos - site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "- [x] Gitlab - Private issues are known as confidential issues\r\ - \n- [x] Github - Does not support private/confidential issues. (raised\ - \ an error here)\r\n- [x] Pagure" - closed_at: '2020-08-05T10:19:34Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/441/comments - created_at: '2020-07-30T14:00:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/441/events - html_url: https://github.com/packit/ogr/pull/441 - id: 668760747 + comments_url: https://api.github.com/repos/packit/ogr/issues/54/comments + created_at: '2019-04-04T14:24:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/54/events + html_url: https://github.com/packit/ogr/issues/54 + id: 429309114 labels: - - color: 0e8a16 + - color: a2eeef default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/441/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/54/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDU5MjA4ODA5 - number: 441 + node_id: MDU6SXNzdWU0MjkzMDkxMTQ= + number: 54 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/441.diff - html_url: https://github.com/packit/ogr/pull/441 - patch_url: https://github.com/packit/ogr/pull/441.patch - url: https://api.github.com/repos/packit/ogr/pulls/441 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add support to create private issues. - updated_at: '2020-08-05T10:19:34Z' - url: https://api.github.com/repos/packit/ogr/issues/441 + title: add a way to set check results for a commit + updated_at: '2019-06-25T07:31:05Z' + url: https://api.github.com/repos/packit/ogr/issues/54 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi + url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.403548 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="next", ; - rel="last" + Date: Tue, 13 Apr 2021 18:01:04 GMT + ETag: W/"0d9ce5674f2349271cb9b36545162750aedb0a27b3aeba31c045fafd45adba7f" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8186E:191DE1B:6075DC60 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4547' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '453' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues?state=closed&sort=updated&direction=desc: + https://api.github.com:443/repos/packit/ogr/issues/540: - metadata: - latency: 0.6083436012268066 + latency: 0.1991891860961914 module_call_list: - unittest.case - requre.online_replacing - tests.integration.github.test_issues - ogr.services.github.project - ogr.services.github.issue - - github.PaginatedList + - github.Issue + - github.GithubObject - github.Requester - requests.sessions - requre.objects @@ -61374,45 +61199,114 @@ requests.sessions: output: __store_indicator: 2 _content: - - active_lock_reason: null + active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- [x] Interface for token manager using github app\r\n- [x] Refactor\ - \ default solution\r\n- [x] Implement support for `tokman`" - closed_at: '2020-08-25T09:31:39Z' - comments: 18 - comments_url: https://api.github.com/repos/packit/ogr/issues/450/comments - created_at: '2020-08-11T09:16:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/450/events - html_url: https://github.com/packit/ogr/pull/450 - id: 676716034 + body: "```py\r\n def get_latest_release(self) -> Release:\r\n```\r\n\ + \r\nIn case that no release exists, I'd expect to get `None` instead\ + \ of being smacked in face with exception.\r\n\r\n- GitHub throws 404\ + \ Exception\r\n- GitLab throws IndexError\r\n\r\nAction items:\r\n-\ + \ [ ] Switch return type from `Release` to `Optional[Release]`\r\n-\ + \ [ ] Update implementation to check for such situation\r\n\r\nCould\ + \ be used in refactor for packit/packit-service#985, currently is a\ + \ blocker, since we need to check non-existing release there." + closed_at: '2021-02-22T10:07:03Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/540/comments + created_at: '2021-02-18T11:00:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/540/events + html_url: https://github.com/packit/ogr/issues/540 + id: 810992567 labels: - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/450/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/540/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDY1OTc3NzQ2 - number: 450 + node_id: MDU6SXNzdWU4MTA5OTI1Njc= + number: 540 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/450.diff - html_url: https://github.com/packit/ogr/pull/450 - patch_url: https://github.com/packit/ogr/pull/450.patch - url: https://api.github.com/repos/packit/ogr/pulls/450 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Use tokman in ogr - updated_at: '2020-08-25T17:28:39Z' - url: https://api.github.com/repos/packit/ogr/issues/450 + title: '`get_latest_release` when no release exists' + updated_at: '2021-02-22T10:07:03Z' + url: https://api.github.com/repos/packit/ogr/issues/540 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -61430,338 +61324,2271 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: changed description - closed_at: '2018-12-13T14:24:08Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/1/comments - created_at: '2018-12-13T13:01:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/1/events - html_url: https://github.com/packit/ogr/pull/1 - id: 390668872 - labels: - - color: ededed - default: false - description: null - id: 1457192587 - name: test_lb1 - node_id: MDU6TGFiZWwxNDU3MTkyNTg3 - url: https://api.github.com/repos/packit/ogr/labels/test_lb1 - - color: ededed - default: false - description: null - id: 1457192593 - name: test_lb2 - node_id: MDU6TGFiZWwxNDU3MTkyNTkz - url: https://api.github.com/repos/packit/ogr/labels/test_lb2 - labels_url: https://api.github.com/repos/packit/ogr/issues/1/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjM4MzgxNzIz - number: 1 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/1.diff - html_url: https://github.com/packit/ogr/pull/1 - patch_url: https://github.com/packit/ogr/pull/1.patch - url: https://api.github.com/repos/packit/ogr/pulls/1 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'WIP: API' - updated_at: '2020-08-21T07:51:37Z' - url: https://api.github.com/repos/packit/ogr/issues/1 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null + _next: null + elapsed: 0.199014 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:40 GMT + ETag: W/"08055198b69a13cf95512e4c8f1e6db2c0e13b9bb3aec28e6df95d4fb0dd2e1b" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 85EE:7CFE:F7D488:191744B:6075DC0C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4961' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '39' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.12200379371643066 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "The `ogr` is a nice, short name, but the 'meaning' should be changed.\r\ - \n\r\nFeel free to edit this comment.\r\n\r\n| O | G | R |\r\n| - |\ - \ - | - |\r\n| our | git | rule |\r\n| one | git-forge | revolution\ - \ |\r\n| open | | rebellion |\r\n| object | | realm |\r\n| only | |\ - \ route |\r\n| omnipotent | | rocket |\r\n| | | recipe |\r\n| | | rainbow\ - \ |\r\n| | | roadway |\r\n| | | reactor |\r\n| | | reunion |\r\n| |\ - \ | rebel |\r\n| | | ruler |\r\n\r\nPossible combinations (and votes):\r\ - \n- our-git-rebel @phracek \r\n- open-git-rainbow @phracek @TomasTomecek\ - \ \r\n- object-git-reactor @phracek \r\n- the [O]ne [G]it [R]uler @TomasTomecek\ - \ \r\n- [O]ne [G]it library to [R]ule @TomasTomecek @jpopelka\r\n- [O]mniponent\ - \ [G]it-forge [R]uler @jpopelka @lachmanfrantisek @TomasTomecek " - closed_at: '2019-02-14T13:28:27Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/4/comments - created_at: '2019-01-17T08:26:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/4/events - html_url: https://github.com/packit/ogr/issues/4 - id: 400160755 - labels: - - color: ededed - default: false - description: null - id: 1457192587 - name: test_lb1 - node_id: MDU6TGFiZWwxNDU3MTkyNTg3 - url: https://api.github.com/repos/packit/ogr/labels/test_lb1 - - color: ededed - default: false - description: null - id: 1457192593 - name: test_lb2 - node_id: MDU6TGFiZWwxNDU3MTkyNTkz - url: https://api.github.com/repos/packit/ogr/labels/test_lb2 - labels_url: https://api.github.com/repos/packit/ogr/issues/4/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0MDAxNjA3NTU= - number: 4 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Better name - updated_at: '2020-08-21T07:51:33Z' - url: https://api.github.com/repos/packit/ogr/issues/4 - user: - avatar_url: https://avatars1.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} + body: "```py\r\n def get_latest_release(self) -> Release:\r\n```\r\n\ + \r\nIn case that no release exists, I'd expect to get `None` instead\ + \ of being smacked in face with exception.\r\n\r\n- GitHub throws 404\ + \ Exception\r\n- GitLab throws IndexError\r\n\r\nAction items:\r\n-\ + \ [ ] Switch return type from `Release` to `Optional[Release]`\r\n-\ + \ [ ] Update implementation to check for such situation\r\n\r\nCould\ + \ be used in refactor for packit/packit-service#985, currently is a\ + \ blocker, since we need to check non-existing release there." + closed_at: '2021-02-22T10:07:03Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* https://github.com/packit-service\ - \ -> https://github.com/packit\n* Add Jupyter examples\n* fix create\ - \ issue in Github and add test\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.13.1-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-08-20T07:58:30Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/455/comments - created_at: '2020-08-19T11:07:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/455/events - html_url: https://github.com/packit/ogr/pull/455 - id: 681753984 + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/540/comments + created_at: '2021-02-18T11:00:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/540/events + html_url: https://github.com/packit/ogr/issues/540 + id: 810992567 labels: - - color: ededed + - color: '000000' default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/455/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/540/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDcwMDkyNTEx - number: 455 + node_id: MDU6SXNzdWU4MTA5OTI1Njc= + number: 540 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/455.diff - html_url: https://github.com/packit/ogr/pull/455 - patch_url: https://github.com/packit/ogr/pull/455.patch - url: https://api.github.com/repos/packit/ogr/pulls/455 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.13.1 release - updated_at: '2020-08-20T08:04:32Z' - url: https://api.github.com/repos/packit/ogr/issues/455 + title: '`get_latest_release` when no release exists' + updated_at: '2021-02-22T10:07:03Z' + url: https://api.github.com/repos/packit/ogr/issues/540 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos 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 + 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/usercont-release-bot - - active_lock_reason: null + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.121655 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:27 GMT + ETag: W/"08055198b69a13cf95512e4c8f1e6db2c0e13b9bb3aec28e6df95d4fb0dd2e1b" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 85EE:7CFE:F7F885:191AD5F:6075DC3B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4732' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '268' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/545: + - metadata: + latency: 0.2025279998779297 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-08-19T11:07:53Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/454/comments - created_at: '2020-08-19T11:02:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/454/events - html_url: https://github.com/packit/ogr/issues/454 - id: 681751158 + author_association: CONTRIBUTOR + body: "I believe this is a flake but wanna make sure it's not an actual\ + \ bug. The logs are coming from [a sandcastle CI run](https://github.com/packit/sandcastle/pull/104#issuecomment-784432707).\r\ + \n```\r\n2021-02-23 18:55:03.228152 | test-node | E sandcastle.exceptions.SandcastleCommandFailed:\ + \ Command failed (rc=2, reason={\"metadata\":{},\"status\":\"Failure\"\ + ,\"message\":\"command terminated with non-zero exit code: Error executing\ + \ in Docker Container: 2\",\"reason\":\"NonZeroExitCode\",\"details\"\ + :{\"causes\":[{\"reason\":\"ExitCode\",\"message\":\"2\"}]}})\r\n2021-02-23\ + \ 18:55:03.228239 | test-node | E 18:42:55.563 config.py DEBUG\ + \ Loading user config from directory: /home/sandcastle/.config\r\n\ + 2021-02-23 18:55:03.228250 | test-node | E 18:42:55.564 config.py \ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.yaml\r\ + \n2021-02-23 18:55:03.228256 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.yml\r\ + \n2021-02-23 18:55:03.228263 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.json\r\ + \n2021-02-23 18:55:03.228269 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.yaml\r\ + \n2021-02-23 18:55:03.228275 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.yml\r\ + \n2021-02-23 18:55:03.228281 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.json\r\ + \n2021-02-23 18:55:03.228310 | test-node | E 18:42:55.572 config.py\ + \ DEBUG Loaded config: Config(debug='False', fas_user='None',\ + \ keytab_path='None', upstream_git_remote='None', command_handler='RunCommandType.local',\ + \ command_handler_work_dir='/sandcastle', command_handler_pvc_env_var='SANDCASTLE_PVC',\ + \ command_handler_image_reference='docker.io/usercont/sandcastle', command_handler_k8s_namespace='myproject')\r\ + \n2021-02-23 18:55:03.228383 | test-node | E 18:42:55.572 logging.py\ + \ DEBUG Logging set to DEBUG\r\n2021-02-23 18:55:03.228398 |\ + \ test-node | E 18:42:55.574 packit_base.py DEBUG Packit 0.24.0\ + \ is being used.\r\n2021-02-23 18:55:03.228404 | test-node | E 18:42:55.574\ + \ types.py DEBUG Input is a directory: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902\r\ + \n2021-02-23 18:55:03.228420 | test-node | E 18:42:55.575 local_project.py\ + \ DEBUG Arguments received in the init method of the LocalProject\ + \ class:\r\n2021-02-23 18:55:03.228426 | test-node | E git_repo: None\r\ + \n2021-02-23 18:55:03.228433 | test-node | E working_dir: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902\r\ + \n2021-02-23 18:55:03.228439 | test-node | E ref: None\r\n2021-02-23\ + \ 18:55:03.228445 | test-node | E git_project: None\r\n2021-02-23 18:55:03.228451\ + \ | test-node | E git_service: None\r\n2021-02-23 18:55:03.228458 |\ + \ test-node | E git_url:\r\n2021-02-23 18:55:03.228464 | test-node\ + \ | E full_name:\r\n2021-02-23 18:55:03.228470 | test-node | E namespace:\r\ + \n2021-02-23 18:55:03.228476 | test-node | E repo_name:\r\n2021-02-23\ + \ 18:55:03.228482 | test-node | E offline: False\r\n2021-02-23 18:55:03.228488\ + \ | test-node | E refresh True\r\n2021-02-23 18:55:03.228494 | test-node\ + \ | E remote: None\r\n2021-02-23 18:55:03.228501 | test-node | E pr_id:\ + \ None\r\n2021-02-23 18:55:03.228507 | test-node | E\r\n2021-02-23 18:55:03.228559\ + \ | test-node | E 18:42:55.575 local_project.py DEBUG `working_dir`\ + \ is set and `git_repo` is not: let's discover...\r\n2021-02-23 18:55:03.228607\ + \ | test-node | E 18:42:55.575 local_project.py DEBUG It's a git\ + \ repo!\r\n2021-02-23 18:55:03.228615 | test-node | E 18:42:55.577\ + \ local_project.py DEBUG Parsed ref 'main' from the repo .\r\ + \n2021-02-23 18:55:03.228630 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed remote url 'https://github.com/packit/ogr.git' from\ + \ the repo .\r\ + \n2021-02-23 18:55:03.228651 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed namespace and repo name (packit, ogr) from url 'https://github.com/packit/ogr.git'.\r\ + \n2021-02-23 18:55:03.228660 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed full repo name 'packit/ogr'.\r\n2021-02-23 18:55:03.228666\ + \ | test-node | E 18:42:55.578 package_config.py DEBUG Local package\ + \ config found: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/.packit.yaml\r\ + \n2021-02-23 18:55:03.228673 | test-node | E 18:42:55.590 package_config.py\ + \ DEBUG Local spec files found: [PosixPath('fedora/python-ogr.spec')].\ + \ Taking: fedora/python-ogr.spec\r\n2021-02-23 18:55:03.228679 | test-node\ + \ | E 18:42:55.591 package_config.py DEBUG Package config:\r\n2021-02-23\ + \ 18:55:03.228685 | test-node | E {\r\n2021-02-23 18:55:03.228692 |\ + \ test-node | E \"specfile_path\": \"fedora/python-ogr.spec\",\r\ + \n2021-02-23 18:55:03.228698 | test-node | E \"synced_files\":\ + \ [\r\n2021-02-23 18:55:03.228720 | test-node | E \"fedora/changelog\"\ + \r\n2021-02-23 18:55:03.228728 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.228735 | test-node | E \"downstream_package_name\":\ + \ \"python-ogr\",\r\n2021-02-23 18:55:03.228741 | test-node | E \ + \ \"upstream_project_url\": \"https://github.com/packit/ogr\",\r\n\ + 2021-02-23 18:55:03.228747 | test-node | E \"upstream_package_name\"\ + : \"ogr\",\r\n2021-02-23 18:55:03.228754 | test-node | E \"copy_upstream_release_description\"\ + : true,\r\n2021-02-23 18:55:03.228760 | test-node | E \"actions\"\ + : {\r\n2021-02-23 18:55:03.228766 | test-node | E \"create-archive\"\ + : [\r\n2021-02-23 18:55:03.228772 | test-node | E \"python3\ + \ setup.py sdist --dist-dir ./fedora/\",\r\n2021-02-23 18:55:03.228786\ + \ | test-node | E \"bash -c \\\"ls -1t ./fedora/*.tar.gz\ + \ | head -n 1\\\"\"\r\n2021-02-23 18:55:03.228793 | test-node | E \ + \ ],\r\n2021-02-23 18:55:03.228799 | test-node | E \"\ + get-current-version\": \"python3 setup.py --version\"\r\n2021-02-23\ + \ 18:55:03.228805 | test-node | E },\r\n2021-02-23 18:55:03.228811\ + \ | test-node | E \"jobs\": [\r\n2021-02-23 18:55:03.228818 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.228824 | test-node | E \ + \ \"job\": \"sync_from_downstream\",\r\n2021-02-23 18:55:03.228967\ + \ | test-node | E \"trigger\": \"commit\"\r\n2021-02-23\ + \ 18:55:03.229025 | test-node | E },\r\n2021-02-23 18:55:03.229032\ + \ | test-node | E {\r\n2021-02-23 18:55:03.229039 | test-node\ + \ | E \"job\": \"propose_downstream\",\r\n2021-02-23 18:55:03.229045\ + \ | test-node | E \"trigger\": \"release\",\r\n2021-02-23\ + \ 18:55:03.229051 | test-node | E \"metadata\": {\r\n2021-02-23\ + \ 18:55:03.229058 | test-node | E \"dist_git_branches\"\ + : [\r\n2021-02-23 18:55:03.229064 | test-node | E \ + \ \"fedora-all\",\r\n2021-02-23 18:55:03.229070 | test-node | E \ + \ \"epel-8\"\r\n2021-02-23 18:55:03.229076 | test-node\ + \ | E ]\r\n2021-02-23 18:55:03.229082 | test-node |\ + \ E }\r\n2021-02-23 18:55:03.229089 | test-node | E \ + \ },\r\n2021-02-23 18:55:03.229095 | test-node | E {\r\ + \n2021-02-23 18:55:03.229101 | test-node | E \"job\": \"\ + copr_build\",\r\n2021-02-23 18:55:03.229107 | test-node | E \ + \ \"trigger\": \"pull_request\",\r\n2021-02-23 18:55:03.229114\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229120\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229126\ + \ | test-node | E \"fedora-all\",\r\n2021-02-23\ + \ 18:55:03.229132 | test-node | E \"epel-8\"\r\n\ + 2021-02-23 18:55:03.229138 | test-node | E ]\r\n2021-02-23\ + \ 18:55:03.229147 | test-node | E }\r\n2021-02-23 18:55:03.229185\ + \ | test-node | E },\r\n2021-02-23 18:55:03.229207 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.229217 | test-node | E \ + \ \"job\": \"tests\",\r\n2021-02-23 18:55:03.229237 | test-node\ + \ | E \"trigger\": \"pull_request\",\r\n2021-02-23 18:55:03.229245\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229252\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229258\ + \ | test-node | E \"fedora-all\",\r\n2021-02-23\ + \ 18:55:03.229264 | test-node | E \"epel-8\"\r\n\ + 2021-02-23 18:55:03.229270 | test-node | E ]\r\n2021-02-23\ + \ 18:55:03.229276 | test-node | E }\r\n2021-02-23 18:55:03.229282\ + \ | test-node | E },\r\n2021-02-23 18:55:03.229289 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.229303 | test-node | E \ + \ \"job\": \"production_build\",\r\n2021-02-23 18:55:03.229310\ + \ | test-node | E \"trigger\": \"pull_request\",\r\n2021-02-23\ + \ 18:55:03.229316 | test-node | E \"metadata\": {\r\n2021-02-23\ + \ 18:55:03.229322 | test-node | E \"scratch\": true,\r\ + \n2021-02-23 18:55:03.229328 | test-node | E \"targets\"\ + : [\r\n2021-02-23 18:55:03.229334 | test-node | E \ + \ \"fedora-development\"\r\n2021-02-23 18:55:03.229349 | test-node\ + \ | E ]\r\n2021-02-23 18:55:03.229355 | test-node |\ + \ E }\r\n2021-02-23 18:55:03.229362 | test-node | E \ + \ },\r\n2021-02-23 18:55:03.229368 | test-node | E {\r\ + \n2021-02-23 18:55:03.229374 | test-node | E \"job\": \"\ + copr_build\",\r\n2021-02-23 18:55:03.229380 | test-node | E \ + \ \"trigger\": \"commit\",\r\n2021-02-23 18:55:03.229386 | test-node\ + \ | E \"metadata\": {\r\n2021-02-23 18:55:03.229392 | test-node\ + \ | E \"branch\": \"master\",\r\n2021-02-23 18:55:03.229399\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229405\ + \ | test-node | E \"fedora-stable\"\r\n2021-02-23\ + \ 18:55:03.229411 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.229417 | test-node | E \"project\": \"packit-master\"\ + ,\r\n2021-02-23 18:55:03.229423 | test-node | E \"\ + list_on_homepage\": true,\r\n2021-02-23 18:55:03.229430 | test-node\ + \ | E \"preserve_project\": true\r\n2021-02-23 18:55:03.229436\ + \ | test-node | E }\r\n2021-02-23 18:55:03.229442 | test-node\ + \ | E },\r\n2021-02-23 18:55:03.229448 | test-node | E \ + \ {\r\n2021-02-23 18:55:03.229454 | test-node | E \ + \ \"job\": \"copr_build\",\r\n2021-02-23 18:55:03.229461 | test-node\ + \ | E \"trigger\": \"release\",\r\n2021-02-23 18:55:03.229467\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229473\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229479\ + \ | test-node | E \"fedora-stable\"\r\n2021-02-23\ + \ 18:55:03.229485 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.229518 | test-node | E \"project\": \"packit-releases\"\ + ,\r\n2021-02-23 18:55:03.229556 | test-node | E \"\ + list_on_homepage\": true,\r\n2021-02-23 18:55:03.229567 | test-node\ + \ | E \"preserve_project\": true\r\n2021-02-23 18:55:03.229601\ + \ | test-node | E }\r\n2021-02-23 18:55:03.229608 | test-node\ + \ | E }\r\n2021-02-23 18:55:03.229614 | test-node | E \ + \ ]\r\n2021-02-23 18:55:03.229620 | test-node | E }\r\n2021-02-23 18:55:03.230131\ + \ | test-node | E 18:42:55.594 package_config.py DEBUG PackageConfig(config_file_path='.packit.yaml',\ + \ specfile_path='fedora/python-ogr.spec', synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', jobs='[JobConfig(job=JobType.sync_from_downstream,\ + \ trigger=JobConfigTriggerType.commit, meta=JobMetadataConfig(targets=set(),\ + \ timeout=7200, owner=None, project=None, dist_git_branches=set(), branch=None,\ + \ scratch=False, list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.propose_downstream, trigger=JobConfigTriggerType.release,\ + \ meta=JobMetadataConfig(targets=set(), timeout=7200, owner=None, project=None,\ + \ dist_git_branches={'epel-8', 'fedora-all'}, branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'epel-8', 'fedora-all'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.tests, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'epel-8', 'fedora-all'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.production_build, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'fedora-development'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=True,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.commit,\ + \ meta=JobMetadataConfig(targets={'fedora-stable'}, timeout=7200, owner=None,\ + \ project=packit-master, dist_git_branches=set(), branch=master, scratch=False,\ + \ list_on_homepage=True, preserve_project=True, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.release,\ + \ meta=JobMetadataConfig(targets={'fedora-stable'}, timeout=7200, owner=None,\ + \ project=packit-releases, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=True, preserve_project=True, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True')]',\ + \ dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', archive_root_dir_template={upstream_pkg_name}-{version}',\ + \ patch_generation_ignore_paths='[]', copy_upstream_release_description='True')\r\ + \n2021-02-23 18:55:03.230260 | test-node | E 18:42:55.604 utils.py\ + \ DEBUG Input directory is an upstream repository.\r\n2021-02-23\ + \ 18:55:03.230290 | test-node | E 18:42:55.604 base_git.py DEBUG\ + \ Running ActionName.post_upstream_clone hook.\r\n2021-02-23 18:55:03.230298\ + \ | test-node | E 18:42:55.604 base_git.py DEBUG Running ActionName.post_upstream_clone.\r\ + \n2021-02-23 18:55:03.230305 | test-node | E 18:42:55.605 base_git.py\ + \ DEBUG Running default implementation for ActionName.post_upstream_clone.\r\ + \n2021-02-23 18:55:03.230312 | test-node | E Using user-defined script\ + \ for ActionName.get_current_version: [['python3', 'setup.py', '--version']]\r\ + \n2021-02-23 18:55:03.230318 | test-node | E 18:42:55.605 base_git.py\ + \ DEBUG Command handler: RunCommandType.local\r\n2021-02-23 18:55:03.230383\ + \ | test-node | E 18:42:55.605 commands.py DEBUG Command: python3\ + \ setup.py --version\r\n2021-02-23 18:55:03.230439 | test-node | E \ + \ WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None,\ + \ status=None)) after connection broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230479 | test-node | E WARNING: Retrying (Retry(total=3,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230504 | test-node | E WARNING: Retrying (Retry(total=2,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230515 | test-node | E WARNING: Retrying (Retry(total=1,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230525 | test-node | E WARNING: Retrying (Retry(total=0,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230597 | test-node | E ERROR: Exception:\r\n\ + 2021-02-23 18:55:03.230624 | test-node | E Traceback (most recent call\ + \ last):\r\n2021-02-23 18:55:03.230637 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 381, in _make_request\r\n2021-02-23 18:55:03.230655 | test-node\ + \ | E self._validate_conn(conn)\r\n2021-02-23 18:55:03.230665 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 976, in _validate_conn\r\n2021-02-23 18:55:03.230684 | test-node\ + \ | E conn.connect()\r\n2021-02-23 18:55:03.230711 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py\"\ + , line 361, in connect\r\n2021-02-23 18:55:03.230724 | test-node | E\ + \ self.sock = ssl_wrap_socket(\r\n2021-02-23 18:55:03.230733 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py\"\ + , line 377, in ssl_wrap_socket\r\n2021-02-23 18:55:03.230743 | test-node\ + \ | E return context.wrap_socket(sock, server_hostname=server_hostname)\r\ + \n2021-02-23 18:55:03.230752 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 500, in wrap_socket\r\n2021-02-23 18:55:03.230761 | test-node\ + \ | E return self.sslsocket_class._create(\r\n2021-02-23 18:55:03.230789\ + \ | test-node | E File \"/usr/lib64/python3.9/ssl.py\", line 1040,\ + \ in _create\r\n2021-02-23 18:55:03.230808 | test-node | E self.do_handshake()\r\ + \n2021-02-23 18:55:03.230831 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 1309, in do_handshake\r\n2021-02-23 18:55:03.230841 | test-node\ + \ | E self._sslobj.do_handshake()\r\n2021-02-23 18:55:03.230851\ + \ | test-node | E socket.timeout: _ssl.c:1106: The handshake operation\ + \ timed out\r\n2021-02-23 18:55:03.230879 | test-node | E\r\n2021-02-23\ + \ 18:55:03.230899 | test-node | E During handling of the above exception,\ + \ another exception occurred:\r\n2021-02-23 18:55:03.230909 | test-node\ + \ | E\r\n2021-02-23 18:55:03.230919 | test-node | E Traceback (most\ + \ recent call last):\r\n2021-02-23 18:55:03.230928 | test-node | E \ + \ File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 670, in urlopen\r\n2021-02-23 18:55:03.230937 | test-node | E\ + \ httplib_response = self._make_request(\r\n2021-02-23 18:55:03.230957\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 384, in _make_request\r\n2021-02-23 18:55:03.230983 | test-node\ + \ | E self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)\r\ + \n2021-02-23 18:55:03.230994 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 335, in _raise_timeout\r\n2021-02-23 18:55:03.231004 | test-node\ + \ | E raise ReadTimeoutError(\r\n2021-02-23 18:55:03.231031 | test-node\ + \ | E pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\r\n2021-02-23 18:55:03.231060\ + \ | test-node | E\r\n2021-02-23 18:55:03.231081 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.231090 | test-node | E\r\n2021-02-23 18:55:03.231100 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.231109\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 439, in send\r\n2021-02-23 18:55:03.231118 | test-node | E \ + \ resp = conn.urlopen(\r\n2021-02-23 18:55:03.231138 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231166 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231224 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231261 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231272 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231289 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231318 | test-node\ + \ | E [Previous line repeated 2 more times]\r\n2021-02-23 18:55:03.231347\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 724, in urlopen\r\n2021-02-23 18:55:03.231389 | test-node | E\ + \ retries = retries.increment(\r\n2021-02-23 18:55:03.231409 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py\"\ + , line 439, in increment\r\n2021-02-23 18:55:03.231418 | test-node |\ + \ E raise MaxRetryError(_pool, url, error or ResponseError(cause))\r\ + \n2021-02-23 18:55:03.231425 | test-node | E pip._vendor.urllib3.exceptions.MaxRetryError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.231432\ + \ | test-node | E\r\n2021-02-23 18:55:03.231438 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.231445 | test-node | E\r\n2021-02-23 18:55:03.231452 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.231458\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/base_command.py\"\ + , line 216, in _main\r\n2021-02-23 18:55:03.231465 | test-node | E \ + \ status = self.run(options, args)\r\n2021-02-23 18:55:03.231471\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/req_command.py\"\ + , line 182, in wrapper\r\n2021-02-23 18:55:03.231477 | test-node | E\ + \ return func(self, options, args)\r\n2021-02-23 18:55:03.231514\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/commands/wheel.py\"\ + , line 155, in run\r\n2021-02-23 18:55:03.231566 | test-node | E \ + \ requirement_set = resolver.resolve(\r\n2021-02-23 18:55:03.231604\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 184, in resolve\r\n2021-02-23 18:55:03.231611 | test-node | E\ + \ discovered_reqs.extend(self._resolve_one(requirement_set, req))\r\ + \n2021-02-23 18:55:03.231618 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 391, in _resolve_one\r\n2021-02-23 18:55:03.231624 | test-node\ + \ | E abstract_dist = self._get_abstract_dist_for(req_to_install)\r\ + \n2021-02-23 18:55:03.231631 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 343, in _get_abstract_dist_for\r\n2021-02-23 18:55:03.231656\ + \ | test-node | E abstract_dist = self.preparer.prepare_linked_requirement(req)\r\ + \n2021-02-23 18:55:03.231668 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 467, in prepare_linked_requirement\r\n2021-02-23 18:55:03.231675\ + \ | test-node | E local_file = unpack_url(\r\n2021-02-23 18:55:03.231681\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 255, in unpack_url\r\n2021-02-23 18:55:03.231688 | test-node\ + \ | E file = get_http_url(\r\n2021-02-23 18:55:03.231695 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 129, in get_http_url\r\n2021-02-23 18:55:03.231710 | test-node\ + \ | E from_path, content_type = _download_http_url(\r\n2021-02-23\ + \ 18:55:03.231716 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 278, in _download_http_url\r\n2021-02-23 18:55:03.231723 | test-node\ + \ | E download = downloader(link)\r\n2021-02-23 18:55:03.231730\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 170, in __call__\r\n2021-02-23 18:55:03.231736 | test-node |\ + \ E resp = _http_get_download(self._session, link)\r\n2021-02-23\ + \ 18:55:03.231743 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 139, in _http_get_download\r\n2021-02-23 18:55:03.231749 | test-node\ + \ | E resp = session.get(target_url, headers=HEADERS, stream=True)\r\ + \n2021-02-23 18:55:03.231756 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 543, in get\r\n2021-02-23 18:55:03.231763 | test-node | E \ + \ return self.request('GET', url, **kwargs)\r\n2021-02-23 18:55:03.231769\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/session.py\"\ + , line 421, in request\r\n2021-02-23 18:55:03.231775 | test-node | E\ + \ return super(PipSession, self).request(method, url, *args, **kwargs)\r\ + \n2021-02-23 18:55:03.231807 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 530, in request\r\n2021-02-23 18:55:03.231816 | test-node | E\ + \ resp = self.send(prep, **send_kwargs)\r\n2021-02-23 18:55:03.231823\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 643, in send\r\n2021-02-23 18:55:03.231829 | test-node | E \ + \ r = adapter.send(request, **kwargs)\r\n2021-02-23 18:55:03.231836\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py\"\ + , line 53, in send\r\n2021-02-23 18:55:03.231843 | test-node | E \ + \ resp = super(CacheControlAdapter, self).send(request, **kw)\r\n\ + 2021-02-23 18:55:03.231849 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 516, in send\r\n2021-02-23 18:55:03.231856 | test-node | E \ + \ raise ConnectionError(e, request=request)\r\n2021-02-23 18:55:03.231879\ + \ | test-node | E pip._vendor.requests.exceptions.ConnectionError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.231891\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.231898 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 128, in fetch_build_egg\r\n2021-02-23 18:55:03.231904 | test-node\ + \ | E subprocess.check_call(cmd)\r\n2021-02-23 18:55:03.231924\ + \ | test-node | E File \"/usr/lib64/python3.9/subprocess.py\", line\ + \ 373, in check_call\r\n2021-02-23 18:55:03.231936 | test-node | E \ + \ raise CalledProcessError(retcode, cmd)\r\n2021-02-23 18:55:03.231943\ + \ | test-node | E subprocess.CalledProcessError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.231970 | test-node\ + \ | E\r\n2021-02-23 18:55:03.231979 | test-node | E The above exception\ + \ was the direct cause of the following exception:\r\n2021-02-23 18:55:03.231991\ + \ | test-node | E\r\n2021-02-23 18:55:03.231998 | test-node | E Traceback\ + \ (most recent call last):\r\n2021-02-23 18:55:03.232005 | test-node\ + \ | E File \"/sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/setup.py\"\ + , line 5, in \r\n2021-02-23 18:55:03.232011 | test-node | E\ + \ setup(use_scm_version=True)\r\n2021-02-23 18:55:03.232018 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 164, in setup\r\n2021-02-23 18:55:03.232025 | test-node | E \ + \ _install_setup_requires(attrs)\r\n2021-02-23 18:55:03.232031 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 159, in _install_setup_requires\r\n2021-02-23 18:55:03.232039\ + \ | test-node | E dist.fetch_build_eggs(dist.setup_requires)\r\n\ + 2021-02-23 18:55:03.232052 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 699, in fetch_build_eggs\r\n2021-02-23 18:55:03.232084 | test-node\ + \ | E resolved_dists = pkg_resources.working_set.resolve(\r\n2021-02-23\ + \ 18:55:03.232102 | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 779, in resolve\r\n2021-02-23 18:55:03.232111 | test-node | E\ + \ dist = best[req.key] = env.best_match(\r\n2021-02-23 18:55:03.232121\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1064, in best_match\r\n2021-02-23 18:55:03.232130 | test-node\ + \ | E return self.obtain(req, installer)\r\n2021-02-23 18:55:03.232140\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1076, in obtain\r\n2021-02-23 18:55:03.232168 | test-node | E\ + \ return installer(requirement)\r\n2021-02-23 18:55:03.232217 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 758, in fetch_build_egg\r\n2021-02-23 18:55:03.232262 | test-node\ + \ | E return fetch_build_egg(self, req)\r\n2021-02-23 18:55:03.232274\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 130, in fetch_build_egg\r\n2021-02-23 18:55:03.232284 | test-node\ + \ | E raise DistutilsError(str(e)) from e\r\n2021-02-23 18:55:03.232312\ + \ | test-node | E distutils.errors.DistutilsError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.232333 | test-node\ + \ | E ERROR Command 'python3 setup.py --version' failed.\r\n2021-02-23\ + \ 18:55:03.232343 | test-node | E 18:44:34.521 commands.py DEBUG\ + \ Command stderr: WARNING: Retrying (Retry(total=4, connect=None,\ + \ read=None, redirect=None, status=None)) after connection broken by\ + \ 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232355 | test-node | E WARNING: Retrying (Retry(total=3,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232366 | test-node | E WARNING: Retrying (Retry(total=2,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232427 | test-node | E WARNING: Retrying (Retry(total=1,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232464 | test-node | E WARNING: Retrying (Retry(total=0,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232474 | test-node | E ERROR: Exception:\r\n\ + 2021-02-23 18:55:03.232481 | test-node | E Traceback (most recent call\ + \ last):\r\n2021-02-23 18:55:03.232487 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 381, in _make_request\r\n2021-02-23 18:55:03.232494 | test-node\ + \ | E self._validate_conn(conn)\r\n2021-02-23 18:55:03.232501 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 976, in _validate_conn\r\n2021-02-23 18:55:03.232508 | test-node\ + \ | E conn.connect()\r\n2021-02-23 18:55:03.232515 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py\"\ + , line 361, in connect\r\n2021-02-23 18:55:03.232522 | test-node | E\ + \ self.sock = ssl_wrap_socket(\r\n2021-02-23 18:55:03.232553 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py\"\ + , line 377, in ssl_wrap_socket\r\n2021-02-23 18:55:03.232566 | test-node\ + \ | E return context.wrap_socket(sock, server_hostname=server_hostname)\r\ + \n2021-02-23 18:55:03.232597 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 500, in wrap_socket\r\n2021-02-23 18:55:03.232605 | test-node\ + \ | E return self.sslsocket_class._create(\r\n2021-02-23 18:55:03.232612\ + \ | test-node | E File \"/usr/lib64/python3.9/ssl.py\", line 1040,\ + \ in _create\r\n2021-02-23 18:55:03.232619 | test-node | E self.do_handshake()\r\ + \n2021-02-23 18:55:03.232625 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 1309, in do_handshake\r\n2021-02-23 18:55:03.232632 | test-node\ + \ | E self._sslobj.do_handshake()\r\n2021-02-23 18:55:03.232638\ + \ | test-node | E socket.timeout: _ssl.c:1106: The handshake operation\ + \ timed out\r\n2021-02-23 18:55:03.232645 | test-node | E\r\n2021-02-23\ + \ 18:55:03.232651 | test-node | E During handling of the above exception,\ + \ another exception occurred:\r\n2021-02-23 18:55:03.232658 | test-node\ + \ | E\r\n2021-02-23 18:55:03.232678 | test-node | E Traceback (most\ + \ recent call last):\r\n2021-02-23 18:55:03.232689 | test-node | E \ + \ File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 670, in urlopen\r\n2021-02-23 18:55:03.232696 | test-node | E\ + \ httplib_response = self._make_request(\r\n2021-02-23 18:55:03.232702\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 384, in _make_request\r\n2021-02-23 18:55:03.232709 | test-node\ + \ | E self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)\r\ + \n2021-02-23 18:55:03.232716 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 335, in _raise_timeout\r\n2021-02-23 18:55:03.232742 | test-node\ + \ | E raise ReadTimeoutError(\r\n2021-02-23 18:55:03.232752 | test-node\ + \ | E pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\r\n2021-02-23 18:55:03.232758\ + \ | test-node | E\r\n2021-02-23 18:55:03.232765 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.232772 | test-node | E\r\n2021-02-23 18:55:03.232778 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.232785\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 439, in send\r\n2021-02-23 18:55:03.232791 | test-node | E \ + \ resp = conn.urlopen(\r\n2021-02-23 18:55:03.232798 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232804 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232811 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232832 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232844 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232850 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232857 | test-node\ + \ | E [Previous line repeated 2 more times]\r\n2021-02-23 18:55:03.232863\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 724, in urlopen\r\n2021-02-23 18:55:03.232870 | test-node | E\ + \ retries = retries.increment(\r\n2021-02-23 18:55:03.232876 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py\"\ + , line 439, in increment\r\n2021-02-23 18:55:03.232883 | test-node |\ + \ E raise MaxRetryError(_pool, url, error or ResponseError(cause))\r\ + \n2021-02-23 18:55:03.232890 | test-node | E pip._vendor.urllib3.exceptions.MaxRetryError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.232918\ + \ | test-node | E\r\n2021-02-23 18:55:03.232927 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.232934 | test-node | E\r\n2021-02-23 18:55:03.232940 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.232947\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/base_command.py\"\ + , line 216, in _main\r\n2021-02-23 18:55:03.232954 | test-node | E \ + \ status = self.run(options, args)\r\n2021-02-23 18:55:03.232960\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/req_command.py\"\ + , line 182, in wrapper\r\n2021-02-23 18:55:03.232967 | test-node | E\ + \ return func(self, options, args)\r\n2021-02-23 18:55:03.232974\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/commands/wheel.py\"\ + , line 155, in run\r\n2021-02-23 18:55:03.232980 | test-node | E \ + \ requirement_set = resolver.resolve(\r\n2021-02-23 18:55:03.232987\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 184, in resolve\r\n2021-02-23 18:55:03.233000 | test-node | E\ + \ discovered_reqs.extend(self._resolve_one(requirement_set, req))\r\ + \n2021-02-23 18:55:03.233007 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 391, in _resolve_one\r\n2021-02-23 18:55:03.233014 | test-node\ + \ | E abstract_dist = self._get_abstract_dist_for(req_to_install)\r\ + \n2021-02-23 18:55:03.233020 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 343, in _get_abstract_dist_for\r\n2021-02-23 18:55:03.233027\ + \ | test-node | E abstract_dist = self.preparer.prepare_linked_requirement(req)\r\ + \n2021-02-23 18:55:03.233035 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 467, in prepare_linked_requirement\r\n2021-02-23 18:55:03.233041\ + \ | test-node | E local_file = unpack_url(\r\n2021-02-23 18:55:03.233048\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 255, in unpack_url\r\n2021-02-23 18:55:03.233054 | test-node\ + \ | E file = get_http_url(\r\n2021-02-23 18:55:03.233061 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 129, in get_http_url\r\n2021-02-23 18:55:03.233068 | test-node\ + \ | E from_path, content_type = _download_http_url(\r\n2021-02-23\ + \ 18:55:03.233074 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 278, in _download_http_url\r\n2021-02-23 18:55:03.233081 | test-node\ + \ | E download = downloader(link)\r\n2021-02-23 18:55:03.233087\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 170, in __call__\r\n2021-02-23 18:55:03.233094 | test-node |\ + \ E resp = _http_get_download(self._session, link)\r\n2021-02-23\ + \ 18:55:03.233100 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 139, in _http_get_download\r\n2021-02-23 18:55:03.233107 | test-node\ + \ | E resp = session.get(target_url, headers=HEADERS, stream=True)\r\ + \n2021-02-23 18:55:03.233127 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 543, in get\r\n2021-02-23 18:55:03.233139 | test-node | E \ + \ return self.request('GET', url, **kwargs)\r\n2021-02-23 18:55:03.233148\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/session.py\"\ + , line 421, in request\r\n2021-02-23 18:55:03.233190 | test-node | E\ + \ return super(PipSession, self).request(method, url, *args, **kwargs)\r\ + \n2021-02-23 18:55:03.233213 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 530, in request\r\n2021-02-23 18:55:03.233220 | test-node | E\ + \ resp = self.send(prep, **send_kwargs)\r\n2021-02-23 18:55:03.233227\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 643, in send\r\n2021-02-23 18:55:03.233233 | test-node | E \ + \ r = adapter.send(request, **kwargs)\r\n2021-02-23 18:55:03.233240\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py\"\ + , line 53, in send\r\n2021-02-23 18:55:03.233246 | test-node | E \ + \ resp = super(CacheControlAdapter, self).send(request, **kw)\r\n\ + 2021-02-23 18:55:03.233253 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 516, in send\r\n2021-02-23 18:55:03.233259 | test-node | E \ + \ raise ConnectionError(e, request=request)\r\n2021-02-23 18:55:03.233274\ + \ | test-node | E pip._vendor.requests.exceptions.ConnectionError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.233308\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233318 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 128, in fetch_build_egg\r\n2021-02-23 18:55:03.233359 | test-node\ + \ | E subprocess.check_call(cmd)\r\n2021-02-23 18:55:03.233396\ + \ | test-node | E File \"/usr/lib64/python3.9/subprocess.py\", line\ + \ 373, in check_call\r\n2021-02-23 18:55:03.233405 | test-node | E \ + \ raise CalledProcessError(retcode, cmd)\r\n2021-02-23 18:55:03.233412\ + \ | test-node | E subprocess.CalledProcessError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.233420 | test-node\ + \ | E\r\n2021-02-23 18:55:03.233427 | test-node | E The above exception\ + \ was the direct cause of the following exception:\r\n2021-02-23 18:55:03.233433\ + \ | test-node | E\r\n2021-02-23 18:55:03.233440 | test-node | E Traceback\ + \ (most recent call last):\r\n2021-02-23 18:55:03.233446 | test-node\ + \ | E File \"/sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/setup.py\"\ + , line 5, in \r\n2021-02-23 18:55:03.233452 | test-node | E\ + \ setup(use_scm_version=True)\r\n2021-02-23 18:55:03.233458 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 164, in setup\r\n2021-02-23 18:55:03.233465 | test-node | E \ + \ _install_setup_requires(attrs)\r\n2021-02-23 18:55:03.233472 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 159, in _install_setup_requires\r\n2021-02-23 18:55:03.233478\ + \ | test-node | E dist.fetch_build_eggs(dist.setup_requires)\r\n\ + 2021-02-23 18:55:03.233484 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 699, in fetch_build_eggs\r\n2021-02-23 18:55:03.233491 | test-node\ + \ | E resolved_dists = pkg_resources.working_set.resolve(\r\n2021-02-23\ + \ 18:55:03.233497 | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 779, in resolve\r\n2021-02-23 18:55:03.233504 | test-node | E\ + \ dist = best[req.key] = env.best_match(\r\n2021-02-23 18:55:03.233510\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1064, in best_match\r\n2021-02-23 18:55:03.233517 | test-node\ + \ | E return self.obtain(req, installer)\r\n2021-02-23 18:55:03.233523\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1076, in obtain\r\n2021-02-23 18:55:03.233551 | test-node | E\ + \ return installer(requirement)\r\n2021-02-23 18:55:03.233565 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 758, in fetch_build_egg\r\n2021-02-23 18:55:03.233624 | test-node\ + \ | E return fetch_build_egg(self, req)\r\n2021-02-23 18:55:03.233636\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 130, in fetch_build_egg\r\n2021-02-23 18:55:03.233643 | test-node\ + \ | E raise DistutilsError(str(e)) from e\r\n2021-02-23 18:55:03.233649\ + \ | test-node | E distutils.errors.DistutilsError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.233665 | test-node\ + \ | E\r\n2021-02-23 18:55:03.233672 | test-node | E 18:44:34.522 commands.py\ + \ DEBUG Command stdout:\r\n2021-02-23 18:55:03.233678 | test-node\ + \ | E ERROR Preparing of the upstream to the SRPM build failed:\ + \ Command 'python3 setup.py --version' failed.\r\n2021-02-23 18:55:03.233685\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233691 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/api.py\"\ + , line 510, in create_srpm\r\n2021-02-23 18:55:03.233698 | test-node\ + \ | E self.up.prepare_upstream_for_srpm_creation(upstream_ref=upstream_ref)\r\ + \n2021-02-23 18:55:03.233704 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/upstream.py\"\ + , line 673, in prepare_upstream_for_srpm_creation\r\n2021-02-23 18:55:03.233711\ + \ | test-node | E current_git_describe_version = self.get_current_version()\r\ + \n2021-02-23 18:55:03.233717 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/upstream.py\"\ + , line 276, in get_current_version\r\n2021-02-23 18:55:03.233736 | test-node\ + \ | E action_output = self.get_output_from_action(\r\n2021-02-23\ + \ 18:55:03.233754 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/base_git.py\"\ + , line 314, in get_output_from_action\r\n2021-02-23 18:55:03.233761\ + \ | test-node | E self.command_handler.run_command(\r\n2021-02-23\ + \ 18:55:03.233768 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/command_handler.py\"\ + , line 100, in run_command\r\n2021-02-23 18:55:03.233774 | test-node\ + \ | E return commands.run_command(\r\n2021-02-23 18:55:03.233797\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/packit/utils/commands.py\"\ + , line 97, in run_command\r\n2021-02-23 18:55:03.233810 | test-node\ + \ | E raise PackitCommandFailedError(\r\n2021-02-23 18:55:03.233816\ + \ | test-node | E packit.exceptions.PackitCommandFailedError: Command\ + \ 'python3 setup.py --version' failed.\r\n2021-02-23 18:55:03.233823\ + \ | test-node | E\r\n2021-02-23 18:55:03.233829 | test-node | E The\ + \ above exception was the direct cause of the following exception:\r\ + \n2021-02-23 18:55:03.233836 | test-node | E\r\n2021-02-23 18:55:03.233843\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233849 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/cli/utils.py\"\ + , line 64, in covered_func\r\n2021-02-23 18:55:03.233856 | test-node\ + \ | E func(config=config, *args, **kwargs)\r\n2021-02-23 18:55:03.233862\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/packit/cli/srpm.py\"\ + , line 66, in srpm\r\n2021-02-23 18:55:03.233869 | test-node | E \ + \ srpm_path = api.create_srpm(output_file=output, upstream_ref=upstream_ref)\r\ + \n2021-02-23 18:55:03.233875 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/api.py\"\ + , line 512, in create_srpm\r\n2021-02-23 18:55:03.233882 | test-node\ + \ | E raise PackitSRPMException(\r\n2021-02-23 18:55:03.233889\ + \ | test-node | E packit.exceptions.PackitSRPMException: Preparing\ + \ of the upstream to the SRPM build failed: Command 'python3 setup.py\ + \ --version' failed.\r\n```\r\nMy assumption is this was a network flake\ + \ with files.pythonhosted.org but since the new retry mechanism can\ + \ be seen in play here, I wanna confirm this behaviour is expected.\r\ + \n" + closed_at: '2021-02-24T09:16:06Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/545/comments + created_at: '2021-02-24T08:26:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/545/events + html_url: https://github.com/packit/ogr/issues/545 + id: 815243822 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/454/labels{/name} + - color: 008672 + default: true + description: Extra attention is needed + id: 1160311265 + name: help wanted + node_id: MDU6TGFiZWwxMTYwMzExMjY1 + url: https://api.github.com/repos/packit/ogr/labels/help%20wanted + labels_url: https://api.github.com/repos/packit/ogr/issues/545/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2ODE3NTExNTg= - number: 454 + node_id: MDU6SXNzdWU4MTUyNDM4MjI= + number: 545 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New patch release - updated_at: '2020-08-19T11:07:53Z' - url: https://api.github.com/repos/packit/ogr/issues/454 + title: Max retries exceeded with url files.pythonhosted.org + updated_at: '2021-02-24T12:53:54Z' + url: https://api.github.com/repos/packit/ogr/issues/545 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj - - active_lock_reason: null + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.202169 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:40 GMT + ETag: W/"237d07ddb0d564ba13a609cf12d68c18517706090bce1d168750f8349b7cf2b4" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F7D46D:1917414:6075DC0B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4962' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '38' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.11756658554077148 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-08-17T08:56:28Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/453/comments - created_at: '2020-08-13T16:21:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/453/events - html_url: https://github.com/packit/ogr/pull/453 - id: 678564351 + author_association: CONTRIBUTOR + body: "I believe this is a flake but wanna make sure it's not an actual\ + \ bug. The logs are coming from [a sandcastle CI run](https://github.com/packit/sandcastle/pull/104#issuecomment-784432707).\r\ + \n```\r\n2021-02-23 18:55:03.228152 | test-node | E sandcastle.exceptions.SandcastleCommandFailed:\ + \ Command failed (rc=2, reason={\"metadata\":{},\"status\":\"Failure\"\ + ,\"message\":\"command terminated with non-zero exit code: Error executing\ + \ in Docker Container: 2\",\"reason\":\"NonZeroExitCode\",\"details\"\ + :{\"causes\":[{\"reason\":\"ExitCode\",\"message\":\"2\"}]}})\r\n2021-02-23\ + \ 18:55:03.228239 | test-node | E 18:42:55.563 config.py DEBUG\ + \ Loading user config from directory: /home/sandcastle/.config\r\n\ + 2021-02-23 18:55:03.228250 | test-node | E 18:42:55.564 config.py \ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.yaml\r\ + \n2021-02-23 18:55:03.228256 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.yml\r\ + \n2021-02-23 18:55:03.228263 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.json\r\ + \n2021-02-23 18:55:03.228269 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.yaml\r\ + \n2021-02-23 18:55:03.228275 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.yml\r\ + \n2021-02-23 18:55:03.228281 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.json\r\ + \n2021-02-23 18:55:03.228310 | test-node | E 18:42:55.572 config.py\ + \ DEBUG Loaded config: Config(debug='False', fas_user='None',\ + \ keytab_path='None', upstream_git_remote='None', command_handler='RunCommandType.local',\ + \ command_handler_work_dir='/sandcastle', command_handler_pvc_env_var='SANDCASTLE_PVC',\ + \ command_handler_image_reference='docker.io/usercont/sandcastle', command_handler_k8s_namespace='myproject')\r\ + \n2021-02-23 18:55:03.228383 | test-node | E 18:42:55.572 logging.py\ + \ DEBUG Logging set to DEBUG\r\n2021-02-23 18:55:03.228398 |\ + \ test-node | E 18:42:55.574 packit_base.py DEBUG Packit 0.24.0\ + \ is being used.\r\n2021-02-23 18:55:03.228404 | test-node | E 18:42:55.574\ + \ types.py DEBUG Input is a directory: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902\r\ + \n2021-02-23 18:55:03.228420 | test-node | E 18:42:55.575 local_project.py\ + \ DEBUG Arguments received in the init method of the LocalProject\ + \ class:\r\n2021-02-23 18:55:03.228426 | test-node | E git_repo: None\r\ + \n2021-02-23 18:55:03.228433 | test-node | E working_dir: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902\r\ + \n2021-02-23 18:55:03.228439 | test-node | E ref: None\r\n2021-02-23\ + \ 18:55:03.228445 | test-node | E git_project: None\r\n2021-02-23 18:55:03.228451\ + \ | test-node | E git_service: None\r\n2021-02-23 18:55:03.228458 |\ + \ test-node | E git_url:\r\n2021-02-23 18:55:03.228464 | test-node\ + \ | E full_name:\r\n2021-02-23 18:55:03.228470 | test-node | E namespace:\r\ + \n2021-02-23 18:55:03.228476 | test-node | E repo_name:\r\n2021-02-23\ + \ 18:55:03.228482 | test-node | E offline: False\r\n2021-02-23 18:55:03.228488\ + \ | test-node | E refresh True\r\n2021-02-23 18:55:03.228494 | test-node\ + \ | E remote: None\r\n2021-02-23 18:55:03.228501 | test-node | E pr_id:\ + \ None\r\n2021-02-23 18:55:03.228507 | test-node | E\r\n2021-02-23 18:55:03.228559\ + \ | test-node | E 18:42:55.575 local_project.py DEBUG `working_dir`\ + \ is set and `git_repo` is not: let's discover...\r\n2021-02-23 18:55:03.228607\ + \ | test-node | E 18:42:55.575 local_project.py DEBUG It's a git\ + \ repo!\r\n2021-02-23 18:55:03.228615 | test-node | E 18:42:55.577\ + \ local_project.py DEBUG Parsed ref 'main' from the repo .\r\ + \n2021-02-23 18:55:03.228630 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed remote url 'https://github.com/packit/ogr.git' from\ + \ the repo .\r\ + \n2021-02-23 18:55:03.228651 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed namespace and repo name (packit, ogr) from url 'https://github.com/packit/ogr.git'.\r\ + \n2021-02-23 18:55:03.228660 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed full repo name 'packit/ogr'.\r\n2021-02-23 18:55:03.228666\ + \ | test-node | E 18:42:55.578 package_config.py DEBUG Local package\ + \ config found: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/.packit.yaml\r\ + \n2021-02-23 18:55:03.228673 | test-node | E 18:42:55.590 package_config.py\ + \ DEBUG Local spec files found: [PosixPath('fedora/python-ogr.spec')].\ + \ Taking: fedora/python-ogr.spec\r\n2021-02-23 18:55:03.228679 | test-node\ + \ | E 18:42:55.591 package_config.py DEBUG Package config:\r\n2021-02-23\ + \ 18:55:03.228685 | test-node | E {\r\n2021-02-23 18:55:03.228692 |\ + \ test-node | E \"specfile_path\": \"fedora/python-ogr.spec\",\r\ + \n2021-02-23 18:55:03.228698 | test-node | E \"synced_files\":\ + \ [\r\n2021-02-23 18:55:03.228720 | test-node | E \"fedora/changelog\"\ + \r\n2021-02-23 18:55:03.228728 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.228735 | test-node | E \"downstream_package_name\":\ + \ \"python-ogr\",\r\n2021-02-23 18:55:03.228741 | test-node | E \ + \ \"upstream_project_url\": \"https://github.com/packit/ogr\",\r\n\ + 2021-02-23 18:55:03.228747 | test-node | E \"upstream_package_name\"\ + : \"ogr\",\r\n2021-02-23 18:55:03.228754 | test-node | E \"copy_upstream_release_description\"\ + : true,\r\n2021-02-23 18:55:03.228760 | test-node | E \"actions\"\ + : {\r\n2021-02-23 18:55:03.228766 | test-node | E \"create-archive\"\ + : [\r\n2021-02-23 18:55:03.228772 | test-node | E \"python3\ + \ setup.py sdist --dist-dir ./fedora/\",\r\n2021-02-23 18:55:03.228786\ + \ | test-node | E \"bash -c \\\"ls -1t ./fedora/*.tar.gz\ + \ | head -n 1\\\"\"\r\n2021-02-23 18:55:03.228793 | test-node | E \ + \ ],\r\n2021-02-23 18:55:03.228799 | test-node | E \"\ + get-current-version\": \"python3 setup.py --version\"\r\n2021-02-23\ + \ 18:55:03.228805 | test-node | E },\r\n2021-02-23 18:55:03.228811\ + \ | test-node | E \"jobs\": [\r\n2021-02-23 18:55:03.228818 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.228824 | test-node | E \ + \ \"job\": \"sync_from_downstream\",\r\n2021-02-23 18:55:03.228967\ + \ | test-node | E \"trigger\": \"commit\"\r\n2021-02-23\ + \ 18:55:03.229025 | test-node | E },\r\n2021-02-23 18:55:03.229032\ + \ | test-node | E {\r\n2021-02-23 18:55:03.229039 | test-node\ + \ | E \"job\": \"propose_downstream\",\r\n2021-02-23 18:55:03.229045\ + \ | test-node | E \"trigger\": \"release\",\r\n2021-02-23\ + \ 18:55:03.229051 | test-node | E \"metadata\": {\r\n2021-02-23\ + \ 18:55:03.229058 | test-node | E \"dist_git_branches\"\ + : [\r\n2021-02-23 18:55:03.229064 | test-node | E \ + \ \"fedora-all\",\r\n2021-02-23 18:55:03.229070 | test-node | E \ + \ \"epel-8\"\r\n2021-02-23 18:55:03.229076 | test-node\ + \ | E ]\r\n2021-02-23 18:55:03.229082 | test-node |\ + \ E }\r\n2021-02-23 18:55:03.229089 | test-node | E \ + \ },\r\n2021-02-23 18:55:03.229095 | test-node | E {\r\ + \n2021-02-23 18:55:03.229101 | test-node | E \"job\": \"\ + copr_build\",\r\n2021-02-23 18:55:03.229107 | test-node | E \ + \ \"trigger\": \"pull_request\",\r\n2021-02-23 18:55:03.229114\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229120\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229126\ + \ | test-node | E \"fedora-all\",\r\n2021-02-23\ + \ 18:55:03.229132 | test-node | E \"epel-8\"\r\n\ + 2021-02-23 18:55:03.229138 | test-node | E ]\r\n2021-02-23\ + \ 18:55:03.229147 | test-node | E }\r\n2021-02-23 18:55:03.229185\ + \ | test-node | E },\r\n2021-02-23 18:55:03.229207 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.229217 | test-node | E \ + \ \"job\": \"tests\",\r\n2021-02-23 18:55:03.229237 | test-node\ + \ | E \"trigger\": \"pull_request\",\r\n2021-02-23 18:55:03.229245\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229252\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229258\ + \ | test-node | E \"fedora-all\",\r\n2021-02-23\ + \ 18:55:03.229264 | test-node | E \"epel-8\"\r\n\ + 2021-02-23 18:55:03.229270 | test-node | E ]\r\n2021-02-23\ + \ 18:55:03.229276 | test-node | E }\r\n2021-02-23 18:55:03.229282\ + \ | test-node | E },\r\n2021-02-23 18:55:03.229289 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.229303 | test-node | E \ + \ \"job\": \"production_build\",\r\n2021-02-23 18:55:03.229310\ + \ | test-node | E \"trigger\": \"pull_request\",\r\n2021-02-23\ + \ 18:55:03.229316 | test-node | E \"metadata\": {\r\n2021-02-23\ + \ 18:55:03.229322 | test-node | E \"scratch\": true,\r\ + \n2021-02-23 18:55:03.229328 | test-node | E \"targets\"\ + : [\r\n2021-02-23 18:55:03.229334 | test-node | E \ + \ \"fedora-development\"\r\n2021-02-23 18:55:03.229349 | test-node\ + \ | E ]\r\n2021-02-23 18:55:03.229355 | test-node |\ + \ E }\r\n2021-02-23 18:55:03.229362 | test-node | E \ + \ },\r\n2021-02-23 18:55:03.229368 | test-node | E {\r\ + \n2021-02-23 18:55:03.229374 | test-node | E \"job\": \"\ + copr_build\",\r\n2021-02-23 18:55:03.229380 | test-node | E \ + \ \"trigger\": \"commit\",\r\n2021-02-23 18:55:03.229386 | test-node\ + \ | E \"metadata\": {\r\n2021-02-23 18:55:03.229392 | test-node\ + \ | E \"branch\": \"master\",\r\n2021-02-23 18:55:03.229399\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229405\ + \ | test-node | E \"fedora-stable\"\r\n2021-02-23\ + \ 18:55:03.229411 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.229417 | test-node | E \"project\": \"packit-master\"\ + ,\r\n2021-02-23 18:55:03.229423 | test-node | E \"\ + list_on_homepage\": true,\r\n2021-02-23 18:55:03.229430 | test-node\ + \ | E \"preserve_project\": true\r\n2021-02-23 18:55:03.229436\ + \ | test-node | E }\r\n2021-02-23 18:55:03.229442 | test-node\ + \ | E },\r\n2021-02-23 18:55:03.229448 | test-node | E \ + \ {\r\n2021-02-23 18:55:03.229454 | test-node | E \ + \ \"job\": \"copr_build\",\r\n2021-02-23 18:55:03.229461 | test-node\ + \ | E \"trigger\": \"release\",\r\n2021-02-23 18:55:03.229467\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229473\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229479\ + \ | test-node | E \"fedora-stable\"\r\n2021-02-23\ + \ 18:55:03.229485 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.229518 | test-node | E \"project\": \"packit-releases\"\ + ,\r\n2021-02-23 18:55:03.229556 | test-node | E \"\ + list_on_homepage\": true,\r\n2021-02-23 18:55:03.229567 | test-node\ + \ | E \"preserve_project\": true\r\n2021-02-23 18:55:03.229601\ + \ | test-node | E }\r\n2021-02-23 18:55:03.229608 | test-node\ + \ | E }\r\n2021-02-23 18:55:03.229614 | test-node | E \ + \ ]\r\n2021-02-23 18:55:03.229620 | test-node | E }\r\n2021-02-23 18:55:03.230131\ + \ | test-node | E 18:42:55.594 package_config.py DEBUG PackageConfig(config_file_path='.packit.yaml',\ + \ specfile_path='fedora/python-ogr.spec', synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', jobs='[JobConfig(job=JobType.sync_from_downstream,\ + \ trigger=JobConfigTriggerType.commit, meta=JobMetadataConfig(targets=set(),\ + \ timeout=7200, owner=None, project=None, dist_git_branches=set(), branch=None,\ + \ scratch=False, list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.propose_downstream, trigger=JobConfigTriggerType.release,\ + \ meta=JobMetadataConfig(targets=set(), timeout=7200, owner=None, project=None,\ + \ dist_git_branches={'epel-8', 'fedora-all'}, branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'epel-8', 'fedora-all'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.tests, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'epel-8', 'fedora-all'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.production_build, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'fedora-development'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=True,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.commit,\ + \ meta=JobMetadataConfig(targets={'fedora-stable'}, timeout=7200, owner=None,\ + \ project=packit-master, dist_git_branches=set(), branch=master, scratch=False,\ + \ list_on_homepage=True, preserve_project=True, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.release,\ + \ meta=JobMetadataConfig(targets={'fedora-stable'}, timeout=7200, owner=None,\ + \ project=packit-releases, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=True, preserve_project=True, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True')]',\ + \ dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', archive_root_dir_template={upstream_pkg_name}-{version}',\ + \ patch_generation_ignore_paths='[]', copy_upstream_release_description='True')\r\ + \n2021-02-23 18:55:03.230260 | test-node | E 18:42:55.604 utils.py\ + \ DEBUG Input directory is an upstream repository.\r\n2021-02-23\ + \ 18:55:03.230290 | test-node | E 18:42:55.604 base_git.py DEBUG\ + \ Running ActionName.post_upstream_clone hook.\r\n2021-02-23 18:55:03.230298\ + \ | test-node | E 18:42:55.604 base_git.py DEBUG Running ActionName.post_upstream_clone.\r\ + \n2021-02-23 18:55:03.230305 | test-node | E 18:42:55.605 base_git.py\ + \ DEBUG Running default implementation for ActionName.post_upstream_clone.\r\ + \n2021-02-23 18:55:03.230312 | test-node | E Using user-defined script\ + \ for ActionName.get_current_version: [['python3', 'setup.py', '--version']]\r\ + \n2021-02-23 18:55:03.230318 | test-node | E 18:42:55.605 base_git.py\ + \ DEBUG Command handler: RunCommandType.local\r\n2021-02-23 18:55:03.230383\ + \ | test-node | E 18:42:55.605 commands.py DEBUG Command: python3\ + \ setup.py --version\r\n2021-02-23 18:55:03.230439 | test-node | E \ + \ WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None,\ + \ status=None)) after connection broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230479 | test-node | E WARNING: Retrying (Retry(total=3,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230504 | test-node | E WARNING: Retrying (Retry(total=2,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230515 | test-node | E WARNING: Retrying (Retry(total=1,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230525 | test-node | E WARNING: Retrying (Retry(total=0,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230597 | test-node | E ERROR: Exception:\r\n\ + 2021-02-23 18:55:03.230624 | test-node | E Traceback (most recent call\ + \ last):\r\n2021-02-23 18:55:03.230637 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 381, in _make_request\r\n2021-02-23 18:55:03.230655 | test-node\ + \ | E self._validate_conn(conn)\r\n2021-02-23 18:55:03.230665 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 976, in _validate_conn\r\n2021-02-23 18:55:03.230684 | test-node\ + \ | E conn.connect()\r\n2021-02-23 18:55:03.230711 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py\"\ + , line 361, in connect\r\n2021-02-23 18:55:03.230724 | test-node | E\ + \ self.sock = ssl_wrap_socket(\r\n2021-02-23 18:55:03.230733 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py\"\ + , line 377, in ssl_wrap_socket\r\n2021-02-23 18:55:03.230743 | test-node\ + \ | E return context.wrap_socket(sock, server_hostname=server_hostname)\r\ + \n2021-02-23 18:55:03.230752 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 500, in wrap_socket\r\n2021-02-23 18:55:03.230761 | test-node\ + \ | E return self.sslsocket_class._create(\r\n2021-02-23 18:55:03.230789\ + \ | test-node | E File \"/usr/lib64/python3.9/ssl.py\", line 1040,\ + \ in _create\r\n2021-02-23 18:55:03.230808 | test-node | E self.do_handshake()\r\ + \n2021-02-23 18:55:03.230831 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 1309, in do_handshake\r\n2021-02-23 18:55:03.230841 | test-node\ + \ | E self._sslobj.do_handshake()\r\n2021-02-23 18:55:03.230851\ + \ | test-node | E socket.timeout: _ssl.c:1106: The handshake operation\ + \ timed out\r\n2021-02-23 18:55:03.230879 | test-node | E\r\n2021-02-23\ + \ 18:55:03.230899 | test-node | E During handling of the above exception,\ + \ another exception occurred:\r\n2021-02-23 18:55:03.230909 | test-node\ + \ | E\r\n2021-02-23 18:55:03.230919 | test-node | E Traceback (most\ + \ recent call last):\r\n2021-02-23 18:55:03.230928 | test-node | E \ + \ File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 670, in urlopen\r\n2021-02-23 18:55:03.230937 | test-node | E\ + \ httplib_response = self._make_request(\r\n2021-02-23 18:55:03.230957\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 384, in _make_request\r\n2021-02-23 18:55:03.230983 | test-node\ + \ | E self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)\r\ + \n2021-02-23 18:55:03.230994 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 335, in _raise_timeout\r\n2021-02-23 18:55:03.231004 | test-node\ + \ | E raise ReadTimeoutError(\r\n2021-02-23 18:55:03.231031 | test-node\ + \ | E pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\r\n2021-02-23 18:55:03.231060\ + \ | test-node | E\r\n2021-02-23 18:55:03.231081 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.231090 | test-node | E\r\n2021-02-23 18:55:03.231100 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.231109\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 439, in send\r\n2021-02-23 18:55:03.231118 | test-node | E \ + \ resp = conn.urlopen(\r\n2021-02-23 18:55:03.231138 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231166 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231224 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231261 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231272 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231289 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231318 | test-node\ + \ | E [Previous line repeated 2 more times]\r\n2021-02-23 18:55:03.231347\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 724, in urlopen\r\n2021-02-23 18:55:03.231389 | test-node | E\ + \ retries = retries.increment(\r\n2021-02-23 18:55:03.231409 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py\"\ + , line 439, in increment\r\n2021-02-23 18:55:03.231418 | test-node |\ + \ E raise MaxRetryError(_pool, url, error or ResponseError(cause))\r\ + \n2021-02-23 18:55:03.231425 | test-node | E pip._vendor.urllib3.exceptions.MaxRetryError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.231432\ + \ | test-node | E\r\n2021-02-23 18:55:03.231438 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.231445 | test-node | E\r\n2021-02-23 18:55:03.231452 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.231458\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/base_command.py\"\ + , line 216, in _main\r\n2021-02-23 18:55:03.231465 | test-node | E \ + \ status = self.run(options, args)\r\n2021-02-23 18:55:03.231471\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/req_command.py\"\ + , line 182, in wrapper\r\n2021-02-23 18:55:03.231477 | test-node | E\ + \ return func(self, options, args)\r\n2021-02-23 18:55:03.231514\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/commands/wheel.py\"\ + , line 155, in run\r\n2021-02-23 18:55:03.231566 | test-node | E \ + \ requirement_set = resolver.resolve(\r\n2021-02-23 18:55:03.231604\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 184, in resolve\r\n2021-02-23 18:55:03.231611 | test-node | E\ + \ discovered_reqs.extend(self._resolve_one(requirement_set, req))\r\ + \n2021-02-23 18:55:03.231618 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 391, in _resolve_one\r\n2021-02-23 18:55:03.231624 | test-node\ + \ | E abstract_dist = self._get_abstract_dist_for(req_to_install)\r\ + \n2021-02-23 18:55:03.231631 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 343, in _get_abstract_dist_for\r\n2021-02-23 18:55:03.231656\ + \ | test-node | E abstract_dist = self.preparer.prepare_linked_requirement(req)\r\ + \n2021-02-23 18:55:03.231668 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 467, in prepare_linked_requirement\r\n2021-02-23 18:55:03.231675\ + \ | test-node | E local_file = unpack_url(\r\n2021-02-23 18:55:03.231681\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 255, in unpack_url\r\n2021-02-23 18:55:03.231688 | test-node\ + \ | E file = get_http_url(\r\n2021-02-23 18:55:03.231695 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 129, in get_http_url\r\n2021-02-23 18:55:03.231710 | test-node\ + \ | E from_path, content_type = _download_http_url(\r\n2021-02-23\ + \ 18:55:03.231716 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 278, in _download_http_url\r\n2021-02-23 18:55:03.231723 | test-node\ + \ | E download = downloader(link)\r\n2021-02-23 18:55:03.231730\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 170, in __call__\r\n2021-02-23 18:55:03.231736 | test-node |\ + \ E resp = _http_get_download(self._session, link)\r\n2021-02-23\ + \ 18:55:03.231743 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 139, in _http_get_download\r\n2021-02-23 18:55:03.231749 | test-node\ + \ | E resp = session.get(target_url, headers=HEADERS, stream=True)\r\ + \n2021-02-23 18:55:03.231756 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 543, in get\r\n2021-02-23 18:55:03.231763 | test-node | E \ + \ return self.request('GET', url, **kwargs)\r\n2021-02-23 18:55:03.231769\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/session.py\"\ + , line 421, in request\r\n2021-02-23 18:55:03.231775 | test-node | E\ + \ return super(PipSession, self).request(method, url, *args, **kwargs)\r\ + \n2021-02-23 18:55:03.231807 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 530, in request\r\n2021-02-23 18:55:03.231816 | test-node | E\ + \ resp = self.send(prep, **send_kwargs)\r\n2021-02-23 18:55:03.231823\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 643, in send\r\n2021-02-23 18:55:03.231829 | test-node | E \ + \ r = adapter.send(request, **kwargs)\r\n2021-02-23 18:55:03.231836\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py\"\ + , line 53, in send\r\n2021-02-23 18:55:03.231843 | test-node | E \ + \ resp = super(CacheControlAdapter, self).send(request, **kw)\r\n\ + 2021-02-23 18:55:03.231849 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 516, in send\r\n2021-02-23 18:55:03.231856 | test-node | E \ + \ raise ConnectionError(e, request=request)\r\n2021-02-23 18:55:03.231879\ + \ | test-node | E pip._vendor.requests.exceptions.ConnectionError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.231891\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.231898 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 128, in fetch_build_egg\r\n2021-02-23 18:55:03.231904 | test-node\ + \ | E subprocess.check_call(cmd)\r\n2021-02-23 18:55:03.231924\ + \ | test-node | E File \"/usr/lib64/python3.9/subprocess.py\", line\ + \ 373, in check_call\r\n2021-02-23 18:55:03.231936 | test-node | E \ + \ raise CalledProcessError(retcode, cmd)\r\n2021-02-23 18:55:03.231943\ + \ | test-node | E subprocess.CalledProcessError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.231970 | test-node\ + \ | E\r\n2021-02-23 18:55:03.231979 | test-node | E The above exception\ + \ was the direct cause of the following exception:\r\n2021-02-23 18:55:03.231991\ + \ | test-node | E\r\n2021-02-23 18:55:03.231998 | test-node | E Traceback\ + \ (most recent call last):\r\n2021-02-23 18:55:03.232005 | test-node\ + \ | E File \"/sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/setup.py\"\ + , line 5, in \r\n2021-02-23 18:55:03.232011 | test-node | E\ + \ setup(use_scm_version=True)\r\n2021-02-23 18:55:03.232018 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 164, in setup\r\n2021-02-23 18:55:03.232025 | test-node | E \ + \ _install_setup_requires(attrs)\r\n2021-02-23 18:55:03.232031 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 159, in _install_setup_requires\r\n2021-02-23 18:55:03.232039\ + \ | test-node | E dist.fetch_build_eggs(dist.setup_requires)\r\n\ + 2021-02-23 18:55:03.232052 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 699, in fetch_build_eggs\r\n2021-02-23 18:55:03.232084 | test-node\ + \ | E resolved_dists = pkg_resources.working_set.resolve(\r\n2021-02-23\ + \ 18:55:03.232102 | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 779, in resolve\r\n2021-02-23 18:55:03.232111 | test-node | E\ + \ dist = best[req.key] = env.best_match(\r\n2021-02-23 18:55:03.232121\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1064, in best_match\r\n2021-02-23 18:55:03.232130 | test-node\ + \ | E return self.obtain(req, installer)\r\n2021-02-23 18:55:03.232140\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1076, in obtain\r\n2021-02-23 18:55:03.232168 | test-node | E\ + \ return installer(requirement)\r\n2021-02-23 18:55:03.232217 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 758, in fetch_build_egg\r\n2021-02-23 18:55:03.232262 | test-node\ + \ | E return fetch_build_egg(self, req)\r\n2021-02-23 18:55:03.232274\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 130, in fetch_build_egg\r\n2021-02-23 18:55:03.232284 | test-node\ + \ | E raise DistutilsError(str(e)) from e\r\n2021-02-23 18:55:03.232312\ + \ | test-node | E distutils.errors.DistutilsError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.232333 | test-node\ + \ | E ERROR Command 'python3 setup.py --version' failed.\r\n2021-02-23\ + \ 18:55:03.232343 | test-node | E 18:44:34.521 commands.py DEBUG\ + \ Command stderr: WARNING: Retrying (Retry(total=4, connect=None,\ + \ read=None, redirect=None, status=None)) after connection broken by\ + \ 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232355 | test-node | E WARNING: Retrying (Retry(total=3,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232366 | test-node | E WARNING: Retrying (Retry(total=2,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232427 | test-node | E WARNING: Retrying (Retry(total=1,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232464 | test-node | E WARNING: Retrying (Retry(total=0,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232474 | test-node | E ERROR: Exception:\r\n\ + 2021-02-23 18:55:03.232481 | test-node | E Traceback (most recent call\ + \ last):\r\n2021-02-23 18:55:03.232487 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 381, in _make_request\r\n2021-02-23 18:55:03.232494 | test-node\ + \ | E self._validate_conn(conn)\r\n2021-02-23 18:55:03.232501 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 976, in _validate_conn\r\n2021-02-23 18:55:03.232508 | test-node\ + \ | E conn.connect()\r\n2021-02-23 18:55:03.232515 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py\"\ + , line 361, in connect\r\n2021-02-23 18:55:03.232522 | test-node | E\ + \ self.sock = ssl_wrap_socket(\r\n2021-02-23 18:55:03.232553 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py\"\ + , line 377, in ssl_wrap_socket\r\n2021-02-23 18:55:03.232566 | test-node\ + \ | E return context.wrap_socket(sock, server_hostname=server_hostname)\r\ + \n2021-02-23 18:55:03.232597 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 500, in wrap_socket\r\n2021-02-23 18:55:03.232605 | test-node\ + \ | E return self.sslsocket_class._create(\r\n2021-02-23 18:55:03.232612\ + \ | test-node | E File \"/usr/lib64/python3.9/ssl.py\", line 1040,\ + \ in _create\r\n2021-02-23 18:55:03.232619 | test-node | E self.do_handshake()\r\ + \n2021-02-23 18:55:03.232625 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 1309, in do_handshake\r\n2021-02-23 18:55:03.232632 | test-node\ + \ | E self._sslobj.do_handshake()\r\n2021-02-23 18:55:03.232638\ + \ | test-node | E socket.timeout: _ssl.c:1106: The handshake operation\ + \ timed out\r\n2021-02-23 18:55:03.232645 | test-node | E\r\n2021-02-23\ + \ 18:55:03.232651 | test-node | E During handling of the above exception,\ + \ another exception occurred:\r\n2021-02-23 18:55:03.232658 | test-node\ + \ | E\r\n2021-02-23 18:55:03.232678 | test-node | E Traceback (most\ + \ recent call last):\r\n2021-02-23 18:55:03.232689 | test-node | E \ + \ File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 670, in urlopen\r\n2021-02-23 18:55:03.232696 | test-node | E\ + \ httplib_response = self._make_request(\r\n2021-02-23 18:55:03.232702\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 384, in _make_request\r\n2021-02-23 18:55:03.232709 | test-node\ + \ | E self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)\r\ + \n2021-02-23 18:55:03.232716 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 335, in _raise_timeout\r\n2021-02-23 18:55:03.232742 | test-node\ + \ | E raise ReadTimeoutError(\r\n2021-02-23 18:55:03.232752 | test-node\ + \ | E pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\r\n2021-02-23 18:55:03.232758\ + \ | test-node | E\r\n2021-02-23 18:55:03.232765 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.232772 | test-node | E\r\n2021-02-23 18:55:03.232778 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.232785\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 439, in send\r\n2021-02-23 18:55:03.232791 | test-node | E \ + \ resp = conn.urlopen(\r\n2021-02-23 18:55:03.232798 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232804 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232811 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232832 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232844 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232850 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232857 | test-node\ + \ | E [Previous line repeated 2 more times]\r\n2021-02-23 18:55:03.232863\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 724, in urlopen\r\n2021-02-23 18:55:03.232870 | test-node | E\ + \ retries = retries.increment(\r\n2021-02-23 18:55:03.232876 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py\"\ + , line 439, in increment\r\n2021-02-23 18:55:03.232883 | test-node |\ + \ E raise MaxRetryError(_pool, url, error or ResponseError(cause))\r\ + \n2021-02-23 18:55:03.232890 | test-node | E pip._vendor.urllib3.exceptions.MaxRetryError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.232918\ + \ | test-node | E\r\n2021-02-23 18:55:03.232927 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.232934 | test-node | E\r\n2021-02-23 18:55:03.232940 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.232947\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/base_command.py\"\ + , line 216, in _main\r\n2021-02-23 18:55:03.232954 | test-node | E \ + \ status = self.run(options, args)\r\n2021-02-23 18:55:03.232960\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/req_command.py\"\ + , line 182, in wrapper\r\n2021-02-23 18:55:03.232967 | test-node | E\ + \ return func(self, options, args)\r\n2021-02-23 18:55:03.232974\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/commands/wheel.py\"\ + , line 155, in run\r\n2021-02-23 18:55:03.232980 | test-node | E \ + \ requirement_set = resolver.resolve(\r\n2021-02-23 18:55:03.232987\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 184, in resolve\r\n2021-02-23 18:55:03.233000 | test-node | E\ + \ discovered_reqs.extend(self._resolve_one(requirement_set, req))\r\ + \n2021-02-23 18:55:03.233007 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 391, in _resolve_one\r\n2021-02-23 18:55:03.233014 | test-node\ + \ | E abstract_dist = self._get_abstract_dist_for(req_to_install)\r\ + \n2021-02-23 18:55:03.233020 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 343, in _get_abstract_dist_for\r\n2021-02-23 18:55:03.233027\ + \ | test-node | E abstract_dist = self.preparer.prepare_linked_requirement(req)\r\ + \n2021-02-23 18:55:03.233035 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 467, in prepare_linked_requirement\r\n2021-02-23 18:55:03.233041\ + \ | test-node | E local_file = unpack_url(\r\n2021-02-23 18:55:03.233048\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 255, in unpack_url\r\n2021-02-23 18:55:03.233054 | test-node\ + \ | E file = get_http_url(\r\n2021-02-23 18:55:03.233061 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 129, in get_http_url\r\n2021-02-23 18:55:03.233068 | test-node\ + \ | E from_path, content_type = _download_http_url(\r\n2021-02-23\ + \ 18:55:03.233074 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 278, in _download_http_url\r\n2021-02-23 18:55:03.233081 | test-node\ + \ | E download = downloader(link)\r\n2021-02-23 18:55:03.233087\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 170, in __call__\r\n2021-02-23 18:55:03.233094 | test-node |\ + \ E resp = _http_get_download(self._session, link)\r\n2021-02-23\ + \ 18:55:03.233100 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 139, in _http_get_download\r\n2021-02-23 18:55:03.233107 | test-node\ + \ | E resp = session.get(target_url, headers=HEADERS, stream=True)\r\ + \n2021-02-23 18:55:03.233127 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 543, in get\r\n2021-02-23 18:55:03.233139 | test-node | E \ + \ return self.request('GET', url, **kwargs)\r\n2021-02-23 18:55:03.233148\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/session.py\"\ + , line 421, in request\r\n2021-02-23 18:55:03.233190 | test-node | E\ + \ return super(PipSession, self).request(method, url, *args, **kwargs)\r\ + \n2021-02-23 18:55:03.233213 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 530, in request\r\n2021-02-23 18:55:03.233220 | test-node | E\ + \ resp = self.send(prep, **send_kwargs)\r\n2021-02-23 18:55:03.233227\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 643, in send\r\n2021-02-23 18:55:03.233233 | test-node | E \ + \ r = adapter.send(request, **kwargs)\r\n2021-02-23 18:55:03.233240\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py\"\ + , line 53, in send\r\n2021-02-23 18:55:03.233246 | test-node | E \ + \ resp = super(CacheControlAdapter, self).send(request, **kw)\r\n\ + 2021-02-23 18:55:03.233253 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 516, in send\r\n2021-02-23 18:55:03.233259 | test-node | E \ + \ raise ConnectionError(e, request=request)\r\n2021-02-23 18:55:03.233274\ + \ | test-node | E pip._vendor.requests.exceptions.ConnectionError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.233308\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233318 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 128, in fetch_build_egg\r\n2021-02-23 18:55:03.233359 | test-node\ + \ | E subprocess.check_call(cmd)\r\n2021-02-23 18:55:03.233396\ + \ | test-node | E File \"/usr/lib64/python3.9/subprocess.py\", line\ + \ 373, in check_call\r\n2021-02-23 18:55:03.233405 | test-node | E \ + \ raise CalledProcessError(retcode, cmd)\r\n2021-02-23 18:55:03.233412\ + \ | test-node | E subprocess.CalledProcessError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.233420 | test-node\ + \ | E\r\n2021-02-23 18:55:03.233427 | test-node | E The above exception\ + \ was the direct cause of the following exception:\r\n2021-02-23 18:55:03.233433\ + \ | test-node | E\r\n2021-02-23 18:55:03.233440 | test-node | E Traceback\ + \ (most recent call last):\r\n2021-02-23 18:55:03.233446 | test-node\ + \ | E File \"/sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/setup.py\"\ + , line 5, in \r\n2021-02-23 18:55:03.233452 | test-node | E\ + \ setup(use_scm_version=True)\r\n2021-02-23 18:55:03.233458 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 164, in setup\r\n2021-02-23 18:55:03.233465 | test-node | E \ + \ _install_setup_requires(attrs)\r\n2021-02-23 18:55:03.233472 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 159, in _install_setup_requires\r\n2021-02-23 18:55:03.233478\ + \ | test-node | E dist.fetch_build_eggs(dist.setup_requires)\r\n\ + 2021-02-23 18:55:03.233484 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 699, in fetch_build_eggs\r\n2021-02-23 18:55:03.233491 | test-node\ + \ | E resolved_dists = pkg_resources.working_set.resolve(\r\n2021-02-23\ + \ 18:55:03.233497 | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 779, in resolve\r\n2021-02-23 18:55:03.233504 | test-node | E\ + \ dist = best[req.key] = env.best_match(\r\n2021-02-23 18:55:03.233510\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1064, in best_match\r\n2021-02-23 18:55:03.233517 | test-node\ + \ | E return self.obtain(req, installer)\r\n2021-02-23 18:55:03.233523\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1076, in obtain\r\n2021-02-23 18:55:03.233551 | test-node | E\ + \ return installer(requirement)\r\n2021-02-23 18:55:03.233565 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 758, in fetch_build_egg\r\n2021-02-23 18:55:03.233624 | test-node\ + \ | E return fetch_build_egg(self, req)\r\n2021-02-23 18:55:03.233636\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 130, in fetch_build_egg\r\n2021-02-23 18:55:03.233643 | test-node\ + \ | E raise DistutilsError(str(e)) from e\r\n2021-02-23 18:55:03.233649\ + \ | test-node | E distutils.errors.DistutilsError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.233665 | test-node\ + \ | E\r\n2021-02-23 18:55:03.233672 | test-node | E 18:44:34.522 commands.py\ + \ DEBUG Command stdout:\r\n2021-02-23 18:55:03.233678 | test-node\ + \ | E ERROR Preparing of the upstream to the SRPM build failed:\ + \ Command 'python3 setup.py --version' failed.\r\n2021-02-23 18:55:03.233685\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233691 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/api.py\"\ + , line 510, in create_srpm\r\n2021-02-23 18:55:03.233698 | test-node\ + \ | E self.up.prepare_upstream_for_srpm_creation(upstream_ref=upstream_ref)\r\ + \n2021-02-23 18:55:03.233704 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/upstream.py\"\ + , line 673, in prepare_upstream_for_srpm_creation\r\n2021-02-23 18:55:03.233711\ + \ | test-node | E current_git_describe_version = self.get_current_version()\r\ + \n2021-02-23 18:55:03.233717 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/upstream.py\"\ + , line 276, in get_current_version\r\n2021-02-23 18:55:03.233736 | test-node\ + \ | E action_output = self.get_output_from_action(\r\n2021-02-23\ + \ 18:55:03.233754 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/base_git.py\"\ + , line 314, in get_output_from_action\r\n2021-02-23 18:55:03.233761\ + \ | test-node | E self.command_handler.run_command(\r\n2021-02-23\ + \ 18:55:03.233768 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/command_handler.py\"\ + , line 100, in run_command\r\n2021-02-23 18:55:03.233774 | test-node\ + \ | E return commands.run_command(\r\n2021-02-23 18:55:03.233797\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/packit/utils/commands.py\"\ + , line 97, in run_command\r\n2021-02-23 18:55:03.233810 | test-node\ + \ | E raise PackitCommandFailedError(\r\n2021-02-23 18:55:03.233816\ + \ | test-node | E packit.exceptions.PackitCommandFailedError: Command\ + \ 'python3 setup.py --version' failed.\r\n2021-02-23 18:55:03.233823\ + \ | test-node | E\r\n2021-02-23 18:55:03.233829 | test-node | E The\ + \ above exception was the direct cause of the following exception:\r\ + \n2021-02-23 18:55:03.233836 | test-node | E\r\n2021-02-23 18:55:03.233843\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233849 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/cli/utils.py\"\ + , line 64, in covered_func\r\n2021-02-23 18:55:03.233856 | test-node\ + \ | E func(config=config, *args, **kwargs)\r\n2021-02-23 18:55:03.233862\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/packit/cli/srpm.py\"\ + , line 66, in srpm\r\n2021-02-23 18:55:03.233869 | test-node | E \ + \ srpm_path = api.create_srpm(output_file=output, upstream_ref=upstream_ref)\r\ + \n2021-02-23 18:55:03.233875 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/api.py\"\ + , line 512, in create_srpm\r\n2021-02-23 18:55:03.233882 | test-node\ + \ | E raise PackitSRPMException(\r\n2021-02-23 18:55:03.233889\ + \ | test-node | E packit.exceptions.PackitSRPMException: Preparing\ + \ of the upstream to the SRPM build failed: Command 'python3 setup.py\ + \ --version' failed.\r\n```\r\nMy assumption is this was a network flake\ + \ with files.pythonhosted.org but since the new retry mechanism can\ + \ be seen in play here, I wanna confirm this behaviour is expected.\r\ + \n" + closed_at: '2021-02-24T09:16:06Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/545/comments + created_at: '2021-02-24T08:26:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/545/events + html_url: https://github.com/packit/ogr/issues/545 + id: 815243822 labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/453/labels{/name} + - color: 008672 + default: true + description: Extra attention is needed + id: 1160311265 + name: help wanted + node_id: MDU6TGFiZWwxMTYwMzExMjY1 + url: https://api.github.com/repos/packit/ogr/labels/help%20wanted + labels_url: https://api.github.com/repos/packit/ogr/issues/545/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDY3NDkwMTYz - number: 453 + node_id: MDU6SXNzdWU4MTUyNDM4MjI= + number: 545 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/453.diff - html_url: https://github.com/packit/ogr/pull/453 - patch_url: https://github.com/packit/ogr/pull/453.patch - url: https://api.github.com/repos/packit/ogr/pulls/453 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: https://github.com/packit-service -> https://github.com/packit - updated_at: '2020-08-17T09:27:06Z' - url: https://api.github.com/repos/packit/ogr/issues/453 + title: Max retries exceeded with url files.pythonhosted.org + updated_at: '2021-02-24T12:53:54Z' + url: https://api.github.com/repos/packit/ogr/issues/545 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka - - active_lock_reason: null + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.113239 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:27 GMT + ETag: W/"237d07ddb0d564ba13a609cf12d68c18517706090bce1d168750f8349b7cf2b4" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F7F869:191AD32:6075DC3B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4733' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '267' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/548: + - metadata: + latency: 0.1905815601348877 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f33` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f34` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `main` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-03-08T08:50:33Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/548/comments + created_at: '2021-03-03T14:38:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/548/events + html_url: https://github.com/packit/ogr/issues/548 + id: 821170152 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/548/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MjExNzAxNTI= + number: 548 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose downstream failed for release 0.22.0' + updated_at: '2021-03-08T08:50:33Z' + url: https://api.github.com/repos/packit/ogr/issues/548 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + _next: null + elapsed: 0.190411 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:39 GMT + ETag: W/"250aa5586efe6453976c847d48c28e0dcb59ea40d94eca2c99b4037dd9a0ef8e" + Last-Modified: Mon, 08 Mar 2021 08:50:33 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: 85EE:7CFE:F7D3C2:1917323:6075DC0A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4965' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '35' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.11378884315490723 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f33` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f34` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `main` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-03-08T08:50:33Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/548/comments + created_at: '2021-03-03T14:38:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/548/events + html_url: https://github.com/packit/ogr/issues/548 + id: 821170152 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/548/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MjExNzAxNTI= + number: 548 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose downstream failed for release 0.22.0' + updated_at: '2021-03-08T08:50:33Z' + url: https://api.github.com/repos/packit/ogr/issues/548 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + _next: null + elapsed: 0.113581 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:27 GMT + ETag: W/"250aa5586efe6453976c847d48c28e0dcb59ea40d94eca2c99b4037dd9a0ef8e" + Last-Modified: Mon, 08 Mar 2021 08:50:33 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: 85EE:7CFE:F7F857:191AD10:6075DC3B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4734' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '266' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/551: + - metadata: + latency: 0.4313185214996338 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Add method where user can request access for a project.\r\n\r\n\ - - Gitlab - Implemented here - #439 \r\n- Github - After looking into\ - \ https://pygithub.readthedocs.io/en/latest/index.html (Seems its not\ - \ possible in Github to request for project access)\r\n- Pagure - Unsure\ - \ about the support (But unable to find anything here - https://pagure.io/api/0/#projects-tab)" - closed_at: '2020-08-17T00:45:05Z' + body: "This is gonna be a fun one: I tried to use upsint to create a PR\ + \ in src.fedoraproject.org/rpms but failed because there are two different\ + \ servers for the forge API and a git server:\r\n\r\nI use SSH:\r\n\ + ```\r\nssh://ttomecek@pkgs.fedoraproject.org/rpms/python-ogr.git\r\n\ + ```\r\n\r\nBut pagure API is at\r\n```\r\nhttps://src.fedoraproject.org/rpms/python-ogr.git\r\ + \n```\r\n\r\nI'm wondering if it's possible to set up an authentication\ + \ entry which would recognize pkgs.fp.o but route API requests to src.fp.o.\ + \ Tried these but none of them worked with SSH:\r\n```\r\n fedora-dist-git:\r\ + \n type: pagure\r\n instance_url: \"https://src.fedoraproject.org/\"\ + \r\n token: ...\r\n fedora-dist-git2:\r\n type: pagure\r\n \ + \ instance_url: \"https://pkgs.fedoraproject.org/\"\r\n token: ...\r\ + \n```\r\n\r\nWorst case I could hard-code the logic to upsint though\ + \ I think it would be useful to have in ogr itself." + closed_at: '2021-03-10T14:34:28Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/440/comments - created_at: '2020-07-28T17:53:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/440/events - html_url: https://github.com/packit/ogr/issues/440 - id: 667259796 + comments_url: https://api.github.com/repos/packit/ogr/issues/551/comments + created_at: '2021-03-08T08:51:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/551/events + html_url: https://github.com/packit/ogr/issues/551 + id: 824335510 labels: - color: a2eeef default: false @@ -61770,113 +63597,21257 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/440/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/551/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NjcyNTk3OTY= - number: 440 + node_id: MDU6SXNzdWU4MjQzMzU1MTA= + number: 551 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement request_access for project - updated_at: '2020-08-17T00:45:05Z' - url: https://api.github.com/repos/packit/ogr/issues/440 + title: 'authentication: support alternative server for git and git-forge + API (src.fp.o)' + updated_at: '2021-03-10T14:34:28Z' + url: https://api.github.com/repos/packit/ogr/issues/551 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi - - active_lock_reason: null + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.430946 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:38 GMT + ETag: W/"5c03bc51c7b358b1fbf6d1559afef23743db86aaa42066360ce806eee3fc5047" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F7D342:191724B:6075DC0A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4968' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '32' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.10498881340026855 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Added unit test for Pagure.PullRequest.head_commit - closed_at: '2020-08-15T10:15:27Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/369/comments - created_at: '2020-03-27T14:53:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/369/events - html_url: https://github.com/packit/ogr/pull/369 - id: 589189620 + author_association: CONTRIBUTOR + body: "This is gonna be a fun one: I tried to use upsint to create a PR\ + \ in src.fedoraproject.org/rpms but failed because there are two different\ + \ servers for the forge API and a git server:\r\n\r\nI use SSH:\r\n\ + ```\r\nssh://ttomecek@pkgs.fedoraproject.org/rpms/python-ogr.git\r\n\ + ```\r\n\r\nBut pagure API is at\r\n```\r\nhttps://src.fedoraproject.org/rpms/python-ogr.git\r\ + \n```\r\n\r\nI'm wondering if it's possible to set up an authentication\ + \ entry which would recognize pkgs.fp.o but route API requests to src.fp.o.\ + \ Tried these but none of them worked with SSH:\r\n```\r\n fedora-dist-git:\r\ + \n type: pagure\r\n instance_url: \"https://src.fedoraproject.org/\"\ + \r\n token: ...\r\n fedora-dist-git2:\r\n type: pagure\r\n \ + \ instance_url: \"https://pkgs.fedoraproject.org/\"\r\n token: ...\r\ + \n```\r\n\r\nWorst case I could hard-code the logic to upsint though\ + \ I think it would be useful to have in ogr itself." + closed_at: '2021-03-10T14:34:28Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/551/comments + created_at: '2021-03-08T08:51:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/551/events + html_url: https://github.com/packit/ogr/issues/551 + id: 824335510 labels: - - color: '000000' + - color: a2eeef default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/369/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/551/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzk0ODAwMjA0 - number: 369 + node_id: MDU6SXNzdWU4MjQzMzU1MTA= + number: 551 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/369.diff - html_url: https://github.com/packit/ogr/pull/369 - patch_url: https://github.com/packit/ogr/pull/369.patch - url: https://api.github.com/repos/packit/ogr/pulls/369 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Added unit test for Pagure.PullRequest.head_commit - updated_at: '2020-08-15T10:15:27Z' - url: https://api.github.com/repos/packit/ogr/issues/369 + title: 'authentication: support alternative server for git and git-forge + API (src.fp.o)' + updated_at: '2021-03-10T14:34:28Z' + url: https://api.github.com/repos/packit/ogr/issues/551 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj - - active_lock_reason: null + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.104821 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:27 GMT + ETag: W/"5c03bc51c7b358b1fbf6d1559afef23743db86aaa42066360ce806eee3fc5047" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F7F839:191ACF7:6075DC3B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4735' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '265' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/557: + - metadata: + latency: 0.20035386085510254 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- [x] The contribution guide should be accessible from the README.md.\ - \ (#265 )\r\n- [ ] We need to be sure that the guide is current and\ - \ describes the testing approach well.\r\n- [ ] Document `/packit` command." - closed_at: '2020-08-14T09:27:22Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/165/comments - created_at: '2019-09-05T13:37:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/165/events - html_url: https://github.com/packit/ogr/issues/165 - id: 489761258 + author_association: CONTRIBUTOR + body: "```\r\n File \"/home/tt/g/user-cont/packit/packit/schema.py\"\ + , line 440, in make_instance \ + \ \ + \ \r\n return Config(**data) \ + \ \ + \ \r\ + \n File \"/home/tt/g/user-cont/packit/packit/config/config.py\", line\ + \ 99, in __init__ \ + \ \r\n self.services\ + \ = Config.load_authentication(kwargs) \ + \ \ + \ \r\n File \"/home/tt/g/user-cont/packit/packit/config/config.py\"\ + , line 164, in load_authentication \ + \ \r\n\ + \ services = get_instances_from_dict(instances=raw_dict[\"authentication\"\ + ]) \ + \ \r\n File \"/home/tt/g/user-cont/ogr/ogr/factory.py\"\ + , line 211, in get_instances_from_dict \ + \ \ + \ \r\n service_instance = service_kls(**value)\r\nTypeError:\ + \ __init__() got an unexpected keyword argument 'type'\r\n```\r\n\r\n\ + ```\r\nauthentication:\r\n gitlab.com:\r\n type: gitlab\r\n token:\ + \ \"...\"\r\n instance_url: \"https://gitlab.com/\"\r\n fedora-dist-git:\r\ + \n type: pagure\r\n instance_url: \"https://src.fedoraproject.org/\"\ + \r\n token: ...\r\n```\r\n\r\nIt's tracebacking on the `type: gitlab`\ + \ - I don't understand, what's wrong there? Especially when `type: pagure`\ + \ is fine." + closed_at: '2021-03-17T12:45:19Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/557/comments + created_at: '2021-03-15T17:37:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/557/events + html_url: https://github.com/packit/ogr/issues/557 + id: 832040748 + labels: + - color: 008672 + default: false + description: We need more info from the requester. + id: 1432779351 + name: need-info + node_id: MDU6TGFiZWwxNDMyNzc5MzUx + url: https://api.github.com/repos/packit/ogr/labels/need-info + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/557/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MzIwNDA3NDg= + number: 557 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '`authentication: type: gitlab` results in `TypeError: __init__() + got an unexpected keyword argument ''type''`' + updated_at: '2021-03-17T12:45:19Z' + url: https://api.github.com/repos/packit/ogr/issues/557 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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.200159 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:37 GMT + ETag: W/"9c7ed88c8a7900309e8ff690679cceb7f5717d39a309164e6fe6f793bd8a786d" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F7D2FD:19171E5:6075DC09 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4970' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '30' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.1235196590423584 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n File \"/home/tt/g/user-cont/packit/packit/schema.py\"\ + , line 440, in make_instance \ + \ \ + \ \r\n return Config(**data) \ + \ \ + \ \r\ + \n File \"/home/tt/g/user-cont/packit/packit/config/config.py\", line\ + \ 99, in __init__ \ + \ \r\n self.services\ + \ = Config.load_authentication(kwargs) \ + \ \ + \ \r\n File \"/home/tt/g/user-cont/packit/packit/config/config.py\"\ + , line 164, in load_authentication \ + \ \r\n\ + \ services = get_instances_from_dict(instances=raw_dict[\"authentication\"\ + ]) \ + \ \r\n File \"/home/tt/g/user-cont/ogr/ogr/factory.py\"\ + , line 211, in get_instances_from_dict \ + \ \ + \ \r\n service_instance = service_kls(**value)\r\nTypeError:\ + \ __init__() got an unexpected keyword argument 'type'\r\n```\r\n\r\n\ + ```\r\nauthentication:\r\n gitlab.com:\r\n type: gitlab\r\n token:\ + \ \"...\"\r\n instance_url: \"https://gitlab.com/\"\r\n fedora-dist-git:\r\ + \n type: pagure\r\n instance_url: \"https://src.fedoraproject.org/\"\ + \r\n token: ...\r\n```\r\n\r\nIt's tracebacking on the `type: gitlab`\ + \ - I don't understand, what's wrong there? Especially when `type: pagure`\ + \ is fine." + closed_at: '2021-03-17T12:45:19Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/557/comments + created_at: '2021-03-15T17:37:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/557/events + html_url: https://github.com/packit/ogr/issues/557 + id: 832040748 + labels: + - color: 008672 + default: false + description: We need more info from the requester. + id: 1432779351 + name: need-info + node_id: MDU6TGFiZWwxNDMyNzc5MzUx + url: https://api.github.com/repos/packit/ogr/labels/need-info + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/557/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MzIwNDA3NDg= + number: 557 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '`authentication: type: gitlab` results in `TypeError: __init__() + got an unexpected keyword argument ''type''`' + updated_at: '2021-03-17T12:45:19Z' + url: https://api.github.com/repos/packit/ogr/issues/557 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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.123345 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:26 GMT + ETag: W/"9c7ed88c8a7900309e8ff690679cceb7f5717d39a309164e6fe6f793bd8a786d" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F7F809:191ACA7:6075DC3A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4737' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '263' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/559: + - metadata: + latency: 0.1974799633026123 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "The package is not PEP-561 compliant (see https://mypy.readthedocs.io/en/latest/installed_packages.html#creating-pep-561-compatible-packages).\r\ + \n\r\nThe file `py.typed` need to be added at the root of the ogr package." + closed_at: '2021-03-17T14:43:37Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/559/comments + created_at: '2021-03-15T20:43:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/559/events + html_url: https://github.com/packit/ogr/issues/559 + id: 832177415 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/559/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MzIxNzc0MTU= + number: 559 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: mypy cannot use the type annotation + updated_at: '2021-03-17T14:57:14Z' + url: https://api.github.com/repos/packit/ogr/issues/559 + user: + avatar_url: https://avatars.githubusercontent.com/u/3617836?v=4 + events_url: https://api.github.com/users/Roming22/events{/privacy} + followers_url: https://api.github.com/users/Roming22/followers + following_url: https://api.github.com/users/Roming22/following{/other_user} + gists_url: https://api.github.com/users/Roming22/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Roming22 + id: 3617836 + login: Roming22 + node_id: MDQ6VXNlcjM2MTc4MzY= + organizations_url: https://api.github.com/users/Roming22/orgs + received_events_url: https://api.github.com/users/Roming22/received_events + repos_url: https://api.github.com/users/Roming22/repos + site_admin: false + starred_url: https://api.github.com/users/Roming22/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Roming22/subscriptions + type: User + url: https://api.github.com/users/Roming22 + _next: null + elapsed: 0.197317 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:37 GMT + ETag: W/"14fb23421ea16460e550a41efbb7d4de06b896909d759c23dc3ede6aa48efdf9" + Last-Modified: Mon, 12 Apr 2021 18:22:48 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: 85EE:7CFE:F7D2A0:191716A:6075DC09 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4972' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '28' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.11180734634399414 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "The package is not PEP-561 compliant (see https://mypy.readthedocs.io/en/latest/installed_packages.html#creating-pep-561-compatible-packages).\r\ + \n\r\nThe file `py.typed` need to be added at the root of the ogr package." + closed_at: '2021-03-17T14:43:37Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/559/comments + created_at: '2021-03-15T20:43:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/559/events + html_url: https://github.com/packit/ogr/issues/559 + id: 832177415 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/559/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MzIxNzc0MTU= + number: 559 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: mypy cannot use the type annotation + updated_at: '2021-03-17T14:57:14Z' + url: https://api.github.com/repos/packit/ogr/issues/559 + user: + avatar_url: https://avatars.githubusercontent.com/u/3617836?v=4 + events_url: https://api.github.com/users/Roming22/events{/privacy} + followers_url: https://api.github.com/users/Roming22/followers + following_url: https://api.github.com/users/Roming22/following{/other_user} + gists_url: https://api.github.com/users/Roming22/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Roming22 + id: 3617836 + login: Roming22 + node_id: MDQ6VXNlcjM2MTc4MzY= + organizations_url: https://api.github.com/users/Roming22/orgs + received_events_url: https://api.github.com/users/Roming22/received_events + repos_url: https://api.github.com/users/Roming22/repos + site_admin: false + starred_url: https://api.github.com/users/Roming22/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Roming22/subscriptions + type: User + url: https://api.github.com/users/Roming22 + _next: null + elapsed: 0.111555 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:26 GMT + ETag: W/"14fb23421ea16460e550a41efbb7d4de06b896909d759c23dc3ede6aa48efdf9" + Last-Modified: Mon, 12 Apr 2021 18:22:48 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: 85EE:7CFE:F7F7DB:191AC4E:6075DC3A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4739' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '261' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/56: + - metadata: + latency: 0.20145440101623535 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "The `@readonly` decorator should be renamed as it can confuse newcomers\ + \ that the method itself is \"readonly\". The fact is that it has the\ + \ opposite meaning of the read-only.\r\n\r\nFeel free to add your ideas\ + \ as a single comment so we can easily vote.\r\n\r\n-----\r\n\r\nFollow-up\ + \ from #48" + closed_at: '2019-06-24T14:46:14Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/56/comments + created_at: '2019-04-09T08:17:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/56/events + html_url: https://github.com/packit/ogr/issues/56 + id: 430829968 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/56/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MzA4Mjk5Njg= + number: 56 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'better name for @readonly decorator ' + updated_at: '2019-06-24T14:46:14Z' + url: https://api.github.com/repos/packit/ogr/issues/56 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.201255 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:23 GMT + ETag: W/"9aafa410b6d1b6e1779d0e467ad27fa0d70d4e978358fde4634ae91f08163192" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F7F50A:191A7C6:6075DC36 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4756' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '244' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.40474772453308105 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "The `@readonly` decorator should be renamed as it can confuse newcomers\ + \ that the method itself is \"readonly\". The fact is that it has the\ + \ opposite meaning of the read-only.\r\n\r\nFeel free to add your ideas\ + \ as a single comment so we can easily vote.\r\n\r\n-----\r\n\r\nFollow-up\ + \ from #48" + closed_at: '2019-06-24T14:46:14Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/56/comments + created_at: '2019-04-09T08:17:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/56/events + html_url: https://github.com/packit/ogr/issues/56 + id: 430829968 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/56/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MzA4Mjk5Njg= + number: 56 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'better name for @readonly decorator ' + updated_at: '2019-06-24T14:46:14Z' + url: https://api.github.com/repos/packit/ogr/issues/56 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.404539 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:04 GMT + ETag: W/"9aafa410b6d1b6e1779d0e467ad27fa0d70d4e978358fde4634ae91f08163192" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F818E1:191DECD:6075DC60 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4546' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '454' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/58: + - metadata: + latency: 0.19752717018127441 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR + body: "FML!\r\n\r\nSo my fork of packit is named source-git, not packit.\r\ + \n\r\nWe should use an API call to obtain github forks, not a guess\ + \ work." + closed_at: '2019-06-27T10:34:34Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/58/comments + created_at: '2019-04-15T11:38:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/58/events + html_url: https://github.com/packit/ogr/issues/58 + id: 433234905 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/58/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MzMyMzQ5MDU= + number: 58 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'github: fork repository name may not match the upstream repo name' + updated_at: '2019-06-27T10:34:34Z' + url: https://api.github.com/repos/packit/ogr/issues/58 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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.197364 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:22 GMT + ETag: W/"73e2be99ca269f3fe6e51cd0e206d8beb31b26bc68c4056cb5a3c714b2bebe8c" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F7F421:191A66D:6075DC35 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4761' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '239' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.20122575759887695 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR + body: "FML!\r\n\r\nSo my fork of packit is named source-git, not packit.\r\ + \n\r\nWe should use an API call to obtain github forks, not a guess\ + \ work." + closed_at: '2019-06-27T10:34:34Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/58/comments + created_at: '2019-04-15T11:38:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/58/events + html_url: https://github.com/packit/ogr/issues/58 + id: 433234905 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/58/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MzMyMzQ5MDU= + number: 58 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'github: fork repository name may not match the upstream repo name' + updated_at: '2019-06-27T10:34:34Z' + url: https://api.github.com/repos/packit/ogr/issues/58 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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.201018 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:03 GMT + ETag: W/"73e2be99ca269f3fe6e51cd0e206d8beb31b26bc68c4056cb5a3c714b2bebe8c" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F8177F:191DCA9:6075DC5F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4551' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '449' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/61: + - metadata: + latency: 0.20085763931274414 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "as integration tests needs regeneration stored yaml API communication.\r\ + \nWould be nice to add there target to be able to regenerate these files" + closed_at: '2019-06-25T14:47:44Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/61/comments + created_at: '2019-04-26T07:35:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/61/events + html_url: https://github.com/packit/ogr/issues/61 + id: 437538907 + labels: + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/61/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Mzc1Mzg5MDc= + number: 61 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: create target for makefile for regeneration testing yaml files + updated_at: '2019-06-25T14:47:44Z' + url: https://api.github.com/repos/packit/ogr/issues/61 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + _next: null + elapsed: 0.200671 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:22 GMT + ETag: W/"ebd4d0c502d99971b3b587a46bc5f3d56013bb67ddb28c2416c1ab057653282d" + Last-Modified: Mon, 12 Apr 2021 14:45:59 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: 85EE:7CFE:F7F44F:191A6AD:6075DC36 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4760' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '240' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.16797685623168945 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "as integration tests needs regeneration stored yaml API communication.\r\ + \nWould be nice to add there target to be able to regenerate these files" + closed_at: '2019-06-25T14:47:44Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/61/comments + created_at: '2019-04-26T07:35:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/61/events + html_url: https://github.com/packit/ogr/issues/61 + id: 437538907 + labels: + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/61/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Mzc1Mzg5MDc= + number: 61 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: create target for makefile for regeneration testing yaml files + updated_at: '2019-06-25T14:47:44Z' + url: https://api.github.com/repos/packit/ogr/issues/61 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + _next: null + elapsed: 0.167776 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:03 GMT + ETag: W/"ebd4d0c502d99971b3b587a46bc5f3d56013bb67ddb28c2416c1ab057653282d" + Last-Modified: Mon, 12 Apr 2021 14:45:59 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: 85EE:7CFE:F817B2:191DCFD:6075DC5F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4550' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '450' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/62: + - metadata: + latency: 0.11307430267333984 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "now each integration test class contains right one file with stored\ + \ API data.\r\nWe could reconsider it, and maybe have file for each\ + \ test, to avoid to regenerate big file and have big commits.\r\nWe\ + \ have to solve several issues:\r\n * How to handle it per test, now\ + \ there is right one service pytest fixture function what contains it\r\ + \n * How to regenerate just relevant part \r\n * maybe remove some\ + \ timestamps, UIDs and similar objects what can change on every request\r\ + \n * or manually(semiautomatically) call just affected tests - ie:\ + \ run tests, find failures (key errors) and then try to just regenerate\ + \ files for failed tests" + closed_at: '2019-04-30T19:32:17Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/62/comments + created_at: '2019-04-26T13:21:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/62/events + html_url: https://github.com/packit/ogr/issues/62 + id: 437670314 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/62/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Mzc2NzAzMTQ= + number: 62 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'testing: split yaml files with data for each test to avoid regeneration + big file and big commits' + updated_at: '2019-04-30T19:32:17Z' + url: https://api.github.com/repos/packit/ogr/issues/62 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + _next: null + elapsed: 0.112914 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:24 GMT + ETag: W/"e4920d0fa6083d4019fdc09ceeab056327a9d5b82dd9fefc60c1a6bbc8750f2d" + Last-Modified: Mon, 12 Apr 2021 14:45:59 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: 85EE:7CFE:F7F637:191A9AA:6075DC38 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4750' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '250' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.12027978897094727 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "now each integration test class contains right one file with stored\ + \ API data.\r\nWe could reconsider it, and maybe have file for each\ + \ test, to avoid to regenerate big file and have big commits.\r\nWe\ + \ have to solve several issues:\r\n * How to handle it per test, now\ + \ there is right one service pytest fixture function what contains it\r\ + \n * How to regenerate just relevant part \r\n * maybe remove some\ + \ timestamps, UIDs and similar objects what can change on every request\r\ + \n * or manually(semiautomatically) call just affected tests - ie:\ + \ run tests, find failures (key errors) and then try to just regenerate\ + \ files for failed tests" + closed_at: '2019-04-30T19:32:17Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/62/comments + created_at: '2019-04-26T13:21:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/62/events + html_url: https://github.com/packit/ogr/issues/62 + id: 437670314 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/62/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Mzc2NzAzMTQ= + number: 62 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'testing: split yaml files with data for each test to avoid regeneration + big file and big commits' + updated_at: '2019-04-30T19:32:17Z' + url: https://api.github.com/repos/packit/ogr/issues/62 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + _next: null + elapsed: 0.117561 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:05 GMT + ETag: W/"e4920d0fa6083d4019fdc09ceeab056327a9d5b82dd9fefc60c1a6bbc8750f2d" + Last-Modified: Mon, 12 Apr 2021 14:45:59 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: 85EE:7CFE:F81A71:191E137:6075DC61 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4540' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '460' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/64: + - metadata: + latency: 0.1996135711669922 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ + \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ + \nhas to be adapted, currenly I've added dependency on lower version\ + \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ + \nto avoid this issue." + closed_at: '2019-05-29T07:46:28Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments + created_at: '2019-04-29T14:41:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/64/events + html_url: https://github.com/packit/ogr/issues/64 + id: 438351136 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MzgzNTExMzY= + number: 64 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'libpagure has changed ' + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/64 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + _next: null + elapsed: 0.19945 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:23 GMT + ETag: W/"30064b7d3456d857049cafc94791dd29cd04d57387275410becb238fd94c8e15" + Last-Modified: Mon, 12 Apr 2021 14:45:59 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: 85EE:7CFE:F7F558:191A83C:6075DC37 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4754' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '246' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.148284912109375 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ + \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ + \nhas to be adapted, currenly I've added dependency on lower version\ + \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ + \nto avoid this issue." + closed_at: '2019-05-29T07:46:28Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments + created_at: '2019-04-29T14:41:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/64/events + html_url: https://github.com/packit/ogr/issues/64 + id: 438351136 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MzgzNTExMzY= + number: 64 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'libpagure has changed ' + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/64 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + _next: null + elapsed: 0.148102 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:05 GMT + ETag: W/"30064b7d3456d857049cafc94791dd29cd04d57387275410becb238fd94c8e15" + Last-Modified: Mon, 12 Apr 2021 14:45:59 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: 85EE:7CFE:F81970:191DFAC:6075DC60 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4544' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '456' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/67: + - metadata: + latency: 0.2011101245880127 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "While debugging https://github.com/packit-service/packit/issues/305\ + \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ + \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ + \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ attribute has a value `rpm/packit`, while libpagure probably expects\ + \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ + \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ + \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ + \ expects `/` in `self.repo`, which is probably not what `libpagure`\ + \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ + \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ + \ even more recently." + closed_at: '2019-05-29T07:46:28Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments + created_at: '2019-05-10T11:09:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/67/events + html_url: https://github.com/packit/ogr/issues/67 + id: 442664622 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDI2NjQ2MjI= + number: 67 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: libpagure.Pagure expects '/' not in repo attribute + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/67 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.200907 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:23 GMT + ETag: W/"a2e1cd1c698874d1ac7ff67b8a23a9443cfa8964be5814888c2d57f26491c02a" + Last-Modified: Fri, 09 Apr 2021 14:26:36 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: 85EE:7CFE:F7F583:191A878:6075DC37 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4753' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '247' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.1321728229522705 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "While debugging https://github.com/packit-service/packit/issues/305\ + \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ + \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ + \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ attribute has a value `rpm/packit`, while libpagure probably expects\ + \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ + \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ + \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ + \ expects `/` in `self.repo`, which is probably not what `libpagure`\ + \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ + \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ + \ even more recently." + closed_at: '2019-05-29T07:46:28Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments + created_at: '2019-05-10T11:09:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/67/events + html_url: https://github.com/packit/ogr/issues/67 + id: 442664622 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDI2NjQ2MjI= + number: 67 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: libpagure.Pagure expects '/' not in repo attribute + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/67 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.132002 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:05 GMT + ETag: W/"a2e1cd1c698874d1ac7ff67b8a23a9443cfa8964be5814888c2d57f26491c02a" + Last-Modified: Fri, 09 Apr 2021 14:26:36 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: 85EE:7CFE:F81998:191DFEE:6075DC61 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4543' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '457' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/68: + - metadata: + latency: 0.20155549049377441 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-05-13T12:52:45Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/68/comments + created_at: '2019-05-13T12:50:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/68/events + html_url: https://github.com/packit/ogr/issues/68 + id: 443380561 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/68/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDMzODA1NjE= + number: 68 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-05-13T12:52:45Z' + url: https://api.github.com/repos/packit/ogr/issues/68 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.201297 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:23 GMT + ETag: W/"10b55a8251fad2078c5a4625943a2560effbc0fe9b8bb48eb34c9ef1818992e7" + Last-Modified: Fri, 09 Apr 2021 14:26:36 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: 85EE:7CFE:F7F5AA:191A8C2:6075DC37 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4752' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '248' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.13440823554992676 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-05-13T12:52:45Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/68/comments + created_at: '2019-05-13T12:50:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/68/events + html_url: https://github.com/packit/ogr/issues/68 + id: 443380561 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/68/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDMzODA1NjE= + number: 68 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-05-13T12:52:45Z' + url: https://api.github.com/repos/packit/ogr/issues/68 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.134247 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:05 GMT + ETag: W/"10b55a8251fad2078c5a4625943a2560effbc0fe9b8bb48eb34c9ef1818992e7" + Last-Modified: Fri, 09 Apr 2021 14:26:36 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: 85EE:7CFE:F81A4B:191E0FA:6075DC61 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4541' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '459' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/73: + - metadata: + latency: 0.20066595077514648 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "What about changing `CommitStatus`/`PullRequestStatus` to `CommitFlag`/`PullRequestFlag`?\r\ + \n\r\n_Original discussion: https://github.com/packit-service/ogr/pull/71#pullrequestreview-240461635_" + closed_at: '2019-07-17T12:52:02Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/73/comments + created_at: '2019-05-29T07:10:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/73/events + html_url: https://github.com/packit/ogr/issues/73 + id: 449635096 + labels: + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/73/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDk2MzUwOTY= + number: 73 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Change "Status" to "Flag" in the class names + updated_at: '2019-07-17T12:52:02Z' + url: https://api.github.com/repos/packit/ogr/issues/73 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.200488 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:19 GMT + ETag: W/"c59a3e233d94baf66a98189cac03292f0e4ce0d6e6fabc780fd7fec1e44fb02f" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F7F1C7:191A274:6075DC32 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4776' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '224' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.15621304512023926 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "What about changing `CommitStatus`/`PullRequestStatus` to `CommitFlag`/`PullRequestFlag`?\r\ + \n\r\n_Original discussion: https://github.com/packit-service/ogr/pull/71#pullrequestreview-240461635_" + closed_at: '2019-07-17T12:52:02Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/73/comments + created_at: '2019-05-29T07:10:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/73/events + html_url: https://github.com/packit/ogr/issues/73 + id: 449635096 + labels: + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/73/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDk2MzUwOTY= + number: 73 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Change "Status" to "Flag" in the class names + updated_at: '2019-07-17T12:52:02Z' + url: https://api.github.com/repos/packit/ogr/issues/73 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.156047 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:59 GMT + ETag: W/"c59a3e233d94baf66a98189cac03292f0e4ce0d6e6fabc780fd7fec1e44fb02f" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F813B1:191D6B4:6075DC5B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4566' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '434' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/74: + - metadata: + latency: 0.1626298427581787 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ + \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" + closed_at: '2019-07-11T08:48:44Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments + created_at: '2019-05-29T07:12:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/74/events + html_url: https://github.com/packit/ogr/issues/74 + id: 449635655 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDk2MzU2NTU= + number: 74 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add a link to `GitTag` from `Release`. + updated_at: '2019-07-11T08:48:44Z' + url: https://api.github.com/repos/packit/ogr/issues/74 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.16231 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:19 GMT + ETag: W/"975726ec8aeb3d52d10d4b73c344c4ac8951b74541d5e5930de8aa515e891e7c" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F7F268:191A389:6075DC33 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4771' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '229' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.20070672035217285 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ + \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" + closed_at: '2019-07-11T08:48:44Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments + created_at: '2019-05-29T07:12:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/74/events + html_url: https://github.com/packit/ogr/issues/74 + id: 449635655 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDk2MzU2NTU= + number: 74 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add a link to `GitTag` from `Release`. + updated_at: '2019-07-11T08:48:44Z' + url: https://api.github.com/repos/packit/ogr/issues/74 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.200499 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:00 GMT + ETag: W/"975726ec8aeb3d52d10d4b73c344c4ac8951b74541d5e5930de8aa515e891e7c" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F8149F:191D836:6075DC5C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4561' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '439' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/76: + - metadata: + latency: 0.20259737968444824 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-06-11T13:19:01Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/76/comments + created_at: '2019-06-11T13:18:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/76/events + html_url: https://github.com/packit/ogr/issues/76 + id: 454685925 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/76/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTQ2ODU5MjU= + number: 76 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-06-11T13:19:01Z' + url: https://api.github.com/repos/packit/ogr/issues/76 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.202432 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:23 GMT + ETag: W/"c03a5da7506814e6163f9923bfc84b40baa4c3def79fc380998de58b94ed2c67" + Last-Modified: Fri, 09 Apr 2021 14:26:36 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: 85EE:7CFE:F7F52E:191A7F7:6075DC37 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4755' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '245' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.10239911079406738 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-06-11T13:19:01Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/76/comments + created_at: '2019-06-11T13:18:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/76/events + html_url: https://github.com/packit/ogr/issues/76 + id: 454685925 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/76/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTQ2ODU5MjU= + number: 76 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-06-11T13:19:01Z' + url: https://api.github.com/repos/packit/ogr/issues/76 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.102241 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:04 GMT + ETag: W/"c03a5da7506814e6163f9923bfc84b40baa4c3def79fc380998de58b94ed2c67" + Last-Modified: Fri, 09 Apr 2021 14:26:36 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: 85EE:7CFE:F81951:191DF84:6075DC60 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4545' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '455' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/79: + - metadata: + latency: 0.20519042015075684 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "I'm trying to implement ogr into [release-bot](https://github.com/user-cont/release-bot)\ + \ and it's a little bit painful without documentation from ogr. \r\n\ + \r\nI was playing with ogr on my Github projects and everything is working\ + \ fine. When I tried to reimplement [release-bot's](https://github.com/user-cont/release-bot)\ + \ functionalities which communicate with Github via GraphQL or rest\ + \ API I got stuck. \r\n\r\nOne of the examples could be comments. I\ + \ want to implement commenting on Github issues and PRs via ogr. \r\n\ + - In [release-bot](https://github.com/user-cont/release-bot) it works\ + \ via graphQL and sending some `node_id` inside query which recognizes\ + \ a PR or an Issue. \r\n- In ogr there is `pr_comment` function in ogr/services/github.py.\ + \ If am I right this is an alternative I'm looking for. However, I don't\ + \ fully understand the function's parameters since it needs something\ + \ else then API query.\r\n\r\nI understand that this could be a very\ + \ complex problem since ogr need to preserve compatibility with all\ + \ git forges. I'm just looking for some starting point on how to change\ + \ GraphQL/rest API with ogr. Maybe I just misunderstand some ogr's fundamentals.\r\ + \n" + closed_at: '2019-06-27T12:40:34Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/79/comments + created_at: '2019-06-17T22:01:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/79/events + html_url: https://github.com/packit/ogr/issues/79 + id: 457168292 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/79/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTcxNjgyOTI= + number: 79 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add compatibility with Github's GraphQL API v4 and rest API v3 + updated_at: '2019-06-27T12:40:34Z' + url: https://api.github.com/repos/packit/ogr/issues/79 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + _next: null + elapsed: 0.205019 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:21 GMT + ETag: W/"b935ff4c0718dc7ee659bbd68b77586d1e97fbb2c84c2f0c954400811fcdc157" + Last-Modified: Thu, 11 Mar 2021 08:45:04 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: 85EE:7CFE:F7F3FB:191A620:6075DC35 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4762' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '238' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.23797297477722168 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "I'm trying to implement ogr into [release-bot](https://github.com/user-cont/release-bot)\ + \ and it's a little bit painful without documentation from ogr. \r\n\ + \r\nI was playing with ogr on my Github projects and everything is working\ + \ fine. When I tried to reimplement [release-bot's](https://github.com/user-cont/release-bot)\ + \ functionalities which communicate with Github via GraphQL or rest\ + \ API I got stuck. \r\n\r\nOne of the examples could be comments. I\ + \ want to implement commenting on Github issues and PRs via ogr. \r\n\ + - In [release-bot](https://github.com/user-cont/release-bot) it works\ + \ via graphQL and sending some `node_id` inside query which recognizes\ + \ a PR or an Issue. \r\n- In ogr there is `pr_comment` function in ogr/services/github.py.\ + \ If am I right this is an alternative I'm looking for. However, I don't\ + \ fully understand the function's parameters since it needs something\ + \ else then API query.\r\n\r\nI understand that this could be a very\ + \ complex problem since ogr need to preserve compatibility with all\ + \ git forges. I'm just looking for some starting point on how to change\ + \ GraphQL/rest API with ogr. Maybe I just misunderstand some ogr's fundamentals.\r\ + \n" + closed_at: '2019-06-27T12:40:34Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/79/comments + created_at: '2019-06-17T22:01:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/79/events + html_url: https://github.com/packit/ogr/issues/79 + id: 457168292 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/79/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTcxNjgyOTI= + number: 79 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add compatibility with Github's GraphQL API v4 and rest API v3 + updated_at: '2019-06-27T12:40:34Z' + url: https://api.github.com/repos/packit/ogr/issues/79 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + _next: null + elapsed: 0.237768 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:03 GMT + ETag: W/"b935ff4c0718dc7ee659bbd68b77586d1e97fbb2c84c2f0c954400811fcdc157" + Last-Modified: Thu, 11 Mar 2021 08:45:04 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: 85EE:7CFE:F8173D:191DC5B:6075DC5E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4552' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '448' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/8: + - metadata: + latency: 0.1955413818359375 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "* [x] don't fail when PAGURE_{TOKEN,USER} are not specified\r\n\ + * [x] mock remote API and write complete unit tests using those data\ + \ (or even have a single test suite and enable it to run against live\ + \ instance and mocked data)\r\n* [x] [tox](https://developer.fedoraproject.org/tech/languages/python/multiple-pythons.html)-ify\ + \ it (#27)" + closed_at: '2019-06-25T08:59:43Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/8/comments + created_at: '2019-01-30T10:19:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/8/events + html_url: https://github.com/packit/ogr/issues/8 + id: 404698352 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/8/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MDQ2OTgzNTI= + number: 8 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Improve testing + updated_at: '2019-06-25T08:59:43Z' + url: https://api.github.com/repos/packit/ogr/issues/8 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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.195367 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:22 GMT + ETag: W/"9c31bf5a1152d3a4f249d2aacb8fe75473c8c7a584e93f961193b23410aaf431" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F7F4AE:191A735:6075DC36 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4758' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '242' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.24075961112976074 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "* [x] don't fail when PAGURE_{TOKEN,USER} are not specified\r\n\ + * [x] mock remote API and write complete unit tests using those data\ + \ (or even have a single test suite and enable it to run against live\ + \ instance and mocked data)\r\n* [x] [tox](https://developer.fedoraproject.org/tech/languages/python/multiple-pythons.html)-ify\ + \ it (#27)" + closed_at: '2019-06-25T08:59:43Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/8/comments + created_at: '2019-01-30T10:19:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/8/events + html_url: https://github.com/packit/ogr/issues/8 + id: 404698352 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/8/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MDQ2OTgzNTI= + number: 8 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Improve testing + updated_at: '2019-06-25T08:59:43Z' + url: https://api.github.com/repos/packit/ogr/issues/8 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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.240513 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:03 GMT + ETag: W/"9c31bf5a1152d3a4f249d2aacb8fe75473c8c7a584e93f961193b23410aaf431" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F81819:191DDA1:6075DC5F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4548' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '452' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/80: + - metadata: + latency: 0.2412707805633545 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + author_association: COLLABORATOR + body: 'Based on our discussion on Issue #79, there is no functionality + in ogr for commenting on Github/Pagure issues.' + closed_at: '2019-07-10T06:57:03Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/80/comments + created_at: '2019-06-19T07:21:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/80/events + html_url: https://github.com/packit/ogr/issues/80 + id: 457847996 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/80/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTc4NDc5OTY= + number: 80 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Commenting on Issues + updated_at: '2019-07-10T06:57:03Z' + url: https://api.github.com/repos/packit/ogr/issues/80 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + _next: null + elapsed: 0.241107 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:20 GMT + ETag: W/"46c760ebd30738363bdc93b6f1c3f5acbbb3cf30f495da142b57b4d88779f6cf" + Last-Modified: Thu, 11 Mar 2021 08:45:04 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: 85EE:7CFE:F7F2A4:191A3EC:6075DC34 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4769' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '231' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.1581869125366211 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + author_association: COLLABORATOR + body: 'Based on our discussion on Issue #79, there is no functionality + in ogr for commenting on Github/Pagure issues.' + closed_at: '2019-07-10T06:57:03Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/80/comments + created_at: '2019-06-19T07:21:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/80/events + html_url: https://github.com/packit/ogr/issues/80 + id: 457847996 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/80/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTc4NDc5OTY= + number: 80 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Commenting on Issues + updated_at: '2019-07-10T06:57:03Z' + url: https://api.github.com/repos/packit/ogr/issues/80 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + _next: null + elapsed: 0.157909 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:01 GMT + ETag: W/"46c760ebd30738363bdc93b6f1c3f5acbbb3cf30f495da142b57b4d88779f6cf" + Last-Modified: Thu, 11 Mar 2021 08:45:04 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: 85EE:7CFE:F81542:191D94F:6075DC5D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4559' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '441' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/82: + - metadata: + latency: 0.20140862464904785 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\nHi, see lines in: https://github.com/packit-service/ogr/blob/master/tests/integration/test_github.py#L20\r\ + \nSo for regenereation these files, you have to use syntax eg:\r\n``FORCE_WRITE=yes\ + \ GITHUB_TOKEN=yourtoken GITHUB_USER=yourname pytest3 tests/integration/test_github.py``\r\ + \nor this will also work ``FORCE_WRITE=yes GITHUB_TOKEN=yourtoken GITHUB_USER=yourname\ + \ make check`` with make check, you have to have set PAGURE_TOKEN and\ + \ USER env vars\r\n```\r\n\r\n_Originally posted by @jscotka in https://github.com/packit-service/ogr/issues/80#issuecomment-503991164_\r\ + \n" + closed_at: '2019-06-27T12:56:06Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/82/comments + created_at: '2019-06-21T09:12:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/82/events + html_url: https://github.com/packit/ogr/issues/82 + id: 459096186 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/82/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTkwOTYxODY= + number: 82 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Document how to save HTTP sessions for sake of testing + updated_at: '2019-06-27T12:56:06Z' + url: https://api.github.com/repos/packit/ogr/issues/82 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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.201209 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:21 GMT + ETag: W/"20a741bcf2794d3d1bed898c662cbf95eeff8a7d5616b8f854fd1c6b3c9707b6" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F7F3C7:191A5E2:6075DC35 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4763' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '237' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.19676780700683594 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\nHi, see lines in: https://github.com/packit-service/ogr/blob/master/tests/integration/test_github.py#L20\r\ + \nSo for regenereation these files, you have to use syntax eg:\r\n``FORCE_WRITE=yes\ + \ GITHUB_TOKEN=yourtoken GITHUB_USER=yourname pytest3 tests/integration/test_github.py``\r\ + \nor this will also work ``FORCE_WRITE=yes GITHUB_TOKEN=yourtoken GITHUB_USER=yourname\ + \ make check`` with make check, you have to have set PAGURE_TOKEN and\ + \ USER env vars\r\n```\r\n\r\n_Originally posted by @jscotka in https://github.com/packit-service/ogr/issues/80#issuecomment-503991164_\r\ + \n" + closed_at: '2019-06-27T12:56:06Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/82/comments + created_at: '2019-06-21T09:12:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/82/events + html_url: https://github.com/packit/ogr/issues/82 + id: 459096186 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/82/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTkwOTYxODY= + number: 82 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Document how to save HTTP sessions for sake of testing + updated_at: '2019-06-27T12:56:06Z' + url: https://api.github.com/repos/packit/ogr/issues/82 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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.196547 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:02 GMT + ETag: W/"20a741bcf2794d3d1bed898c662cbf95eeff8a7d5616b8f854fd1c6b3c9707b6" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 85EE:7CFE:F81703:191DC02:6075DC5E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4553' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '447' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/86: + - metadata: + latency: 0.11908459663391113 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "- [x] Forward some object to the issue/pr/... instances to allow\ + \ connection to the service. (Classes are not only data-holders.)\r\n\ + - [x] All ogr classes to have properties with setters allowing to update\ + \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ + - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ + \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ + \ \r\n" + closed_at: null + closed_by: null + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments + created_at: '2019-06-25T13:15:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/86/events + html_url: https://github.com/packit/ogr/issues/86 + id: 460418171 + labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + locked: false + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0NjA0MTgxNzE= + number: 86 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: object-specific methods bound to ogr classes + updated_at: '2021-02-04T19:34:29Z' + url: https://api.github.com/repos/packit/ogr/issues/86 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.118841 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:43 GMT + ETag: W/"ff68db2cac4ecf77285ec29b17b05b9a7b06fad44311b6fbcc497d2f257eea67" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F7D6D3:19177D1:6075DC0F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4942' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '58' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.11905622482299805 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "- [x] Forward some object to the issue/pr/... instances to allow\ + \ connection to the service. (Classes are not only data-holders.)\r\n\ + - [x] All ogr classes to have properties with setters allowing to update\ + \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ + - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ + \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ + \ \r\n" + closed_at: null + closed_by: null + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments + created_at: '2019-06-25T13:15:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/86/events + html_url: https://github.com/packit/ogr/issues/86 + id: 460418171 + labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + locked: false + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0NjA0MTgxNzE= + number: 86 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: object-specific methods bound to ogr classes + updated_at: '2021-02-04T19:34:29Z' + url: https://api.github.com/repos/packit/ogr/issues/86 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.118875 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:10 GMT + ETag: W/"ff68db2cac4ecf77285ec29b17b05b9a7b06fad44311b6fbcc497d2f257eea67" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F81F73:191E88E:6075DC66 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4512' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '488' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/87: + - metadata: + latency: 0.20093774795532227 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "Add methods to `GithubProject`/`PagureProject` for editing title\ + \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ + \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ + \ information " + closed_at: '2019-06-28T06:51:21Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments + created_at: '2019-06-26T07:17:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/87/events + html_url: https://github.com/packit/ogr/issues/87 + id: 460802132 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjA4MDIxMzI= + number: 87 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: ' Update pull-request information' + updated_at: '2019-06-28T06:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/87 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.200775 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:21 GMT + ETag: W/"3e0ce9f7568aa5eb5375e46588be1f13c19af80c07f5f2296a2feeeea7c71205" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F7F39C:191A594:6075DC35 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4764' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '236' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.33923888206481934 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "Add methods to `GithubProject`/`PagureProject` for editing title\ + \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ + \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ + \ information " + closed_at: '2019-06-28T06:51:21Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments + created_at: '2019-06-26T07:17:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/87/events + html_url: https://github.com/packit/ogr/issues/87 + id: 460802132 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjA4MDIxMzI= + number: 87 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: ' Update pull-request information' + updated_at: '2019-06-28T06:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/87 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.339034 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:02 GMT + ETag: W/"3e0ce9f7568aa5eb5375e46588be1f13c19af80c07f5f2296a2feeeea7c71205" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F816A2:191DB78:6075DC5E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4554' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '446' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/88: + - metadata: + latency: 0.20125246047973633 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + author_association: MEMBER + body: "It would be useful to have a method for getting the owner(s) of\ + \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ + \ `get_owners` and return list of strings." + closed_at: '2019-07-18T07:11:53Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments + created_at: '2019-06-26T07:44:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/88/events + html_url: https://github.com/packit/ogr/issues/88 + id: 460813032 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjA4MTMwMzI= + number: 88 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add get_owner/get_owners method to project classes + updated_at: '2019-07-18T07:11:53Z' + url: https://api.github.com/repos/packit/ogr/issues/88 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.201085 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:18 GMT + ETag: W/"706bb9a44272dc3beda64b5216d921e8e6ff33aa8c4ce1530006bb303c84a336" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F7F198:191A234:6075DC32 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4777' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '223' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.11743617057800293 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + author_association: MEMBER + body: "It would be useful to have a method for getting the owner(s) of\ + \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ + \ `get_owners` and return list of strings." + closed_at: '2019-07-18T07:11:53Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments + created_at: '2019-06-26T07:44:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/88/events + html_url: https://github.com/packit/ogr/issues/88 + id: 460813032 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjA4MTMwMzI= + number: 88 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add get_owner/get_owners method to project classes + updated_at: '2019-07-18T07:11:53Z' + url: https://api.github.com/repos/packit/ogr/issues/88 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.117269 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:59 GMT + ETag: W/"706bb9a44272dc3beda64b5216d921e8e6ff33aa8c4ce1530006bb303c84a336" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F8139A:191D683:6075DC5B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4567' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '433' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/90: + - metadata: + latency: 0.1834087371826172 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + author_association: MEMBER + body: It would be nice to implement `__str__` methods for all classes + (e.g. `GithubProject`, `Issue`,...). + closed_at: '2019-07-10T06:51:37Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments + created_at: '2019-06-27T10:29:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/90/events + html_url: https://github.com/packit/ogr/issues/90 + id: 461449910 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjE0NDk5MTA= + number: 90 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: String representations for classes + updated_at: '2019-07-10T06:51:37Z' + url: https://api.github.com/repos/packit/ogr/issues/90 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.183233 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:20 GMT + ETag: W/"b82d8503f56935c2de25774ecb3f682160c8b0c3be2bfa77b5228db7a4235c15" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F7F2D6:191A449:6075DC34 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4768' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '232' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.24347782135009766 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + author_association: MEMBER + body: It would be nice to implement `__str__` methods for all classes + (e.g. `GithubProject`, `Issue`,...). + closed_at: '2019-07-10T06:51:37Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments + created_at: '2019-06-27T10:29:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/90/events + html_url: https://github.com/packit/ogr/issues/90 + id: 461449910 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjE0NDk5MTA= + number: 90 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: String representations for classes + updated_at: '2019-07-10T06:51:37Z' + url: https://api.github.com/repos/packit/ogr/issues/90 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.243308 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:01 GMT + ETag: W/"b82d8503f56935c2de25774ecb3f682160c8b0c3be2bfa77b5228db7a4235c15" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F81568:191D99B:6075DC5D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4558' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '442' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/91: + - metadata: + latency: 0.11244058609008789 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "I would like to solve an issue https://github.com/packit-service/packit/issues/328\r\ + \nbut it failed with traceback:\r\n\r\n~~~\r\n$ packit -d propose-update\r\ + \n[..snip..]\r\n10:40:20.990 upstream.py DEBUG Version in spec\ + \ file: 0.16.3\r\nPicking version found in spec file.\r\nChecking out\ + \ upstream version 0.16.3\r\n10:40:21.013 base_git.py DEBUG Allowed\ + \ GPG keys are not set, skipping the verification.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running ActionName.pre_sync hook.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running ActionName.pre_sync.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running default implementation for ActionName.pre_sync.\r\ + \nUsing 'master' dist-git branch\r\n10:40:21.017 base_git.py DEBUG\ + \ It seems that branch master already exists, checking it out.\r\n\ + 10:40:21.020 distgit.py DEBUG About to update branch 'master'\r\ + \n10:40:21.727 api.py DEBUG Path of README /tmp/tmpzla3qy3y/README.packit\r\ + \n10:40:21.728 base_git.py DEBUG Running ActionName.prepare_files.\r\ + \n10:40:21.729 base_git.py DEBUG Running default implementation\ + \ for ActionName.prepare_files.\r\n10:40:21.729 sync.py DEBUG\ + \ Copy synced files [RawSyncFilesItem(src=/home/vagrant/rebase-helper/.packit.yml,\ + \ dest=/tmp/tmpzla3qy3y/.packit.yml, dist_is_dir=False), RawSyncFilesItem(src=/home/vagrant/rebase-helper/rebase-helper.spec,\ + \ dest=/tmp/tmpzla3qy3y/rebase-helper.spec, dist_is_dir=False)]\r\n\ + 10:40:21.730 sync.py DEBUG src = /home/vagrant/rebase-helper/.packit.yml,\ + \ dest = /tmp/tmpzla3qy3y/.packit.yml\r\nCopying /home/vagrant/rebase-helper/.packit.yml\ + \ to /tmp/tmpzla3qy3y/.packit.yml.\r\n10:40:21.731 sync.py \ + \ DEBUG src = /home/vagrant/rebase-helper/rebase-helper.spec, dest\ + \ = /tmp/tmpzla3qy3y/rebase-helper.spec\r\nCopying /home/vagrant/rebase-helper/rebase-helper.spec\ + \ to /tmp/tmpzla3qy3y/rebase-helper.spec.\r\n10:40:21.814 distgit.py\ + \ DEBUG Upstream archive name is 'rebase-helper-0.16.3.tar.gz'\r\ + \nArchive rebase-helper-0.16.3.tar.gz found in lookaside cache (skipping\ + \ upload).\r\n10:40:22.347 distgit.py DEBUG Upstream archive\ + \ name is 'rebase-helper-0.16.3.tar.gz'\r\n10:40:22.348 base_git.py\ + \ DEBUG About to add all & commit\r\n10:40:22.366 distgit.py\ + \ DEBUG About to force push changes to branch 0.16.3-master-update\ + \ of a fork fork of the dist-git repo\r\n10:40:32.251 distgit.py \ + \ DEBUG About to create dist-git pull request from 0.16.3-master-update\ + \ to master\r\nERROR There was an error while creating the PR: PagureAPIException('Page\ + \ `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.')\r\nERROR Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.\r\nTraceback (most recent call\ + \ last):\r\n File \"/usr/local/lib/python3.7/site-packages/packit/cli/utils.py\"\ + , line 58, in covered_func\r\n func(config=config, *args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/packit/cli/update.py\"\ + , line 113, in update\r\n upstream_ref=upstream_ref,\r\n File \"\ + /usr/local/lib/python3.7/site-packages/packit/api.py\", line 229, in\ + \ sync_release\r\n dist_git_branch=dist_git_branch,\r\n File \"\ + /usr/local/lib/python3.7/site-packages/packit/api.py\", line 316, in\ + \ push_and_create_pr\r\n target_branch=dist_git_branch,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit/distgit.py\", line\ + \ 211, in create_pull\r\n target_branch=target_branch,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/ogr/mock_core.py\", line\ + \ 49, in readonly_func\r\n return func(self, *args, **kwargs)\r\n\ + \ File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 377, in pr_create\r\n \"initial_comment\": body,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 232, in _call_project_api\r\n url=request_url, method=method,\ + \ params=params, data=data\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 71, in call_api\r\n raise PagureAPIException(f\"Page `{url}`\ + \ not found when calling Pagure API.\")\r\nogr.exceptions.PagureAPIException:\ + \ Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.\r\n10:40:34.958 local_project.py\ + \ DEBUG Cleaning: /tmp/tmpzla3qy3y\r\n~~~\r\n\r\n\r\nReferenced issues:\r\ + \nhttps://pagure.io/pagure/issue/4512\r\nhttps://github.com/packit-service/packit/issues/328\r\ + \n" + closed_at: '2019-09-12T11:17:19Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 + events_url: https://api.github.com/users/rpitonak/events{/privacy} + followers_url: https://api.github.com/users/rpitonak/followers + following_url: https://api.github.com/users/rpitonak/following{/other_user} + gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/rpitonak + id: 26160778 + login: rpitonak + node_id: MDQ6VXNlcjI2MTYwNzc4 + organizations_url: https://api.github.com/users/rpitonak/orgs + received_events_url: https://api.github.com/users/rpitonak/received_events + repos_url: https://api.github.com/users/rpitonak/repos + site_admin: false + starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + type: User + url: https://api.github.com/users/rpitonak + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/91/comments + created_at: '2019-06-27T10:41:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/91/events + html_url: https://github.com/packit/ogr/issues/91 + id: 461455149 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/91/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjE0NTUxNDk= + number: 91 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: ' Page `/fork/phracek/rpms/rebase-helper/pull-request/new` not + found when calling Pagure API' + updated_at: '2019-09-12T11:17:20Z' + url: https://api.github.com/repos/packit/ogr/issues/91 + user: + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos + site_admin: false + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions + type: User + url: https://api.github.com/users/phracek + _next: null + elapsed: 0.112159 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:14 GMT + ETag: W/"4a81738105d6bd1cb234e00a25896781874286399218827800dbd06ede09849f" + Last-Modified: Fri, 26 Mar 2021 11:22:47 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: 85EE:7CFE:F7EE0F:1919CA9:6075DC2E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4796' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '204' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.1205744743347168 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "I would like to solve an issue https://github.com/packit-service/packit/issues/328\r\ + \nbut it failed with traceback:\r\n\r\n~~~\r\n$ packit -d propose-update\r\ + \n[..snip..]\r\n10:40:20.990 upstream.py DEBUG Version in spec\ + \ file: 0.16.3\r\nPicking version found in spec file.\r\nChecking out\ + \ upstream version 0.16.3\r\n10:40:21.013 base_git.py DEBUG Allowed\ + \ GPG keys are not set, skipping the verification.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running ActionName.pre_sync hook.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running ActionName.pre_sync.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running default implementation for ActionName.pre_sync.\r\ + \nUsing 'master' dist-git branch\r\n10:40:21.017 base_git.py DEBUG\ + \ It seems that branch master already exists, checking it out.\r\n\ + 10:40:21.020 distgit.py DEBUG About to update branch 'master'\r\ + \n10:40:21.727 api.py DEBUG Path of README /tmp/tmpzla3qy3y/README.packit\r\ + \n10:40:21.728 base_git.py DEBUG Running ActionName.prepare_files.\r\ + \n10:40:21.729 base_git.py DEBUG Running default implementation\ + \ for ActionName.prepare_files.\r\n10:40:21.729 sync.py DEBUG\ + \ Copy synced files [RawSyncFilesItem(src=/home/vagrant/rebase-helper/.packit.yml,\ + \ dest=/tmp/tmpzla3qy3y/.packit.yml, dist_is_dir=False), RawSyncFilesItem(src=/home/vagrant/rebase-helper/rebase-helper.spec,\ + \ dest=/tmp/tmpzla3qy3y/rebase-helper.spec, dist_is_dir=False)]\r\n\ + 10:40:21.730 sync.py DEBUG src = /home/vagrant/rebase-helper/.packit.yml,\ + \ dest = /tmp/tmpzla3qy3y/.packit.yml\r\nCopying /home/vagrant/rebase-helper/.packit.yml\ + \ to /tmp/tmpzla3qy3y/.packit.yml.\r\n10:40:21.731 sync.py \ + \ DEBUG src = /home/vagrant/rebase-helper/rebase-helper.spec, dest\ + \ = /tmp/tmpzla3qy3y/rebase-helper.spec\r\nCopying /home/vagrant/rebase-helper/rebase-helper.spec\ + \ to /tmp/tmpzla3qy3y/rebase-helper.spec.\r\n10:40:21.814 distgit.py\ + \ DEBUG Upstream archive name is 'rebase-helper-0.16.3.tar.gz'\r\ + \nArchive rebase-helper-0.16.3.tar.gz found in lookaside cache (skipping\ + \ upload).\r\n10:40:22.347 distgit.py DEBUG Upstream archive\ + \ name is 'rebase-helper-0.16.3.tar.gz'\r\n10:40:22.348 base_git.py\ + \ DEBUG About to add all & commit\r\n10:40:22.366 distgit.py\ + \ DEBUG About to force push changes to branch 0.16.3-master-update\ + \ of a fork fork of the dist-git repo\r\n10:40:32.251 distgit.py \ + \ DEBUG About to create dist-git pull request from 0.16.3-master-update\ + \ to master\r\nERROR There was an error while creating the PR: PagureAPIException('Page\ + \ `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.')\r\nERROR Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.\r\nTraceback (most recent call\ + \ last):\r\n File \"/usr/local/lib/python3.7/site-packages/packit/cli/utils.py\"\ + , line 58, in covered_func\r\n func(config=config, *args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/packit/cli/update.py\"\ + , line 113, in update\r\n upstream_ref=upstream_ref,\r\n File \"\ + /usr/local/lib/python3.7/site-packages/packit/api.py\", line 229, in\ + \ sync_release\r\n dist_git_branch=dist_git_branch,\r\n File \"\ + /usr/local/lib/python3.7/site-packages/packit/api.py\", line 316, in\ + \ push_and_create_pr\r\n target_branch=dist_git_branch,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit/distgit.py\", line\ + \ 211, in create_pull\r\n target_branch=target_branch,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/ogr/mock_core.py\", line\ + \ 49, in readonly_func\r\n return func(self, *args, **kwargs)\r\n\ + \ File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 377, in pr_create\r\n \"initial_comment\": body,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 232, in _call_project_api\r\n url=request_url, method=method,\ + \ params=params, data=data\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 71, in call_api\r\n raise PagureAPIException(f\"Page `{url}`\ + \ not found when calling Pagure API.\")\r\nogr.exceptions.PagureAPIException:\ + \ Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.\r\n10:40:34.958 local_project.py\ + \ DEBUG Cleaning: /tmp/tmpzla3qy3y\r\n~~~\r\n\r\n\r\nReferenced issues:\r\ + \nhttps://pagure.io/pagure/issue/4512\r\nhttps://github.com/packit-service/packit/issues/328\r\ + \n" + closed_at: '2019-09-12T11:17:19Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 + events_url: https://api.github.com/users/rpitonak/events{/privacy} + followers_url: https://api.github.com/users/rpitonak/followers + following_url: https://api.github.com/users/rpitonak/following{/other_user} + gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/rpitonak + id: 26160778 + login: rpitonak + node_id: MDQ6VXNlcjI2MTYwNzc4 + organizations_url: https://api.github.com/users/rpitonak/orgs + received_events_url: https://api.github.com/users/rpitonak/received_events + repos_url: https://api.github.com/users/rpitonak/repos + site_admin: false + starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + type: User + url: https://api.github.com/users/rpitonak + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/91/comments + created_at: '2019-06-27T10:41:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/91/events + html_url: https://github.com/packit/ogr/issues/91 + id: 461455149 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/91/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjE0NTUxNDk= + number: 91 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: ' Page `/fork/phracek/rpms/rebase-helper/pull-request/new` not + found when calling Pagure API' + updated_at: '2019-09-12T11:17:20Z' + url: https://api.github.com/repos/packit/ogr/issues/91 + user: + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos + site_admin: false + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions + type: User + url: https://api.github.com/users/phracek + _next: null + elapsed: 0.119594 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:55 GMT + ETag: W/"4a81738105d6bd1cb234e00a25896781874286399218827800dbd06ede09849f" + Last-Modified: Fri, 26 Mar 2021 11:22:47 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: 85EE:7CFE:F81057:191D190:6075DC57 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4586' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '414' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/96: + - metadata: + latency: 0.17162251472473145 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "ReleaseBot, we would like to release a new version.\r\n\r\nThanks\ + \ in advance!" + closed_at: '2019-06-28T08:43:29Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/96/comments + created_at: '2019-06-28T08:38:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/96/events + html_url: https://github.com/packit/ogr/issues/96 + id: 461923699 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/96/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjE5MjM2OTk= + number: 96 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-06-28T08:43:29Z' + url: https://api.github.com/repos/packit/ogr/issues/96 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.171455 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:21 GMT + ETag: W/"0bf90597eed99fce8cf1d45ad4a480b5e1981104ec328200e94a19c2cdbebb53" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F7F378:191A55A:6075DC35 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4765' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '235' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + - metadata: + latency: 0.18815207481384277 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "ReleaseBot, we would like to release a new version.\r\n\r\nThanks\ + \ in advance!" + closed_at: '2019-06-28T08:43:29Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/96/comments + created_at: '2019-06-28T08:38:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/96/events + html_url: https://github.com/packit/ogr/issues/96 + id: 461923699 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/96/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjE5MjM2OTk= + number: 96 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-06-28T08:43:29Z' + url: https://api.github.com/repos/packit/ogr/issues/96 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.187985 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:02 GMT + ETag: W/"0bf90597eed99fce8cf1d45ad4a480b5e1981104ec328200e94a19c2cdbebb53" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 85EE:7CFE:F81665:191DB1C:6075DC5E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4555' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '445' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues?state=all&sort=updated&direction=desc: + - metadata: + latency: 0.8016400337219238 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Refactor exceptions for non-supported features,\r\nchanging NotImplementedError\ + \ to OperationNotSupported\r\nwhere a method is not supported on a particular\ + \ Git forge.\r\n\r\nFixes ogr issue #478.\r\n\r\nSigned-off-by: Ben\ + \ Crocker \r\n" + closed_at: null + comments: 16 + comments_url: https://api.github.com/repos/packit/ogr/issues/564/comments + created_at: '2021-03-29T02:54:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/564/events + html_url: https://github.com/packit/ogr/pull/564 + id: 842920232 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/564/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjAyMzc4MzU5 + number: 564 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/564.diff + html_url: https://github.com/packit/ogr/pull/564 + patch_url: https://github.com/packit/ogr/pull/564.patch + url: https://api.github.com/repos/packit/ogr/pulls/564 + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Refactor exceptions for non-supported features, + updated_at: '2021-04-13T16:46:22Z' + url: https://api.github.com/repos/packit/ogr/issues/564 + user: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-04-13T06:20:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/568/comments + created_at: '2021-04-12T17:13:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/568/events + html_url: https://github.com/packit/ogr/pull/568 + id: 856181069 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/568/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjEzODAxMzc3 + number: 568 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/568.diff + html_url: https://github.com/packit/ogr/pull/568 + patch_url: https://github.com/packit/ogr/pull/568.patch + url: https://api.github.com/repos/packit/ogr/pulls/568 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-04-13T06:23:27Z' + url: https://api.github.com/repos/packit/ogr/issues/568 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: FIRST_TIME_CONTRIBUTOR + body: "Implemented list projects for GitServices (#485 )\r\n\r\n@lachmanfrantisek\ + \ \r\n@csomh " + closed_at: null + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/538/comments + created_at: '2021-02-12T04:22:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/538/events + html_url: https://github.com/packit/ogr/pull/538 + id: 806932377 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/538/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTcyMjY0NjU2 + number: 538 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/538.diff + html_url: https://github.com/packit/ogr/pull/538 + patch_url: https://github.com/packit/ogr/pull/538.patch + url: https://api.github.com/repos/packit/ogr/pulls/538 + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Implemented list projects for GitServices (#485 ) + updated_at: '2021-04-12T13:55:03Z' + url: https://api.github.com/repos/packit/ogr/issues/538 + user: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-04-06T07:07:24Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/567/comments + created_at: '2021-04-05T17:11:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/567/events + html_url: https://github.com/packit/ogr/pull/567 + id: 850515743 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/567/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjA5MDc2MzEw + number: 567 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/567.diff + html_url: https://github.com/packit/ogr/pull/567 + patch_url: https://github.com/packit/ogr/pull/567.patch + url: https://api.github.com/repos/packit/ogr/pulls/567 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-04-06T07:07:26Z' + url: https://api.github.com/repos/packit/ogr/issues/567 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Makefile: Rewrite the prepare-check target to check for key\r\n\ + files (/usr/bin/python3.*, /usr/bin/tox, /usr/bin/requre-patch,\r\n\ + and /usr/share/doc/python3-flexmock) and install the requisite packages\r\ + \nif they are absent:\r\n\r\n- python36 (minimum)\r\n- python3-tox\r\ + \n- python3-requre\r\n- python3-flexmock\r\n\r\nCONTRIBUTING.md:\r\n\ + \r\nMention conditional installation of python3-requre and python3-flexmock.\r\ + \n" + closed_at: null + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/566/comments + created_at: '2021-03-31T18:05:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/566/events + html_url: https://github.com/packit/ogr/pull/566 + id: 847064663 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/566/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjA2MTA1OTc4 + number: 566 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/566.diff + html_url: https://github.com/packit/ogr/pull/566 + patch_url: https://github.com/packit/ogr/pull/566.patch + url: https://api.github.com/repos/packit/ogr/pulls/566 + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Update prepare-check to install python3-requre, python3-flexmock + updated_at: '2021-04-01T11:57:06Z' + url: https://api.github.com/repos/packit/ogr/issues/566 + user: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-03-29T17:45:41Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/565/comments + created_at: '2021-03-29T16:56:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/565/events + html_url: https://github.com/packit/ogr/pull/565 + id: 843571484 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/565/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjAyOTMzODIy + number: 565 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/565.diff + html_url: https://github.com/packit/ogr/pull/565 + patch_url: https://github.com/packit/ogr/pull/565.patch + url: https://api.github.com/repos/packit/ogr/pulls/565 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-03-29T17:45:41Z' + url: https://api.github.com/repos/packit/ogr/issues/565 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Current API appears to be fully functional and sufficiently covered\ + \ by tests for GitHub and Pagure.\r\n\r\n## Services\r\n\r\n### GitHub\ + \ + GitLab\r\n\r\n- allows creating fork of forks\r\n- allows creating\ + \ PRs from one fork to another\r\n\r\n### Pagure\r\n\r\n- doesn't allow\ + \ creating fork of forks\r\n- allows creating PRs on a project (assuming\ + \ it's not a fork) or from fork to upstream\r\n\r\n## Current implementation\r\ + \n\r\n```python\r\ndef create_pr(\r\n self,\r\n title: str,\r\n body:\ + \ str,\r\n target_branch: str,\r\n source_branch: str,\r\n fork_username:\ + \ str = None,\r\n) -> \"PullRequest\":\r\n```\r\n\r\n## Example objects\ + \ used later\r\n\r\n```python\r\nupstream_project = service.get_project(namespace=\"\ + packit-service\", repo=\"ogr\")\r\nmy_fork = service.get_project(namespace=\"\ + mfocko\", repo=\"ogr\")\r\nfork_of_different_user = service.get_project(namespace=\"\ + lachmanfrantisek\", repo=\"ogr\")\r\n```" + closed_at: null + comments: 18 + comments_url: https://api.github.com/repos/packit/ogr/issues/412/comments + created_at: '2020-05-19T20:57:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/412/events + html_url: https://github.com/packit/ogr/issues/412 + id: 621279784 + labels: + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/412/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjEyNzk3ODQ= + number: 412 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Revisiting API for creating PRs + updated_at: '2021-03-26T14:19:55Z' + url: https://api.github.com/repos/packit/ogr/issues/412 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + author_association: MEMBER + body: "It would be nice to be able to list projects for given criteria:\r\ + \n\r\n- namespace\r\n- owner\r\n- search patter\r\n- order options (name,\ + \ update, activity, ...) (ascending x descending)\r\n- ... feel free\ + \ to add/propose more (we can implement only a subset for the first\ + \ version)\r\n\r\n\r\nAdd `list_projects` method:\r\n- [ ] to the `abstract.py`\ + \ to the `GitService` class\r\n- [ ] for each implementaion `GithubService`,\ + \ `GitlabService`, `PagureService`\r\n- [ ] implement all (or a subset)\ + \ of the options from the criteria list above" + closed_at: null + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/485/comments + created_at: '2020-10-15T12:35:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/485/events + html_url: https://github.com/packit/ogr/issues/485 + id: 722295054 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/485/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MjIyOTUwNTQ= + number: 485 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Listing of the projects + updated_at: '2021-03-26T13:18:56Z' + url: https://api.github.com/repos/packit/ogr/issues/485 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "There is a [check-runs API](https://docs.github.com/en/rest/reference/checks)\ + \ that allows more functionality and e.g `neutral` state requested in\ + \ https://github.com/packit/packit-service/issues/760.\r\n\r\nUnfortunately,\ + \ it's [not implemented in PyGithub yet](https://github.com/PyGithub/PyGithub/issues/1621).\r\ + \n\r\nThis project builds on top of `PyGithub` and implements that:\ + \ https://github.com/webknjaz/check-in/blob/master/check_in/github_api.py\r\ + \n\r\nWe can either help on `PyGithub` side or implement it here or\ + \ wait for `PyGithub`." + closed_at: null + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/461/comments + created_at: '2020-09-08T07:02:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/461/events + html_url: https://github.com/packit/ogr/issues/461 + id: 695610247 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: ff9990 + default: false + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + labels_url: https://api.github.com/repos/packit/ogr/issues/461/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2OTU2MTAyNDc= + number: 461 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: '[github] Use check-runs for richer API' + updated_at: '2021-03-26T13:15:58Z' + url: https://api.github.com/repos/packit/ogr/issues/461 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + author_association: MEMBER + body: "Change all exceptions that are raised for an unsupported feature\ + \ to `OperationNotSupported` (from the default `NotImplementedError`)\r\ + \n\r\ncloser info: https://github.com/packit/ogr/pull/477#discussion_r503077265" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/478/comments + created_at: '2020-10-12T12:23:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/478/events + html_url: https://github.com/packit/ogr/issues/478 + id: 719337260 + labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/478/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MTkzMzcyNjA= + number: 478 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Refactor exceptions for non-supported features + updated_at: '2021-03-25T16:21:38Z' + url: https://api.github.com/repos/packit/ogr/issues/478 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-03-22T18:05:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/563/comments + created_at: '2021-03-22T17:06:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/563/events + html_url: https://github.com/packit/ogr/pull/563 + id: 837931345 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/563/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTk4MTkyMTYy + number: 563 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/563.diff + html_url: https://github.com/packit/ogr/pull/563 + patch_url: https://github.com/packit/ogr/pull/563.patch + url: https://api.github.com/repos/packit/ogr/pulls/563 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-03-22T18:08:07Z' + url: https://api.github.com/repos/packit/ogr/issues/563 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2021-03-19T10:10:52Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/562/comments + created_at: '2021-03-18T12:23:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/562/events + html_url: https://github.com/packit/ogr/pull/562 + id: 834742552 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/562/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTk1NTA0ODUy + number: 562 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/562.diff + html_url: https://github.com/packit/ogr/pull/562 + patch_url: https://github.com/packit/ogr/pull/562.patch + url: https://api.github.com/repos/packit/ogr/pulls/562 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.23.0 release + updated_at: '2021-03-19T10:13:05Z' + url: https://api.github.com/repos/packit/ogr/issues/562 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "The package is not PEP-561 compliant (see https://mypy.readthedocs.io/en/latest/installed_packages.html#creating-pep-561-compatible-packages).\r\ + \n\r\nThe file `py.typed` need to be added at the root of the ogr package." + closed_at: '2021-03-17T14:43:37Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/559/comments + created_at: '2021-03-15T20:43:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/559/events + html_url: https://github.com/packit/ogr/issues/559 + id: 832177415 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/559/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MzIxNzc0MTU= + number: 559 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: mypy cannot use the type annotation + updated_at: '2021-03-17T14:57:14Z' + url: https://api.github.com/repos/packit/ogr/issues/559 + user: + avatar_url: https://avatars.githubusercontent.com/u/3617836?v=4 + events_url: https://api.github.com/users/Roming22/events{/privacy} + followers_url: https://api.github.com/users/Roming22/followers + following_url: https://api.github.com/users/Roming22/following{/other_user} + gists_url: https://api.github.com/users/Roming22/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Roming22 + id: 3617836 + login: Roming22 + node_id: MDQ6VXNlcjM2MTc4MzY= + organizations_url: https://api.github.com/users/Roming22/orgs + received_events_url: https://api.github.com/users/Roming22/received_events + repos_url: https://api.github.com/users/Roming22/repos + site_admin: false + starred_url: https://api.github.com/users/Roming22/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Roming22/subscriptions + type: User + url: https://api.github.com/users/Roming22 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "By running `pre-commit run --all-files` getting the below error\ + \ without using the strict mode. I am not sure what NotSet does in this\ + \ case.\r\n```\r\nogr/services/github/service.py:169: error: Module\ + \ has no attribute \"NotSet\"\r\n```\r\nThe changes were made in this\ + \ PR - https://github.com/packit/ogr/pull/476\r\n\r\n" + closed_at: '2021-03-16T04:50:13Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/490/comments + created_at: '2020-10-21T05:27:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/490/events + html_url: https://github.com/packit/ogr/issues/490 + id: 726145698 + labels: + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/490/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MjYxNDU2OTg= + number: 490 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: GithubObject has no attribute "NotSet" + updated_at: '2021-03-17T14:44:59Z' + url: https://api.github.com/repos/packit/ogr/issues/490 + user: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2021-03-17T12:45:18Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/561/comments + created_at: '2021-03-16T14:25:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/561/events + html_url: https://github.com/packit/ogr/pull/561 + id: 832857847 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/561/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkzOTUwNzI5 + number: 561 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/561.diff + html_url: https://github.com/packit/ogr/pull/561 + patch_url: https://github.com/packit/ogr/pull/561.patch + url: https://api.github.com/repos/packit/ogr/pulls/561 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'Authentication type: `gitlab` results in `TypeError`' + updated_at: '2021-03-17T14:29:37Z' + url: https://api.github.com/repos/packit/ogr/issues/561 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n File \"/home/tt/g/user-cont/packit/packit/schema.py\"\ + , line 440, in make_instance \ + \ \ + \ \r\n return Config(**data) \ + \ \ + \ \r\ + \n File \"/home/tt/g/user-cont/packit/packit/config/config.py\", line\ + \ 99, in __init__ \ + \ \r\n self.services\ + \ = Config.load_authentication(kwargs) \ + \ \ + \ \r\n File \"/home/tt/g/user-cont/packit/packit/config/config.py\"\ + , line 164, in load_authentication \ + \ \r\n\ + \ services = get_instances_from_dict(instances=raw_dict[\"authentication\"\ + ]) \ + \ \r\n File \"/home/tt/g/user-cont/ogr/ogr/factory.py\"\ + , line 211, in get_instances_from_dict \ + \ \ + \ \r\n service_instance = service_kls(**value)\r\nTypeError:\ + \ __init__() got an unexpected keyword argument 'type'\r\n```\r\n\r\n\ + ```\r\nauthentication:\r\n gitlab.com:\r\n type: gitlab\r\n token:\ + \ \"...\"\r\n instance_url: \"https://gitlab.com/\"\r\n fedora-dist-git:\r\ + \n type: pagure\r\n instance_url: \"https://src.fedoraproject.org/\"\ + \r\n token: ...\r\n```\r\n\r\nIt's tracebacking on the `type: gitlab`\ + \ - I don't understand, what's wrong there? Especially when `type: pagure`\ + \ is fine." + closed_at: '2021-03-17T12:45:19Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/557/comments + created_at: '2021-03-15T17:37:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/557/events + html_url: https://github.com/packit/ogr/issues/557 + id: 832040748 + labels: + - color: 008672 + default: false + description: We need more info from the requester. + id: 1432779351 + name: need-info + node_id: MDU6TGFiZWwxNDMyNzc5MzUx + url: https://api.github.com/repos/packit/ogr/labels/need-info + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/557/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MzIwNDA3NDg= + number: 557 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '`authentication: type: gitlab` results in `TypeError: __init__() + got an unexpected keyword argument ''type''`' + updated_at: '2021-03-17T12:45:19Z' + url: https://api.github.com/repos/packit/ogr/issues/557 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "This is the fix for [issue #559](https://github.com/packit/ogr/issues/559)\r\ + \n\r\nThe file py.typed need to be added at the root of the ogr package\ + \ for\r\nthe package to be PEP-561 compliant and have mypy be able to\ + \ use the\r\ntype information when importing the package in other projects." + closed_at: '2021-03-17T08:49:37Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/560/comments + created_at: '2021-03-15T21:32:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/560/events + html_url: https://github.com/packit/ogr/pull/560 + id: 832209610 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/560/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkzNDA2OTY4 + number: 560 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/560.diff + html_url: https://github.com/packit/ogr/pull/560 + patch_url: https://github.com/packit/ogr/pull/560.patch + url: https://api.github.com/repos/packit/ogr/pulls/560 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Export types in the package (PEP-561) + updated_at: '2021-03-17T08:49:38Z' + url: https://api.github.com/repos/packit/ogr/issues/560 + user: + avatar_url: https://avatars.githubusercontent.com/u/3617836?v=4 + events_url: https://api.github.com/users/Roming22/events{/privacy} + followers_url: https://api.github.com/users/Roming22/followers + following_url: https://api.github.com/users/Roming22/following{/other_user} + gists_url: https://api.github.com/users/Roming22/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Roming22 + id: 3617836 + login: Roming22 + node_id: MDQ6VXNlcjM2MTc4MzY= + organizations_url: https://api.github.com/users/Roming22/orgs + received_events_url: https://api.github.com/users/Roming22/received_events + repos_url: https://api.github.com/users/Roming22/repos + site_admin: false + starred_url: https://api.github.com/users/Roming22/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Roming22/subscriptions + type: User + url: https://api.github.com/users/Roming22 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: The file has been renamed since packit/packit@970ec25 + closed_at: '2021-03-16T10:53:09Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/558/comments + created_at: '2021-03-15T18:28:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/558/events + html_url: https://github.com/packit/ogr/pull/558 + id: 832080411 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/558/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkzMjk5ODYz + number: 558 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/558.diff + html_url: https://github.com/packit/ogr/pull/558 + patch_url: https://github.com/packit/ogr/pull/558.patch + url: https://api.github.com/repos/packit/ogr/pulls/558 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix reverse-dep-packit-tests + updated_at: '2021-03-16T10:53:25Z' + url: https://api.github.com/repos/packit/ogr/issues/558 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-03-15T18:24:37Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/556/comments + created_at: '2021-03-15T17:02:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/556/events + html_url: https://github.com/packit/ogr/pull/556 + id: 832010690 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/556/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkzMjQxMjY5 + number: 556 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/556.diff + html_url: https://github.com/packit/ogr/pull/556 + patch_url: https://github.com/packit/ogr/pull/556.patch + url: https://api.github.com/repos/packit/ogr/pulls/556 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-03-15T18:24:39Z' + url: https://api.github.com/repos/packit/ogr/issues/556 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Residing at https://packit.github.io/ogr\r\n\r\nFollow-up of #531 " + closed_at: '2021-03-12T17:37:21Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/534/comments + created_at: '2021-02-09T14:05:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/534/events + html_url: https://github.com/packit/ogr/issues/534 + id: 804582194 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/534/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MDQ1ODIxOTQ= + number: 534 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add a link to documentation to README + updated_at: '2021-03-12T17:37:21Z' + url: https://api.github.com/repos/packit/ogr/issues/534 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'worked on issue: https://github.com/packit/ogr/issues/534' + closed_at: '2021-03-11T16:13:53Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/555/comments + created_at: '2021-03-11T04:15:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/555/events + html_url: https://github.com/packit/ogr/pull/555 + id: 828701848 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/555/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkwNDc4MTk2 + number: 555 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/555.diff + html_url: https://github.com/packit/ogr/pull/555 + patch_url: https://github.com/packit/ogr/pull/555.patch + url: https://api.github.com/repos/packit/ogr/pulls/555 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: added packit.github.io/ogr to readme + updated_at: '2021-03-11T16:13:53Z' + url: https://api.github.com/repos/packit/ogr/issues/555 + user: + avatar_url: https://avatars.githubusercontent.com/u/6732513?v=4 + events_url: https://api.github.com/users/LilySu/events{/privacy} + followers_url: https://api.github.com/users/LilySu/followers + following_url: https://api.github.com/users/LilySu/following{/other_user} + gists_url: https://api.github.com/users/LilySu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/LilySu + id: 6732513 + login: LilySu + node_id: MDQ6VXNlcjY3MzI1MTM= + organizations_url: https://api.github.com/users/LilySu/orgs + received_events_url: https://api.github.com/users/LilySu/received_events + repos_url: https://api.github.com/users/LilySu/repos + site_admin: false + starred_url: https://api.github.com/users/LilySu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/LilySu/subscriptions + type: User + url: https://api.github.com/users/LilySu + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "PagureProject.create_pr dumped fork_username which made PR creation\ + \ from\r\na fork by passing this kwarg not working - one had to create\ + \ the PR from\r\nan actual fork instance instead of making it the parent\ + \ repo.\r\n\r\nThis commit:\r\n* makes sure the fork_username is passed\ + \ to PagurePullRequest.create\r\n* and also sets correct `repo_from[*]`\ + \ keys for the API request to\r\n create a PR\r\n\r\nWorked for: https://src.fedoraproject.org/rpms/packit/pull-request/125\r\ + \nAnd also this PR -_-\r\n\r\nFixes #551\r\n\r\n~~Please let me know\ + \ what tests I should write.~~\r\n\r\n* [x] Wrote a test case for this.\r\ + \n" + closed_at: '2021-03-10T14:34:28Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/552/comments + created_at: '2021-03-08T13:32:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/552/events + html_url: https://github.com/packit/ogr/pull/552 + id: 824560812 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/552/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTg2NzczOTk1 + number: 552 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/552.diff + html_url: https://github.com/packit/ogr/pull/552 + patch_url: https://github.com/packit/ogr/pull/552.patch + url: https://api.github.com/repos/packit/ogr/pulls/552 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'pagure: enable creating PRs from fork via fork_username' + updated_at: '2021-03-10T14:53:29Z' + url: https://api.github.com/repos/packit/ogr/issues/552 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "This is gonna be a fun one: I tried to use upsint to create a PR\ + \ in src.fedoraproject.org/rpms but failed because there are two different\ + \ servers for the forge API and a git server:\r\n\r\nI use SSH:\r\n\ + ```\r\nssh://ttomecek@pkgs.fedoraproject.org/rpms/python-ogr.git\r\n\ + ```\r\n\r\nBut pagure API is at\r\n```\r\nhttps://src.fedoraproject.org/rpms/python-ogr.git\r\ + \n```\r\n\r\nI'm wondering if it's possible to set up an authentication\ + \ entry which would recognize pkgs.fp.o but route API requests to src.fp.o.\ + \ Tried these but none of them worked with SSH:\r\n```\r\n fedora-dist-git:\r\ + \n type: pagure\r\n instance_url: \"https://src.fedoraproject.org/\"\ + \r\n token: ...\r\n fedora-dist-git2:\r\n type: pagure\r\n \ + \ instance_url: \"https://pkgs.fedoraproject.org/\"\r\n token: ...\r\ + \n```\r\n\r\nWorst case I could hard-code the logic to upsint though\ + \ I think it would be useful to have in ogr itself." + closed_at: '2021-03-10T14:34:28Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/551/comments + created_at: '2021-03-08T08:51:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/551/events + html_url: https://github.com/packit/ogr/issues/551 + id: 824335510 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/551/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MjQzMzU1MTA= + number: 551 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'authentication: support alternative server for git and git-forge + API (src.fp.o)' + updated_at: '2021-03-10T14:34:28Z' + url: https://api.github.com/repos/packit/ogr/issues/551 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: Fixes http://artifacts.dev.testing-farm.io/0fc448fc-26c9-428a-ad9c-ed107e9e9c95 + closed_at: '2021-03-10T13:59:15Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/554/comments + created_at: '2021-03-10T11:25:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/554/events + html_url: https://github.com/packit/ogr/pull/554 + id: 827576846 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/554/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTg5NDczMzEz + number: 554 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/554.diff + html_url: https://github.com/packit/ogr/pull/554 + patch_url: https://github.com/packit/ogr/pull/554.patch + url: https://api.github.com/repos/packit/ogr/pulls/554 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Install rpmautospec-rpm-macros on Fedora only + updated_at: '2021-03-10T14:33:42Z' + url: https://api.github.com/repos/packit/ogr/issues/554 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2021-03-10T11:05:54Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/553/comments + created_at: '2021-03-09T16:01:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/553/events + html_url: https://github.com/packit/ogr/pull/553 + id: 826154736 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/553/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTg4MTc4ODE4 + number: 553 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/553.diff + html_url: https://github.com/packit/ogr/pull/553 + patch_url: https://github.com/packit/ogr/pull/553.patch + url: https://api.github.com/repos/packit/ogr/pulls/553 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Workflow for uploading to PyPI when a release is created + updated_at: '2021-03-10T11:05:55Z' + url: https://api.github.com/repos/packit/ogr/issues/553 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "In *Set PR flags in Pagure #381*, the `set_flag` method for Pagure\ + \ pull-requests was left to return the `dict` from the response. \r\n\ + \r\nWrap that response in a class to make working with these kind of\ + \ flags easier." + closed_at: null + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/384/comments + created_at: '2020-04-16T07:35:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/384/events + html_url: https://github.com/packit/ogr/issues/384 + id: 600814459 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/384/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MDA4MTQ0NTk= + number: 384 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Create a class to hold information on pull-request flags + updated_at: '2021-03-08T17:43:30Z' + url: https://api.github.com/repos/packit/ogr/issues/384 + 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 + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "We need to document usage of ogr on custom/internal instances:\r\ + \n\r\n- [ ] usage of `instance_url`\r\n- [ ] setup of custom/internal\ + \ certificates:\r\n - export `REQUESTS_CA_BUNDLE=/etc/pki/tls/certs/ca-bundle.crt`\r\ + \n - ignore the SSL verification (`ssl_verify` argument)" + closed_at: null + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/356/comments + created_at: '2020-03-17T14:45:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/356/events + html_url: https://github.com/packit/ogr/issues/356 + id: 583065980 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/356/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1ODMwNjU5ODA= + number: 356 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Document the usage of custom instances and certificates + updated_at: '2021-03-08T17:41:56Z' + url: https://api.github.com/repos/packit/ogr/issues/356 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Hunor is correct, our upstream release description used as a %changelog + + violates Fedora guidelines, so let packit assemble %changelog from + + git-log. + + + https://docs.fedoraproject.org/en-US/packaging-guidelines/#changelogs + + + https://packit.dev/docs/configuration/#copy_upstream_release_description' + closed_at: '2021-03-08T09:29:38Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/550/comments + created_at: '2021-03-07T20:24:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/550/events + html_url: https://github.com/packit/ogr/pull/550 + id: 824009825 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/550/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTg2MzIwNTM1 + number: 550 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/550.diff + html_url: https://github.com/packit/ogr/pull/550 + patch_url: https://github.com/packit/ogr/pull/550.patch + url: https://api.github.com/repos/packit/ogr/pulls/550 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'packit: create downstream %changelog from git-log' + updated_at: '2021-03-08T09:29:38Z' + url: https://api.github.com/repos/packit/ogr/issues/550 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f33` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f34` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `main` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-03-08T08:50:33Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/548/comments + created_at: '2021-03-03T14:38:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/548/events + html_url: https://github.com/packit/ogr/issues/548 + id: 821170152 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/548/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MjExNzAxNTI= + number: 548 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose downstream failed for release 0.22.0' + updated_at: '2021-03-08T08:50:33Z' + url: https://api.github.com/repos/packit/ogr/issues/548 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "The current behaviour of 'ogr.get_project()', when a list of\r\n\ + 'custom_instances' (already created GitService objects) is provided,\ + \ is\r\nto raise an OgrException if none of these matches the project\ + \ URL.\r\n\r\nIntroduce a 'force_custom_instance' flag, defaulting to\ + \ True to keep\r\nbackwards compatibility, in order to support the use\ + \ case where the user\r\nwould like to retrieve an existing service\ + \ *or create a new one* if none\r\nis matching in the 'custom_instances'\ + \ list.\r\n\r\nSigned-off-by: Hunor Csomort\xE1ni " + closed_at: '2021-03-04T11:53:23Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/549/comments + created_at: '2021-03-04T08:59:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/549/events + html_url: https://github.com/packit/ogr/pull/549 + id: 821917377 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/549/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTg0NjI2MzQx + number: 549 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/549.diff + html_url: https://github.com/packit/ogr/pull/549 + patch_url: https://github.com/packit/ogr/pull/549.patch + url: https://api.github.com/repos/packit/ogr/pulls/549 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Allow ignoring custom instances when creating a project + updated_at: '2021-03-04T13:49:08Z' + url: https://api.github.com/repos/packit/ogr/issues/549 + 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 + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + 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.801185 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:36 GMT + ETag: W/"3223cf7b96e232b7e09c6e6c9daab97dcbe78cd8da5c88808922c7039667157a" + Link: ; + rel="next", ; + rel="last" + 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: 85EE:7CFE:F7D19E:1916FD4:6075DC07 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4977' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '23' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues?state=closed&sort=updated&direction=desc: + - metadata: + latency: 0.5143063068389893 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-04-13T06:20:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/568/comments + created_at: '2021-04-12T17:13:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/568/events + html_url: https://github.com/packit/ogr/pull/568 + id: 856181069 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/568/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjEzODAxMzc3 + number: 568 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/568.diff + html_url: https://github.com/packit/ogr/pull/568 + patch_url: https://github.com/packit/ogr/pull/568.patch + url: https://api.github.com/repos/packit/ogr/pulls/568 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-04-13T06:23:27Z' + url: https://api.github.com/repos/packit/ogr/issues/568 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-04-06T07:07:24Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/567/comments + created_at: '2021-04-05T17:11:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/567/events + html_url: https://github.com/packit/ogr/pull/567 + id: 850515743 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/567/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjA5MDc2MzEw + number: 567 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/567.diff + html_url: https://github.com/packit/ogr/pull/567 + patch_url: https://github.com/packit/ogr/pull/567.patch + url: https://api.github.com/repos/packit/ogr/pulls/567 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-04-06T07:07:26Z' + url: https://api.github.com/repos/packit/ogr/issues/567 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-03-29T17:45:41Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/565/comments + created_at: '2021-03-29T16:56:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/565/events + html_url: https://github.com/packit/ogr/pull/565 + id: 843571484 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/565/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjAyOTMzODIy + number: 565 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/565.diff + html_url: https://github.com/packit/ogr/pull/565 + patch_url: https://github.com/packit/ogr/pull/565.patch + url: https://api.github.com/repos/packit/ogr/pulls/565 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-03-29T17:45:41Z' + url: https://api.github.com/repos/packit/ogr/issues/565 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-03-22T18:05:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/563/comments + created_at: '2021-03-22T17:06:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/563/events + html_url: https://github.com/packit/ogr/pull/563 + id: 837931345 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/563/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTk4MTkyMTYy + number: 563 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/563.diff + html_url: https://github.com/packit/ogr/pull/563 + patch_url: https://github.com/packit/ogr/pull/563.patch + url: https://api.github.com/repos/packit/ogr/pulls/563 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-03-22T18:08:07Z' + url: https://api.github.com/repos/packit/ogr/issues/563 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2021-03-19T10:10:52Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/562/comments + created_at: '2021-03-18T12:23:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/562/events + html_url: https://github.com/packit/ogr/pull/562 + id: 834742552 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/562/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTk1NTA0ODUy + number: 562 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/562.diff + html_url: https://github.com/packit/ogr/pull/562 + patch_url: https://github.com/packit/ogr/pull/562.patch + url: https://api.github.com/repos/packit/ogr/pulls/562 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.23.0 release + updated_at: '2021-03-19T10:13:05Z' + url: https://api.github.com/repos/packit/ogr/issues/562 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "The package is not PEP-561 compliant (see https://mypy.readthedocs.io/en/latest/installed_packages.html#creating-pep-561-compatible-packages).\r\ + \n\r\nThe file `py.typed` need to be added at the root of the ogr package." + closed_at: '2021-03-17T14:43:37Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/559/comments + created_at: '2021-03-15T20:43:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/559/events + html_url: https://github.com/packit/ogr/issues/559 + id: 832177415 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/559/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MzIxNzc0MTU= + number: 559 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: mypy cannot use the type annotation + updated_at: '2021-03-17T14:57:14Z' + url: https://api.github.com/repos/packit/ogr/issues/559 + user: + avatar_url: https://avatars.githubusercontent.com/u/3617836?v=4 + events_url: https://api.github.com/users/Roming22/events{/privacy} + followers_url: https://api.github.com/users/Roming22/followers + following_url: https://api.github.com/users/Roming22/following{/other_user} + gists_url: https://api.github.com/users/Roming22/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Roming22 + id: 3617836 + login: Roming22 + node_id: MDQ6VXNlcjM2MTc4MzY= + organizations_url: https://api.github.com/users/Roming22/orgs + received_events_url: https://api.github.com/users/Roming22/received_events + repos_url: https://api.github.com/users/Roming22/repos + site_admin: false + starred_url: https://api.github.com/users/Roming22/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Roming22/subscriptions + type: User + url: https://api.github.com/users/Roming22 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "By running `pre-commit run --all-files` getting the below error\ + \ without using the strict mode. I am not sure what NotSet does in this\ + \ case.\r\n```\r\nogr/services/github/service.py:169: error: Module\ + \ has no attribute \"NotSet\"\r\n```\r\nThe changes were made in this\ + \ PR - https://github.com/packit/ogr/pull/476\r\n\r\n" + closed_at: '2021-03-16T04:50:13Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/490/comments + created_at: '2020-10-21T05:27:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/490/events + html_url: https://github.com/packit/ogr/issues/490 + id: 726145698 + labels: + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/490/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MjYxNDU2OTg= + number: 490 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: GithubObject has no attribute "NotSet" + updated_at: '2021-03-17T14:44:59Z' + url: https://api.github.com/repos/packit/ogr/issues/490 + user: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2021-03-17T12:45:18Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/561/comments + created_at: '2021-03-16T14:25:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/561/events + html_url: https://github.com/packit/ogr/pull/561 + id: 832857847 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/561/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkzOTUwNzI5 + number: 561 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/561.diff + html_url: https://github.com/packit/ogr/pull/561 + patch_url: https://github.com/packit/ogr/pull/561.patch + url: https://api.github.com/repos/packit/ogr/pulls/561 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'Authentication type: `gitlab` results in `TypeError`' + updated_at: '2021-03-17T14:29:37Z' + url: https://api.github.com/repos/packit/ogr/issues/561 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n File \"/home/tt/g/user-cont/packit/packit/schema.py\"\ + , line 440, in make_instance \ + \ \ + \ \r\n return Config(**data) \ + \ \ + \ \r\ + \n File \"/home/tt/g/user-cont/packit/packit/config/config.py\", line\ + \ 99, in __init__ \ + \ \r\n self.services\ + \ = Config.load_authentication(kwargs) \ + \ \ + \ \r\n File \"/home/tt/g/user-cont/packit/packit/config/config.py\"\ + , line 164, in load_authentication \ + \ \r\n\ + \ services = get_instances_from_dict(instances=raw_dict[\"authentication\"\ + ]) \ + \ \r\n File \"/home/tt/g/user-cont/ogr/ogr/factory.py\"\ + , line 211, in get_instances_from_dict \ + \ \ + \ \r\n service_instance = service_kls(**value)\r\nTypeError:\ + \ __init__() got an unexpected keyword argument 'type'\r\n```\r\n\r\n\ + ```\r\nauthentication:\r\n gitlab.com:\r\n type: gitlab\r\n token:\ + \ \"...\"\r\n instance_url: \"https://gitlab.com/\"\r\n fedora-dist-git:\r\ + \n type: pagure\r\n instance_url: \"https://src.fedoraproject.org/\"\ + \r\n token: ...\r\n```\r\n\r\nIt's tracebacking on the `type: gitlab`\ + \ - I don't understand, what's wrong there? Especially when `type: pagure`\ + \ is fine." + closed_at: '2021-03-17T12:45:19Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/557/comments + created_at: '2021-03-15T17:37:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/557/events + html_url: https://github.com/packit/ogr/issues/557 + id: 832040748 + labels: + - color: 008672 + default: false + description: We need more info from the requester. + id: 1432779351 + name: need-info + node_id: MDU6TGFiZWwxNDMyNzc5MzUx + url: https://api.github.com/repos/packit/ogr/labels/need-info + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/557/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MzIwNDA3NDg= + number: 557 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '`authentication: type: gitlab` results in `TypeError: __init__() + got an unexpected keyword argument ''type''`' + updated_at: '2021-03-17T12:45:19Z' + url: https://api.github.com/repos/packit/ogr/issues/557 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "This is the fix for [issue #559](https://github.com/packit/ogr/issues/559)\r\ + \n\r\nThe file py.typed need to be added at the root of the ogr package\ + \ for\r\nthe package to be PEP-561 compliant and have mypy be able to\ + \ use the\r\ntype information when importing the package in other projects." + closed_at: '2021-03-17T08:49:37Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/560/comments + created_at: '2021-03-15T21:32:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/560/events + html_url: https://github.com/packit/ogr/pull/560 + id: 832209610 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/560/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkzNDA2OTY4 + number: 560 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/560.diff + html_url: https://github.com/packit/ogr/pull/560 + patch_url: https://github.com/packit/ogr/pull/560.patch + url: https://api.github.com/repos/packit/ogr/pulls/560 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Export types in the package (PEP-561) + updated_at: '2021-03-17T08:49:38Z' + url: https://api.github.com/repos/packit/ogr/issues/560 + user: + avatar_url: https://avatars.githubusercontent.com/u/3617836?v=4 + events_url: https://api.github.com/users/Roming22/events{/privacy} + followers_url: https://api.github.com/users/Roming22/followers + following_url: https://api.github.com/users/Roming22/following{/other_user} + gists_url: https://api.github.com/users/Roming22/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Roming22 + id: 3617836 + login: Roming22 + node_id: MDQ6VXNlcjM2MTc4MzY= + organizations_url: https://api.github.com/users/Roming22/orgs + received_events_url: https://api.github.com/users/Roming22/received_events + repos_url: https://api.github.com/users/Roming22/repos + site_admin: false + starred_url: https://api.github.com/users/Roming22/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Roming22/subscriptions + type: User + url: https://api.github.com/users/Roming22 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: The file has been renamed since packit/packit@970ec25 + closed_at: '2021-03-16T10:53:09Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/558/comments + created_at: '2021-03-15T18:28:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/558/events + html_url: https://github.com/packit/ogr/pull/558 + id: 832080411 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/558/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkzMjk5ODYz + number: 558 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/558.diff + html_url: https://github.com/packit/ogr/pull/558 + patch_url: https://github.com/packit/ogr/pull/558.patch + url: https://api.github.com/repos/packit/ogr/pulls/558 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix reverse-dep-packit-tests + updated_at: '2021-03-16T10:53:25Z' + url: https://api.github.com/repos/packit/ogr/issues/558 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-03-15T18:24:37Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/556/comments + created_at: '2021-03-15T17:02:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/556/events + html_url: https://github.com/packit/ogr/pull/556 + id: 832010690 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/556/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkzMjQxMjY5 + number: 556 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/556.diff + html_url: https://github.com/packit/ogr/pull/556 + patch_url: https://github.com/packit/ogr/pull/556.patch + url: https://api.github.com/repos/packit/ogr/pulls/556 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-03-15T18:24:39Z' + url: https://api.github.com/repos/packit/ogr/issues/556 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Residing at https://packit.github.io/ogr\r\n\r\nFollow-up of #531 " + closed_at: '2021-03-12T17:37:21Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/534/comments + created_at: '2021-02-09T14:05:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/534/events + html_url: https://github.com/packit/ogr/issues/534 + id: 804582194 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/534/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MDQ1ODIxOTQ= + number: 534 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add a link to documentation to README + updated_at: '2021-03-12T17:37:21Z' + url: https://api.github.com/repos/packit/ogr/issues/534 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'worked on issue: https://github.com/packit/ogr/issues/534' + closed_at: '2021-03-11T16:13:53Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/555/comments + created_at: '2021-03-11T04:15:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/555/events + html_url: https://github.com/packit/ogr/pull/555 + id: 828701848 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/555/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkwNDc4MTk2 + number: 555 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/555.diff + html_url: https://github.com/packit/ogr/pull/555 + patch_url: https://github.com/packit/ogr/pull/555.patch + url: https://api.github.com/repos/packit/ogr/pulls/555 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: added packit.github.io/ogr to readme + updated_at: '2021-03-11T16:13:53Z' + url: https://api.github.com/repos/packit/ogr/issues/555 + user: + avatar_url: https://avatars.githubusercontent.com/u/6732513?v=4 + events_url: https://api.github.com/users/LilySu/events{/privacy} + followers_url: https://api.github.com/users/LilySu/followers + following_url: https://api.github.com/users/LilySu/following{/other_user} + gists_url: https://api.github.com/users/LilySu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/LilySu + id: 6732513 + login: LilySu + node_id: MDQ6VXNlcjY3MzI1MTM= + organizations_url: https://api.github.com/users/LilySu/orgs + received_events_url: https://api.github.com/users/LilySu/received_events + repos_url: https://api.github.com/users/LilySu/repos + site_admin: false + starred_url: https://api.github.com/users/LilySu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/LilySu/subscriptions + type: User + url: https://api.github.com/users/LilySu + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "PagureProject.create_pr dumped fork_username which made PR creation\ + \ from\r\na fork by passing this kwarg not working - one had to create\ + \ the PR from\r\nan actual fork instance instead of making it the parent\ + \ repo.\r\n\r\nThis commit:\r\n* makes sure the fork_username is passed\ + \ to PagurePullRequest.create\r\n* and also sets correct `repo_from[*]`\ + \ keys for the API request to\r\n create a PR\r\n\r\nWorked for: https://src.fedoraproject.org/rpms/packit/pull-request/125\r\ + \nAnd also this PR -_-\r\n\r\nFixes #551\r\n\r\n~~Please let me know\ + \ what tests I should write.~~\r\n\r\n* [x] Wrote a test case for this.\r\ + \n" + closed_at: '2021-03-10T14:34:28Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/552/comments + created_at: '2021-03-08T13:32:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/552/events + html_url: https://github.com/packit/ogr/pull/552 + id: 824560812 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/552/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTg2NzczOTk1 + number: 552 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/552.diff + html_url: https://github.com/packit/ogr/pull/552 + patch_url: https://github.com/packit/ogr/pull/552.patch + url: https://api.github.com/repos/packit/ogr/pulls/552 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'pagure: enable creating PRs from fork via fork_username' + updated_at: '2021-03-10T14:53:29Z' + url: https://api.github.com/repos/packit/ogr/issues/552 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "This is gonna be a fun one: I tried to use upsint to create a PR\ + \ in src.fedoraproject.org/rpms but failed because there are two different\ + \ servers for the forge API and a git server:\r\n\r\nI use SSH:\r\n\ + ```\r\nssh://ttomecek@pkgs.fedoraproject.org/rpms/python-ogr.git\r\n\ + ```\r\n\r\nBut pagure API is at\r\n```\r\nhttps://src.fedoraproject.org/rpms/python-ogr.git\r\ + \n```\r\n\r\nI'm wondering if it's possible to set up an authentication\ + \ entry which would recognize pkgs.fp.o but route API requests to src.fp.o.\ + \ Tried these but none of them worked with SSH:\r\n```\r\n fedora-dist-git:\r\ + \n type: pagure\r\n instance_url: \"https://src.fedoraproject.org/\"\ + \r\n token: ...\r\n fedora-dist-git2:\r\n type: pagure\r\n \ + \ instance_url: \"https://pkgs.fedoraproject.org/\"\r\n token: ...\r\ + \n```\r\n\r\nWorst case I could hard-code the logic to upsint though\ + \ I think it would be useful to have in ogr itself." + closed_at: '2021-03-10T14:34:28Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/551/comments + created_at: '2021-03-08T08:51:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/551/events + html_url: https://github.com/packit/ogr/issues/551 + id: 824335510 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/551/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MjQzMzU1MTA= + number: 551 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'authentication: support alternative server for git and git-forge + API (src.fp.o)' + updated_at: '2021-03-10T14:34:28Z' + url: https://api.github.com/repos/packit/ogr/issues/551 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: Fixes http://artifacts.dev.testing-farm.io/0fc448fc-26c9-428a-ad9c-ed107e9e9c95 + closed_at: '2021-03-10T13:59:15Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/554/comments + created_at: '2021-03-10T11:25:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/554/events + html_url: https://github.com/packit/ogr/pull/554 + id: 827576846 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/554/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTg5NDczMzEz + number: 554 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/554.diff + html_url: https://github.com/packit/ogr/pull/554 + patch_url: https://github.com/packit/ogr/pull/554.patch + url: https://api.github.com/repos/packit/ogr/pulls/554 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Install rpmautospec-rpm-macros on Fedora only + updated_at: '2021-03-10T14:33:42Z' + url: https://api.github.com/repos/packit/ogr/issues/554 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2021-03-10T11:05:54Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/553/comments + created_at: '2021-03-09T16:01:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/553/events + html_url: https://github.com/packit/ogr/pull/553 + id: 826154736 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/553/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTg4MTc4ODE4 + number: 553 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/553.diff + html_url: https://github.com/packit/ogr/pull/553 + patch_url: https://github.com/packit/ogr/pull/553.patch + url: https://api.github.com/repos/packit/ogr/pulls/553 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Workflow for uploading to PyPI when a release is created + updated_at: '2021-03-10T11:05:55Z' + url: https://api.github.com/repos/packit/ogr/issues/553 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Hunor is correct, our upstream release description used as a %changelog + + violates Fedora guidelines, so let packit assemble %changelog from + + git-log. + + + https://docs.fedoraproject.org/en-US/packaging-guidelines/#changelogs + + + https://packit.dev/docs/configuration/#copy_upstream_release_description' + closed_at: '2021-03-08T09:29:38Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/550/comments + created_at: '2021-03-07T20:24:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/550/events + html_url: https://github.com/packit/ogr/pull/550 + id: 824009825 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/550/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTg2MzIwNTM1 + number: 550 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/550.diff + html_url: https://github.com/packit/ogr/pull/550 + patch_url: https://github.com/packit/ogr/pull/550.patch + url: https://api.github.com/repos/packit/ogr/pulls/550 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'packit: create downstream %changelog from git-log' + updated_at: '2021-03-08T09:29:38Z' + url: https://api.github.com/repos/packit/ogr/issues/550 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f33` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f34` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `main` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-03-08T08:50:33Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/548/comments + created_at: '2021-03-03T14:38:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/548/events + html_url: https://github.com/packit/ogr/issues/548 + id: 821170152 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/548/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MjExNzAxNTI= + number: 548 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose downstream failed for release 0.22.0' + updated_at: '2021-03-08T08:50:33Z' + url: https://api.github.com/repos/packit/ogr/issues/548 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "The current behaviour of 'ogr.get_project()', when a list of\r\n\ + 'custom_instances' (already created GitService objects) is provided,\ + \ is\r\nto raise an OgrException if none of these matches the project\ + \ URL.\r\n\r\nIntroduce a 'force_custom_instance' flag, defaulting to\ + \ True to keep\r\nbackwards compatibility, in order to support the use\ + \ case where the user\r\nwould like to retrieve an existing service\ + \ *or create a new one* if none\r\nis matching in the 'custom_instances'\ + \ list.\r\n\r\nSigned-off-by: Hunor Csomort\xE1ni " + closed_at: '2021-03-04T11:53:23Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/549/comments + created_at: '2021-03-04T08:59:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/549/events + html_url: https://github.com/packit/ogr/pull/549 + id: 821917377 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/549/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTg0NjI2MzQx + number: 549 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/549.diff + html_url: https://github.com/packit/ogr/pull/549 + patch_url: https://github.com/packit/ogr/pull/549.patch + url: https://api.github.com/repos/packit/ogr/pulls/549 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Allow ignoring custom instances when creating a project + updated_at: '2021-03-04T13:49:08Z' + url: https://api.github.com/repos/packit/ogr/issues/549 + 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 + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Signed-off-by: Hunor Csomort\xE1ni " + closed_at: '2021-03-03T14:32:55Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/547/comments + created_at: '2021-03-03T13:07:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/547/events + html_url: https://github.com/packit/ogr/pull/547 + id: 821093261 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/547/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTgzOTQzODE5 + number: 547 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/547.diff + html_url: https://github.com/packit/ogr/pull/547 + patch_url: https://github.com/packit/ogr/pull/547.patch + url: https://api.github.com/repos/packit/ogr/pulls/547 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Write a changelog entry for release 0.22.0 + updated_at: '2021-03-03T14:33:18Z' + url: https://api.github.com/repos/packit/ogr/issues/547 + 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 + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-03-02T08:45:39Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/546/comments + created_at: '2021-03-01T16:54:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/546/events + html_url: https://github.com/packit/ogr/pull/546 + id: 819059663 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/546/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTgyMjIyMDg1 + number: 546 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/546.diff + html_url: https://github.com/packit/ogr/pull/546 + patch_url: https://github.com/packit/ogr/pull/546.patch + url: https://api.github.com/repos/packit/ogr/pulls/546 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-03-02T08:45:41Z' + url: https://api.github.com/repos/packit/ogr/issues/546 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "I believe this is a flake but wanna make sure it's not an actual\ + \ bug. The logs are coming from [a sandcastle CI run](https://github.com/packit/sandcastle/pull/104#issuecomment-784432707).\r\ + \n```\r\n2021-02-23 18:55:03.228152 | test-node | E sandcastle.exceptions.SandcastleCommandFailed:\ + \ Command failed (rc=2, reason={\"metadata\":{},\"status\":\"Failure\"\ + ,\"message\":\"command terminated with non-zero exit code: Error executing\ + \ in Docker Container: 2\",\"reason\":\"NonZeroExitCode\",\"details\"\ + :{\"causes\":[{\"reason\":\"ExitCode\",\"message\":\"2\"}]}})\r\n2021-02-23\ + \ 18:55:03.228239 | test-node | E 18:42:55.563 config.py DEBUG\ + \ Loading user config from directory: /home/sandcastle/.config\r\n\ + 2021-02-23 18:55:03.228250 | test-node | E 18:42:55.564 config.py \ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.yaml\r\ + \n2021-02-23 18:55:03.228256 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.yml\r\ + \n2021-02-23 18:55:03.228263 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.json\r\ + \n2021-02-23 18:55:03.228269 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.yaml\r\ + \n2021-02-23 18:55:03.228275 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.yml\r\ + \n2021-02-23 18:55:03.228281 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.json\r\ + \n2021-02-23 18:55:03.228310 | test-node | E 18:42:55.572 config.py\ + \ DEBUG Loaded config: Config(debug='False', fas_user='None',\ + \ keytab_path='None', upstream_git_remote='None', command_handler='RunCommandType.local',\ + \ command_handler_work_dir='/sandcastle', command_handler_pvc_env_var='SANDCASTLE_PVC',\ + \ command_handler_image_reference='docker.io/usercont/sandcastle', command_handler_k8s_namespace='myproject')\r\ + \n2021-02-23 18:55:03.228383 | test-node | E 18:42:55.572 logging.py\ + \ DEBUG Logging set to DEBUG\r\n2021-02-23 18:55:03.228398 |\ + \ test-node | E 18:42:55.574 packit_base.py DEBUG Packit 0.24.0\ + \ is being used.\r\n2021-02-23 18:55:03.228404 | test-node | E 18:42:55.574\ + \ types.py DEBUG Input is a directory: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902\r\ + \n2021-02-23 18:55:03.228420 | test-node | E 18:42:55.575 local_project.py\ + \ DEBUG Arguments received in the init method of the LocalProject\ + \ class:\r\n2021-02-23 18:55:03.228426 | test-node | E git_repo: None\r\ + \n2021-02-23 18:55:03.228433 | test-node | E working_dir: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902\r\ + \n2021-02-23 18:55:03.228439 | test-node | E ref: None\r\n2021-02-23\ + \ 18:55:03.228445 | test-node | E git_project: None\r\n2021-02-23 18:55:03.228451\ + \ | test-node | E git_service: None\r\n2021-02-23 18:55:03.228458 |\ + \ test-node | E git_url:\r\n2021-02-23 18:55:03.228464 | test-node\ + \ | E full_name:\r\n2021-02-23 18:55:03.228470 | test-node | E namespace:\r\ + \n2021-02-23 18:55:03.228476 | test-node | E repo_name:\r\n2021-02-23\ + \ 18:55:03.228482 | test-node | E offline: False\r\n2021-02-23 18:55:03.228488\ + \ | test-node | E refresh True\r\n2021-02-23 18:55:03.228494 | test-node\ + \ | E remote: None\r\n2021-02-23 18:55:03.228501 | test-node | E pr_id:\ + \ None\r\n2021-02-23 18:55:03.228507 | test-node | E\r\n2021-02-23 18:55:03.228559\ + \ | test-node | E 18:42:55.575 local_project.py DEBUG `working_dir`\ + \ is set and `git_repo` is not: let's discover...\r\n2021-02-23 18:55:03.228607\ + \ | test-node | E 18:42:55.575 local_project.py DEBUG It's a git\ + \ repo!\r\n2021-02-23 18:55:03.228615 | test-node | E 18:42:55.577\ + \ local_project.py DEBUG Parsed ref 'main' from the repo .\r\ + \n2021-02-23 18:55:03.228630 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed remote url 'https://github.com/packit/ogr.git' from\ + \ the repo .\r\ + \n2021-02-23 18:55:03.228651 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed namespace and repo name (packit, ogr) from url 'https://github.com/packit/ogr.git'.\r\ + \n2021-02-23 18:55:03.228660 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed full repo name 'packit/ogr'.\r\n2021-02-23 18:55:03.228666\ + \ | test-node | E 18:42:55.578 package_config.py DEBUG Local package\ + \ config found: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/.packit.yaml\r\ + \n2021-02-23 18:55:03.228673 | test-node | E 18:42:55.590 package_config.py\ + \ DEBUG Local spec files found: [PosixPath('fedora/python-ogr.spec')].\ + \ Taking: fedora/python-ogr.spec\r\n2021-02-23 18:55:03.228679 | test-node\ + \ | E 18:42:55.591 package_config.py DEBUG Package config:\r\n2021-02-23\ + \ 18:55:03.228685 | test-node | E {\r\n2021-02-23 18:55:03.228692 |\ + \ test-node | E \"specfile_path\": \"fedora/python-ogr.spec\",\r\ + \n2021-02-23 18:55:03.228698 | test-node | E \"synced_files\":\ + \ [\r\n2021-02-23 18:55:03.228720 | test-node | E \"fedora/changelog\"\ + \r\n2021-02-23 18:55:03.228728 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.228735 | test-node | E \"downstream_package_name\":\ + \ \"python-ogr\",\r\n2021-02-23 18:55:03.228741 | test-node | E \ + \ \"upstream_project_url\": \"https://github.com/packit/ogr\",\r\n\ + 2021-02-23 18:55:03.228747 | test-node | E \"upstream_package_name\"\ + : \"ogr\",\r\n2021-02-23 18:55:03.228754 | test-node | E \"copy_upstream_release_description\"\ + : true,\r\n2021-02-23 18:55:03.228760 | test-node | E \"actions\"\ + : {\r\n2021-02-23 18:55:03.228766 | test-node | E \"create-archive\"\ + : [\r\n2021-02-23 18:55:03.228772 | test-node | E \"python3\ + \ setup.py sdist --dist-dir ./fedora/\",\r\n2021-02-23 18:55:03.228786\ + \ | test-node | E \"bash -c \\\"ls -1t ./fedora/*.tar.gz\ + \ | head -n 1\\\"\"\r\n2021-02-23 18:55:03.228793 | test-node | E \ + \ ],\r\n2021-02-23 18:55:03.228799 | test-node | E \"\ + get-current-version\": \"python3 setup.py --version\"\r\n2021-02-23\ + \ 18:55:03.228805 | test-node | E },\r\n2021-02-23 18:55:03.228811\ + \ | test-node | E \"jobs\": [\r\n2021-02-23 18:55:03.228818 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.228824 | test-node | E \ + \ \"job\": \"sync_from_downstream\",\r\n2021-02-23 18:55:03.228967\ + \ | test-node | E \"trigger\": \"commit\"\r\n2021-02-23\ + \ 18:55:03.229025 | test-node | E },\r\n2021-02-23 18:55:03.229032\ + \ | test-node | E {\r\n2021-02-23 18:55:03.229039 | test-node\ + \ | E \"job\": \"propose_downstream\",\r\n2021-02-23 18:55:03.229045\ + \ | test-node | E \"trigger\": \"release\",\r\n2021-02-23\ + \ 18:55:03.229051 | test-node | E \"metadata\": {\r\n2021-02-23\ + \ 18:55:03.229058 | test-node | E \"dist_git_branches\"\ + : [\r\n2021-02-23 18:55:03.229064 | test-node | E \ + \ \"fedora-all\",\r\n2021-02-23 18:55:03.229070 | test-node | E \ + \ \"epel-8\"\r\n2021-02-23 18:55:03.229076 | test-node\ + \ | E ]\r\n2021-02-23 18:55:03.229082 | test-node |\ + \ E }\r\n2021-02-23 18:55:03.229089 | test-node | E \ + \ },\r\n2021-02-23 18:55:03.229095 | test-node | E {\r\ + \n2021-02-23 18:55:03.229101 | test-node | E \"job\": \"\ + copr_build\",\r\n2021-02-23 18:55:03.229107 | test-node | E \ + \ \"trigger\": \"pull_request\",\r\n2021-02-23 18:55:03.229114\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229120\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229126\ + \ | test-node | E \"fedora-all\",\r\n2021-02-23\ + \ 18:55:03.229132 | test-node | E \"epel-8\"\r\n\ + 2021-02-23 18:55:03.229138 | test-node | E ]\r\n2021-02-23\ + \ 18:55:03.229147 | test-node | E }\r\n2021-02-23 18:55:03.229185\ + \ | test-node | E },\r\n2021-02-23 18:55:03.229207 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.229217 | test-node | E \ + \ \"job\": \"tests\",\r\n2021-02-23 18:55:03.229237 | test-node\ + \ | E \"trigger\": \"pull_request\",\r\n2021-02-23 18:55:03.229245\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229252\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229258\ + \ | test-node | E \"fedora-all\",\r\n2021-02-23\ + \ 18:55:03.229264 | test-node | E \"epel-8\"\r\n\ + 2021-02-23 18:55:03.229270 | test-node | E ]\r\n2021-02-23\ + \ 18:55:03.229276 | test-node | E }\r\n2021-02-23 18:55:03.229282\ + \ | test-node | E },\r\n2021-02-23 18:55:03.229289 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.229303 | test-node | E \ + \ \"job\": \"production_build\",\r\n2021-02-23 18:55:03.229310\ + \ | test-node | E \"trigger\": \"pull_request\",\r\n2021-02-23\ + \ 18:55:03.229316 | test-node | E \"metadata\": {\r\n2021-02-23\ + \ 18:55:03.229322 | test-node | E \"scratch\": true,\r\ + \n2021-02-23 18:55:03.229328 | test-node | E \"targets\"\ + : [\r\n2021-02-23 18:55:03.229334 | test-node | E \ + \ \"fedora-development\"\r\n2021-02-23 18:55:03.229349 | test-node\ + \ | E ]\r\n2021-02-23 18:55:03.229355 | test-node |\ + \ E }\r\n2021-02-23 18:55:03.229362 | test-node | E \ + \ },\r\n2021-02-23 18:55:03.229368 | test-node | E {\r\ + \n2021-02-23 18:55:03.229374 | test-node | E \"job\": \"\ + copr_build\",\r\n2021-02-23 18:55:03.229380 | test-node | E \ + \ \"trigger\": \"commit\",\r\n2021-02-23 18:55:03.229386 | test-node\ + \ | E \"metadata\": {\r\n2021-02-23 18:55:03.229392 | test-node\ + \ | E \"branch\": \"master\",\r\n2021-02-23 18:55:03.229399\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229405\ + \ | test-node | E \"fedora-stable\"\r\n2021-02-23\ + \ 18:55:03.229411 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.229417 | test-node | E \"project\": \"packit-master\"\ + ,\r\n2021-02-23 18:55:03.229423 | test-node | E \"\ + list_on_homepage\": true,\r\n2021-02-23 18:55:03.229430 | test-node\ + \ | E \"preserve_project\": true\r\n2021-02-23 18:55:03.229436\ + \ | test-node | E }\r\n2021-02-23 18:55:03.229442 | test-node\ + \ | E },\r\n2021-02-23 18:55:03.229448 | test-node | E \ + \ {\r\n2021-02-23 18:55:03.229454 | test-node | E \ + \ \"job\": \"copr_build\",\r\n2021-02-23 18:55:03.229461 | test-node\ + \ | E \"trigger\": \"release\",\r\n2021-02-23 18:55:03.229467\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229473\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229479\ + \ | test-node | E \"fedora-stable\"\r\n2021-02-23\ + \ 18:55:03.229485 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.229518 | test-node | E \"project\": \"packit-releases\"\ + ,\r\n2021-02-23 18:55:03.229556 | test-node | E \"\ + list_on_homepage\": true,\r\n2021-02-23 18:55:03.229567 | test-node\ + \ | E \"preserve_project\": true\r\n2021-02-23 18:55:03.229601\ + \ | test-node | E }\r\n2021-02-23 18:55:03.229608 | test-node\ + \ | E }\r\n2021-02-23 18:55:03.229614 | test-node | E \ + \ ]\r\n2021-02-23 18:55:03.229620 | test-node | E }\r\n2021-02-23 18:55:03.230131\ + \ | test-node | E 18:42:55.594 package_config.py DEBUG PackageConfig(config_file_path='.packit.yaml',\ + \ specfile_path='fedora/python-ogr.spec', synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', jobs='[JobConfig(job=JobType.sync_from_downstream,\ + \ trigger=JobConfigTriggerType.commit, meta=JobMetadataConfig(targets=set(),\ + \ timeout=7200, owner=None, project=None, dist_git_branches=set(), branch=None,\ + \ scratch=False, list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.propose_downstream, trigger=JobConfigTriggerType.release,\ + \ meta=JobMetadataConfig(targets=set(), timeout=7200, owner=None, project=None,\ + \ dist_git_branches={'epel-8', 'fedora-all'}, branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'epel-8', 'fedora-all'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.tests, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'epel-8', 'fedora-all'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.production_build, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'fedora-development'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=True,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.commit,\ + \ meta=JobMetadataConfig(targets={'fedora-stable'}, timeout=7200, owner=None,\ + \ project=packit-master, dist_git_branches=set(), branch=master, scratch=False,\ + \ list_on_homepage=True, preserve_project=True, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.release,\ + \ meta=JobMetadataConfig(targets={'fedora-stable'}, timeout=7200, owner=None,\ + \ project=packit-releases, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=True, preserve_project=True, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True')]',\ + \ dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', archive_root_dir_template={upstream_pkg_name}-{version}',\ + \ patch_generation_ignore_paths='[]', copy_upstream_release_description='True')\r\ + \n2021-02-23 18:55:03.230260 | test-node | E 18:42:55.604 utils.py\ + \ DEBUG Input directory is an upstream repository.\r\n2021-02-23\ + \ 18:55:03.230290 | test-node | E 18:42:55.604 base_git.py DEBUG\ + \ Running ActionName.post_upstream_clone hook.\r\n2021-02-23 18:55:03.230298\ + \ | test-node | E 18:42:55.604 base_git.py DEBUG Running ActionName.post_upstream_clone.\r\ + \n2021-02-23 18:55:03.230305 | test-node | E 18:42:55.605 base_git.py\ + \ DEBUG Running default implementation for ActionName.post_upstream_clone.\r\ + \n2021-02-23 18:55:03.230312 | test-node | E Using user-defined script\ + \ for ActionName.get_current_version: [['python3', 'setup.py', '--version']]\r\ + \n2021-02-23 18:55:03.230318 | test-node | E 18:42:55.605 base_git.py\ + \ DEBUG Command handler: RunCommandType.local\r\n2021-02-23 18:55:03.230383\ + \ | test-node | E 18:42:55.605 commands.py DEBUG Command: python3\ + \ setup.py --version\r\n2021-02-23 18:55:03.230439 | test-node | E \ + \ WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None,\ + \ status=None)) after connection broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230479 | test-node | E WARNING: Retrying (Retry(total=3,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230504 | test-node | E WARNING: Retrying (Retry(total=2,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230515 | test-node | E WARNING: Retrying (Retry(total=1,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230525 | test-node | E WARNING: Retrying (Retry(total=0,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230597 | test-node | E ERROR: Exception:\r\n\ + 2021-02-23 18:55:03.230624 | test-node | E Traceback (most recent call\ + \ last):\r\n2021-02-23 18:55:03.230637 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 381, in _make_request\r\n2021-02-23 18:55:03.230655 | test-node\ + \ | E self._validate_conn(conn)\r\n2021-02-23 18:55:03.230665 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 976, in _validate_conn\r\n2021-02-23 18:55:03.230684 | test-node\ + \ | E conn.connect()\r\n2021-02-23 18:55:03.230711 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py\"\ + , line 361, in connect\r\n2021-02-23 18:55:03.230724 | test-node | E\ + \ self.sock = ssl_wrap_socket(\r\n2021-02-23 18:55:03.230733 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py\"\ + , line 377, in ssl_wrap_socket\r\n2021-02-23 18:55:03.230743 | test-node\ + \ | E return context.wrap_socket(sock, server_hostname=server_hostname)\r\ + \n2021-02-23 18:55:03.230752 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 500, in wrap_socket\r\n2021-02-23 18:55:03.230761 | test-node\ + \ | E return self.sslsocket_class._create(\r\n2021-02-23 18:55:03.230789\ + \ | test-node | E File \"/usr/lib64/python3.9/ssl.py\", line 1040,\ + \ in _create\r\n2021-02-23 18:55:03.230808 | test-node | E self.do_handshake()\r\ + \n2021-02-23 18:55:03.230831 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 1309, in do_handshake\r\n2021-02-23 18:55:03.230841 | test-node\ + \ | E self._sslobj.do_handshake()\r\n2021-02-23 18:55:03.230851\ + \ | test-node | E socket.timeout: _ssl.c:1106: The handshake operation\ + \ timed out\r\n2021-02-23 18:55:03.230879 | test-node | E\r\n2021-02-23\ + \ 18:55:03.230899 | test-node | E During handling of the above exception,\ + \ another exception occurred:\r\n2021-02-23 18:55:03.230909 | test-node\ + \ | E\r\n2021-02-23 18:55:03.230919 | test-node | E Traceback (most\ + \ recent call last):\r\n2021-02-23 18:55:03.230928 | test-node | E \ + \ File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 670, in urlopen\r\n2021-02-23 18:55:03.230937 | test-node | E\ + \ httplib_response = self._make_request(\r\n2021-02-23 18:55:03.230957\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 384, in _make_request\r\n2021-02-23 18:55:03.230983 | test-node\ + \ | E self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)\r\ + \n2021-02-23 18:55:03.230994 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 335, in _raise_timeout\r\n2021-02-23 18:55:03.231004 | test-node\ + \ | E raise ReadTimeoutError(\r\n2021-02-23 18:55:03.231031 | test-node\ + \ | E pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\r\n2021-02-23 18:55:03.231060\ + \ | test-node | E\r\n2021-02-23 18:55:03.231081 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.231090 | test-node | E\r\n2021-02-23 18:55:03.231100 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.231109\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 439, in send\r\n2021-02-23 18:55:03.231118 | test-node | E \ + \ resp = conn.urlopen(\r\n2021-02-23 18:55:03.231138 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231166 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231224 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231261 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231272 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231289 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231318 | test-node\ + \ | E [Previous line repeated 2 more times]\r\n2021-02-23 18:55:03.231347\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 724, in urlopen\r\n2021-02-23 18:55:03.231389 | test-node | E\ + \ retries = retries.increment(\r\n2021-02-23 18:55:03.231409 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py\"\ + , line 439, in increment\r\n2021-02-23 18:55:03.231418 | test-node |\ + \ E raise MaxRetryError(_pool, url, error or ResponseError(cause))\r\ + \n2021-02-23 18:55:03.231425 | test-node | E pip._vendor.urllib3.exceptions.MaxRetryError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.231432\ + \ | test-node | E\r\n2021-02-23 18:55:03.231438 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.231445 | test-node | E\r\n2021-02-23 18:55:03.231452 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.231458\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/base_command.py\"\ + , line 216, in _main\r\n2021-02-23 18:55:03.231465 | test-node | E \ + \ status = self.run(options, args)\r\n2021-02-23 18:55:03.231471\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/req_command.py\"\ + , line 182, in wrapper\r\n2021-02-23 18:55:03.231477 | test-node | E\ + \ return func(self, options, args)\r\n2021-02-23 18:55:03.231514\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/commands/wheel.py\"\ + , line 155, in run\r\n2021-02-23 18:55:03.231566 | test-node | E \ + \ requirement_set = resolver.resolve(\r\n2021-02-23 18:55:03.231604\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 184, in resolve\r\n2021-02-23 18:55:03.231611 | test-node | E\ + \ discovered_reqs.extend(self._resolve_one(requirement_set, req))\r\ + \n2021-02-23 18:55:03.231618 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 391, in _resolve_one\r\n2021-02-23 18:55:03.231624 | test-node\ + \ | E abstract_dist = self._get_abstract_dist_for(req_to_install)\r\ + \n2021-02-23 18:55:03.231631 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 343, in _get_abstract_dist_for\r\n2021-02-23 18:55:03.231656\ + \ | test-node | E abstract_dist = self.preparer.prepare_linked_requirement(req)\r\ + \n2021-02-23 18:55:03.231668 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 467, in prepare_linked_requirement\r\n2021-02-23 18:55:03.231675\ + \ | test-node | E local_file = unpack_url(\r\n2021-02-23 18:55:03.231681\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 255, in unpack_url\r\n2021-02-23 18:55:03.231688 | test-node\ + \ | E file = get_http_url(\r\n2021-02-23 18:55:03.231695 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 129, in get_http_url\r\n2021-02-23 18:55:03.231710 | test-node\ + \ | E from_path, content_type = _download_http_url(\r\n2021-02-23\ + \ 18:55:03.231716 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 278, in _download_http_url\r\n2021-02-23 18:55:03.231723 | test-node\ + \ | E download = downloader(link)\r\n2021-02-23 18:55:03.231730\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 170, in __call__\r\n2021-02-23 18:55:03.231736 | test-node |\ + \ E resp = _http_get_download(self._session, link)\r\n2021-02-23\ + \ 18:55:03.231743 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 139, in _http_get_download\r\n2021-02-23 18:55:03.231749 | test-node\ + \ | E resp = session.get(target_url, headers=HEADERS, stream=True)\r\ + \n2021-02-23 18:55:03.231756 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 543, in get\r\n2021-02-23 18:55:03.231763 | test-node | E \ + \ return self.request('GET', url, **kwargs)\r\n2021-02-23 18:55:03.231769\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/session.py\"\ + , line 421, in request\r\n2021-02-23 18:55:03.231775 | test-node | E\ + \ return super(PipSession, self).request(method, url, *args, **kwargs)\r\ + \n2021-02-23 18:55:03.231807 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 530, in request\r\n2021-02-23 18:55:03.231816 | test-node | E\ + \ resp = self.send(prep, **send_kwargs)\r\n2021-02-23 18:55:03.231823\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 643, in send\r\n2021-02-23 18:55:03.231829 | test-node | E \ + \ r = adapter.send(request, **kwargs)\r\n2021-02-23 18:55:03.231836\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py\"\ + , line 53, in send\r\n2021-02-23 18:55:03.231843 | test-node | E \ + \ resp = super(CacheControlAdapter, self).send(request, **kw)\r\n\ + 2021-02-23 18:55:03.231849 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 516, in send\r\n2021-02-23 18:55:03.231856 | test-node | E \ + \ raise ConnectionError(e, request=request)\r\n2021-02-23 18:55:03.231879\ + \ | test-node | E pip._vendor.requests.exceptions.ConnectionError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.231891\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.231898 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 128, in fetch_build_egg\r\n2021-02-23 18:55:03.231904 | test-node\ + \ | E subprocess.check_call(cmd)\r\n2021-02-23 18:55:03.231924\ + \ | test-node | E File \"/usr/lib64/python3.9/subprocess.py\", line\ + \ 373, in check_call\r\n2021-02-23 18:55:03.231936 | test-node | E \ + \ raise CalledProcessError(retcode, cmd)\r\n2021-02-23 18:55:03.231943\ + \ | test-node | E subprocess.CalledProcessError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.231970 | test-node\ + \ | E\r\n2021-02-23 18:55:03.231979 | test-node | E The above exception\ + \ was the direct cause of the following exception:\r\n2021-02-23 18:55:03.231991\ + \ | test-node | E\r\n2021-02-23 18:55:03.231998 | test-node | E Traceback\ + \ (most recent call last):\r\n2021-02-23 18:55:03.232005 | test-node\ + \ | E File \"/sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/setup.py\"\ + , line 5, in \r\n2021-02-23 18:55:03.232011 | test-node | E\ + \ setup(use_scm_version=True)\r\n2021-02-23 18:55:03.232018 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 164, in setup\r\n2021-02-23 18:55:03.232025 | test-node | E \ + \ _install_setup_requires(attrs)\r\n2021-02-23 18:55:03.232031 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 159, in _install_setup_requires\r\n2021-02-23 18:55:03.232039\ + \ | test-node | E dist.fetch_build_eggs(dist.setup_requires)\r\n\ + 2021-02-23 18:55:03.232052 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 699, in fetch_build_eggs\r\n2021-02-23 18:55:03.232084 | test-node\ + \ | E resolved_dists = pkg_resources.working_set.resolve(\r\n2021-02-23\ + \ 18:55:03.232102 | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 779, in resolve\r\n2021-02-23 18:55:03.232111 | test-node | E\ + \ dist = best[req.key] = env.best_match(\r\n2021-02-23 18:55:03.232121\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1064, in best_match\r\n2021-02-23 18:55:03.232130 | test-node\ + \ | E return self.obtain(req, installer)\r\n2021-02-23 18:55:03.232140\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1076, in obtain\r\n2021-02-23 18:55:03.232168 | test-node | E\ + \ return installer(requirement)\r\n2021-02-23 18:55:03.232217 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 758, in fetch_build_egg\r\n2021-02-23 18:55:03.232262 | test-node\ + \ | E return fetch_build_egg(self, req)\r\n2021-02-23 18:55:03.232274\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 130, in fetch_build_egg\r\n2021-02-23 18:55:03.232284 | test-node\ + \ | E raise DistutilsError(str(e)) from e\r\n2021-02-23 18:55:03.232312\ + \ | test-node | E distutils.errors.DistutilsError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.232333 | test-node\ + \ | E ERROR Command 'python3 setup.py --version' failed.\r\n2021-02-23\ + \ 18:55:03.232343 | test-node | E 18:44:34.521 commands.py DEBUG\ + \ Command stderr: WARNING: Retrying (Retry(total=4, connect=None,\ + \ read=None, redirect=None, status=None)) after connection broken by\ + \ 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232355 | test-node | E WARNING: Retrying (Retry(total=3,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232366 | test-node | E WARNING: Retrying (Retry(total=2,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232427 | test-node | E WARNING: Retrying (Retry(total=1,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232464 | test-node | E WARNING: Retrying (Retry(total=0,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232474 | test-node | E ERROR: Exception:\r\n\ + 2021-02-23 18:55:03.232481 | test-node | E Traceback (most recent call\ + \ last):\r\n2021-02-23 18:55:03.232487 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 381, in _make_request\r\n2021-02-23 18:55:03.232494 | test-node\ + \ | E self._validate_conn(conn)\r\n2021-02-23 18:55:03.232501 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 976, in _validate_conn\r\n2021-02-23 18:55:03.232508 | test-node\ + \ | E conn.connect()\r\n2021-02-23 18:55:03.232515 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py\"\ + , line 361, in connect\r\n2021-02-23 18:55:03.232522 | test-node | E\ + \ self.sock = ssl_wrap_socket(\r\n2021-02-23 18:55:03.232553 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py\"\ + , line 377, in ssl_wrap_socket\r\n2021-02-23 18:55:03.232566 | test-node\ + \ | E return context.wrap_socket(sock, server_hostname=server_hostname)\r\ + \n2021-02-23 18:55:03.232597 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 500, in wrap_socket\r\n2021-02-23 18:55:03.232605 | test-node\ + \ | E return self.sslsocket_class._create(\r\n2021-02-23 18:55:03.232612\ + \ | test-node | E File \"/usr/lib64/python3.9/ssl.py\", line 1040,\ + \ in _create\r\n2021-02-23 18:55:03.232619 | test-node | E self.do_handshake()\r\ + \n2021-02-23 18:55:03.232625 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 1309, in do_handshake\r\n2021-02-23 18:55:03.232632 | test-node\ + \ | E self._sslobj.do_handshake()\r\n2021-02-23 18:55:03.232638\ + \ | test-node | E socket.timeout: _ssl.c:1106: The handshake operation\ + \ timed out\r\n2021-02-23 18:55:03.232645 | test-node | E\r\n2021-02-23\ + \ 18:55:03.232651 | test-node | E During handling of the above exception,\ + \ another exception occurred:\r\n2021-02-23 18:55:03.232658 | test-node\ + \ | E\r\n2021-02-23 18:55:03.232678 | test-node | E Traceback (most\ + \ recent call last):\r\n2021-02-23 18:55:03.232689 | test-node | E \ + \ File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 670, in urlopen\r\n2021-02-23 18:55:03.232696 | test-node | E\ + \ httplib_response = self._make_request(\r\n2021-02-23 18:55:03.232702\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 384, in _make_request\r\n2021-02-23 18:55:03.232709 | test-node\ + \ | E self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)\r\ + \n2021-02-23 18:55:03.232716 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 335, in _raise_timeout\r\n2021-02-23 18:55:03.232742 | test-node\ + \ | E raise ReadTimeoutError(\r\n2021-02-23 18:55:03.232752 | test-node\ + \ | E pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\r\n2021-02-23 18:55:03.232758\ + \ | test-node | E\r\n2021-02-23 18:55:03.232765 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.232772 | test-node | E\r\n2021-02-23 18:55:03.232778 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.232785\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 439, in send\r\n2021-02-23 18:55:03.232791 | test-node | E \ + \ resp = conn.urlopen(\r\n2021-02-23 18:55:03.232798 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232804 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232811 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232832 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232844 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232850 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232857 | test-node\ + \ | E [Previous line repeated 2 more times]\r\n2021-02-23 18:55:03.232863\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 724, in urlopen\r\n2021-02-23 18:55:03.232870 | test-node | E\ + \ retries = retries.increment(\r\n2021-02-23 18:55:03.232876 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py\"\ + , line 439, in increment\r\n2021-02-23 18:55:03.232883 | test-node |\ + \ E raise MaxRetryError(_pool, url, error or ResponseError(cause))\r\ + \n2021-02-23 18:55:03.232890 | test-node | E pip._vendor.urllib3.exceptions.MaxRetryError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.232918\ + \ | test-node | E\r\n2021-02-23 18:55:03.232927 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.232934 | test-node | E\r\n2021-02-23 18:55:03.232940 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.232947\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/base_command.py\"\ + , line 216, in _main\r\n2021-02-23 18:55:03.232954 | test-node | E \ + \ status = self.run(options, args)\r\n2021-02-23 18:55:03.232960\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/req_command.py\"\ + , line 182, in wrapper\r\n2021-02-23 18:55:03.232967 | test-node | E\ + \ return func(self, options, args)\r\n2021-02-23 18:55:03.232974\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/commands/wheel.py\"\ + , line 155, in run\r\n2021-02-23 18:55:03.232980 | test-node | E \ + \ requirement_set = resolver.resolve(\r\n2021-02-23 18:55:03.232987\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 184, in resolve\r\n2021-02-23 18:55:03.233000 | test-node | E\ + \ discovered_reqs.extend(self._resolve_one(requirement_set, req))\r\ + \n2021-02-23 18:55:03.233007 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 391, in _resolve_one\r\n2021-02-23 18:55:03.233014 | test-node\ + \ | E abstract_dist = self._get_abstract_dist_for(req_to_install)\r\ + \n2021-02-23 18:55:03.233020 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 343, in _get_abstract_dist_for\r\n2021-02-23 18:55:03.233027\ + \ | test-node | E abstract_dist = self.preparer.prepare_linked_requirement(req)\r\ + \n2021-02-23 18:55:03.233035 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 467, in prepare_linked_requirement\r\n2021-02-23 18:55:03.233041\ + \ | test-node | E local_file = unpack_url(\r\n2021-02-23 18:55:03.233048\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 255, in unpack_url\r\n2021-02-23 18:55:03.233054 | test-node\ + \ | E file = get_http_url(\r\n2021-02-23 18:55:03.233061 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 129, in get_http_url\r\n2021-02-23 18:55:03.233068 | test-node\ + \ | E from_path, content_type = _download_http_url(\r\n2021-02-23\ + \ 18:55:03.233074 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 278, in _download_http_url\r\n2021-02-23 18:55:03.233081 | test-node\ + \ | E download = downloader(link)\r\n2021-02-23 18:55:03.233087\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 170, in __call__\r\n2021-02-23 18:55:03.233094 | test-node |\ + \ E resp = _http_get_download(self._session, link)\r\n2021-02-23\ + \ 18:55:03.233100 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 139, in _http_get_download\r\n2021-02-23 18:55:03.233107 | test-node\ + \ | E resp = session.get(target_url, headers=HEADERS, stream=True)\r\ + \n2021-02-23 18:55:03.233127 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 543, in get\r\n2021-02-23 18:55:03.233139 | test-node | E \ + \ return self.request('GET', url, **kwargs)\r\n2021-02-23 18:55:03.233148\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/session.py\"\ + , line 421, in request\r\n2021-02-23 18:55:03.233190 | test-node | E\ + \ return super(PipSession, self).request(method, url, *args, **kwargs)\r\ + \n2021-02-23 18:55:03.233213 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 530, in request\r\n2021-02-23 18:55:03.233220 | test-node | E\ + \ resp = self.send(prep, **send_kwargs)\r\n2021-02-23 18:55:03.233227\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 643, in send\r\n2021-02-23 18:55:03.233233 | test-node | E \ + \ r = adapter.send(request, **kwargs)\r\n2021-02-23 18:55:03.233240\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py\"\ + , line 53, in send\r\n2021-02-23 18:55:03.233246 | test-node | E \ + \ resp = super(CacheControlAdapter, self).send(request, **kw)\r\n\ + 2021-02-23 18:55:03.233253 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 516, in send\r\n2021-02-23 18:55:03.233259 | test-node | E \ + \ raise ConnectionError(e, request=request)\r\n2021-02-23 18:55:03.233274\ + \ | test-node | E pip._vendor.requests.exceptions.ConnectionError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.233308\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233318 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 128, in fetch_build_egg\r\n2021-02-23 18:55:03.233359 | test-node\ + \ | E subprocess.check_call(cmd)\r\n2021-02-23 18:55:03.233396\ + \ | test-node | E File \"/usr/lib64/python3.9/subprocess.py\", line\ + \ 373, in check_call\r\n2021-02-23 18:55:03.233405 | test-node | E \ + \ raise CalledProcessError(retcode, cmd)\r\n2021-02-23 18:55:03.233412\ + \ | test-node | E subprocess.CalledProcessError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.233420 | test-node\ + \ | E\r\n2021-02-23 18:55:03.233427 | test-node | E The above exception\ + \ was the direct cause of the following exception:\r\n2021-02-23 18:55:03.233433\ + \ | test-node | E\r\n2021-02-23 18:55:03.233440 | test-node | E Traceback\ + \ (most recent call last):\r\n2021-02-23 18:55:03.233446 | test-node\ + \ | E File \"/sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/setup.py\"\ + , line 5, in \r\n2021-02-23 18:55:03.233452 | test-node | E\ + \ setup(use_scm_version=True)\r\n2021-02-23 18:55:03.233458 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 164, in setup\r\n2021-02-23 18:55:03.233465 | test-node | E \ + \ _install_setup_requires(attrs)\r\n2021-02-23 18:55:03.233472 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 159, in _install_setup_requires\r\n2021-02-23 18:55:03.233478\ + \ | test-node | E dist.fetch_build_eggs(dist.setup_requires)\r\n\ + 2021-02-23 18:55:03.233484 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 699, in fetch_build_eggs\r\n2021-02-23 18:55:03.233491 | test-node\ + \ | E resolved_dists = pkg_resources.working_set.resolve(\r\n2021-02-23\ + \ 18:55:03.233497 | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 779, in resolve\r\n2021-02-23 18:55:03.233504 | test-node | E\ + \ dist = best[req.key] = env.best_match(\r\n2021-02-23 18:55:03.233510\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1064, in best_match\r\n2021-02-23 18:55:03.233517 | test-node\ + \ | E return self.obtain(req, installer)\r\n2021-02-23 18:55:03.233523\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1076, in obtain\r\n2021-02-23 18:55:03.233551 | test-node | E\ + \ return installer(requirement)\r\n2021-02-23 18:55:03.233565 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 758, in fetch_build_egg\r\n2021-02-23 18:55:03.233624 | test-node\ + \ | E return fetch_build_egg(self, req)\r\n2021-02-23 18:55:03.233636\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 130, in fetch_build_egg\r\n2021-02-23 18:55:03.233643 | test-node\ + \ | E raise DistutilsError(str(e)) from e\r\n2021-02-23 18:55:03.233649\ + \ | test-node | E distutils.errors.DistutilsError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.233665 | test-node\ + \ | E\r\n2021-02-23 18:55:03.233672 | test-node | E 18:44:34.522 commands.py\ + \ DEBUG Command stdout:\r\n2021-02-23 18:55:03.233678 | test-node\ + \ | E ERROR Preparing of the upstream to the SRPM build failed:\ + \ Command 'python3 setup.py --version' failed.\r\n2021-02-23 18:55:03.233685\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233691 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/api.py\"\ + , line 510, in create_srpm\r\n2021-02-23 18:55:03.233698 | test-node\ + \ | E self.up.prepare_upstream_for_srpm_creation(upstream_ref=upstream_ref)\r\ + \n2021-02-23 18:55:03.233704 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/upstream.py\"\ + , line 673, in prepare_upstream_for_srpm_creation\r\n2021-02-23 18:55:03.233711\ + \ | test-node | E current_git_describe_version = self.get_current_version()\r\ + \n2021-02-23 18:55:03.233717 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/upstream.py\"\ + , line 276, in get_current_version\r\n2021-02-23 18:55:03.233736 | test-node\ + \ | E action_output = self.get_output_from_action(\r\n2021-02-23\ + \ 18:55:03.233754 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/base_git.py\"\ + , line 314, in get_output_from_action\r\n2021-02-23 18:55:03.233761\ + \ | test-node | E self.command_handler.run_command(\r\n2021-02-23\ + \ 18:55:03.233768 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/command_handler.py\"\ + , line 100, in run_command\r\n2021-02-23 18:55:03.233774 | test-node\ + \ | E return commands.run_command(\r\n2021-02-23 18:55:03.233797\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/packit/utils/commands.py\"\ + , line 97, in run_command\r\n2021-02-23 18:55:03.233810 | test-node\ + \ | E raise PackitCommandFailedError(\r\n2021-02-23 18:55:03.233816\ + \ | test-node | E packit.exceptions.PackitCommandFailedError: Command\ + \ 'python3 setup.py --version' failed.\r\n2021-02-23 18:55:03.233823\ + \ | test-node | E\r\n2021-02-23 18:55:03.233829 | test-node | E The\ + \ above exception was the direct cause of the following exception:\r\ + \n2021-02-23 18:55:03.233836 | test-node | E\r\n2021-02-23 18:55:03.233843\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233849 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/cli/utils.py\"\ + , line 64, in covered_func\r\n2021-02-23 18:55:03.233856 | test-node\ + \ | E func(config=config, *args, **kwargs)\r\n2021-02-23 18:55:03.233862\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/packit/cli/srpm.py\"\ + , line 66, in srpm\r\n2021-02-23 18:55:03.233869 | test-node | E \ + \ srpm_path = api.create_srpm(output_file=output, upstream_ref=upstream_ref)\r\ + \n2021-02-23 18:55:03.233875 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/api.py\"\ + , line 512, in create_srpm\r\n2021-02-23 18:55:03.233882 | test-node\ + \ | E raise PackitSRPMException(\r\n2021-02-23 18:55:03.233889\ + \ | test-node | E packit.exceptions.PackitSRPMException: Preparing\ + \ of the upstream to the SRPM build failed: Command 'python3 setup.py\ + \ --version' failed.\r\n```\r\nMy assumption is this was a network flake\ + \ with files.pythonhosted.org but since the new retry mechanism can\ + \ be seen in play here, I wanna confirm this behaviour is expected.\r\ + \n" + closed_at: '2021-02-24T09:16:06Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/545/comments + created_at: '2021-02-24T08:26:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/545/events + html_url: https://github.com/packit/ogr/issues/545 + id: 815243822 + labels: + - color: 008672 + default: true + description: Extra attention is needed + id: 1160311265 + name: help wanted + node_id: MDU6TGFiZWwxMTYwMzExMjY1 + url: https://api.github.com/repos/packit/ogr/labels/help%20wanted + labels_url: https://api.github.com/repos/packit/ogr/issues/545/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MTUyNDM4MjI= + number: 545 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Max retries exceeded with url files.pythonhosted.org + updated_at: '2021-02-24T12:53:54Z' + url: https://api.github.com/repos/packit/ogr/issues/545 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "This update implements retry mechanism for Github requests.\r\n\ + \r\nNumber of retry attempts can be set in `GithubService()` and instances\ + \ dictionary (used by `get_instances_from_dict()`), eg:\r\n```\r\n{\ + \ \ + \ \r\n \"github.com\": { \ + \ \r\n \"token\": \"abcd\", \ + \ \r\n \"max_retries\"\ + : \"3\", \r\n } \r\n} \r\n```\ + \ \r\nThis allows to enable request retries in packit/packit-service\ + \ by adding key `max_retries` to configuration (`authentication ->\ + \ github -> max_retries`). I'm not sure If this is an acceptable solution,\ + \ as far as it may be a bit confusing to set number of request retries\ + \ not necessarily related to authentication in authentication section\ + \ of config.\r\n\r\n\r\n" + closed_at: '2021-02-23T14:59:25Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/537/comments + created_at: '2021-02-09T23:05:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/537/events + html_url: https://github.com/packit/ogr/pull/537 + id: 804999188 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/537/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTcwNjc3MzIx + number: 537 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/537.diff + html_url: https://github.com/packit/ogr/pull/537 + patch_url: https://github.com/packit/ogr/pull/537.patch + url: https://api.github.com/repos/packit/ogr/pulls/537 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement retry mechanism for Github + updated_at: '2021-02-23T14:59:25Z' + url: https://api.github.com/repos/packit/ogr/issues/537 + user: + avatar_url: https://avatars.githubusercontent.com/u/8876312?v=4 + events_url: https://api.github.com/users/mmuzila/events{/privacy} + followers_url: https://api.github.com/users/mmuzila/followers + following_url: https://api.github.com/users/mmuzila/following{/other_user} + gists_url: https://api.github.com/users/mmuzila/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/mmuzila + id: 8876312 + login: mmuzila + node_id: MDQ6VXNlcjg4NzYzMTI= + organizations_url: https://api.github.com/users/mmuzila/orgs + received_events_url: https://api.github.com/users/mmuzila/received_events + repos_url: https://api.github.com/users/mmuzila/repos + site_admin: false + starred_url: https://api.github.com/users/mmuzila/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mmuzila/subscriptions + type: User + url: https://api.github.com/users/mmuzila + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-02-22T17:25:21Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/544/comments + created_at: '2021-02-22T17:05:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/544/events + html_url: https://github.com/packit/ogr/pull/544 + id: 813687966 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/544/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTc3Nzk0ODQ2 + number: 544 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/544.diff + html_url: https://github.com/packit/ogr/pull/544 + patch_url: https://github.com/packit/ogr/pull/544.patch + url: https://api.github.com/repos/packit/ogr/pulls/544 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-02-22T17:25:24Z' + url: https://api.github.com/repos/packit/ogr/issues/544 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "In case there is no existing release, instead of failing with an\ + \ exception\r\nreturn `None`.\r\n\r\nFixes #540\r\n\r\nSigned-off-by:\ + \ Matej Focko " + closed_at: '2021-02-22T10:07:04Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/542/comments + created_at: '2021-02-18T14:35:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/542/events + html_url: https://github.com/packit/ogr/pull/542 + id: 811155673 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/542/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTc1NzI5NDQ3 + number: 542 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/542.diff + html_url: https://github.com/packit/ogr/pull/542 + patch_url: https://github.com/packit/ogr/pull/542.patch + url: https://api.github.com/repos/packit/ogr/pulls/542 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix getting latest release + updated_at: '2021-02-22T10:07:04Z' + url: https://api.github.com/repos/packit/ogr/issues/542 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "```py\r\n def get_latest_release(self) -> Release:\r\n```\r\n\ + \r\nIn case that no release exists, I'd expect to get `None` instead\ + \ of being smacked in face with exception.\r\n\r\n- GitHub throws 404\ + \ Exception\r\n- GitLab throws IndexError\r\n\r\nAction items:\r\n-\ + \ [ ] Switch return type from `Release` to `Optional[Release]`\r\n-\ + \ [ ] Update implementation to check for such situation\r\n\r\nCould\ + \ be used in refactor for packit/packit-service#985, currently is a\ + \ blocker, since we need to check non-existing release there." + closed_at: '2021-02-22T10:07:03Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/540/comments + created_at: '2021-02-18T11:00:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/540/events + html_url: https://github.com/packit/ogr/issues/540 + id: 810992567 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/540/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MTA5OTI1Njc= + number: 540 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '`get_latest_release` when no release exists' + updated_at: '2021-02-22T10:07:03Z' + url: https://api.github.com/repos/packit/ogr/issues/540 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Signed-off-by: Matej Focko ' + closed_at: '2021-02-19T15:51:07Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/543/comments + created_at: '2021-02-19T12:30:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/543/events + html_url: https://github.com/packit/ogr/pull/543 + id: 811985098 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/543/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTc2NDI2MDQw + number: 543 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/543.diff + html_url: https://github.com/packit/ogr/pull/543 + patch_url: https://github.com/packit/ogr/pull/543.patch + url: https://api.github.com/repos/packit/ogr/pulls/543 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Release 0.21.0 + updated_at: '2021-02-19T15:51:07Z' + url: https://api.github.com/repos/packit/ogr/issues/543 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- current convention is to store fmf files in `plans/`\r\n- `shell`\ + \ execute method has been deprecated, `how:` defaults to `tmt`\r\n-\ + \ added `summary:`\r\n- added `README.md`" + closed_at: '2021-02-19T13:12:37Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/541/comments + created_at: '2021-02-18T14:28:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/541/events + html_url: https://github.com/packit/ogr/pull/541 + id: 811150489 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/541/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTc1NzI1MTA4 + number: 541 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/541.diff + html_url: https://github.com/packit/ogr/pull/541 + patch_url: https://github.com/packit/ogr/pull/541.patch + url: https://api.github.com/repos/packit/ogr/pulls/541 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Split ci.fmf into plans/*.fmf + updated_at: '2021-02-19T13:52:42Z' + url: https://api.github.com/repos/packit/ogr/issues/541 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.5136 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:26 GMT + ETag: W/"7cd645e0e768811e9cad48414e94f2105c20a39cad211982e1b1c30a77d3ef8c" + Link: ; + rel="next", ; + rel="last" + 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: 85EE:7CFE:F7F76E:191ABB1:6075DC3A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4740' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '260' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues?state=open&sort=updated&direction=desc: + - metadata: + latency: 0.385953426361084 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Refactor exceptions for non-supported features,\r\nchanging NotImplementedError\ + \ to OperationNotSupported\r\nwhere a method is not supported on a particular\ + \ Git forge.\r\n\r\nFixes ogr issue #478.\r\n\r\nSigned-off-by: Ben\ + \ Crocker \r\n" + closed_at: null + comments: 16 + comments_url: https://api.github.com/repos/packit/ogr/issues/564/comments + created_at: '2021-03-29T02:54:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/564/events + html_url: https://github.com/packit/ogr/pull/564 + id: 842920232 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/564/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjAyMzc4MzU5 + number: 564 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/564.diff + html_url: https://github.com/packit/ogr/pull/564 + patch_url: https://github.com/packit/ogr/pull/564.patch + url: https://api.github.com/repos/packit/ogr/pulls/564 + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Refactor exceptions for non-supported features, + updated_at: '2021-04-13T16:46:22Z' + url: https://api.github.com/repos/packit/ogr/issues/564 + user: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: FIRST_TIME_CONTRIBUTOR + body: "Implemented list projects for GitServices (#485 )\r\n\r\n@lachmanfrantisek\ + \ \r\n@csomh " + closed_at: null + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/538/comments + created_at: '2021-02-12T04:22:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/538/events + html_url: https://github.com/packit/ogr/pull/538 + id: 806932377 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/538/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTcyMjY0NjU2 + number: 538 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/538.diff + html_url: https://github.com/packit/ogr/pull/538 + patch_url: https://github.com/packit/ogr/pull/538.patch + url: https://api.github.com/repos/packit/ogr/pulls/538 + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Implemented list projects for GitServices (#485 ) + updated_at: '2021-04-12T13:55:03Z' + url: https://api.github.com/repos/packit/ogr/issues/538 + user: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Makefile: Rewrite the prepare-check target to check for key\r\n\ + files (/usr/bin/python3.*, /usr/bin/tox, /usr/bin/requre-patch,\r\n\ + and /usr/share/doc/python3-flexmock) and install the requisite packages\r\ + \nif they are absent:\r\n\r\n- python36 (minimum)\r\n- python3-tox\r\ + \n- python3-requre\r\n- python3-flexmock\r\n\r\nCONTRIBUTING.md:\r\n\ + \r\nMention conditional installation of python3-requre and python3-flexmock.\r\ + \n" + closed_at: null + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/566/comments + created_at: '2021-03-31T18:05:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/566/events + html_url: https://github.com/packit/ogr/pull/566 + id: 847064663 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/566/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjA2MTA1OTc4 + number: 566 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/566.diff + html_url: https://github.com/packit/ogr/pull/566 + patch_url: https://github.com/packit/ogr/pull/566.patch + url: https://api.github.com/repos/packit/ogr/pulls/566 + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Update prepare-check to install python3-requre, python3-flexmock + updated_at: '2021-04-01T11:57:06Z' + url: https://api.github.com/repos/packit/ogr/issues/566 + user: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Current API appears to be fully functional and sufficiently covered\ + \ by tests for GitHub and Pagure.\r\n\r\n## Services\r\n\r\n### GitHub\ + \ + GitLab\r\n\r\n- allows creating fork of forks\r\n- allows creating\ + \ PRs from one fork to another\r\n\r\n### Pagure\r\n\r\n- doesn't allow\ + \ creating fork of forks\r\n- allows creating PRs on a project (assuming\ + \ it's not a fork) or from fork to upstream\r\n\r\n## Current implementation\r\ + \n\r\n```python\r\ndef create_pr(\r\n self,\r\n title: str,\r\n body:\ + \ str,\r\n target_branch: str,\r\n source_branch: str,\r\n fork_username:\ + \ str = None,\r\n) -> \"PullRequest\":\r\n```\r\n\r\n## Example objects\ + \ used later\r\n\r\n```python\r\nupstream_project = service.get_project(namespace=\"\ + packit-service\", repo=\"ogr\")\r\nmy_fork = service.get_project(namespace=\"\ + mfocko\", repo=\"ogr\")\r\nfork_of_different_user = service.get_project(namespace=\"\ + lachmanfrantisek\", repo=\"ogr\")\r\n```" + closed_at: null + comments: 18 + comments_url: https://api.github.com/repos/packit/ogr/issues/412/comments + created_at: '2020-05-19T20:57:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/412/events + html_url: https://github.com/packit/ogr/issues/412 + id: 621279784 + labels: + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/412/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjEyNzk3ODQ= + number: 412 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Revisiting API for creating PRs + updated_at: '2021-03-26T14:19:55Z' + url: https://api.github.com/repos/packit/ogr/issues/412 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + author_association: MEMBER + body: "It would be nice to be able to list projects for given criteria:\r\ + \n\r\n- namespace\r\n- owner\r\n- search patter\r\n- order options (name,\ + \ update, activity, ...) (ascending x descending)\r\n- ... feel free\ + \ to add/propose more (we can implement only a subset for the first\ + \ version)\r\n\r\n\r\nAdd `list_projects` method:\r\n- [ ] to the `abstract.py`\ + \ to the `GitService` class\r\n- [ ] for each implementaion `GithubService`,\ + \ `GitlabService`, `PagureService`\r\n- [ ] implement all (or a subset)\ + \ of the options from the criteria list above" + closed_at: null + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/485/comments + created_at: '2020-10-15T12:35:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/485/events + html_url: https://github.com/packit/ogr/issues/485 + id: 722295054 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/485/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MjIyOTUwNTQ= + number: 485 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Listing of the projects + updated_at: '2021-03-26T13:18:56Z' + url: https://api.github.com/repos/packit/ogr/issues/485 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "There is a [check-runs API](https://docs.github.com/en/rest/reference/checks)\ + \ that allows more functionality and e.g `neutral` state requested in\ + \ https://github.com/packit/packit-service/issues/760.\r\n\r\nUnfortunately,\ + \ it's [not implemented in PyGithub yet](https://github.com/PyGithub/PyGithub/issues/1621).\r\ + \n\r\nThis project builds on top of `PyGithub` and implements that:\ + \ https://github.com/webknjaz/check-in/blob/master/check_in/github_api.py\r\ + \n\r\nWe can either help on `PyGithub` side or implement it here or\ + \ wait for `PyGithub`." + closed_at: null + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/461/comments + created_at: '2020-09-08T07:02:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/461/events + html_url: https://github.com/packit/ogr/issues/461 + id: 695610247 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: ff9990 + default: false + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + labels_url: https://api.github.com/repos/packit/ogr/issues/461/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2OTU2MTAyNDc= + number: 461 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: '[github] Use check-runs for richer API' + updated_at: '2021-03-26T13:15:58Z' + url: https://api.github.com/repos/packit/ogr/issues/461 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + author_association: MEMBER + body: "Change all exceptions that are raised for an unsupported feature\ + \ to `OperationNotSupported` (from the default `NotImplementedError`)\r\ + \n\r\ncloser info: https://github.com/packit/ogr/pull/477#discussion_r503077265" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/478/comments + created_at: '2020-10-12T12:23:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/478/events + html_url: https://github.com/packit/ogr/issues/478 + id: 719337260 + labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/478/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MTkzMzcyNjA= + number: 478 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Refactor exceptions for non-supported features + updated_at: '2021-03-25T16:21:38Z' + url: https://api.github.com/repos/packit/ogr/issues/478 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "In *Set PR flags in Pagure #381*, the `set_flag` method for Pagure\ + \ pull-requests was left to return the `dict` from the response. \r\n\ + \r\nWrap that response in a class to make working with these kind of\ + \ flags easier." + closed_at: null + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/384/comments + created_at: '2020-04-16T07:35:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/384/events + html_url: https://github.com/packit/ogr/issues/384 + id: 600814459 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/384/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MDA4MTQ0NTk= + number: 384 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Create a class to hold information on pull-request flags + updated_at: '2021-03-08T17:43:30Z' + url: https://api.github.com/repos/packit/ogr/issues/384 + 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 + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "We need to document usage of ogr on custom/internal instances:\r\ + \n\r\n- [ ] usage of `instance_url`\r\n- [ ] setup of custom/internal\ + \ certificates:\r\n - export `REQUESTS_CA_BUNDLE=/etc/pki/tls/certs/ca-bundle.crt`\r\ + \n - ignore the SSL verification (`ssl_verify` argument)" + closed_at: null + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/356/comments + created_at: '2020-03-17T14:45:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/356/events + html_url: https://github.com/packit/ogr/issues/356 + id: 583065980 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/356/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1ODMwNjU5ODA= + number: 356 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Document the usage of custom instances and certificates + updated_at: '2021-03-08T17:41:56Z' + url: https://api.github.com/repos/packit/ogr/issues/356 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "https://github.com/packit-service/ogr/pull/415 implements `PagurePullRequest.patch`\ + \ property to get a patch from a pull request.\r\n`Gitlab` & `Github`\ + \ implementation are missing.\r\n\r\nUpdate by @lachmanfrantisek :\r\ + \n\r\nThe task is to implement `patch` property fo `GithubPullRequest`\ + \ and `GitlabPullRequest` that will return `patch` of the changes for\ + \ pull-request (not the URL of it).\r\n\r\n- Github:\r\n - URL of\ + \ patch: https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.patch_url\r\ + \n - The URL looks like this: https://patch-diff.githubusercontent.com/raw/packit/packit-service/pull/1003.patch\r\ + \n - But this one works as well: https://github.com/packit/ogr/issues/416.patch\r\ + \n- Gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ + \n - I am not sure if `diffs` will work.\r\n - The same approach\ + \ as in GitHub (adding `.patch` to the URL) works well: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/800.patch" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/416/comments + created_at: '2020-05-22T16:21:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/416/events + html_url: https://github.com/packit/ogr/issues/416 + id: 623324928 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/416/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjMzMjQ5Mjg= + number: 416 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Implement patch property in GitlabPullRequest and GithubPullRequest + updated_at: '2021-02-25T13:04:37Z' + url: https://api.github.com/repos/packit/ogr/issues/416 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Tools that we use for autogeneration of documentation support mainly\ + \ markdown (also optionally numpy or google style of docstrings). We\ + \ should transition from our current sphinx-style of comments to one\ + \ of those.\r\n\r\n- [ ] decide between markdown, numpy or google style\r\ + \n - [ ] update GitHub action for generating of documentation if necessary\r\ + \n- [ ] update docstrings to adhere to the chosen style/format\r\n\r\ + \nFollow-up of #531 " + closed_at: null + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/532/comments + created_at: '2021-02-09T13:57:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/532/events + html_url: https://github.com/packit/ogr/issues/532 + id: 804575574 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/532/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MDQ1NzU1NzQ= + number: 532 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Docstrings' format + updated_at: '2021-02-11T14:47:10Z' + url: https://api.github.com/repos/packit/ogr/issues/532 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Currently we use [pdoc3](https://pypi.org/project/pdoc3/) to generate\ + \ our documentation, it would be in our interest to switch to original\ + \ project [pdoc](https://pypi.org/project/pdoc/), since it provides\ + \ built-in search feature and cleaner UI.\r\n\r\nCurrently can't be\ + \ used since there is a failure while parsing our source files.\r\n\r\ + \nFollow-up of #531" + closed_at: null + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/535/comments + created_at: '2021-02-09T14:12:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/535/events + html_url: https://github.com/packit/ogr/issues/535 + id: 804588067 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/535/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MDQ1ODgwNjc= + number: 535 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Transition to pdoc from pdoc3 + updated_at: '2021-02-09T14:12:22Z' + url: https://api.github.com/repos/packit/ogr/issues/535 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "pdoc(3) supports inheriting of docstrings, there is no need to\ + \ have multiple identical docstrings and also try to rethink exporting\ + \ of the classes/modules through `__all__`, since it makes the documentation\ + \ harder to navigate\r\n\r\n- [ ] remove duplicit docstrings\r\n -\ + \ [ ] add specific docstrings where the interface deviates\r\n- [ ]\ + \ try to think about better structure of exports for `__all__` (shouldn't\ + \ be a problem in specific services, just clean it up at the top-level)\r\ + \n\r\nFollow-up of #531" + closed_at: null + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/533/comments + created_at: '2021-02-09T14:01:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/533/events + html_url: https://github.com/packit/ogr/issues/533 + id: 804579179 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/533/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MDQ1NzkxNzk= + number: 533 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Remove duplicit docstrings + make documentation easier to navigate + updated_at: '2021-02-09T14:01:52Z' + url: https://api.github.com/repos/packit/ogr/issues/533 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Pipelines are specific to the GitLab but there were some requests\ + \ (ping @thrix ) to support them in OGR as well.\r\n\r\n- It's going\ + \ against the purpose of OGR to have one API for multiple forges. :-1:\ + \ \r\n- Users can access `python-gitlab` to do that instead. :-1: \r\ + \n - But it's not a good UX. `python-gitlab` is our implementation\ + \ detail. We should not force users to access that. :+1: \r\n- Technically\ + \ it will be easy to implement. :+1: (No big changes needed, just add\ + \ some GitLab specific classes and methods.)\r\n- It will be useful\ + \ for packit-service GitLab implementation :+1: (ping @shreyaspapi ..;-)\r\ + \n\r\nAC:\r\n- [ ] Provide a class abstraction on top of the objects\ + \ related to that.\r\n - Make here a proposal before coding.\r\n- [\ + \ ] Implement useful methods and classes.\r\n- [ ] Create new issues\ + \ for anything that can be implemented later." + closed_at: null + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/420/comments + created_at: '2020-05-26T14:37:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/420/events + html_url: https://github.com/packit/ogr/issues/420 + id: 624934468 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/420/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjQ5MzQ0Njg= + number: 420 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Support for GitLab pipelines + updated_at: '2021-02-09T08:43:48Z' + url: https://api.github.com/repos/packit/ogr/issues/420 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "and ideally link it with pull request and git project\r\n\r\nThe\ + \ expectation here is that when ogr returns name of a branch, it would\ + \ return a GitBranch instance instead.\r\n\r\nThe class should contain\ + \ at minimum:\r\n* name\r\n* be linked to a repository\r\n* commit SHA\ + \ of the HEAD\r\n\r\nWould be nice if:\r\n* there was a connection to\ + \ a PR if there is one\r\n* datetime it was created\r\n* datetime of\ + \ last change" + closed_at: null + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/359/comments + created_at: '2020-03-23T12:36:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/359/events + html_url: https://github.com/packit/ogr/issues/359 + id: 586176845 + labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/359/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1ODYxNzY4NDU= + number: 359 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: introduce a class for a git branch + updated_at: '2021-02-09T08:39:32Z' + url: https://api.github.com/repos/packit/ogr/issues/359 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "After the Packit organisation rename, I had to regenerate the test\ + \ data for GitHub. This proved to be a considerable effort, with roughly\ + \ the following steps:\r\n\r\n- create a Python virtualenv and install\ + \ test dependencies - this needed several attempts, to get it right.\r\ + \n- clean up test data for GitHub\r\n- set my GitHub API token\r\n-\ + \ run the tests with `make check` only to realise that the `GITHUB_APP_ID`\ + \ and the `GITHUB_APP_PRIVATE_KEY_PATH` env vars were not set. Ask by\ + \ the team how what values to set these (stage is fine) and run the\ + \ tests again.\r\n- Start following comments left in individul tests,\ + \ to manually bring the repos, PRs, issues in the state the state expected\ + \ them to be. For this I had to run the tests over and over again, see\ + \ a test fail, inspect the failure to figure out the reason, fix the\ + \ pre-conditions and run the tests again to check that the fix worked.\r\ + \n\r\nThe above is extremely tedious and frustrating.\r\n\r\nRegenerating\ + \ test data should be trivial, for example:\r\n\r\n- if credentials\ + \ are needed, the contribution guide should explicitly call those out\ + \ with clear indication what their values/credentials should be.\r\n\ + - they should be checked to be set even before starting any test run.\r\ + \n- pre-conditions for tests should be checked, and preferably automatically\ + \ set up given the credentials above, without requiring any manual action.\r\ + \n- if it's still required to set pre-conditions manually, these steps\ + \ should be clearly called out with detailed instructions in the contribution\ + \ guide. " + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/445/comments + created_at: '2020-08-03T13:50:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/445/events + html_url: https://github.com/packit/ogr/issues/445 + id: 672091016 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/445/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2NzIwOTEwMTY= + number: 445 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Regenerating the test data for the integration tests should be + trivial + updated_at: '2021-02-08T08:27:43Z' + url: https://api.github.com/repos/packit/ogr/issues/445 + 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 + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: Figure out how to handle releases in Pagure. + closed_at: null + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/112/comments + created_at: '2019-07-11T08:51:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/112/events + html_url: https://github.com/packit/ogr/issues/112 + id: 466754779 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/112/labels{/name} + locked: false + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0NjY3NTQ3Nzk= + number: 112 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Support releases in Pagure + updated_at: '2021-02-05T08:49:37Z' + url: https://api.github.com/repos/packit/ogr/issues/112 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR + body: "AFAIK at the moment it is not possible to get the info about whether\ + \ the repository is private or not in pagure. Now we depend on the info\ + \ that in src.fedoraproject.org and pagure.io, the private repositories\ + \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" + closed_at: null + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments + created_at: '2020-02-18T12:39:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/330/events + html_url: https://github.com/packit/ogr/issues/330 + id: 566865331 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/330/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NjY4NjUzMzE= + number: 330 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: better is_private method for pagure projects + updated_at: '2021-02-05T08:31:21Z' + url: https://api.github.com/repos/packit/ogr/issues/330 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Related: https://github.com/packit-service/ogr/pull/436' + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/437/comments + created_at: '2020-07-16T12:54:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/437/events + html_url: https://github.com/packit/ogr/issues/437 + id: 658172107 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/437/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2NTgxNzIxMDc= + number: 437 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Support adding group permission for Gitlab and Github projects + updated_at: '2021-02-04T19:58:55Z' + url: https://api.github.com/repos/packit/ogr/issues/437 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "and ideally link it with pull request, branch, author and git project\r\ + \n\r\nThe expectation here is that when ogr returns a commit has, it\ + \ would return a GitCommit instance instead.\r\n\r\nThe class should\ + \ contain at minimum:\r\n* sha\r\n* be linked to a repository\r\n* author\r\ + \n* datetime it was created\r\n* subject\r\n* body\r\n* branch it's\ + \ on\r\n\r\n@lachmanfrantisek added links to the documentation:\r\n\ + - Github:\r\n - https://pygithub.readthedocs.io/en/latest/examples/Commit.html\r\ + \n - https://pygithub.readthedocs.io/en/latest/github_objects/Commit.html\r\ + \n - https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.get_commits\r\ + \n - https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.merge_commit_sha\ + \ (?)\r\n- Gitlab:\r\n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html\r\ + \n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\ + \ -> `List commits of a MR:`\r\n- Pagure:\r\n - https://src.fedoraproject.org/api/0/\ + \ -> `Pull-request information`" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/360/comments + created_at: '2020-03-23T12:38:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/360/events + html_url: https://github.com/packit/ogr/issues/360 + id: 586178020 + labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/360/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1ODYxNzgwMjA= + number: 360 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: introduce a new class for GitCommit + updated_at: '2021-02-04T19:58:47Z' + url: https://api.github.com/repos/packit/ogr/issues/360 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "- [x] Forward some object to the issue/pr/... instances to allow\ + \ connection to the service. (Classes are not only data-holders.)\r\n\ + - [x] All ogr classes to have properties with setters allowing to update\ + \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ + - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ + \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ + \ \r\n" + closed_at: null + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments + created_at: '2019-06-25T13:15:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/86/events + html_url: https://github.com/packit/ogr/issues/86 + id: 460418171 + labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + locked: false + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0NjA0MTgxNzE= + number: 86 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: object-specific methods bound to ogr classes + updated_at: '2021-02-04T19:34:29Z' + url: https://api.github.com/repos/packit/ogr/issues/86 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- [ ] Check tests and create them if necessary\r\n- [ ] Implement\ + \ creating diff comments for GitLab (already implemented for GitHub\ + \ and Pagure)\r\n- [ ] Create and implement interface for properties\ + \ of diff comments (`is_diff_comment`, `commit`, `path`, `position`;\ + \ consider new/old or only one)\r\n- [ ] Implement functions for acquiring\ + \ diff comments on pull requests, e.g. `get_diff_comments`" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/424/comments + created_at: '2020-05-29T09:01:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/424/events + html_url: https://github.com/packit/ogr/issues/424 + id: 627115330 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/424/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjcxMTUzMzA= + number: 424 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Diff/review comments on pull requests + updated_at: '2021-02-04T12:01:57Z' + url: https://api.github.com/repos/packit/ogr/issues/424 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "There are many warnings and errors when running `mypy` in a strict\ + \ mode. Each error can mean potentially problematic part of the code.\ + \ (The goal is to make the code better, not only to silence the mypy.)\ + \ \r\n\r\nIt would be nice to reduce the number of errors/warnings.\r\ + \n\r\nWhat you can do:\r\n- Run the mypy on the code:\r\n ```sh\r\n\ + \ mypy ogr --strict\r\n ```\r\n- pick an error/warning\r\n- try to\ + \ fix the problem which can mean\r\n - adding a type annotation\r\n\ + \ - changing the type annotation\r\n - adding some test for the input\ + \ and raising a propper exception\r\n - something else\r\n- send a\ + \ PR with the fix or raise an issue if you found some problem, that\ + \ cannot be easily fixed\r\n\r\nThis does not need to be done in one\ + \ PR. Also, one fixed error can be useful to us.\r\n\r\n
\r\n\ + 'mypy ogr --strict' output\r\n\r\n```\r\n$ mypy ogr\ + \ --strict\r\nogr/deprecation.py:23: error: Cannot find implementation\ + \ or library stub for module named 'deprecated'\r\nogr/deprecation.py:26:\ + \ error: Function is missing a type annotation\r\nogr/services/github/auth_providers/abstract.py:6:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/auth_providers/abstract.py:6: note:\ + \ See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports\r\ + \nogr/services/github/auth_providers/abstract.py:32: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/parsing.py:99:\ + \ error: Function is missing a return type annotation\r\nogr/parsing.py:155:\ + \ error: Argument 1 to \"RepoUrl\" has incompatible type \"None\"; expected\ + \ \"str\"\r\nogr/services/github/auth_providers/token.py:6: error: Cannot\ + \ find implementation or library stub for module named 'github'\r\n\ + ogr/services/github/auth_providers/token.py:12: error: Function is missing\ + \ a type annotation for one or more arguments\r\nogr/services/github/auth_providers/token.py:35:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/auth_providers/token.py:35: error: Incompatible\ + \ default for argument \"token\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:7:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/auth_providers/github_app.py:26: error:\ + \ Returning Any from function declared to return \"bool\"\r\nogr/services/github/auth_providers/github_app.py:61:\ + \ error: Incompatible return value type (got \"None\", expected \"str\"\ + )\r\nogr/services/github/auth_providers/github_app.py:76: error: Incompatible\ + \ return value type (got \"None\", expected \"str\")\r\nogr/services/github/auth_providers/github_app.py:87:\ + \ error: unused 'type: ignore' comment\r\nogr/services/github/auth_providers/github_app.py:94:\ + \ error: unused 'type: ignore' comment\r\nogr/services/github/auth_providers/github_app.py:95:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/auth_providers/github_app.py:98: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/github/auth_providers/github_app.py:99:\ + \ error: Incompatible default for argument \"github_app_id\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:100:\ + \ error: Incompatible default for argument \"github_app_private_key\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:101:\ + \ error: Incompatible default for argument \"github_app_private_key_path\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/abstract.py:34:\ + \ error: Module 'functools' has no attribute 'cached_property'\r\nogr/abstract.py:82:\ + \ error: Function is missing a return type annotation\r\nogr/abstract.py:103:\ + \ error: Incompatible return value type (got \"Optional[datetime]\"\ + , expected \"datetime\")\r\nogr/abstract.py:107: error: Incompatible\ + \ return value type (got \"Optional[datetime]\", expected \"datetime\"\ + )\r\nogr/abstract.py:113: error: Incompatible return value type (got\ + \ \"Optional[Any]\", expected \"Issue\")\r\nogr/abstract.py:122: error:\ + \ Incompatible return value type (got \"Optional[Any]\", expected \"\ + PullRequest\")\r\nogr/abstract.py:172: error: Missing type parameters\ + \ for generic type \"List\"\r\nogr/abstract.py:244: error: Incompatible\ + \ default for argument \"filter_regex\" (default has type \"None\",\ + \ argument has type \"str\")\r\nogr/abstract.py:244: error: Incompatible\ + \ default for argument \"author\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/abstract.py:299: error: Call to untyped function\ + \ \"deprecate_and_set_removal\" in typed context\r\nogr/abstract.py:299:\ + \ error: Untyped decorator makes function \"__init__\" untyped\r\nogr/abstract.py:420:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:751:\ + \ error: Untyped decorator makes function \"hostname\" untyped\r\nogr/abstract.py:1204:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:1224:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:1373:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/read_only.py:52:\ + \ error: Missing type parameters for generic type \"Callable\"\r\nogr/read_only.py:66:\ + \ error: Function is missing a type annotation\r\nogr/read_only.py:68:\ + \ error: Function is missing a type annotation\r\nogr/read_only.py:165:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/read_only.py:165: error: Untyped decorator makes function\ + \ \"pr_create\" untyped\r\nogr/read_only.py:177: error: Incompatible\ + \ default for argument \"fork_username\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/read_only.py:195: error: Incompatible\ + \ default for argument \"fork_username\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/read_only.py:215: error: Incompatible\ + \ default for argument \"commit\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/read_only.py:216: error: Incompatible default\ + \ for argument \"filename\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/read_only.py:217: error: Incompatible default\ + \ for argument \"row\" (default has type \"None\", argument has type\ + \ \"int\")\r\nogr/read_only.py:233: error: Returning Any from function\ + \ declared to return \"PullRequest\"\r\nogr/read_only.py:239: error:\ + \ Returning Any from function declared to return \"PullRequest\"\r\n\ + ogr/read_only.py:257: error: Returning Any from function declared to\ + \ return \"GitProject\"\r\nogr/factory.py:33: error: Function is missing\ + \ a return type annotation\r\nogr/factory.py:33: error: Function is\ + \ missing a type annotation for one or more arguments\r\nogr/factory.py:57:\ + \ error: Function is missing a type annotation\r\nogr/factory.py:59:\ + \ error: Function is missing a return type annotation\r\nogr/factory.py:65:\ + \ error: Call to untyped function \"decorator_cover\" in typed context\r\ + \nogr/factory.py:68: error: Function is missing a type annotation for\ + \ one or more arguments\r\nogr/factory.py:70: error: Incompatible default\ + \ for argument \"service_mapping_update\" (default has type \"None\"\ + , argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:71:\ + \ error: Incompatible default for argument \"custom_instances\" (default\ + \ has type \"None\", argument has type \"Iterable[GitService]\")\r\n\ + ogr/factory.py:86: error: Invalid index type \"Optional[str]\" for \"\ + Dict[str, Type[GitService]]\"; expected type \"str\"\r\nogr/factory.py:95:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + hostname\"\r\nogr/factory.py:105: error: Item \"None\" of \"Optional[RepoUrl]\"\ + \ has no attribute \"get_instance_url\"\r\nogr/factory.py:110: error:\ + \ Incompatible default for argument \"service_mapping_update\" (default\ + \ has type \"None\", argument has type \"Dict[str, Type[GitService]]\"\ + )\r\nogr/factory.py:132: error: Incompatible default for argument \"\ + service_mapping_update\" (default has type \"None\", argument has type\ + \ \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:149: error: Implicit\ + \ generic \"Any\". Use \"typing.Dict\" and specify generic parameters\r\ + \nogr/services/gitlab/comments.py:26: error: Cannot find implementation\ + \ or library stub for module named 'gitlab.v4.objects'\r\nogr/services/gitlab/comments.py:41:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/comments.py:50: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/comments.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.IssueComment'\r\nogr/services/github/comments.py:27: error:\ + \ Cannot find implementation or library stub for module named 'github.PullRequestComment'\r\ + \nogr/services/github/comments.py:42: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/comments.py:50:\ + \ error: Returning Any from function declared to return \"datetime\"\ + \r\nogr/services/github/auth_providers/tokman.py:7: error: Cannot find\ + \ implementation or library stub for module named 'github'\r\nogr/services/github/auth_providers/tokman.py:39:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/auth_providers/tokman.py:42: error: Function is\ + \ missing a type annotation for one or more arguments\r\nogr/services/github/auth_providers/tokman.py:42:\ + \ error: Incompatible default for argument \"tokman_instance_url\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:46:\ + \ error: Module 'functools' has no attribute 'cached_property'\r\nogr/services/base.py:55:\ + \ error: Untyped decorator makes function \"hostname\" untyped\r\nogr/services/base.py:60:\ + \ error: Argument \"potential_url\" to \"parse_git_repo\" has incompatible\ + \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/base.py:81:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:81: error: Untyped decorator makes\ + \ function \"get_pr_comments\" untyped\r\nogr/services/base.py:86: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/base.py:87: error: Incompatible default for argument \"\ + filter_regex\" (default has type \"None\", argument has type \"str\"\ + )\r\nogr/services/base.py:87: error: Incompatible default for argument\ + \ \"author\" (default has type \"None\", argument has type \"str\")\r\ + \nogr/services/base.py:100: error: Call to untyped function \"deprecate_and_set_removal\"\ + \ in typed context\r\nogr/services/base.py:100: error: Untyped decorator\ + \ makes function \"search_in_pr\" untyped\r\nogr/services/base.py:123:\ + \ error: Untyped decorator makes function \"pr_close\" untyped\r\nogr/services/base.py:124:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:124: error: Untyped decorator makes\ + \ function \"pr_close\" untyped\r\nogr/services/base.py:132: error:\ + \ Untyped decorator makes function \"pr_merge\" untyped\r\nogr/services/base.py:133:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:133: error: Untyped decorator makes\ + \ function \"pr_merge\" untyped\r\nogr/services/base.py:141: error:\ + \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:141: error: Untyped decorator makes function\ + \ \"get_pr_labels\" untyped\r\nogr/services/base.py:149: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:149: error: Untyped decorator makes function\ + \ \"add_pr_labels\" untyped\r\nogr/services/base.py:157: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:157: error: Untyped decorator makes function\ + \ \"get_pr_info\" untyped\r\nogr/services/base.py:165: error: Call to\ + \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ + ogr/services/base.py:165: error: Untyped decorator makes function \"\ + update_pr_info\" untyped\r\nogr/services/base.py:175: error: Call to\ + \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ + ogr/services/base.py:175: error: Untyped decorator makes function \"\ + get_all_pr_commits\" untyped\r\nogr/services/base.py:183: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:183: error: Untyped decorator makes function\ + \ \"_get_all_pr_comments\" untyped\r\nogr/services/base.py:191: error:\ + \ Untyped decorator makes function \"pr_comment\" untyped\r\nogr/services/base.py:195:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:195: error: Untyped decorator makes\ + \ function \"pr_comment\" untyped\r\nogr/services/base.py:204: error:\ + \ Incompatible default for argument \"commit\" (default has type \"\ + None\", argument has type \"str\")\r\nogr/services/base.py:205: error:\ + \ Incompatible default for argument \"filename\" (default has type \"\ + None\", argument has type \"str\")\r\nogr/services/base.py:206: error:\ + \ Incompatible default for argument \"row\" (default has type \"None\"\ + , argument has type \"int\")\r\nogr/services/base.py:210: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:210: error: Untyped decorator makes function\ + \ \"get_issue_comments\" untyped\r\nogr/services/base.py:215: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/base.py:218: error: Incompatible default for argument \"\ + filter_regex\" (default has type \"None\", argument has type \"str\"\ + )\r\nogr/services/base.py:220: error: Incompatible default for argument\ + \ \"author\" (default has type \"None\", argument has type \"str\")\r\ + \nogr/services/base.py:224: error: Call to untyped function \"deprecate_and_set_removal\"\ + \ in typed context\r\nogr/services/base.py:224: error: Untyped decorator\ + \ makes function \"pr_create\" untyped\r\nogr/services/base.py:235:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:245:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:245: error: Untyped decorator makes\ + \ function \"can_close_issue\" untyped\r\nogr/services/base.py:253:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:253: error: Untyped decorator makes\ + \ function \"get_issue_info\" untyped\r\nogr/services/base.py:261: error:\ + \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:261: error: Untyped decorator makes function\ + \ \"_get_all_issue_comments\" untyped\r\nogr/services/base.py:269: error:\ + \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:269: error: Untyped decorator makes function\ + \ \"issue_comment\" untyped\r\nogr/services/base.py:277: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:277: error: Untyped decorator makes function\ + \ \"issue_close\" untyped\r\nogr/services/base.py:285: error: Call to\ + \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ + ogr/services/base.py:285: error: Untyped decorator makes function \"\ + get_issue_labels\" untyped\r\nogr/services/base.py:293: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:293: error: Untyped decorator makes function\ + \ \"add_issue_labels\" untyped\r\nogr/services/base.py:367: error: Function\ + \ is missing a return type annotation\r\nogr/services/base.py:367: error:\ + \ Argument 1 of \"get_comments\" is incompatible with supertype \"PullRequest\"\ + ; supertype defines the argument type as \"Optional[str]\"\r\nogr/services/base.py:367:\ + \ error: Argument 3 of \"get_comments\" is incompatible with supertype\ + \ \"PullRequest\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/base.py:368: error: Incompatible default for argument\ + \ \"filter_regex\" (default has type \"None\", argument has type \"\ + str\")\r\nogr/services/base.py:368: error: Incompatible default for\ + \ argument \"author\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/base.py:373: error: Function is missing a\ + \ return type annotation\r\nogr/services/base.py:397: error: Incompatible\ + \ default for argument \"filter_regex\" (default has type \"None\",\ + \ argument has type \"str\")\r\nogr/services/base.py:397: error: Incompatible\ + \ default for argument \"author\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/pagure/release.py:28: error: Name\ + \ 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:37:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:42:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/release.py:46:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:38:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:39:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:41:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/pull_request.py:45:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:45:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/pull_request.py:52:\ + \ error: Call to untyped function \"__update\" in typed context\r\n\ + ogr/services/pagure/pull_request.py:53: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:61:\ + \ error: Returning Any from function declared to return \"int\"\r\n\ + ogr/services/pagure/pull_request.py:65: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:72:\ + \ error: List item 0 has incompatible type \"Optional[str]\"; expected\ + \ \"str\"\r\nogr/services/pagure/pull_request.py:81: error: Call to\ + \ untyped function \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:82:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/pull_request.py:90: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:94:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/pull_request.py:98: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:117:\ + \ error: Returning Any from function declared to return \"bytes\"\r\n\ + ogr/services/pagure/pull_request.py:121: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:124:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:145:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/pull_request.py:145: error: Implicit generic \"\ + Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/pull_request.py:146:\ + \ error: Returning Any from function declared to return \"Dict[Any,\ + \ Any]\"\r\nogr/services/pagure/pull_request.py:152: error: Name 'ogr_pagure.PagureProject'\ + \ is not defined\r\nogr/services/pagure/pull_request.py:157: error:\ + \ Incompatible default for argument \"fork_username\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/pull_request.py:178:\ + \ error: Returning Any from function declared to return \"PullRequest\"\ + \r\nogr/services/pagure/pull_request.py:178: error: Call to untyped\ + \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:181:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:183:\ + \ error: Returning Any from function declared to return \"PullRequest\"\ + \r\nogr/services/pagure/pull_request.py:183: error: Call to untyped\ + \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:186:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/pull_request.py:187: error: Name 'ogr_pagure.PagureProject'\ + \ is not defined\r\nogr/services/pagure/pull_request.py:199: error:\ + \ Call to untyped function \"PagurePullRequest\" in typed context\r\n\ + ogr/services/pagure/pull_request.py:219: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:266:\ + \ error: Call to untyped function \"__update\" in typed context\r\n\ + ogr/services/pagure/pull_request.py:277: error: Implicit generic \"\ + Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/issue.py:34:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:36:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/issue.py:40:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/issue.py:40:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/issue.py:47:\ + \ error: Call to untyped function \"__update\" in typed context\r\n\ + ogr/services/pagure/issue.py:48: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/issue.py:56: error:\ + \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:57:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/pagure/issue.py:61: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/pagure/issue.py:65: error:\ + \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:70:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/issue.py:76: error: Call to untyped function \"\ + __update\" in typed context\r\nogr/services/pagure/issue.py:77: error:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/pagure/issue.py:85:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/issue.py:93: error: Returning Any from function\ + \ declared to return \"List[str]\"\r\nogr/services/pagure/issue.py:118:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:132:\ + \ error: Returning Any from function declared to return \"Issue\"\r\n\ + ogr/services/pagure/issue.py:132: error: Call to untyped function \"\ + PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:135:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:137:\ + \ error: Returning Any from function declared to return \"Issue\"\r\n\ + ogr/services/pagure/issue.py:137: error: Call to untyped function \"\ + PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:141:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:168:\ + \ error: Call to untyped function \"PagureIssue\" in typed context\r\ + \nogr/services/pagure/issue.py:171: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/flag.py:44: error:\ + \ Function is missing a return type annotation\r\nogr/services/pagure/flag.py:44:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/flag.py:45:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:46:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:47:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:48:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:49:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:52:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:61:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:67:\ + \ error: Incompatible default for argument \"percent\" (default has\ + \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/flag.py:69:\ + \ error: Incompatible default for argument \"uid\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/flag.py:97:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:103:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/project.py:58:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:64:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:65:\ + \ error: Incompatible default for argument \"username\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:68:\ + \ error: Argument 3 to \"__init__\" of \"GitProject\" has incompatible\ + \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/pagure/project.py:75:\ + \ error: Incompatible types in assignment (expression has type \"Optional[str]\"\ + , variable has type \"str\")\r\nogr/services/pagure/project.py:102:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/project.py:107: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/project.py:108: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/project.py:108:\ + \ error: Incompatible default for argument \"params\" (default has type\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:109:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/project.py:109: error: Incompatible\ + \ default for argument \"data\" (default has type \"None\", argument\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:110:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/project.py:122: error: Call to untyped\ + \ function \"_get_project_url\" in typed context\r\nogr/services/pagure/project.py:128:\ + \ error: Returning Any from function declared to return \"Dict[Any,\ + \ Any]\"\r\nogr/services/pagure/project.py:132: error: Function is missing\ + \ a type annotation for one or more arguments\r\nogr/services/pagure/project.py:137:\ + \ error: Incompatible default for argument \"method\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:138:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/project.py:138: error: Incompatible\ + \ default for argument \"params\" (default has type \"None\", argument\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:139:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/project.py:139: error: Incompatible\ + \ default for argument \"data\" (default has type \"None\", argument\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:152:\ + \ error: Call to untyped function \"_get_project_url\" in typed context\r\ + \nogr/services/pagure/project.py:158: error: Returning Any from function\ + \ declared to return \"RequestResponse\"\r\nogr/services/pagure/project.py:162:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/project.py:163:\ + \ error: Need type annotation for 'additional_parts' (hint: \"additional_parts:\ + \ List[] = ...\")\r\nogr/services/pagure/project.py:174: error:\ + \ Function is missing a return type annotation\r\nogr/services/pagure/project.py:179:\ + \ error: Returning Any from function declared to return \"List[str]\"\ + \r\nogr/services/pagure/project.py:182: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/project.py:182:\ + \ error: Call to untyped function \"get_project_info\" in typed context\r\ + \nogr/services/pagure/project.py:185: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:186:\ + \ error: Returning Any from function declared to return \"List[str]\"\ + \r\nogr/services/pagure/project.py:190: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:199:\ + \ error: Call to untyped function \"get_project_info\" in typed context\r\ + \nogr/services/pagure/project.py:205: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/project.py:208:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/project.py:208:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/project.py:236:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/project.py:246: error: Untyped decorator makes\ + \ function \"create_pr\" untyped\r\nogr/services/pagure/project.py:253:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:263:\ + \ error: Untyped decorator makes function \"fork_create\" untyped\r\n\ + ogr/services/pagure/project.py:295: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:301:\ + \ error: Returning Any from function declared to return \"Optional[PagureProject]\"\ + \r\nogr/services/pagure/project.py:310: error: Function is missing a\ + \ return type annotation\r\nogr/services/pagure/project.py:342: error:\ + \ Call to untyped function \"exists\" in typed context\r\nogr/services/pagure/project.py:342:\ + \ error: Item \"None\" of \"Optional[PagureProject]\" has no attribute\ + \ \"exists\"\r\nogr/services/pagure/project.py:345: error: Call to untyped\ + \ function \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:359:\ + \ error: Call to untyped function \"get_project_info\" in typed context\r\ + \nogr/services/pagure/project.py:366: error: Returning Any from function\ + \ declared to return \"Dict[str, str]\"\r\nogr/services/pagure/project.py:378:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/project.py:388:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/project.py:420: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/project.py:438:\ + \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ + \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/pagure/project.py:438: error: Argument 4 of \"commit_comment\"\ + \ is incompatible with supertype \"GitProject\"; supertype defines the\ + \ argument type as \"Optional[int]\"\r\nogr/services/pagure/project.py:439:\ + \ error: Incompatible default for argument \"filename\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:439:\ + \ error: Incompatible default for argument \"row\" (default has type\ + \ \"None\", argument has type \"int\")\r\nogr/services/pagure/project.py:443:\ + \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ + \nogr/services/pagure/project.py:451: error: Incompatible default for\ + \ argument \"percent\" (default has type \"None\", argument has type\ + \ \"int\")\r\nogr/services/pagure/project.py:452: error: Incompatible\ + \ default for argument \"uid\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/pagure/project.py:520: error: Call\ + \ to untyped function \"get_project_info\" in typed context\r\nogr/services/pagure/user.py:31:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/user.py:33:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/user.py:43:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/service.py:44: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/service.py:46:\ + \ error: Incompatible default for argument \"token\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/service.py:88:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/pagure/service.py:99: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/service.py:110:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + repo\"\r\nogr/services/pagure/service.py:111: error: Item \"None\" of\ + \ \"Optional[RepoUrl]\" has no attribute \"namespace\"\r\nogr/services/pagure/service.py:112:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + is_fork\"\r\nogr/services/pagure/service.py:113: error: Item \"None\"\ + \ of \"Optional[RepoUrl]\" has no attribute \"username\"\r\nogr/services/pagure/service.py:121:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/service.py:122: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/service.py:122: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:122:\ + \ error: Incompatible default for argument \"params\" (default has type\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:123:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/service.py:160: error: Returning\ + \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/service.py:162:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:162:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/service.py:163: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/service.py:163: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:163:\ + \ error: Incompatible default for argument \"params\" (default has type\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:176:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/service.py:204: error: Function is missing a return\ + \ type annotation\r\nogr/services/pagure/service.py:207: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:220:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/service.py:230: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/service.py:232:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:241:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:283:\ + \ error: Argument 2 to \"__handle_project_create_fail\" of \"PagureService\"\ + \ has incompatible type \"Optional[str]\"; expected \"str\"\r\nogr/services/gitlab/user.py:28:\ + \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:30:\ + \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:37:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/user.py:41:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/user.py:44: error: Returning Any from function declared\ + \ to return \"str\"\r\nogr/services/gitlab/release.py:30: error: Name\ + \ 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/release.py:32:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/gitlab/release.py:39: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/release.py:46: error: Function\ + \ is missing a return type annotation\r\nogr/services/gitlab/release.py:50:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/pull_request.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab.v4.objects'\r\nogr/services/gitlab/pull_request.py:37: error:\ + \ Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:38:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:42:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/pull_request.py:51: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/gitlab/pull_request.py:63:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/pull_request.py:67: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:76:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/pull_request.py:80: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:84:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/pull_request.py:88: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/gitlab/pull_request.py:92:\ + \ error: Returning Any from function declared to return \"List[str]\"\ + \r\nogr/services/gitlab/pull_request.py:100: error: Returning Any from\ + \ function declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:103:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:117:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:122:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/pull_request.py:169:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:170:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:190:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:196:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/issue.py:27: error: Cannot find implementation\ + \ or library stub for module named 'gitlab.v4.objects'\r\nogr/services/gitlab/issue.py:41:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/issue.py:50: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/gitlab/issue.py:54: error:\ + \ Returning Any from function declared to return \"bool\"\r\nogr/services/gitlab/issue.py:66:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/issue.py:70: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/issue.py:79: error:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/gitlab/issue.py:83:\ + \ error: Returning Any from function declared to return \"datetime\"\ + \r\nogr/services/gitlab/issue.py:86: error: Missing type parameters\ + \ for generic type \"List\"\r\nogr/services/gitlab/issue.py:87: error:\ + \ Returning Any from function declared to return \"List[Any]\"\r\nogr/services/gitlab/issue.py:94:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:107:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:115:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/flag.py:27:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/flag.py:53: error: Function is missing\ + \ a return type annotation\r\nogr/services/gitlab/flag.py:53: note:\ + \ Use \"-> None\" if function does not return a value\r\nogr/services/gitlab/flag.py:54:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"sha\"\ + \r\nogr/services/gitlab/flag.py:55: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"status\"\r\nogr/services/gitlab/flag.py:56: error:\ + \ Item \"None\" of \"Optional[Any]\" has no attribute \"name\"\r\nogr/services/gitlab/flag.py:57:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ + \r\nogr/services/gitlab/flag.py:58: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"id\"\r\nogr/services/gitlab/flag.py:59: error:\ + \ Item \"None\" of \"Optional[Any]\" has no attribute \"target_url\"\ + \r\nogr/services/gitlab/flag.py:62: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/flag.py:77: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/flag.py:108: error: Item \"\ + None\" of \"Optional[Any]\" has no attribute \"created_at\"\r\nogr/services/gitlab/project.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/project.py:27: error: Cannot find\ + \ implementation or library stub for module named 'gitlab.v4.objects'\r\ + \nogr/services/gitlab/project.py:54: error: Name 'ogr_gitlab.GitlabService'\ + \ is not defined\r\nogr/services/gitlab/project.py:56: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/gitlab/project.py:59:\ + \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/project.py:129:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/gitlab/project.py:135: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:190:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/gitlab/project.py:256: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:267:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:278:\ + \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ + \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/gitlab/project.py:278: error: Argument 4 of \"commit_comment\"\ + \ is incompatible with supertype \"GitProject\"; supertype defines the\ + \ argument type as \"Optional[int]\"\r\nogr/services/gitlab/project.py:279:\ + \ error: Incompatible default for argument \"filename\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:279:\ + \ error: Incompatible default for argument \"row\" (default has type\ + \ \"None\", argument has type \"int\")\r\nogr/services/gitlab/project.py:364:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:370:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/gitlab/project.py:373: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:378:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:449:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/gitlab/project.py:455: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:473:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:505:\ + \ error: Function is missing a type annotation\r\nogr/services/gitlab/project.py:517:\ + \ error: Call to untyped function \"_normalize_label_color\" in typed\ + \ context\r\nogr/services/gitlab/project.py:530: error: Function is\ + \ missing a type annotation\r\nogr/services/gitlab/project.py:536: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/gitlab/project.py:541: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:560:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/service.py:23: error: Cannot find implementation\ + \ or library stub for module named 'gitlab'\r\nogr/services/gitlab/service.py:37:\ + \ error: Function is missing a type annotation\r\nogr/services/gitlab/service.py:75:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/gitlab/service.py:84: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/service.py:104:\ + \ error: Argument 2 of \"project_create\" is incompatible with supertype\ + \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/gitlab/service.py:104: error: Incompatible default\ + \ for argument \"namespace\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/services/github/release.py:23: error: Cannot\ + \ find implementation or library stub for module named 'github.GitRelease'\r\ + \nogr/services/github/release.py:30: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/release.py:39: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/release.py:46: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/release.py:50:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/pull_request.py:27:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/pull_request.py:28: error: Cannot\ + \ find implementation or library stub for module named 'github.Label'\r\ + \nogr/services/github/pull_request.py:29: error: Cannot find implementation\ + \ or library stub for module named 'github.PullRequest'\r\nogr/services/github/pull_request.py:30:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.Repository'\r\nogr/services/github/pull_request.py:31: error:\ + \ Cannot find implementation or library stub for module named 'github.IssueComment'\r\ + \nogr/services/github/pull_request.py:32: error: Cannot find implementation\ + \ or library stub for module named 'github.PullRequestComment'\r\nogr/services/github/pull_request.py:45:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:46:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:50:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:58: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/github/pull_request.py:70:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:74: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/pull_request.py:82:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:86: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/pull_request.py:90:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:94: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/pull_request.py:106:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:109: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/pull_request.py:124: error:\ + \ Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:129:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/pull_request.py:166:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:172:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/issue.py:27: error: Cannot find implementation\ + \ or library stub for module named 'github.Issue'\r\nogr/services/github/issue.py:40:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:51:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/issue.py:59: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/github/issue.py:67: error:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/github/issue.py:71:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/issue.py:79: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/issue.py:83: error:\ + \ Returning Any from function declared to return \"datetime\"\r\nogr/services/github/issue.py:86:\ + \ error: Missing type parameters for generic type \"List\"\r\nogr/services/github/issue.py:94:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:106:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:112:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/flag.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/flag.py:44: error: Function is missing\ + \ a return type annotation\r\nogr/services/github/flag.py:44: note:\ + \ Use \"-> None\" if function does not return a value\r\nogr/services/github/flag.py:45:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"state\"\ + \r\nogr/services/github/flag.py:46: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"context\"\r\nogr/services/github/flag.py:47: error:\ + \ Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ + \r\nogr/services/github/flag.py:48: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"target_url\"\r\nogr/services/github/flag.py:49:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"id\"\r\ + \nogr/services/github/flag.py:52: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/flag.py:67: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/flag.py:87: error: Returning\ + \ Any from function declared to return \"datetime\"\r\nogr/services/github/flag.py:87:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"created_at\"\ + \r\nogr/services/github/flag.py:91: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/flag.py:91:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"updated_at\"\ + \r\nogr/services/github/project.py:26: error: Cannot find implementation\ + \ or library stub for module named 'github'\r\nogr/services/github/project.py:28:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.Repository'\r\nogr/services/github/project.py:29: error: Cannot\ + \ find implementation or library stub for module named 'github.CommitComment'\r\ + \nogr/services/github/project.py:30: error: Cannot find implementation\ + \ or library stub for module named 'github.GitRelease'\r\nogr/services/github/project.py:58:\ + \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/project.py:62:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/project.py:65: error: Name 'ogr_github.GithubService'\ + \ is not defined\r\nogr/services/github/project.py:82: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/project.py:91:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:133:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/github/project.py:150: error: Returning Any from function\ + \ declared to return \"bool\"\r\nogr/services/github/project.py:167:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/project.py:194: error: Function is missing a return\ + \ type annotation\r\nogr/services/github/project.py:194: note: Use \"\ + -> None\" if function does not return a value\r\nogr/services/github/project.py:213:\ + \ error: Returning Any from function declared to return \"Optional[GithubProject]\"\ + \r\nogr/services/github/project.py:248: error: Function is missing a\ + \ type annotation for one or more arguments\r\nogr/services/github/project.py:254:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/github/project.py:302: error: Returning\ + \ Any from function declared to return \"str\"\r\nogr/services/github/project.py:312:\ + \ error: Untyped decorator makes function \"create_pr\" untyped\r\n\ + ogr/services/github/project.py:319: error: Incompatible default for\ + \ argument \"fork_username\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/services/github/project.py:330: error: Untyped\ + \ decorator makes function \"commit_comment\" untyped\r\nogr/services/github/project.py:335:\ + \ error: Incompatible default for argument \"filename\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:335:\ + \ error: Incompatible default for argument \"row\" (default has type\ + \ \"None\", argument has type \"int\")\r\nogr/services/github/project.py:355:\ + \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ + \nogr/services/github/project.py:359: error: Function is missing a return\ + \ type annotation\r\nogr/services/github/project.py:402: error: Untyped\ + \ decorator makes function \"fork_create\" untyped\r\nogr/services/github/project.py:411:\ + \ error: Returning Any from function declared to return \"GithubProject\"\ + \r\nogr/services/github/project.py:415: error: Function is missing a\ + \ return type annotation\r\nogr/services/github/project.py:418: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/project.py:420: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/project.py:427:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:498:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:505:\ + \ error: Function is missing a type annotation\r\nogr/services/github/project.py:516:\ + \ error: Call to untyped function \"_normalize_label_color\" in typed\ + \ context\r\nogr/services/github/project.py:525: error: Function is\ + \ missing a type annotation\r\nogr/services/github/project.py:530: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/project.py:534: error: Returning Any from function\ + \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:537:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/project.py:541: error: Returning Any from function\ + \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:544:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/project.py:553: error: Argument \"git_tag\" to\ + \ \"_release_from_github_object\" of \"GithubProject\" has incompatible\ + \ type \"Optional[GitTag]\"; expected \"GitTag\"\r\nogr/services/github/project.py:559:\ + \ error: Argument \"git_tag\" to \"_release_from_github_object\" of\ + \ \"GithubProject\" has incompatible type \"Optional[GitTag]\"; expected\ + \ \"GitTag\"\r\nogr/services/github/project.py:567: error: Argument\ + \ \"git_tag\" to \"_release_from_github_object\" of \"GithubProject\"\ + \ has incompatible type \"Optional[GitTag]\"; expected \"GitTag\"\r\n\ + ogr/services/github/project.py:596: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/user.py:31: error:\ + \ Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:33:\ + \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:40:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/user.py:44:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/user.py:46: error: Return type \"Optional[str]\"\ + \ of \"get_email\" incompatible with return type \"str\" in supertype\ + \ \"GitUser\"\r\nogr/services/github/user.py:49: error: Returning Any\ + \ from function declared to return \"Optional[str]\"\r\nogr/services/github/user.py:58:\ + \ error: Returning Any from function declared to return \"Optional[str]\"\ + \r\nogr/services/github/user.py:61: error: Returning Any from function\ + \ declared to return \"Optional[str]\"\r\nogr/services/github/user.py:63:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/user.py:75:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/service.py:25:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/service.py:37: error: Module 'ogr.services.github.auth_providers'\ + \ has no attribute 'GithubAuthentication'\r\nogr/services/github/service.py:37:\ + \ error: Module 'ogr.services.github.auth_providers' has no attribute\ + \ 'TokenAuthentication'\r\nogr/services/github/service.py:37: error:\ + \ Module 'ogr.services.github.auth_providers' has no attribute 'GithubApp'\r\ + \nogr/services/github/service.py:37: error: Module 'ogr.services.github.auth_providers'\ + \ has no attribute 'Tokman'\r\nogr/services/github/service.py:52: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/service.py:56: error: Incompatible default for argument\ + \ \"github_app_id\" (default has type \"None\", argument has type \"\ + str\")\r\nogr/services/github/service.py:57: error: Incompatible default\ + \ for argument \"github_app_private_key\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/services/github/service.py:58: error:\ + \ Incompatible default for argument \"github_app_private_key_path\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:59:\ + \ error: Incompatible default for argument \"tokman_instance_url\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:74:\ + \ error: Call to untyped function \"__set_authentication\" in typed\ + \ context\r\nogr/services/github/service.py:82: error: Function is missing\ + \ a type annotation\r\nogr/services/github/service.py:96: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/service.py:113:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/github/service.py:121: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/github/service.py:152:\ + \ error: Argument 2 of \"project_create\" is incompatible with supertype\ + \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/github/service.py:152: error: Incompatible default\ + \ for argument \"namespace\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/__init__.py:35: error: Module 'ogr.services.github'\ + \ has no attribute 'GithubService'\r\nogr/__init__.py:36: error: Module\ + \ 'ogr.services.gitlab' has no attribute 'GitlabService'\r\nogr/__init__.py:37:\ + \ error: Module 'ogr.services.pagure' has no attribute 'PagureService'\r\ + \nFound 512 errors in 34 files (checked 43 source files)\r\n```\r\n\ +
" + closed_at: null + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/251/comments + created_at: '2019-10-22T12:09:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/251/events + html_url: https://github.com/packit/ogr/issues/251 + id: 510612410 + labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/251/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MTA2MTI0MTA= + number: 251 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Strict mypy + updated_at: '2020-09-30T15:07:16Z' + url: https://api.github.com/repos/packit/ogr/issues/251 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "*Updated by @lachmanfrantisek :*\r\n\r\nWe have a lot of methods\ + \ related to the permissions (e.g. who can merge/close,..)\r\n\r\nIt's\ + \ not consistent, let's clean that!\r\n\r\nFeel free to solve this in\ + \ smaller parts. Just write on what you are going to work...\r\n\r\n\ + AC:\r\n- [ ] Make sure, that we have all of the provided methods in\ + \ the `abstract.py`\r\n (raising the `NotImplementedError`)\r\n- [\ + \ ] Make sure, that we have all of these in all the implementations:\r\ + \n - [ ] GitLab\r\n - [ ] GitHub\r\n - [ ] Pagure\r\n- [ ] Deprecate\ + \ the project methods related to specific issue/pull-request.\r\n- [\ + \ ] Move helping methods to the base classes.\r\n - The only exception\ + \ is a more efficient solution in the code of the specific implementation.\r\ + \n - Example:\r\nhttps://github.com/packit-service/ogr/blob/89435655150b8dd79ef93209c3463585d0715e0d/ogr/services/github/project.py#L219-L220\r\ + \n\r\nThe progress is tracked in the following tables. (Any update in\ + \ the comments is appreciated.)\r\n\r\n| Project | `who_can_close_issue()\ + \ -> Set[str]` | `who_can_merge_pr() -> Set[str]` | `can_close_issue(username:\ + \ str) -> bool` | `can_merge_pr(username: str) -> bool` |\r\n| --- |\ + \ --- | --- | --- | --- |\r\n| abstract | :+1: | :+1: | :exclamation:\ + \ deprecate the `Issue` argument | \r\n| base | nothing | nothing |\ + \ implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\n\ + | GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |\r\n\r\n| Issue\ + \ | `who_can_close() -> Set[str]` | `can_close(username: str) -> bool`\ + \ |\r\n| --- | --- | --- |\r\n| abstract | ? | ? |\r\n| base | nothing\ + \ | implement here |\r\n| Github | ? | ? |\r\n| GitLab | ? | ? |\r\n\ + | Pagure | ? | ? |\r\n\r\n| PullRequest | `who_can_close() -> Set[str]`\ + \ | `who_can_merge() -> Set[str]` | `can_close(username: str) -> bool`\ + \ | `can_merge(username: str) -> bool` |\r\n| --- | --- | --- | ---\ + \ | --- |\r\n| abstract | ? | ? | ? | ? | \r\n| base | nothing | nothing\ + \ | implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\ + \n| GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/100/comments + created_at: '2019-07-05T07:09:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/100/events + html_url: https://github.com/packit/ogr/issues/100 + id: 464495604 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: bf6b0b + default: false + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/100/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjQ0OTU2MDQ= + number: 100 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: user's permissions on Issues/PRs + updated_at: '2020-09-30T15:00:39Z' + url: https://api.github.com/repos/packit/ogr/issues/100 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "It is sometimes hard to get the right problem when a user receives\ + \ a long traceback with some GitHub/GitLab exception at the end. Those\ + \ exceptions are not always clear or too general (`e.g. Object not found`).\r\ + \n\r\nWe can probably do better and raise our exceptions that will have\ + \ much clearer message since we usually know the context (e.g. `PR with\ + \ id={id} not found.`).\r\n\r\nAC:\r\n\r\n- [ ] Go through the code\ + \ and cover some parts of code in the try blocks and raise our exception\ + \ with good message:\r\n\r\n```python\r\n try:\r\n problematic_code()\r\ + \n except TheExternalException as ex:\r\n raise SomeOgrException(\"\ + Good reason\", ex)\r\n```\r\n- [ ] update/extend the tests\r\n" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/199/comments + created_at: '2019-09-13T08:04:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/199/events + html_url: https://github.com/packit/ogr/issues/199 + id: 493190190 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: bf6b0b + default: false + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/199/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTMxOTAxOTA= + number: 199 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Do not let the external exception go to the user + updated_at: '2020-09-30T14:57:41Z' + url: https://api.github.com/repos/packit/ogr/issues/199 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR + body: "The current implementation of labels has no implementation of GitLabel\ + \ defined in the abstract classes, which would be consistent with what\ + \ is done for GitUser, GitProject etc. This is leading to inconsistent\ + \ typing in the library where we have the following function signatures\ + \ within the codebase:\r\n\r\nabstract.py\r\n`def get_issue_labels(self,\ + \ issue_id: int) -> List[Any]`\r\n\r\ngithub/project.py\r\n`def get_issue_labels(self,\ + \ issue_id: int) -> List[GithubLabel]`\r\n\r\ngitlab/project.py\r\n\ + `def get_issue_labels(self, issue_id: int) -> List[str]`\r\n\r\nWould\ + \ be good to make this consistent and inherit from a base class of GitLabel.\r\ + \n\r\n@lachmanfrantisek " + closed_at: null + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/263/comments + created_at: '2019-11-02T14:16:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/263/events + html_url: https://github.com/packit/ogr/issues/263 + id: 516607686 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: bf6b0b + default: false + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/263/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MTY2MDc2ODY= + number: 263 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Improve class structure for Labels type + updated_at: '2020-08-24T06:40:40Z' + url: https://api.github.com/repos/packit/ogr/issues/263 + user: + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos + site_admin: false + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions + type: User + url: https://api.github.com/users/svenharris + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Would be nice to be able to manipulate labels on pagure issues.\ + \ i.e. `get_issue_labels()` `add_issue_labels()`, etc.. \r\n\r\n\r\n\ + *update by @lachmanfrantisek:*\r\n\r\nTODO: \r\n- [x] `labels` property\ + \ for `PagureIssue` class (https://github.com/packit-service/ogr/pull/321\ + \ by @cverna )\r\n- [x] `labels` argument for `PagureIssue.create` and\ + \ `PagureProject.create_issue` (https://github.com/packit-service/ogr/pull/321\ + \ by @cverna)\r\n- [ ] `labels` property for `PagurePullRequest` class\r\ + \n- [ ] `labels` argument for `PagurePullRequest.create` and `PagureProject.create_pr`\r\ + \n- [ ] `add_label` methods blocked by the PagureAPI (https://pagure.io/pagure/issue/2175)\r\ + \n- [ ] add tests for all of those\r\n\r\n" + closed_at: null + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/147/comments + created_at: '2019-08-09T22:23:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/147/events + html_url: https://github.com/packit/ogr/issues/147 + id: 479187441 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: bf6b0b + default: false + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + labels_url: https://api.github.com/repos/packit/ogr/issues/147/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NzkxODc0NDE= + number: 147 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: create label* functions for pagure backend + updated_at: '2020-06-29T06:46:49Z' + url: https://api.github.com/repos/packit/ogr/issues/147 + user: + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 + events_url: https://api.github.com/users/dustymabe/events{/privacy} + followers_url: https://api.github.com/users/dustymabe/followers + following_url: https://api.github.com/users/dustymabe/following{/other_user} + gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dustymabe + id: 4530030 + login: dustymabe + node_id: MDQ6VXNlcjQ1MzAwMzA= + organizations_url: https://api.github.com/users/dustymabe/orgs + received_events_url: https://api.github.com/users/dustymabe/received_events + repos_url: https://api.github.com/users/dustymabe/repos + site_admin: false + starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + type: User + url: https://api.github.com/users/dustymabe + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "In #226 we found multiple problems with the offline x online handling.\r\ + \n\r\nWe need to:\r\n\r\n- [x] agree on the rules (e.g. properties cannot\ + \ touch the services)\r\n- [ ] document the rules\r\n- [x] fix the current\ + \ implementation(s) to satisfy the rules\r\n - use deprecations if\ + \ needed\r\n\r\nRelated to #214 " + closed_at: null + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/229/comments + created_at: '2019-10-01T07:47:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/229/events + html_url: https://github.com/packit/ogr/issues/229 + id: 500722982 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: bf6b0b + default: false + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/229/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MDA3MjI5ODI= + number: 229 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Investigate online x offline handling + updated_at: '2020-06-15T08:46:36Z' + url: https://api.github.com/repos/packit/ogr/issues/229 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Figure out how we can return data:\r\n- only when needed\r\n- only\ + \ a limited number of results at first\r\n\r\nAC:\r\n- Provide the same\ + \ API for users of all implementations (e.g. change lists to generators).\r\ + \n- Be transparent to user == download the additional data when the\ + \ user really needs them.\r\n - e.g. Use lazy properties where possible.\r\ + \n- Enable efficient filtering on the results / during the calls.\r\n" + closed_at: null + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/325/comments + created_at: '2020-02-13T18:52:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/325/events + html_url: https://github.com/packit/ogr/issues/325 + id: 564883774 + labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: ff9990 + default: false + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/325/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NjQ4ODM3NzQ= + number: 325 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Laziness + updated_at: '2020-05-18T08:42:29Z' + url: https://api.github.com/repos/packit/ogr/issues/325 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.374118 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:08 GMT + ETag: W/"f127f6cfcec28c0401ae1ab47c5a0231bc9341c4c651349c17d4375c63e86704" + 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: 85EE:7CFE:F81CBB:191E48B:6075DC63 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4530' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '470' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=10: + - metadata: + latency: 0.6087079048156738 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: improve pagure error response to show additional info stored under + 'errors' key + closed_at: '2020-02-19T08:19:55Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/333/comments + created_at: '2020-02-18T15:47:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/333/events + html_url: https://github.com/packit/ogr/pull/333 + id: 566983390 + labels: + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/333/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzc2NjkyMzc5 + number: 333 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/333.diff + html_url: https://github.com/packit/ogr/pull/333 + patch_url: https://github.com/packit/ogr/pull/333.patch + url: https://api.github.com/repos/packit/ogr/pulls/333 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: improve pagure error response + updated_at: '2020-02-19T08:19:55Z' + url: https://api.github.com/repos/packit/ogr/issues/333 + user: + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos + site_admin: false + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + type: User + url: https://api.github.com/users/sakalosj + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'fixes #331 ' + closed_at: '2020-02-18T15:30:01Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/332/comments + created_at: '2020-02-18T14:53:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/332/events + html_url: https://github.com/packit/ogr/pull/332 + id: 566946268 + labels: + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/332/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzc2NjYxODE0 + number: 332 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/332.diff + html_url: https://github.com/packit/ogr/pull/332 + patch_url: https://github.com/packit/ogr/pull/332.patch + url: https://api.github.com/repos/packit/ogr/pulls/332 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Improve pagure error response + updated_at: '2020-02-18T15:38:49Z' + url: https://api.github.com/repos/packit/ogr/issues/332 + user: + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos + site_admin: false + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + type: User + url: https://api.github.com/users/sakalosj + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2020-02-17T15:39:51Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/327/comments + created_at: '2020-02-17T13:24:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/327/events + html_url: https://github.com/packit/ogr/pull/327 + id: 566296821 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/327/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzc2MTM0NTY3 + number: 327 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/327.diff + html_url: https://github.com/packit/ogr/pull/327 + patch_url: https://github.com/packit/ogr/pull/327.patch + url: https://api.github.com/repos/packit/ogr/pulls/327 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[.packit.yaml] remove no-longer needed keys & use aliases' + updated_at: '2020-02-17T15:43:04Z' + url: https://api.github.com/repos/packit/ogr/issues/327 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2020-02-14T16:46:09Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/326/comments + created_at: '2020-02-14T15:50:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/326/events + html_url: https://github.com/packit/ogr/pull/326 + id: 565409429 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/326/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzc1NDUzMzA5 + number: 326 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/326.diff + html_url: https://github.com/packit/ogr/pull/326 + patch_url: https://github.com/packit/ogr/pull/326.patch + url: https://api.github.com/repos/packit/ogr/pulls/326 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[CONTRIBUTING.md] update' + updated_at: '2020-02-17T08:52:51Z' + url: https://api.github.com/repos/packit/ogr/issues/326 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Seeing this on prod:\r\n\r\n```\r\n | [2019-10-29 08:25:38,794:\ + \ INFO/MainProcess] Received task: task.steve_jobs.process_message[9b4d1ddc-72e3-4bd8-8ff9-fb2cf96d8efb]\r\ + \n\_ | [2019-10-29 08:25:38,810: INFO/ForkPoolWorker-1] Copr build event,\ + \ topic: org.fedoraproject.prod.copr.build.start\r\n\_ | [2019-10-29\ + \ 08:25:38,812: WARNING/ForkPoolWorker-1] Cannot get project for this\ + \ build id: 1081435\r\n\_ | [2019-10-29 08:25:38,819: ERROR/ForkPoolWorker-1]\ + \ Task task.steve_jobs.process_message[9b4d1ddc-72e3-4bd8-8ff9-fb2cf96d8efb]\ + \ raised unexpected: TypeError(\"argument of type 'NoneType' is not\ + \ iterable\")\r\n\_ | Traceback (most recent call last):\r\n\_ | File\ + \ \"/usr/lib/python3.7/site-packages/celery/app/trace.py\", line 382,\ + \ in trace_task\r\n\_ | R = retval = fun(*args, **kwargs)\r\n\_ | File\ + \ \"/usr/lib/python3.7/site-packages/celery/app/trace.py\", line 641,\ + \ in __protected_call__\r\n\_ | return self.run(*args, **kwargs)\r\n\ + \_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/celery.py\"\ + , line 155, in _inner\r\n\_ | reraise(*exc_info)\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/_compat.py\"\ + , line 57, in reraise\r\n\_ | raise value\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/celery.py\"\ + , line 150, in _inner\r\n\_ | return f(*args, **kwargs)\r\n\_ | File\ + \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ + , line 47, in process_message\r\n\_ | return SteveJobs().process_message(event=event,\ + \ topic=topic)\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 218, in process_message\r\n\_ | project\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/packit/config.py\"\ + , line 212, in _get_project\r\n\_ | project = get_project(url=url, custom_instances=self.services)\r\ + \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ + , line 83, in get_project\r\n\_ | kls = get_service_class(url=url, service_mapping_update=service_mapping_update)\r\ + \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ + , line 135, in get_service_class\r\n\_ | url=url, service_mapping_update=service_mapping_update\r\ + \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ + , line 118, in get_service_class_or_none\r\n\_ | if service in url:\r\ + \n\_ | TypeError: argument of type 'NoneType' is not iterable\r\n```\r\ + \n" + closed_at: '2020-02-16T09:26:02Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/261/comments + created_at: '2019-10-29T09:31:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/261/events + html_url: https://github.com/packit/ogr/issues/261 + id: 513793392 + labels: + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/261/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MTM3OTMzOTI= + number: 261 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[get_service_class_or_none()] TypeError: argument of type ''NoneType'' + is not iterable' + updated_at: '2020-02-16T09:26:02Z' + url: https://api.github.com/repos/packit/ogr/issues/261 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "This commit allows to pass a list of tags to pagure's create_issue\ + \ method.\r\n\r\nSigned-off-by: Clement Verna " + closed_at: '2020-02-12T09:56:00Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/321/comments + created_at: '2020-01-31T19:31:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/321/events + html_url: https://github.com/packit/ogr/pull/321 + id: 558328639 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/321/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzY5NzM3NjUy + number: 321 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/321.diff + html_url: https://github.com/packit/ogr/pull/321 + patch_url: https://github.com/packit/ogr/pull/321.patch + url: https://api.github.com/repos/packit/ogr/pulls/321 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add support for tags when creating pagure issues. + updated_at: '2020-02-12T09:56:00Z' + url: https://api.github.com/repos/packit/ogr/issues/321 + user: + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 + events_url: https://api.github.com/users/cverna/events{/privacy} + followers_url: https://api.github.com/users/cverna/followers + following_url: https://api.github.com/users/cverna/following{/other_user} + gists_url: https://api.github.com/users/cverna/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/cverna + id: 7237866 + login: cverna + node_id: MDQ6VXNlcjcyMzc4NjY= + organizations_url: https://api.github.com/users/cverna/orgs + received_events_url: https://api.github.com/users/cverna/received_events + repos_url: https://api.github.com/users/cverna/repos + site_admin: false + starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/cverna/subscriptions + type: User + url: https://api.github.com/users/cverna + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "While working on #319, I noticed that there was no `.gitignore`\ + \ file in the repository.\r\n\r\nTo solve my _own_ pain points while\ + \ developing, I generated this one, which should ignore standard files\ + \ for MacOS, Windows, & Linux, and additionally ignore files that are\ + \ generally good to ignore in Python projects." + closed_at: '2020-02-11T09:08:13Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/320/comments + created_at: '2020-01-31T01:20:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/320/events + html_url: https://github.com/packit/ogr/pull/320 + id: 557854734 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/320/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzY5MzY2NDA1 + number: 320 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/320.diff + html_url: https://github.com/packit/ogr/pull/320 + patch_url: https://github.com/packit/ogr/pull/320.patch + url: https://api.github.com/repos/packit/ogr/pulls/320 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add `.gitignore` to repo + updated_at: '2020-02-11T09:08:13Z' + url: https://api.github.com/repos/packit/ogr/issues/320 + user: + avatar_url: https://avatars.githubusercontent.com/u/434063?v=4 + events_url: https://api.github.com/users/birdcar/events{/privacy} + followers_url: https://api.github.com/users/birdcar/followers + following_url: https://api.github.com/users/birdcar/following{/other_user} + gists_url: https://api.github.com/users/birdcar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/birdcar + id: 434063 + login: birdcar + node_id: MDQ6VXNlcjQzNDA2Mw== + organizations_url: https://api.github.com/users/birdcar/orgs + received_events_url: https://api.github.com/users/birdcar/received_events + repos_url: https://api.github.com/users/birdcar/repos + site_admin: false + starred_url: https://api.github.com/users/birdcar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/birdcar/subscriptions + type: User + url: https://api.github.com/users/birdcar + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Closes #308 ' + closed_at: '2020-01-24T19:51:49Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/309/comments + created_at: '2020-01-17T13:36:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/309/events + html_url: https://github.com/packit/ogr/pull/309 + id: 551419531 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/309/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzY0MTQ0OTky + number: 309 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/309.diff + html_url: https://github.com/packit/ogr/pull/309 + patch_url: https://github.com/packit/ogr/pull/309.patch + url: https://api.github.com/repos/packit/ogr/pulls/309 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add filtering of issues/PRs by author/assignee + updated_at: '2020-02-10T18:51:00Z' + url: https://api.github.com/repos/packit/ogr/issues/309 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hello there \U0001F44B \r\n\r\nThis came up in my `good-first-issue`\ + \ search and seemed like a fairly straightforward bug to fix.\r\n\r\n\ + I decided to treat it as a data problem and check for the existence\ + \ of a trailing slash in a simple if statement. It worked in the test\ + \ cases I passed it, and should be pretty straightforward to debug.\ + \ \r\n\r\nOpen to any/all criticism. Thanks for all you do!" + closed_at: '2020-02-06T12:58:10Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/319/comments + created_at: '2020-01-31T01:06:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/319/events + html_url: https://github.com/packit/ogr/pull/319 + id: 557850271 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/319/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzY5MzYzMTc2 + number: 319 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/319.diff + html_url: https://github.com/packit/ogr/pull/319 + patch_url: https://github.com/packit/ogr/pull/319.patch + url: https://api.github.com/repos/packit/ogr/pulls/319 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Remove trailing slash from URLs before parsing + updated_at: '2020-02-06T17:15:07Z' + url: https://api.github.com/repos/packit/ogr/issues/319 + user: + avatar_url: https://avatars.githubusercontent.com/u/434063?v=4 + events_url: https://api.github.com/users/birdcar/events{/privacy} + followers_url: https://api.github.com/users/birdcar/followers + following_url: https://api.github.com/users/birdcar/following{/other_user} + gists_url: https://api.github.com/users/birdcar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/birdcar + id: 434063 + login: birdcar + node_id: MDQ6VXNlcjQzNDA2Mw== + organizations_url: https://api.github.com/users/birdcar/orgs + received_events_url: https://api.github.com/users/birdcar/received_events + repos_url: https://api.github.com/users/birdcar/repos + site_admin: false + starred_url: https://api.github.com/users/birdcar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/birdcar/subscriptions + type: User + url: https://api.github.com/users/birdcar + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n>>> from ogr.parsing import parse_git_repo\r\n>>> r = parse_git_repo('https://github.com/avocado-framework/avocado/')\r\ + \n>>> r.namespace\r\n'avocado'\r\n>>> r.repo\r\n''\r\n```" + closed_at: '2020-02-06T12:58:11Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/318/comments + created_at: '2020-01-29T13:10:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/318/events + html_url: https://github.com/packit/ogr/issues/318 + id: 556852319 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/318/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NTY4NTIzMTk= + number: 318 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: parse_git_repo fails to handle '/' at string end correctly + updated_at: '2020-02-06T12:58:11Z' + url: https://api.github.com/repos/packit/ogr/issues/318 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2020-02-06T12:47:41Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/322/comments + created_at: '2020-02-05T10:22:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/322/events + html_url: https://github.com/packit/ogr/pull/322 + id: 560273848 + labels: + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/322/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzcxMjkxODM1 + number: 322 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/322.diff + html_url: https://github.com/packit/ogr/pull/322 + patch_url: https://github.com/packit/ogr/pull/322.patch + url: https://api.github.com/repos/packit/ogr/pulls/322 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Pre-commit changes + updated_at: '2020-02-06T12:47:46Z' + url: https://api.github.com/repos/packit/ogr/issues/322 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: TomasTomecek vs Tomas Tomecek + closed_at: '2020-01-29T12:56:32Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/317/comments + created_at: '2020-01-28T15:19:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/317/events + html_url: https://github.com/packit/ogr/pull/317 + id: 556279456 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/317/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzY4MDcxOTA1 + number: 317 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/317.diff + html_url: https://github.com/packit/ogr/pull/317 + patch_url: https://github.com/packit/ogr/pull/317.patch + url: https://api.github.com/repos/packit/ogr/pulls/317 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'github.pr.author: use login instead of name' + updated_at: '2020-01-30T08:42:02Z' + url: https://api.github.com/repos/packit/ogr/issues/317 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-01-28T14:17:18Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/314/comments + created_at: '2020-01-28T14:05:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/314/events + html_url: https://github.com/packit/ogr/issues/314 + id: 556231299 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/314/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NTYyMzEyOTk= + number: 314 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.10.0' + updated_at: '2020-01-28T14:17:18Z' + url: https://api.github.com/repos/packit/ogr/issues/314 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-01-28T14:17:12Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/315/comments + created_at: '2020-01-28T14:05:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/315/events + html_url: https://github.com/packit/ogr/issues/315 + id: 556231476 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/315/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NTYyMzE0NzY= + number: 315 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.10.0' + updated_at: '2020-01-28T14:17:12Z' + url: https://api.github.com/repos/packit/ogr/issues/315 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-01-28T14:17:02Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/316/comments + created_at: '2020-01-28T14:05:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/316/events + html_url: https://github.com/packit/ogr/issues/316 + id: 556231659 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/316/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NTYyMzE2NTk= + number: 316 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.10.0' + updated_at: '2020-01-28T14:17:02Z' + url: https://api.github.com/repos/packit/ogr/issues/316 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add tests for filtering\ + \ issues by author/assignee\n* Add filtering of issues by author/assignee\n\ + * Add response files\n* Add parameters to get_files method\n* WIP: add\ + \ method to list files\n* github: set repo & namespace when forking\n\ + * Implement get_tags for GithubProject\n* Fix update_pr_info (Pagure)\ + \ bug\n* Implement setters for Pagure PR\n* Implement Issue/PR setters\ + \ for Github/Gitlab\n* Add tests for PR/Issue setters for Github/Gitlab\n\ + * (#245) Improve Pagure's project_create* add reason of failure\n* Regenerate\ + \ gitlab tests after dep update\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.10.0-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-01-28T14:03:00Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/313/comments + created_at: '2020-01-27T11:51:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/313/events + html_url: https://github.com/packit/ogr/pull/313 + id: 555524947 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/313/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzY3NDUwNDkz + number: 313 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/313.diff + html_url: https://github.com/packit/ogr/pull/313 + patch_url: https://github.com/packit/ogr/pull/313.patch + url: https://api.github.com/repos/packit/ogr/pulls/313 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.10.0 release + updated_at: '2020-01-28T14:05:46Z' + url: https://api.github.com/repos/packit/ogr/issues/313 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: Release-bot, it's time to work! + closed_at: '2020-01-27T11:51:57Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/312/comments + created_at: '2020-01-27T11:48:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/312/events + html_url: https://github.com/packit/ogr/issues/312 + id: 555523325 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/312/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NTU1MjMzMjU= + number: 312 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2020-01-27T11:51:57Z' + url: https://api.github.com/repos/packit/ogr/issues/312 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Consider also other filtering options:\r\n\r\nThe options are:\r\ + \nhttps://github.com/PyGithub/PyGithub/blob/master/github/Repository.py#L2172-L2195" + closed_at: '2020-01-24T19:51:49Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/308/comments + created_at: '2020-01-16T10:24:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/308/events + html_url: https://github.com/packit/ogr/issues/308 + id: 550712442 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/308/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NTA3MTI0NDI= + number: 308 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Support listing issues based on creator + updated_at: '2020-01-24T19:51:49Z' + url: https://api.github.com/repos/packit/ogr/issues/308 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-01-21T11:27:06Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/297/comments + created_at: '2019-12-17T08:10:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/297/events + html_url: https://github.com/packit/ogr/pull/297 + id: 538905049 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/297/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzUzOTcxMDUx + number: 297 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/297.diff + html_url: https://github.com/packit/ogr/pull/297 + patch_url: https://github.com/packit/ogr/pull/297.patch + url: https://api.github.com/repos/packit/ogr/pulls/297 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add method to list files + updated_at: '2020-01-21T11:27:06Z' + url: https://api.github.com/repos/packit/ogr/issues/297 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Fixes #245' + closed_at: '2020-01-03T08:43:56Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/300/comments + created_at: '2019-12-30T18:09:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/300/events + html_url: https://github.com/packit/ogr/pull/300 + id: 543964942 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/300/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzU4MTc5NDg3 + number: 300 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/300.diff + html_url: https://github.com/packit/ogr/pull/300 + patch_url: https://github.com/packit/ogr/pull/300.patch + url: https://api.github.com/repos/packit/ogr/pulls/300 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add resolution of failure of Pagure's project_create + updated_at: '2020-01-16T10:43:12Z' + url: https://api.github.com/repos/packit/ogr/issues/300 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2020-01-03T10:13:00Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/298/comments + created_at: '2019-12-19T21:12:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/298/events + html_url: https://github.com/packit/ogr/pull/298 + id: 540569497 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/298/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzU1MzYwNjcy + number: 298 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/298.diff + html_url: https://github.com/packit/ogr/pull/298 + patch_url: https://github.com/packit/ogr/pull/298.patch + url: https://api.github.com/repos/packit/ogr/pulls/298 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Setters for Issue/PR + updated_at: '2020-01-16T10:43:08Z' + url: https://api.github.com/repos/packit/ogr/issues/298 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "```\r\nName Stmts Miss Cover Missing\r\ + \n----------------------------------------------------------\r\nservices/github.py\ + \ 114 63 45% 17-19, 24-26, 30, 33-34, 41-42, 47, 51,\ + \ 58-61, 64, 67, 70, 73-79, 82-83, 86-87, 95-98, 108, 111, 114-115,\ + \ 118, 121, 124, 127-132, 135, 149, 170, 184, 193-203, 207-209, 212-213,\ + \ 216-217, 227, 230\r\nservices/gitlab.py 66 66 0%\ + \ 1-144\r\nservices/our_pagure.py 79 46 42% 33, 36-39,\ + \ 134-148, 160-176, 180-186, 249-256, 259-264, 267-270, 273, 276, 279-282,\ + \ 285-288, 291-294, 297-298\r\nutils.py 150 110\ + \ 27% 35-77, 82-83, 88-89, 94, 98-116, 120-130, 145-148, 163-165,\ + \ 169-176, 180-214, 219-248, 252, 260, 273\r\n```\r\n\r\nI know the\ + \ `gitlab` module is WIP, but the others deserve more tests IMHO" + closed_at: '2020-01-15T11:22:38Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/49/comments + created_at: '2019-03-26T14:47:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/49/events + html_url: https://github.com/packit/ogr/issues/49 + id: 425463412 + labels: + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/49/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MjU0NjM0MTI= + number: 49 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Modules with poor code coverage + updated_at: '2020-01-15T11:22:38Z' + url: https://api.github.com/repos/packit/ogr/issues/49 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "TLDR: Investigate if it is possible to reset PR/commit flags. (*added\ + \ by @lachmanfrantisek*)\r\n\r\n----\r\n\r\nI solved a problem with\ + \ reset Copr build statuses.\r\nLike can be seen here: https://github.com/packit-service/hello-world/pull/9\r\ + \n\r\nIt would be nice to look at the possibility if in case of the\ + \ pull request is not created by a collaborator to get rid of check\ + \ statuses. Like nothing is shown and the pull request can not be merged." + closed_at: '2020-01-13T09:38:06Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/133/comments + created_at: '2019-07-23T07:53:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/133/events + html_url: https://github.com/packit/ogr/issues/133 + id: 471540158 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: ff9990 + default: false + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + labels_url: https://api.github.com/repos/packit/ogr/issues/133/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NzE1NDAxNTg= + number: 133 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Look at possibility for reseting or get rid off checkes in GitHub + updated_at: '2020-01-13T09:38:06Z' + url: https://api.github.com/repos/packit/ogr/issues/133 + user: + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos + site_admin: false + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions + type: User + url: https://api.github.com/users/phracek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-01-09T08:17:00Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/305/comments + created_at: '2020-01-05T17:52:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/305/events + html_url: https://github.com/packit/ogr/pull/305 + id: 545446757 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/305/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzU5MzIyMjQw + number: 305 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/305.diff + html_url: https://github.com/packit/ogr/pull/305 + patch_url: https://github.com/packit/ogr/pull/305.patch + url: https://api.github.com/repos/packit/ogr/pulls/305 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'github: set repo & namespace when forking' + updated_at: '2020-01-09T08:40:00Z' + url: https://api.github.com/repos/packit/ogr/issues/305 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Fixes #303' + closed_at: '2020-01-06T08:18:34Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/304/comments + created_at: '2020-01-05T10:51:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/304/events + html_url: https://github.com/packit/ogr/pull/304 + id: 545401796 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/304/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzU5MjkwMzMz + number: 304 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/304.diff + html_url: https://github.com/packit/ogr/pull/304 + patch_url: https://github.com/packit/ogr/pull/304.patch + url: https://api.github.com/repos/packit/ogr/pulls/304 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement get_tags for GithubProject + updated_at: '2020-01-06T08:48:26Z' + url: https://api.github.com/repos/packit/ogr/issues/304 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\nipdb> git_project \ + \ \ + \ \r\n\r\n\r\nipdb> git_project.get_tags \ + \ \r\n>\r\n\r\nipdb> git_project.get_tags() \ + \ \r\n*** NotImplementedError\r\n```" + closed_at: '2020-01-06T08:18:34Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/303/comments + created_at: '2020-01-03T14:36:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/303/events + html_url: https://github.com/packit/ogr/issues/303 + id: 545018569 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/303/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NDUwMTg1Njk= + number: 303 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: get_tags is not implemented for GithubProject + updated_at: '2020-01-06T08:18:34Z' + url: https://api.github.com/repos/packit/ogr/issues/303 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "this means to use standard-test-roles to wrap our tests so they\ + \ can run when we create PRs on dist-git\r\n\r\nsee [python-docker's\ + \ test wrapper](https://src.fedoraproject.org/rpms/python-docker/blob/master/f/tests)\ + \ for more details" + closed_at: '2020-01-03T14:54:39Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/29/comments + created_at: '2019-03-01T17:18:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/29/events + html_url: https://github.com/packit/ogr/issues/29 + id: 416200836 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/29/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MTYyMDA4MzY= + number: 29 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: run our tests in Fedora CI + updated_at: '2020-01-05T17:00:32Z' + url: https://api.github.com/repos/packit/ogr/issues/29 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "During the implementation of setters for PR for Pagure (#298) I've\ + \ found out that Pagure's API requires title to be given (which seems\ + \ a bit odd, since why would you need to give title when you want to\ + \ update only description).\r\n\r\nWill fix in PR above, just letting\ + \ know about the bug." + closed_at: '2020-01-03T10:13:01Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/299/comments + created_at: '2019-12-26T21:35:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/299/events + html_url: https://github.com/packit/ogr/issues/299 + id: 542675897 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/299/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NDI2NzU4OTc= + number: 299 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Updating PullRequest info (Pagure) + updated_at: '2020-01-03T10:13:01Z' + url: https://api.github.com/repos/packit/ogr/issues/299 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: started porting upsint to ogr and realized that I can't get all + labels defined on a repo + closed_at: '2020-01-03T09:14:39Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/301/comments + created_at: '2020-01-02T12:24:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/301/events + html_url: https://github.com/packit/ogr/issues/301 + id: 544558708 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/301/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NDQ1NTg3MDg= + number: 301 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'RFE: get repo labels' + updated_at: '2020-01-03T09:14:39Z' + url: https://api.github.com/repos/packit/ogr/issues/301 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "When creating a project in Pagure and setting the namespace, we\ + \ get a general `not a valid choice`.\r\n\r\nIt would be useful to determine\ + \ these two possibilities:\r\n\r\n- non-existing namespace\r\n- no permissions\r\ + \n\r\n---\r\n\r\nThe follow-up to #242 ." + closed_at: '2020-01-03T08:43:55Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/245/comments + created_at: '2019-10-14T13:29:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/245/events + html_url: https://github.com/packit/ogr/issues/245 + id: 506654479 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/245/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MDY2NTQ0Nzk= + number: 245 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Determine the reason of project_create failure in Pagure namespace + updated_at: '2020-01-03T08:43:55Z' + url: https://api.github.com/repos/packit/ogr/issues/245 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.608186 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:00 GMT + ETag: W/"0db7da5a59ca36178f88d071c9c0dd6e25f44a577d75fc3a857b105d24854c7c" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7E0DB:1918873:6075DC1F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4851' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '149' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=11: + - metadata: + latency: 0.6162445545196533 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-12-16T14:39:27Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/296/comments + created_at: '2019-12-16T11:17:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/296/events + html_url: https://github.com/packit/ogr/pull/296 + id: 538347978 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/296/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzUzNTA4NTk4 + number: 296 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/296.diff + html_url: https://github.com/packit/ogr/pull/296 + patch_url: https://github.com/packit/ogr/pull/296.patch + url: https://api.github.com/repos/packit/ogr/pulls/296 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Regenerate gitlab tests after dep update + updated_at: '2019-12-16T14:40:17Z' + url: https://api.github.com/repos/packit/ogr/issues/296 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Change IntEnum to Enum\n\ + * Implement enum for CommitFlag states\n* Fix typos and add tests\n\ + * Implement flags for pull requests\n* Implement CommitFlag for services\n\ + * Add methods to abstract CommitFlag\n* Fix typo in comments\n* Move\ + \ deprecation to separate file\n* Fix backward compatibility on pull\ + \ requests\n* Change attribute comment to body on comments\n* Add backward\ + \ links to comments Closes #255\n* Implement editing comments\n* Return\ + \ smoke test\n* Increase version for packit propose-update\n* Implementation\ + \ of GitPython instead of calling subprocess\n* Fix remarks from review\n\ + * Fix tests\n* Fix small typos and add dummy parameters/attributes\n\ + * Rename pr_create to create_pr and pr_id to id\n* Implement static\ + \ methods for PRs\n* Move deprecated functions to base project and deprecate\ + \ them\n* Create read-only PullRequest class\n* Remove unused code,\ + \ refactor code, change name of method\n* Implement pull request for\ + \ Pagure\n* Implement pull request for Gitlab\n* Implement pull request\ + \ for Github\n* Implement base class for pull request\n* Add methods\ + \ to abstract PullRequest\n* Ignore smoke test\n* Add .fmf and setup\ + \ testing-farm\n* Rename deprecation decorator\n* Change deprecation\ + \ messages\n* Pass parameters to Issue functions explicitly\n* Update\ + \ deprecation warnings for Issue functions\n* Implement updating Issue\ + \ object for Pagure\n* Add tests for updating issue object\n* Deprecate\ + \ Issue functions and fix tests\n* Move issue create, get, get_list\ + \ to static methods\n* Update docstrings\n* Fix typos\n* Change get_labels\ + \ to property and add_labels to variable-length args\n* Create properties\ + \ for Issue and implement them\n* Move deprecated issue-related functions\ + \ to base class\n* Rename functions in Issue and move raw_issue/project\ + \ to abstract\n* Factor out `can_close_issue`\n* Implement separate\ + \ Issue for Pagure\n* Implement separate Issue for GitLab\n* Implement\ + \ separate Issue for GitHub\n* Add methods to abstract Issue and implement\ + \ BaseIssue\n* Remove unused import (AnyComment)\n* Factor out filtering\ + \ comments to only one method\n* Add methods to abstract Issue\n* Fis\ + \ integration tests. Change PersistentObjectStorage().is_write_mode\ + \ to PersistentObjectStorage().mode == StorageMode.write\n* Add requirements\ + \ to zuul yaml\n* Remove Deprecated from test env\n* Add Deprecated\ + \ to dependencies\n* Remove github_tweak to use upstream github function\n\ + * temporary integration test method PullRequest._pr_close_temp() removed\n\ + * GithbProject.pr_close() implemented, integration tests added\n* instegration\ + \ test splited, related function headers updated, precommit fixes\n\ + * pre-commit fixes\n* response file genrated\n* integration test added\n\ + * pre-commit fixes\n* github_pr_create_rework_250\n* Fix the path to\ + \ the packit tests\n* Use requre-purge to unify the dates and tags in\ + \ response files\n* Tweak the stale-bot config\n* throw exception when\ + \ repo not found\n* write bytes as bytes to file\n* fix changes with\ + \ type hint inheritance\n* update NoReturns\n* type hint changes\n*\ + \ type hint changes\n* improve typehints for abstract.py\n* improve\ + \ typehint coverage in utils.py\n* Update contributing text in README\n\ + * Add link to contribution guide to README\n* Fix mypy remarks in Pagure's\ + \ comments\n* Add config for stale bot\n* changes args to Any\n* type\ + \ hint changes\n* black format\n* improve typehints for exceptions.py\n\ + * Fix black formatting\n* improve typehints for parsing.py\n* Resolve\ + \ remarks from review\n* (#230) Refactor parsing raw_comment\n* Change\ + \ method name\n* (#230) Update constructors and factor out raw_comment\n\ + * Remove duplicit import\n* Use bond TypeVar for abstract comment typing\n\ + * (#230) Support services' Issue/PRComment creation as in superclass\n\ + * (#230) Added TODO for backward-link and added raw_comment to objects\n\ + * (#230) Pagure comments (PR, Issue) implementation\n* (#230) Keep GithubProject.pr_comment\ + \ return type as before\n* (#230) Gitlab comments (PR, Issue) implementation\n\ + * (#230) Github comments (PR, Issue) implementation\n* (#230) Refactor\ + \ abstract classes for comments\n* Use new format for requre\n* Add\ + \ rebase check to pre-commit\n* (#240) Add parameter to Gitlab to get\ + \ comments in right order\n* (#240) Add tests for filtering Issue/PR\ + \ comments by author\n* Fix order of Gitlab's PR comments\n* (#240)\ + \ Update tests after factoring out getting comments\n* (#240) Refactor\ + \ of pr/issue comments\n* (#240) Extend get_issue/pr_comments interface\ + \ of filtering by author\n* (#240) Update filter_comments support\n\ + * (#204) Add test for creating Pagure project in invalid namespace\n\ + * Add response for creating Pagure repo in the namespace\n* (#204) Add\ + \ project_create to PagureService and add tests for it\n* (#232) Finish\ + \ Gitlab tests\n* (#232) Pagure tests finished\n* (#232) Start regenerating\ + \ GitLab tests\n* (#232) Started regenerating tests for Pagure\n* Newline\ + \ added\n* (#232) Fix GitHub tests\n* (#232) Update fullname of calling\ + \ objects for GitHub\n* (#232) Regenerate factory test_data\n* (#232)\ + \ Fix mypy/flake8 errors for gitlab and pagure\n* Fix mypy errors for\ + \ github\n* (#232) Fix circular imports\n* (#232) Pagure split and __init__\n\ + * (#232) GitLab split and __init__\n* (#232) GitHub split and __init__\n\ + * Add reverse-dependency test of packit\n* prepare for rev dependency\ + \ testing, set project dir in case it not come from zuul\n* remove all\ + \ stuff what were moved to requre project\n* Add Developer Certificate\ + \ of Origin\n* (#233) Update imports in Gitlab tests\n* Recreate old\ + \ response files\n* use requre for storing data for tests\n* (#205)\ + \ Update responses to match updated PagureService.get_project\n* (#205)\ + \ Add test_data for Pagure.get_issue_comments\n* (#205) Implement Pagure.get_issue_comments\ + \ and add tests\n* (#205) Implement Gitlab.get_issue_comments and add\ + \ tests\n* Fix formatting\n* (#205) Add Githubproject.get_issue_comments\ + \ and tests for it\n* Fix formatting\n* (#220) Regenerate responses\ + \ + update broken test\n* (#220) Pass username to PagureProject in get_project\ + \ if not given\n* (#220) PagureProject.is_fork offline and add method\ + \ for API call\n* (#220) Regenerate responses and add test\n* (#220)\ + \ Make PagureProject.full_repo_name property offline\n\n\nYou can change\ + \ it by editing `CHANGELOG.md` in the root of this repository and pushing\ + \ to `0.9.0-release` branch before merging this PR.\nI didn't find any\ + \ files where `__version__` is set." + closed_at: '2019-12-06T13:29:05Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/291/comments + created_at: '2019-12-04T09:37:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/291/events + html_url: https://github.com/packit/ogr/pull/291 + id: 532560063 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/291/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ4Nzg0MjM1 + number: 291 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/291.diff + html_url: https://github.com/packit/ogr/pull/291 + patch_url: https://github.com/packit/ogr/pull/291.patch + url: https://api.github.com/repos/packit/ogr/pulls/291 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.9.0 release + updated_at: '2019-12-14T17:33:42Z' + url: https://api.github.com/repos/packit/ogr/issues/291 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Add trim commit flag descripttion to all implementations.' + closed_at: '2019-12-06T08:41:20Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/294/comments + created_at: '2019-12-05T09:15:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/294/events + html_url: https://github.com/packit/ogr/pull/294 + id: 533219952 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/294/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ5MzMyNDEx + number: 294 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/294.diff + html_url: https://github.com/packit/ogr/pull/294 + patch_url: https://github.com/packit/ogr/pull/294.patch + url: https://api.github.com/repos/packit/ogr/pulls/294 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Trim description of commit flag to abstract + updated_at: '2019-12-06T09:52:59Z' + url: https://api.github.com/repos/packit/ogr/issues/294 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "We are using `open` in the status enums, but `closed`.\r\n\r\n\ + Currently, we need to replace that for GitLab manually and GitHub probably\ + \ needs that fix as well. I am not sure about Pagure.\r\n\r\nIdeally,\ + \ we need to change our API, but we have some usages in other projects:\r\ + \n\r\n\r\n- [ ] packit\r\n - https://github.com/packit-service/packit/blob/master/tests/testsuite_basic/conftest.py#L114\ + \ (just a test)\r\n- [x] packit-service (no occurences found)\r\n- [\ + \ ] release-bot\r\n - https://github.com/user-cont/release-bot/blob/master/release_bot/github.py#L308" + closed_at: '2019-12-04T12:26:57Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/193/comments + created_at: '2019-09-11T14:03:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/193/events + html_url: https://github.com/packit/ogr/issues/193 + id: 492259504 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/193/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTIyNTk1MDQ= + number: 193 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Investigate 'open' x 'opened' status for Issues and PullRequests + updated_at: '2019-12-04T12:26:57Z' + url: https://api.github.com/repos/packit/ogr/issues/193 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Closes #193 ' + closed_at: '2019-12-04T12:25:00Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/293/comments + created_at: '2019-12-04T11:19:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/293/events + html_url: https://github.com/packit/ogr/pull/293 + id: 532619628 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/293/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ4ODM0MjE0 + number: 293 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/293.diff + html_url: https://github.com/packit/ogr/pull/293 + patch_url: https://github.com/packit/ogr/pull/293.patch + url: https://api.github.com/repos/packit/ogr/pulls/293 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Change statuses from `open` to `opened` + updated_at: '2019-12-04T12:26:08Z' + url: https://api.github.com/repos/packit/ogr/issues/293 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Allow creating sommit flags with commit state as a string.' + closed_at: '2019-12-04T11:17:22Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/292/comments + created_at: '2019-12-04T10:10:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/292/events + html_url: https://github.com/packit/ogr/pull/292 + id: 532578973 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/292/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ4Nzk5Njcy + number: 292 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/292.diff + html_url: https://github.com/packit/ogr/pull/292 + patch_url: https://github.com/packit/ogr/pull/292.patch + url: https://api.github.com/repos/packit/ogr/pulls/292 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix flags to be compatible with string states + updated_at: '2019-12-04T12:04:38Z' + url: https://api.github.com/repos/packit/ogr/issues/292 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: There was done a lot of work after the last release. Let's make + a new one! + closed_at: '2019-12-04T09:37:32Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/290/comments + created_at: '2019-12-04T09:32:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/290/events + html_url: https://github.com/packit/ogr/issues/290 + id: 532557330 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/290/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MzI1NTczMzA= + number: 290 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-12-04T09:37:32Z' + url: https://api.github.com/repos/packit/ogr/issues/290 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Fixes: #288 ' + closed_at: '2019-12-03T16:04:47Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/289/comments + created_at: '2019-12-03T15:07:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/289/events + html_url: https://github.com/packit/ogr/pull/289 + id: 532051771 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/289/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ4MzgyNjMw + number: 289 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/289.diff + html_url: https://github.com/packit/ogr/pull/289 + patch_url: https://github.com/packit/ogr/pull/289.patch + url: https://api.github.com/repos/packit/ogr/pulls/289 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix typo in comments + updated_at: '2019-12-04T09:27:03Z' + url: https://api.github.com/repos/packit/ogr/issues/289 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-12-03T12:36:59Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/287/comments + created_at: '2019-12-02T14:02:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/287/events + html_url: https://github.com/packit/ogr/pull/287 + id: 531147909 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/287/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ3NjQwMjEz + number: 287 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/287.diff + html_url: https://github.com/packit/ogr/pull/287 + patch_url: https://github.com/packit/ogr/pull/287.patch + url: https://api.github.com/repos/packit/ogr/pulls/287 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix backward compatibility on pull requests + updated_at: '2019-12-04T09:27:02Z' + url: https://api.github.com/repos/packit/ogr/issues/287 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- [x] add methods\r\n- [x] services' implementation\r\n- [x] enum\ + \ for statuses?\r\n- [x] PRs?\r\n - [x] tests\r\n\r\nComparison of\ + \ statuses:\r\n\r\nGitHub | GitLab | Pagure\r\n--- | --- | ---\r\n`pending`\ + \ | `pending` | `pending`\r\n`success` | `success` | `success`\r\n`failure`\ + \ | `failed` | `failure`\r\n`error` | `-` | `error`\r\n`-` | `canceled`\ + \ | `canceled`\r\n`-` | `running` | `-`" + closed_at: '2019-12-03T20:23:52Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/286/comments + created_at: '2019-11-30T20:18:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/286/events + html_url: https://github.com/packit/ogr/pull/286 + id: 530625724 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/286/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ3MjU2NjI2 + number: 286 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/286.diff + html_url: https://github.com/packit/ogr/pull/286 + patch_url: https://github.com/packit/ogr/pull/286.patch + url: https://api.github.com/repos/packit/ogr/pulls/286 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Commit flags + updated_at: '2019-12-04T09:27:02Z' + url: https://api.github.com/repos/packit/ogr/issues/286 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- [x] editing of comments\r\n- [x] backward-link to issue/PR\r\n\ + - [x] rename property `comment` to `body`\r\n editing comments works\ + \ only on `body`" + closed_at: '2019-12-03T11:21:57Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/285/comments + created_at: '2019-11-29T12:32:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/285/events + html_url: https://github.com/packit/ogr/pull/285 + id: 530323155 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/285/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ3MDI4OTMw + number: 285 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/285.diff + html_url: https://github.com/packit/ogr/pull/285 + patch_url: https://github.com/packit/ogr/pull/285.patch + url: https://api.github.com/repos/packit/ogr/pulls/285 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement editing comments and backward-link to Issue/PR + updated_at: '2019-12-04T09:27:02Z' + url: https://api.github.com/repos/packit/ogr/issues/285 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-11-20T14:23:47Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/279/comments + created_at: '2019-11-20T10:32:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/279/events + html_url: https://github.com/packit/ogr/pull/279 + id: 525714930 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/279/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQzMjgyNDg4 + number: 279 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/279.diff + html_url: https://github.com/packit/ogr/pull/279 + patch_url: https://github.com/packit/ogr/pull/279.patch + url: https://api.github.com/repos/packit/ogr/pulls/279 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add deprecation policy and dependency package + updated_at: '2019-12-04T09:27:02Z' + url: https://api.github.com/repos/packit/ogr/issues/279 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Closes #254 \r\n\r\n- [x] move PR-related functions from `Project`\ + \ to `PullRequest`\r\n - [x] `BasePullRequest`\r\n - [x] Github\r\n\ + \ - [x] Gitlab\r\n - [x] Pagure\r\n- [x] make `Project`'s methods\ + \ backward-compatible by calling new methods\r\n- [x] deprecation\r\n\ + \ - [x] move deprecated functions to base class\r\n - [x] deprecate\ + \ functions on `Project`\r\n- [x] properties\r\n- [x] fix tests\r\n\ + - [x] static methods for `get`, `create`, `list`\r\n- [x] update comments\ + \ (after refactor from Issue has been merged)\r\n- [x] check docstrings\r\ + \n- [x] `pr_create` -> update name" + closed_at: '2019-11-29T10:21:52Z' + comments: 17 + comments_url: https://api.github.com/repos/packit/ogr/issues/276/comments + created_at: '2019-11-16T21:01:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/276/events + html_url: https://github.com/packit/ogr/pull/276 + id: 523895740 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/276/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQxNzkxNzIw + number: 276 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/276.diff + html_url: https://github.com/packit/ogr/pull/276 + patch_url: https://github.com/packit/ogr/pull/276.patch + url: https://api.github.com/repos/packit/ogr/pulls/276 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Pull request class refactor + updated_at: '2019-12-04T09:27:01Z' + url: https://api.github.com/repos/packit/ogr/issues/276 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Closes #253\r\n\r\n- [x] move issue-related functions from `Project`\ + \ to `Issue`\r\n- [x] make `Project`'s methods backward-compatible by\ + \ calling new methods\r\n- [x] fix tests\r\n- [x] `__get_comment`, `get_issue_comments`\r\ + \n- [x] deprecate functions on `Project`\r\n- [x] check docstrings\r\ + \n- [x] update deprecation warnings" + closed_at: '2019-11-26T08:52:22Z' + comments: 24 + comments_url: https://api.github.com/repos/packit/ogr/issues/264/comments + created_at: '2019-11-04T11:23:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/264/events + html_url: https://github.com/packit/ogr/pull/264 + id: 517089572 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/264/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzM2MjI2MDM0 + number: 264 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/264.diff + html_url: https://github.com/packit/ogr/pull/264 + patch_url: https://github.com/packit/ogr/pull/264.patch + url: https://api.github.com/repos/packit/ogr/pulls/264 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Issue class refactor + updated_at: '2019-12-04T09:27:01Z' + url: https://api.github.com/repos/packit/ogr/issues/264 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Update annotation of `_from_raw_comment`' + closed_at: '2019-11-04T12:35:35Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/260/comments + created_at: '2019-10-27T17:27:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/260/events + html_url: https://github.com/packit/ogr/pull/260 + id: 512995963 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/260/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzMyODc1NTQ3 + number: 260 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/260.diff + html_url: https://github.com/packit/ogr/pull/260 + patch_url: https://github.com/packit/ogr/pull/260.patch + url: https://api.github.com/repos/packit/ogr/pulls/260 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'Comment: mypy' + updated_at: '2019-12-04T09:27:01Z' + url: https://api.github.com/repos/packit/ogr/issues/260 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Closes #230' + closed_at: '2019-10-23T13:09:59Z' + comments: 27 + comments_url: https://api.github.com/repos/packit/ogr/issues/249/comments + created_at: '2019-10-16T16:02:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/249/events + html_url: https://github.com/packit/ogr/pull/249 + id: 507947617 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/249/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI4ODM5NDg2 + number: 249 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/249.diff + html_url: https://github.com/packit/ogr/pull/249 + patch_url: https://github.com/packit/ogr/pull/249.patch + url: https://api.github.com/repos/packit/ogr/pulls/249 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Factor out Comment + updated_at: '2019-12-04T09:27:01Z' + url: https://api.github.com/repos/packit/ogr/issues/249 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Closes #240' + closed_at: '2019-10-15T10:49:50Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/243/comments + created_at: '2019-10-12T11:32:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/243/events + html_url: https://github.com/packit/ogr/pull/243 + id: 506175099 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/243/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI3NDU2NDQz + number: 243 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/243.diff + html_url: https://github.com/packit/ogr/pull/243 + patch_url: https://github.com/packit/ogr/pull/243.patch + url: https://api.github.com/repos/packit/ogr/pulls/243 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implementation of filtering PR/Issue comments by author + updated_at: '2019-12-04T09:27:00Z' + url: https://api.github.com/repos/packit/ogr/issues/243 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Closes #204' + closed_at: '2019-10-15T07:33:19Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/242/comments + created_at: '2019-10-11T11:05:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/242/events + html_url: https://github.com/packit/ogr/pull/242 + id: 505786917 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/242/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI3MTQ2NTgy + number: 242 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/242.diff + html_url: https://github.com/packit/ogr/pull/242 + patch_url: https://github.com/packit/ogr/pull/242.patch + url: https://api.github.com/repos/packit/ogr/pulls/242 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add project_create to PagureService and add tests for it + updated_at: '2019-12-04T09:27:00Z' + url: https://api.github.com/repos/packit/ogr/issues/242 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Fixes #232' + closed_at: '2019-10-11T06:36:16Z' + comments: 18 + comments_url: https://api.github.com/repos/packit/ogr/issues/236/comments + created_at: '2019-10-07T14:44:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/236/events + html_url: https://github.com/packit/ogr/pull/236 + id: 503499100 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/236/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI1MzM5NTg3 + number: 236 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/236.diff + html_url: https://github.com/packit/ogr/pull/236 + patch_url: https://github.com/packit/ogr/pull/236.patch + url: https://api.github.com/repos/packit/ogr/pulls/236 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Prepare file structure for object-specific methods + updated_at: '2019-12-04T09:27:00Z' + url: https://api.github.com/repos/packit/ogr/issues/236 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Fixes #233' + closed_at: '2019-10-07T11:02:38Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/234/comments + created_at: '2019-10-07T08:22:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/234/events + html_url: https://github.com/packit/ogr/pull/234 + id: 503300422 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/234/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI1MTgxMjU0 + number: 234 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/234.diff + html_url: https://github.com/packit/ogr/pull/234 + patch_url: https://github.com/packit/ogr/pull/234.patch + url: https://api.github.com/repos/packit/ogr/pulls/234 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Update imports in Gitlab tests + updated_at: '2019-12-04T09:27:00Z' + url: https://api.github.com/repos/packit/ogr/issues/234 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Closes #205\r\n\r\n- [x] `GithubProject.get_issue_comments`\r\n\ + \r\n- [x] `GitlabProject.get_issue_comments`\r\n\r\n- [x] `PagureProject.get_issue_comments`" + closed_at: '2019-10-03T14:35:15Z' + comments: 22 + comments_url: https://api.github.com/repos/packit/ogr/issues/228/comments + created_at: '2019-09-27T20:06:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/228/events + html_url: https://github.com/packit/ogr/pull/228 + id: 499627560 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/228/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzIyMzA4NzQy + number: 228 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/228.diff + html_url: https://github.com/packit/ogr/pull/228 + patch_url: https://github.com/packit/ogr/pull/228.patch + url: https://api.github.com/repos/packit/ogr/pulls/228 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implementation of get_issue_comments for projects + updated_at: '2019-12-04T09:26:59Z' + url: https://api.github.com/repos/packit/ogr/issues/228 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Closes #224' + closed_at: '2019-09-30T11:40:39Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/227/comments + created_at: '2019-09-27T10:16:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/227/events + html_url: https://github.com/packit/ogr/pull/227 + id: 499361462 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/227/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzIyMDk2ODIw + number: 227 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/227.diff + html_url: https://github.com/packit/ogr/pull/227 + patch_url: https://github.com/packit/ogr/pull/227.patch + url: https://api.github.com/repos/packit/ogr/pulls/227 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Factor out getting collaborators (GithubProject) + updated_at: '2019-12-04T09:26:59Z' + url: https://api.github.com/repos/packit/ogr/issues/227 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Fixes #220' + closed_at: '2019-10-02T09:17:18Z' + comments: 41 + comments_url: https://api.github.com/repos/packit/ogr/issues/226/comments + created_at: '2019-09-26T14:55:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/226/events + html_url: https://github.com/packit/ogr/pull/226 + id: 498940241 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/226/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzIxNzY0NTE1 + number: 226 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/226.diff + html_url: https://github.com/packit/ogr/pull/226 + patch_url: https://github.com/packit/ogr/pull/226.patch + url: https://api.github.com/repos/packit/ogr/pulls/226 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Make PagureProject.full_repo_name property offline + updated_at: '2019-12-04T09:26:59Z' + url: https://api.github.com/repos/packit/ogr/issues/226 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Closes #107' + closed_at: '2019-09-26T09:12:11Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/221/comments + created_at: '2019-09-25T14:42:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/221/events + html_url: https://github.com/packit/ogr/pull/221 + id: 498333159 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/221/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzIxMjg0ODI1 + number: 221 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/221.diff + html_url: https://github.com/packit/ogr/pull/221 + patch_url: https://github.com/packit/ogr/pull/221.patch + url: https://api.github.com/repos/packit/ogr/pulls/221 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Remove pull requests from issues in GitHub implementation + updated_at: '2019-12-04T09:26:59Z' + url: https://api.github.com/repos/packit/ogr/issues/221 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Closes #218\r\n\r\n- removes implementation from abstract class\r\ + \n- overrides it for Pagure projects that have optional namespace\r\n\ + - adds few basic tests" + closed_at: '2019-09-25T05:20:03Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/219/comments + created_at: '2019-09-24T09:35:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/219/events + html_url: https://github.com/packit/ogr/pull/219 + id: 497572530 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/219/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzIwNjc0OTk2 + number: 219 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/219.diff + html_url: https://github.com/packit/ogr/pull/219 + patch_url: https://github.com/packit/ogr/pull/219.patch + url: https://api.github.com/repos/packit/ogr/pulls/219 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: GitProject.full_repo_name + updated_at: '2019-12-04T09:26:58Z' + url: https://api.github.com/repos/packit/ogr/issues/219 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Closes #213\r\nSeems like it could be implemented in BaseGitProject.\r\ + \nNot quite sure about Pagure implementation, since I haven't found\ + \ any tests regarding `None` as namespace." + closed_at: '2019-09-24T08:53:16Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/217/comments + created_at: '2019-09-22T08:47:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/217/events + html_url: https://github.com/packit/ogr/pull/217 + id: 496750815 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/217/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzIwMDI1NDc1 + number: 217 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/217.diff + html_url: https://github.com/packit/ogr/pull/217 + patch_url: https://github.com/packit/ogr/pull/217.patch + url: https://api.github.com/repos/packit/ogr/pulls/217 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement GitProject.get_web_url() + updated_at: '2019-12-04T09:26:58Z' + url: https://api.github.com/repos/packit/ogr/issues/217 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "After there will be done these stuff:\r\n - [ ] https://github.com/packit-service/ogr/pull/201\ + \ will be merged\r\n - [ ] there will be fixed also ``packit`` to use\ + \ ``requre``\r\n\r\nthen remove all mocking stuff from this project" + closed_at: '2019-12-04T08:54:10Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/225/comments + created_at: '2019-09-26T13:04:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/225/events + html_url: https://github.com/packit/ogr/issues/225 + id: 498871887 + labels: + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/225/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTg4NzE4ODc= + number: 225 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: remove persistent storage + mocking from ogr after using requre + updated_at: '2019-12-04T08:54:17Z' + url: https://api.github.com/repos/packit/ogr/issues/225 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "The default behaviour should be:\r\n\r\n- running from fork:\r\n\ + \ - create pr from fork to upstream\r\n- running from upstream:\r\ + \n - create pr from upstream to upstream\r\n\r\nWe need to specify\ + \ correctly the username in `head` or use the correct pygithub object\ + \ to call the `create_pull` on.\r\n\r\n- Get inspired in packit: https://github.com/packit-service/packit/blob/master/packit/upstream.py#L190\r\ + \n- API docs: https://developer.github.com/v3/pulls/#create-a-pull-request\ + \ (`head` parameter)\r\n- Related pygithub method: https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_pull\r\ + \n\r\nAC:\r\n\r\n- [ ] check the existing workflow\r\n- [ ] fix the\ + \ username to support both workflows correctly\r\n- [ ] create tests\ + \ for both of them\r\n\r\n\r\n" + closed_at: '2019-12-04T08:50:38Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/250/comments + created_at: '2019-10-17T13:55:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/250/events + html_url: https://github.com/packit/ogr/issues/250 + id: 508493656 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/250/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MDg0OTM2NTY= + number: 250 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix createing pull requests in GitHub + updated_at: '2019-12-04T08:50:38Z' + url: https://api.github.com/repos/packit/ogr/issues/250 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Closes #281 \r\nAfter change in requre integration tests fails.\ + \ \r\nChange PersistentObjectStorage().is_write_mode to PersistentObjectStorage().mode\ + \ == StorageMode.write\r\n\r\nZuul allow to add relation between repos,\ + \ maybe this is a option to prevent that situation, but I don't know\ + \ how looks policy about that in packit-service. \r\n" + closed_at: '2019-11-25T12:33:59Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/282/comments + created_at: '2019-11-22T11:31:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/282/events + html_url: https://github.com/packit/ogr/pull/282 + id: 527144120 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/282/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ0NDc0MTIz + number: 282 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/282.diff + html_url: https://github.com/packit/ogr/pull/282 + patch_url: https://github.com/packit/ogr/pull/282.patch + url: https://api.github.com/repos/packit/ogr/pulls/282 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix integration tests + updated_at: '2019-12-03T16:14:58Z' + url: https://api.github.com/repos/packit/ogr/issues/282 + user: + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 + events_url: https://api.github.com/users/pawelkopka/events{/privacy} + followers_url: https://api.github.com/users/pawelkopka/followers + following_url: https://api.github.com/users/pawelkopka/following{/other_user} + gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/pawelkopka + id: 17784034 + login: pawelkopka + node_id: MDQ6VXNlcjE3Nzg0MDM0 + organizations_url: https://api.github.com/users/pawelkopka/orgs + received_events_url: https://api.github.com/users/pawelkopka/received_events + repos_url: https://api.github.com/users/pawelkopka/repos + site_admin: false + starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + type: User + url: https://api.github.com/users/pawelkopka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Any ideas how [this](https://sentry.io/organizations/red-hat-0p/issues/1369231585)\ + \ could have happen?\r\n\r\n```python\r\nAttributeError: 'GithubPRComment'\ + \ object has no attribute '_body'\r\n File \"packit_service/worker/tasks.py\"\ + , line 42, in process_message\r\n return SteveJobs().process_message(event=event,\ + \ topic=topic)\r\n File \"packit_service/worker/jobs.py\", line 249,\ + \ in process_message\r\n jobs_results[job_type] = handler.run_n_clean()\r\ + \n File \"packit_service/worker/handler.py\", line 177, in run_n_clean\r\ + \n return self.run()\r\n File \"packit_service/worker/fedmsg_handlers.py\"\ + , line 221, in run\r\n if not self.was_last_build_successful():\r\ + \n File \"packit_service/worker/fedmsg_handlers.py\", line 189, in\ + \ was_last_build_successful\r\n if \"Congratulations!\" in comment.comment:\r\ + \n File \"ogr/abstract.py\", line 78, in comment\r\n return self._body\r\ + \n```" + closed_at: '2019-12-03T16:04:47Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/288/comments + created_at: '2019-12-03T14:14:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/288/events + html_url: https://github.com/packit/ogr/issues/288 + id: 532014956 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/288/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MzIwMTQ5NTY= + number: 288 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'AttributeError: ''GithubPRComment'' object has no attribute ''_body''' + updated_at: '2019-12-03T16:04:47Z' + url: https://api.github.com/repos/packit/ogr/issues/288 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.615751 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:04 GMT + ETag: W/"e645a87efa8f13ab2abe87bb982c454bf7a0410bd86af8371af48859895c8dd0" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7E492:1918E24:6075DC23 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4836' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '164' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=12: + - metadata: + latency: 0.5153937339782715 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "`Comment` class should keep backward-link to parent, e.g. `Issue`\ + \ or `PullRequest`.\r\n\r\n- [x] Add parameter to constructor and getter\r\ + \n- [x] Keep link to `Issue`\r\n blocked by #253\r\n- [x] Keep link\ + \ to `PR`\r\n blocked by #254" + closed_at: '2019-12-03T11:21:59Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/255/comments + created_at: '2019-10-24T17:16:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/255/events + html_url: https://github.com/packit/ogr/issues/255 + id: 512074603 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/255/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MTIwNzQ2MDM= + number: 255 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Backward links on comments + updated_at: '2019-12-03T11:21:59Z' + url: https://api.github.com/repos/packit/ogr/issues/255 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Increase version for packit propose-update.' + closed_at: '2019-12-02T14:21:28Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/283/comments + created_at: '2019-11-28T08:24:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/283/events + html_url: https://github.com/packit/ogr/pull/283 + id: 529760830 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/283/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ2NTc1ODcw + number: 283 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/283.diff + html_url: https://github.com/packit/ogr/pull/283 + patch_url: https://github.com/packit/ogr/pull/283.patch + url: https://api.github.com/repos/packit/ogr/pulls/283 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Packit config update + updated_at: '2019-12-03T07:42:52Z' + url: https://api.github.com/repos/packit/ogr/issues/283 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "This PR contains possible solution of #178 \r\nCloses #178 " + closed_at: '2019-11-29T11:43:22Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/274/comments + created_at: '2019-11-14T09:46:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/274/events + html_url: https://github.com/packit/ogr/pull/274 + id: 522738918 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/274/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQwODc5MDI4 + number: 274 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/274.diff + html_url: https://github.com/packit/ogr/pull/274 + patch_url: https://github.com/packit/ogr/pull/274.patch + url: https://api.github.com/repos/packit/ogr/pulls/274 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implementation of GitPython instead of calling subprocess + updated_at: '2019-11-29T11:43:22Z' + url: https://api.github.com/repos/packit/ogr/issues/274 + user: + avatar_url: https://avatars.githubusercontent.com/u/35431035?v=4 + events_url: https://api.github.com/users/Hojang2/events{/privacy} + followers_url: https://api.github.com/users/Hojang2/followers + following_url: https://api.github.com/users/Hojang2/following{/other_user} + gists_url: https://api.github.com/users/Hojang2/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Hojang2 + id: 35431035 + login: Hojang2 + node_id: MDQ6VXNlcjM1NDMxMDM1 + organizations_url: https://api.github.com/users/Hojang2/orgs + received_events_url: https://api.github.com/users/Hojang2/received_events + repos_url: https://api.github.com/users/Hojang2/repos + site_admin: false + starred_url: https://api.github.com/users/Hojang2/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Hojang2/subscriptions + type: User + url: https://api.github.com/users/Hojang2 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Investigate existing libraries (example https://github.com/release-depot/git_wrapper).\r\ + \nDecide whether to use an existing library or move our [git-related\ + \ code](https://github.com/packit-service/ogr/blob/master/ogr/utils.py)\ + \ (check for all occurrences of \"git\" through the code) into a new\ + \ library.\r\nUse such library in ogr." + closed_at: '2019-11-29T11:43:21Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/178/comments + created_at: '2019-09-06T10:41:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/178/events + html_url: https://github.com/packit/ogr/issues/178 + id: 490258611 + labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/178/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTAyNTg2MTE= + number: 178 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Replace git-wrapping code with new or existing library + updated_at: '2019-11-29T11:43:21Z' + url: https://api.github.com/repos/packit/ogr/issues/178 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "Extend `PullRequest` class of methods.\r\n\r\n- [x] move PR-related\ + \ functions from `Project` to `PullRequest`\r\n - [x] `BasePullRequest`\r\ + \n - [x] Github\r\n - [x] Gitlab\r\n - [x] Pagure\r\n- [x] make `Project`'s\ + \ methods backward-compatible by calling new methods\r\n- [x] deprecation\r\ + \n - [x] move deprecated functions to base class\r\n - [x] deprecate\ + \ functions on `Project`\r\n- [x] properties\r\n- [x] fix tests\r\n\r\ + \nPart of #86\r\nBlocked by #121" + closed_at: '2019-11-29T10:21:52Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/254/comments + created_at: '2019-10-24T17:14:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/254/events + html_url: https://github.com/packit/ogr/issues/254 + id: 512073698 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/254/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MTIwNzM2OTg= + number: 254 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: PullRequest class refactor + updated_at: '2019-11-29T10:21:52Z' + url: https://api.github.com/repos/packit/ogr/issues/254 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-11-28T10:13:00Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/284/comments + created_at: '2019-11-28T10:06:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/284/events + html_url: https://github.com/packit/ogr/pull/284 + id: 529812923 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/284/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ2NjE4MjQ5 + number: 284 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/284.diff + html_url: https://github.com/packit/ogr/pull/284 + patch_url: https://github.com/packit/ogr/pull/284.patch + url: https://api.github.com/repos/packit/ogr/pulls/284 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Do not merge - test PR + updated_at: '2019-11-28T10:13:00Z' + url: https://api.github.com/repos/packit/ogr/issues/284 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Add .fmf and setup testing-farm.\r\n\r\n---\r\n\r\nTODO:\r\n\ + - [x] add some real tests" + closed_at: '2019-11-28T08:22:05Z' + comments: 18 + comments_url: https://api.github.com/repos/packit/ogr/issues/278/comments + created_at: '2019-11-19T12:06:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/278/events + html_url: https://github.com/packit/ogr/pull/278 + id: 524968144 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/278/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQyNjQ1NDE1 + number: 278 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/278.diff + html_url: https://github.com/packit/ogr/pull/278 + patch_url: https://github.com/packit/ogr/pull/278.patch + url: https://api.github.com/repos/packit/ogr/pulls/278 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Setup testing farm + updated_at: '2019-11-28T10:11:46Z' + url: https://api.github.com/repos/packit/ogr/issues/278 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Figure out a deprecated strategy for ogr, get inspired by packit:\ + \ https://packit.dev/ [or django, ansible].\r\n\r\n- [x] documentation\r\ + \n- [x] solution for method/classes" + closed_at: '2019-11-27T12:02:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/121/comments + created_at: '2019-07-16T11:54:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/121/events + html_url: https://github.com/packit/ogr/issues/121 + id: 468611036 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/121/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Njg2MTEwMzY= + number: 121 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Deprecation policy + updated_at: '2019-11-27T12:02:53Z' + url: https://api.github.com/repos/packit/ogr/issues/121 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "Extend `Issue` class of methods.\r\n\r\n- [x] move issue-related\ + \ functions from `Project` to `Issue`\r\n- [x] make `Project`'s methods\ + \ backward-compatible by calling new methods\r\n- [x] deprecate functions\ + \ on `Project`\r\n- [x] separate all issue-related tests if needed\r\ + \n- [x] `__get_comment`, `get_issue_comments`\r\n\r\nPart of #86\r\n\ + Blocked by #121" + closed_at: '2019-11-26T08:52:22Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/253/comments + created_at: '2019-10-24T17:13:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/253/events + html_url: https://github.com/packit/ogr/issues/253 + id: 512073255 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/253/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MTIwNzMyNTU= + number: 253 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Issue class refactor + updated_at: '2019-11-26T08:52:22Z' + url: https://api.github.com/repos/packit/ogr/issues/253 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "After change in requre integrations tests, trying call property\ + \ _is_write_mode_ .\r\nProbably this _PersistentObjectStorage().is_write_mode_\ + \ need to be change to _PersistentObjectStorage().mode == StorageMode.write_\r\ + \n\r\n\r\nError:\r\n`AttributeError: 'PersistentObjectStorage' object\ + \ has no attribute 'is_write_mode'`" + closed_at: '2019-11-25T12:33:59Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/281/comments + created_at: '2019-11-22T11:06:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/281/events + html_url: https://github.com/packit/ogr/issues/281 + id: 527132897 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/281/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MjcxMzI4OTc= + number: 281 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Integrations tests fails afters change in requre + updated_at: '2019-11-25T12:33:59Z' + url: https://api.github.com/repos/packit/ogr/issues/281 + user: + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 + events_url: https://api.github.com/users/pawelkopka/events{/privacy} + followers_url: https://api.github.com/users/pawelkopka/followers + following_url: https://api.github.com/users/pawelkopka/following{/other_user} + gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/pawelkopka + id: 17784034 + login: pawelkopka + node_id: MDQ6VXNlcjE3Nzg0MDM0 + organizations_url: https://api.github.com/users/pawelkopka/orgs + received_events_url: https://api.github.com/users/pawelkopka/received_events + repos_url: https://api.github.com/users/pawelkopka/repos + site_admin: false + starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + type: User + url: https://api.github.com/users/pawelkopka + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/eliskasl/received_events + repos_url: https://api.github.com/users/eliskasl/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/eliskasl/received_events + repos_url: https://api.github.com/users/eliskasl/repos + 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 + author_association: CONTRIBUTOR + body: "https://github.com/PyGithub/PyGithub/pull/1135 is now merged\r\n\ + \r\nUse the code above to initiate GitHubService, related code (which\ + \ we are using in the meantime):\r\n\r\npretty much drop this:\r\nhttps://github.com/packit-service/ogr/blob/253e93bc87c079d0cd8f3dc87fc5e11f5078e53b/ogr/services/github_tweak.py#L11\r\ + \n\r\nUse the newly added functionality in pygithub here:\r\nhttps://github.com/packit-service/ogr/blob/5729e29cb4e5bea7eb6ed68e1c573ca7f2d86051/ogr/factory.py#L142\r\ + \n\r\nAlso please write a test case for this." + closed_at: '2019-11-20T15:17:22Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/270/comments + created_at: '2019-06-20T09:29:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/270/events + html_url: https://github.com/packit/ogr/issues/270 + id: 521607861 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/270/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MjE2MDc4NjE= + number: 270 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'get installation ID: use code from pygithub once a new release + is available' + updated_at: '2019-11-20T15:17:22Z' + url: https://api.github.com/repos/packit/ogr/issues/270 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "After PR(https://github.com/PyGithub/PyGithub/pull/1135) merged\ + \ github_tweak can be remove and use get_installation from PyGithub.\r\ + \n\r\nCloses #178" + closed_at: '2019-11-19T08:51:59Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/277/comments + created_at: '2019-11-18T14:11:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/277/events + html_url: https://github.com/packit/ogr/pull/277 + id: 524392477 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/277/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQyMTc1NDg2 + number: 277 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/277.diff + html_url: https://github.com/packit/ogr/pull/277 + patch_url: https://github.com/packit/ogr/pull/277.patch + url: https://api.github.com/repos/packit/ogr/pulls/277 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Remove github_tweak to use upstream github function + updated_at: '2019-11-19T08:51:59Z' + url: https://api.github.com/repos/packit/ogr/issues/277 + user: + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 + events_url: https://api.github.com/users/pawelkopka/events{/privacy} + followers_url: https://api.github.com/users/pawelkopka/followers + following_url: https://api.github.com/users/pawelkopka/following{/other_user} + gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/pawelkopka + id: 17784034 + login: pawelkopka + node_id: MDQ6VXNlcjE3Nzg0MDM0 + organizations_url: https://api.github.com/users/pawelkopka/orgs + received_events_url: https://api.github.com/users/pawelkopka/received_events + repos_url: https://api.github.com/users/pawelkopka/repos + site_admin: false + starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + type: User + url: https://api.github.com/users/pawelkopka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-11-18T12:45:03Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/275/comments + created_at: '2019-11-14T11:29:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/275/events + html_url: https://github.com/packit/ogr/pull/275 + id: 522798569 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/275/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQwOTI0NzU4 + number: 275 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/275.diff + html_url: https://github.com/packit/ogr/pull/275 + patch_url: https://github.com/packit/ogr/pull/275.patch + url: https://api.github.com/repos/packit/ogr/pulls/275 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: temporary integration test method PullRequest._pr_close_temp() + removed + updated_at: '2019-11-18T13:00:09Z' + url: https://api.github.com/repos/packit/ogr/issues/275 + user: + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos + site_admin: false + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + type: User + url: https://api.github.com/users/sakalosj + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '#250 ' + closed_at: '2019-11-14T08:21:22Z' + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/269/comments + created_at: '2019-11-10T21:17:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/269/events + html_url: https://github.com/packit/ogr/pull/269 + id: 520658857 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/269/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzM5MTkxOTQw + number: 269 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/269.diff + html_url: https://github.com/packit/ogr/pull/269 + patch_url: https://github.com/packit/ogr/pull/269.patch + url: https://api.github.com/repos/packit/ogr/pulls/269 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: github_pr_create_rework_250 + updated_at: '2019-11-14T10:46:21Z' + url: https://api.github.com/repos/packit/ogr/issues/269 + user: + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos + site_admin: false + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + type: User + url: https://api.github.com/users/sakalosj + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\r\n\r\ni have implemented GithubProject.pr_close(). integration\ + \ test included. Working on unit test." + closed_at: '2019-11-14T10:10:01Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/273/comments + created_at: '2019-11-13T20:19:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/273/events + html_url: https://github.com/packit/ogr/pull/273 + id: 522450593 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/273/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQwNjQ5Mzc2 + number: 273 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/273.diff + html_url: https://github.com/packit/ogr/pull/273 + patch_url: https://github.com/packit/ogr/pull/273.patch + url: https://api.github.com/repos/packit/ogr/pulls/273 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: implement GithubProject.pr_close() + updated_at: '2019-11-14T10:10:01Z' + url: https://api.github.com/repos/packit/ogr/issues/273 + user: + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos + site_admin: false + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + type: User + url: https://api.github.com/users/sakalosj + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Fix the path to the packit tests.' + closed_at: '2019-11-13T21:58:53Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/272/comments + created_at: '2019-11-13T15:23:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/272/events + html_url: https://github.com/packit/ogr/pull/272 + id: 522292170 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/272/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQwNTE5Mjg0 + number: 272 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/272.diff + html_url: https://github.com/packit/ogr/pull/272 + patch_url: https://github.com/packit/ogr/pull/272.patch + url: https://api.github.com/repos/packit/ogr/pulls/272 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix ogr rev dep tests + updated_at: '2019-11-13T21:58:57Z' + url: https://api.github.com/repos/packit/ogr/issues/272 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Use requre-purge to unify the dates and tags in response files.\r\ + \n\r\n\r\nTODO:\r\n\r\n- [x] add to pre-commit and run on all changed\ + \ yaml files (pre-commit hook created in the requre repo)\r\n- [x] check\ + \ other possible values to purge (defined in the [requre pre-commit-hook\ + \ config](https://github.com/packit-service/requre/blob/master/.pre-commit-hooks.yaml))\r\ + \n- [x] Makefile target running cleanup on all files." + closed_at: '2019-11-12T07:51:34Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/266/comments + created_at: '2019-11-06T09:59:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/266/events + html_url: https://github.com/packit/ogr/pull/266 + id: 518363112 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/266/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzM3MjcwODQ5 + number: 266 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/266.diff + html_url: https://github.com/packit/ogr/pull/266 + patch_url: https://github.com/packit/ogr/pull/266.patch + url: https://api.github.com/repos/packit/ogr/pulls/266 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Requre purge + updated_at: '2019-11-12T08:05:45Z' + url: https://api.github.com/repos/packit/ogr/issues/266 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Tweak the stale-bot config.' + closed_at: '2019-11-11T13:51:55Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/268/comments + created_at: '2019-11-06T13:57:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/268/events + html_url: https://github.com/packit/ogr/pull/268 + id: 518489380 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/268/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzM3Mzc0NzAw + number: 268 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/268.diff + html_url: https://github.com/packit/ogr/pull/268 + patch_url: https://github.com/packit/ogr/pull/268.patch + url: https://api.github.com/repos/packit/ogr/pulls/268 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Stale-bot config update + updated_at: '2019-11-11T14:11:04Z' + url: https://api.github.com/repos/packit/ogr/issues/268 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "they have a file called ogr.py:\r\n```\r\n$ rpm -ql python3-gdal\ + \ | grep ogr\r\n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.opt-1.pyc\r\ + \n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.pyc\r\ + \n/usr/lib64/python3.7/site-packages/ogr.py\r\n/usr/lib64/python3.7/site-packages/osgeo/__pycache__/ogr.cpython-37.opt-1.pyc\r\ + \n/usr/lib64/python3.7/site-packages/osgeo/__pycache__/ogr.cpython-37.pyc\r\ + \n/usr/lib64/python3.7/site-packages/osgeo/_ogr.cpython-37m-x86_64-linux-gnu.so\r\ + \n/usr/lib64/python3.7/site-packages/osgeo/ogr.py\r\n/usr/share/doc/python3-gdal/samples/gcps2ogr.py\r\ + \n/usr/share/doc/python3-gdal/samples/ogr2ogr.py\r\n/usr/share/doc/python3-gdal/samples/ogr2vrt.py\r\ + \n/usr/share/doc/python3-gdal/samples/ogr_build_junction_table.py\r\n\ + /usr/share/doc/python3-gdal/samples/ogr_dispatch.py\r\n/usr/share/doc/python3-gdal/samples/ogr_layer_algebra.py\r\ + \n/usr/share/doc/python3-gdal/samples/ogrinfo.py\r\n/usr/share/doc/python3-gdal/samples/ogrupdate.py\r\ + \n```\r\n\r\nSo now that I installed python3-gdal, I can't use ogr anymore:\r\ + \n```\r\n$ ipython3\r\nPython 3.7.4 (default, Jul 9 2019, 16:32:37)\ + \ \r\nType 'copyright', 'credits' or 'license' for more information\r\ + \nIPython 7.2.0 -- An enhanced Interactive Python. Type '?' for help.\r\ + \nfrException reporting mode: Verbose\r\n\r\nIn [1]: from ogr import\ + \ services \r\n---------------------------------------------------------------------------\r\ + \nImportError Traceback (most recent call\ + \ last)\r\n in \r\n----> 1 from\ + \ ogr import services\r\n global ogr = undefined\r\n global\ + \ services = undefined\r\n\r\nImportError: cannot import name 'services'\ + \ from 'ogr' (/usr/lib64/python3.7/site-packages/ogr.py)\r\n```\r\n\r\ + \nNo idea how to fix this.\r\n\r\nWTF\r\n" + closed_at: '2019-11-11T14:00:21Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/139/comments + created_at: '2019-07-31T09:54:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/139/events + html_url: https://github.com/packit/ogr/issues/139 + id: 475047644 + labels: + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker + labels_url: https://api.github.com/repos/packit/ogr/issues/139/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NzUwNDc2NDQ= + number: 139 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: installing python3-gdal breaks ogr + updated_at: '2019-11-11T14:00:21Z' + url: https://api.github.com/repos/packit/ogr/issues/139 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Aims to remove any strict MyPy errors from the utils.py file, relating + to ticket #251 ' + closed_at: '2019-11-05T07:49:43Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/259/comments + created_at: '2019-10-26T20:18:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/259/events + html_url: https://github.com/packit/ogr/pull/259 + id: 512880678 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/259/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzk4MjAw + number: 259 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/259.diff + html_url: https://github.com/packit/ogr/pull/259 + patch_url: https://github.com/packit/ogr/pull/259.patch + url: https://api.github.com/repos/packit/ogr/pulls/259 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: improve typehint coverage in utils.py + updated_at: '2019-11-07T07:16:34Z' + url: https://api.github.com/repos/packit/ogr/issues/259 + user: + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos + site_admin: false + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions + type: User + url: https://api.github.com/users/svenharris + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: Make it possible to clear check status on PR (optionally commit). + closed_at: '2019-11-06T11:37:33Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/267/comments + created_at: '2019-11-06T11:36:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/267/events + html_url: https://github.com/packit/ogr/issues/267 + id: 518415970 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/267/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MTg0MTU5NzA= + number: 267 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Support for clearing checks + updated_at: '2019-11-06T11:37:33Z' + url: https://api.github.com/repos/packit/ogr/issues/267 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'As part of issue #251 update type hinting within the abstract.py + file such that there are no mypy errors for that file' + closed_at: '2019-11-05T11:05:30Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/258/comments + created_at: '2019-10-26T19:26:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/258/events + html_url: https://github.com/packit/ogr/pull/258 + id: 512875119 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/258/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzk0NDEy + number: 258 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/258.diff + html_url: https://github.com/packit/ogr/pull/258 + patch_url: https://github.com/packit/ogr/pull/258.patch + url: https://api.github.com/repos/packit/ogr/pulls/258 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Improve type hint coverage in abstract.py + updated_at: '2019-11-05T12:37:31Z' + url: https://api.github.com/repos/packit/ogr/issues/258 + user: + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos + site_admin: false + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions + type: User + url: https://api.github.com/users/svenharris + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Fixes #165\r\n\r\n*edited by @lachmanfrantisek to close that issue\ + \ on merging*" + closed_at: '2019-11-04T13:59:19Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/166/comments + created_at: '2019-09-06T01:43:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/166/events + html_url: https://github.com/packit/ogr/pull/166 + id: 490086601 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + labels_url: https://api.github.com/repos/packit/ogr/issues/166/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE0NzYyMzA5 + number: 166 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/166.diff + html_url: https://github.com/packit/ogr/pull/166 + patch_url: https://github.com/packit/ogr/pull/166.patch + url: https://api.github.com/repos/packit/ogr/pulls/166 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Update and link the contribution guide in README + updated_at: '2019-11-04T13:59:19Z' + url: https://api.github.com/repos/packit/ogr/issues/166 + user: + avatar_url: https://avatars.githubusercontent.com/u/19755484?v=4 + events_url: https://api.github.com/users/RomaneGreen/events{/privacy} + followers_url: https://api.github.com/users/RomaneGreen/followers + following_url: https://api.github.com/users/RomaneGreen/following{/other_user} + gists_url: https://api.github.com/users/RomaneGreen/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/RomaneGreen + id: 19755484 + login: RomaneGreen + node_id: MDQ6VXNlcjE5NzU1NDg0 + organizations_url: https://api.github.com/users/RomaneGreen/orgs + received_events_url: https://api.github.com/users/RomaneGreen/received_events + repos_url: https://api.github.com/users/RomaneGreen/repos + site_admin: false + starred_url: https://api.github.com/users/RomaneGreen/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/RomaneGreen/subscriptions + type: User + url: https://api.github.com/users/RomaneGreen + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Add link to contribution guide to README. + + - Rebased version of #166.' + closed_at: '2019-11-04T13:56:09Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/265/comments + created_at: '2019-11-04T12:48:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/265/events + html_url: https://github.com/packit/ogr/pull/265 + id: 517129326 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/265/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzM2MjU4MjI3 + number: 265 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/265.diff + html_url: https://github.com/packit/ogr/pull/265 + patch_url: https://github.com/packit/ogr/pull/265.patch + url: https://api.github.com/repos/packit/ogr/pulls/265 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'Link to contribution guide (rebased version of #166)' + updated_at: '2019-11-04T13:59:00Z' + url: https://api.github.com/repos/packit/ogr/issues/265 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: '' + closed_at: '2019-11-04T13:58:31Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/244/comments + created_at: '2019-10-12T13:08:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/244/events + html_url: https://github.com/packit/ogr/pull/244 + id: 506185012 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/244/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI3NDYzMzkw + number: 244 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/244.diff + html_url: https://github.com/packit/ogr/pull/244 + patch_url: https://github.com/packit/ogr/pull/244.patch + url: https://api.github.com/repos/packit/ogr/pulls/244 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add the add_to_collaborators method to abstract.GitProject + updated_at: '2019-11-04T13:58:31Z' + url: https://api.github.com/repos/packit/ogr/issues/244 + user: + avatar_url: https://avatars.githubusercontent.com/u/23198051?v=4 + events_url: https://api.github.com/users/HECTOPK/events{/privacy} + followers_url: https://api.github.com/users/HECTOPK/followers + following_url: https://api.github.com/users/HECTOPK/following{/other_user} + gists_url: https://api.github.com/users/HECTOPK/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/HECTOPK + id: 23198051 + login: HECTOPK + node_id: MDQ6VXNlcjIzMTk4MDUx + organizations_url: https://api.github.com/users/HECTOPK/orgs + received_events_url: https://api.github.com/users/HECTOPK/received_events + repos_url: https://api.github.com/users/HECTOPK/repos + site_admin: false + starred_url: https://api.github.com/users/HECTOPK/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/HECTOPK/subscriptions + type: User + url: https://api.github.com/users/HECTOPK + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "The used config is the example one from the app page:\r\nhttps://github.com/apps/stale/" + closed_at: '2019-11-01T10:47:23Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/262/comments + created_at: '2019-10-31T15:18:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/262/events + html_url: https://github.com/packit/ogr/pull/262 + id: 515517121 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/262/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzM0OTY3Mzcy + number: 262 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/262.diff + html_url: https://github.com/packit/ogr/pull/262 + patch_url: https://github.com/packit/ogr/pull/262.patch + url: https://api.github.com/repos/packit/ogr/pulls/262 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add config for stale bot + updated_at: '2019-11-01T10:48:02Z' + url: https://api.github.com/repos/packit/ogr/issues/262 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'This pull request intends to fix the strict mypy errors in the + exceptions.py file as part of #251. Not sure if the types within the + dictionary (str, str) are consistent with how this is used as couldn''t + see any instances in the codebase where this error is raised with the + kwargs filled in.' + closed_at: '2019-10-31T19:36:13Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/256/comments + created_at: '2019-10-26T18:24:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/256/events + html_url: https://github.com/packit/ogr/pull/256 + id: 512868698 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/256/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzg5ODUy + number: 256 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/256.diff + html_url: https://github.com/packit/ogr/pull/256 + patch_url: https://github.com/packit/ogr/pull/256.patch + url: https://api.github.com/repos/packit/ogr/pulls/256 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Improve typehints for exceptions.py + updated_at: '2019-10-31T19:36:13Z' + url: https://api.github.com/repos/packit/ogr/issues/256 + user: + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos + site_admin: false + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions + type: User + url: https://api.github.com/users/svenharris + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'As part of issue #251 improve the typehinting within the repo. + This pull request aims to fix the type hints in the parsing.py file.' + closed_at: '2019-10-31T17:38:33Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/257/comments + created_at: '2019-10-26T18:31:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/257/events + html_url: https://github.com/packit/ogr/pull/257 + id: 512869415 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/257/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzkwMzc2 + number: 257 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/257.diff + html_url: https://github.com/packit/ogr/pull/257 + patch_url: https://github.com/packit/ogr/pull/257.patch + url: https://api.github.com/repos/packit/ogr/pulls/257 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: improve typehints for parsing.py + updated_at: '2019-10-31T18:15:49Z' + url: https://api.github.com/repos/packit/ogr/issues/257 + user: + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos + site_admin: false + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions + type: User + url: https://api.github.com/users/svenharris + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Part of #86\r\n\r\nStructure of classes:\r\n\r\n* _Comment_\r\n\ + \ * _IssueComment_\r\n * GithubIssueComment\r\n * GitlabIssueComment\r\ + \n * PagureIssueComment\r\n * _PRComment_\r\n * GithubPRComment\r\ + \n * GitlabPRComment\r\n * PagurePRComment\r\n\r\nsuggested by\ + \ @lachmanfrantisek in #228\r\n\r\n* [x] Create a `Comment` abstract\ + \ class\r\n* [x] Implement base class for `Comment`\r\n* [x] Implementation\ + \ of services\r\n * [x] Github\r\n * [x] Gitlab\r\n * [x] Pagure\r\ + \n* [x] Update interface to include function for returning `Comment`\ + \ object\r\n * [x] Deprecate functions (`*Project`) manipulating with\ + \ comments (#121)\r\n* [ ] Remove `Comment = TypeVar('Comment', IssueComment,\ + \ PRComment)`\r\n* [ ] Make service-specific `__str__` to be compatible\ + \ with parent's constructor\r\n* [ ] Decide return types for services\ + \ `PRComment` vs `GithubPRComment`\r\n\r\nMaybe the implementation for\ + \ specific service could take the `raw_comment` in constructor?" + closed_at: '2019-10-23T13:09:59Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/230/comments + created_at: '2019-10-01T17:40:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/230/events + html_url: https://github.com/packit/ogr/issues/230 + id: 501044775 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/230/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MDEwNDQ3NzU= + number: 230 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Factor out Comment + updated_at: '2019-10-23T13:09:59Z' + url: https://api.github.com/repos/packit/ogr/issues/230 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'I have added # type: ignore at the beginning of each python file.' + closed_at: '2019-10-23T07:32:14Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/252/comments + created_at: '2019-10-22T19:08:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/252/events + html_url: https://github.com/packit/ogr/pull/252 + id: 510850860 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/252/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzMxMTUyNDg0 + number: 252 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/252.diff + html_url: https://github.com/packit/ogr/pull/252 + patch_url: https://github.com/packit/ogr/pull/252.patch + url: https://api.github.com/repos/packit/ogr/pulls/252 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'Added # type: ignore ' + updated_at: '2019-10-23T07:32:14Z' + url: https://api.github.com/repos/packit/ogr/issues/252 + user: + avatar_url: https://avatars.githubusercontent.com/u/42462649?v=4 + events_url: https://api.github.com/users/maniis/events{/privacy} + followers_url: https://api.github.com/users/maniis/followers + following_url: https://api.github.com/users/maniis/following{/other_user} + gists_url: https://api.github.com/users/maniis/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/maniis + id: 42462649 + login: maniis + node_id: MDQ6VXNlcjQyNDYyNjQ5 + organizations_url: https://api.github.com/users/maniis/orgs + received_events_url: https://api.github.com/users/maniis/received_events + repos_url: https://api.github.com/users/maniis/repos + site_admin: false + starred_url: https://api.github.com/users/maniis/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/maniis/subscriptions + type: User + url: https://api.github.com/users/maniis + _next: null + elapsed: 0.51491 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:06 GMT + ETag: W/"283f9c5ab9d9ebf6fdb68ff42c45a5e4b101714aee58ceb992427c03d6c95f1e" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7E67A:191910A:6075DC25 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4830' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '170' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=13: + - metadata: + latency: 0.7563488483428955 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Use new format for requre.' + closed_at: '2019-10-21T14:17:11Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/246/comments + created_at: '2019-10-15T10:46:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/246/events + html_url: https://github.com/packit/ogr/pull/246 + id: 507162669 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/246/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI4MjAyNTY5 + number: 246 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/246.diff + html_url: https://github.com/packit/ogr/pull/246 + patch_url: https://github.com/packit/ogr/pull/246.patch + url: https://api.github.com/repos/packit/ogr/pulls/246 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Use new requre api + updated_at: '2019-10-21T14:22:24Z' + url: https://api.github.com/repos/packit/ogr/issues/246 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Test for https://github.com/packit-service/packit-service/pull/164 + + + - should pass' + closed_at: '2019-10-21T13:52:54Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/247/comments + created_at: '2019-10-16T10:40:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/247/events + html_url: https://github.com/packit/ogr/pull/247 + id: 507767488 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/247/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI4NjkwNjU1 + number: 247 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/247.diff + html_url: https://github.com/packit/ogr/pull/247 + patch_url: https://github.com/packit/ogr/pull/247.patch + url: https://api.github.com/repos/packit/ogr/pulls/247 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add rebase check to pre-commit (pass) + updated_at: '2019-10-21T13:53:00Z' + url: https://api.github.com/repos/packit/ogr/issues/247 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Test for https://github.com/packit-service/packit-service/pull/164 + + + - should fail' + closed_at: '2019-10-21T13:10:47Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/248/comments + created_at: '2019-10-16T10:41:07Z' + events_url: https://api.github.com/repos/packit/ogr/issues/248/events + html_url: https://github.com/packit/ogr/pull/248 + id: 507767766 + labels: + - color: dd5f74 + default: false + description: Work in progress. + id: 1432779248 + name: do-not-merge + node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 + url: https://api.github.com/repos/packit/ogr/labels/do-not-merge + - color: e4e669 + default: true + description: This doesn't seem right. + id: 1160311267 + name: invalid + node_id: MDU6TGFiZWwxMTYwMzExMjY3 + url: https://api.github.com/repos/packit/ogr/labels/invalid + labels_url: https://api.github.com/repos/packit/ogr/issues/248/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI4NjkwODg5 + number: 248 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/248.diff + html_url: https://github.com/packit/ogr/pull/248 + patch_url: https://github.com/packit/ogr/pull/248.patch + url: https://api.github.com/repos/packit/ogr/pulls/248 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add rebase check to pre-commit (fail) + updated_at: '2019-10-21T13:10:51Z' + url: https://api.github.com/repos/packit/ogr/issues/248 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "Add possibility to filter PR/issue comments by their author.\r\n\ + \r\n- [ ] Extend the methods of `GitProject` in `ogr/abstract.py`.\r\ + \n- [ ] Extend the `BaseGitProject` in `ogr/services/base.py` if needed.\r\ + \n- [ ] Implement the support both for PRs and issues. (Share as much\ + \ code as possible -- implementation and pr/issue)\r\n - [ ] github\r\ + \n - [ ] gitlab\r\n - [ ] pagure" + closed_at: '2019-10-15T10:49:50Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/240/comments + created_at: '2019-10-09T15:23:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/240/events + html_url: https://github.com/packit/ogr/issues/240 + id: 504724114 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/240/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MDQ3MjQxMTQ= + number: 240 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Filter comments by author + updated_at: '2019-10-15T11:03:47Z' + url: https://api.github.com/repos/packit/ogr/issues/240 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: COLLABORATOR + body: "Based on [Github API doc](https://developer.github.com/v3/pulls/#labels-assignees-and-milestones):\r\ + \n>Every pull request is an issue, but not every issue is a pull request.\r\ + \n\r\nTherefore, in the case of Github, functions as `get_issue_list`,\ + \ `get_issue_info` etc. are working also with Pull Requests and behavior\ + \ isn't tested.\r\n\r\nWe should get rid of Pull Requests in functions\ + \ working with Issues. Pagure doesn't have this problem. \r\n\r\n--------------\r\ + \n@lachmanfrantisek added:\r\n\r\nTo be able to be compatible with other\ + \ git forges, let's differentiate between issues and pull-requests.\ + \ (And do not allow working with GitHub issues, that are actually pull-requests.\ + \ Issues and pull-requests are distinct sets.)\r\n\r\nAC:\r\n\r\n- [\ + \ ] Go through the issue related code in `GithubProject` and check if\ + \ it does not return any PullRequest.\r\n- [ ] Create test cases for\ + \ that.\r\n" + closed_at: '2019-09-26T09:12:11Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/107/comments + created_at: '2019-07-10T11:56:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/107/events + html_url: https://github.com/packit/ogr/issues/107 + id: 466266403 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/107/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjYyNjY0MDM= + number: 107 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Remove PullRequests from list of Github Issues. + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/107 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "In abstract class `GitProject`, we have the following method:\r\ + \n\r\n```python\r\n def get_issue_comments(\r\n self, issue_id,\ + \ filter_regex: str = None, reverse: bool = False\r\n ) -> List[\"\ + IssueComment\"]:\r\n \"\"\"\r\n Get list of Issue comments.\r\ + \n\r\n :param issue_id: int\r\n :param filter_regex: filter\ + \ the comments' content with re.search\r\n :param reverse: reverse\ + \ order of comments\r\n :return: [IssueComment]\r\n \"\ + \"\"\r\n raise NotImplementedError()\r\n```\r\n\r\nThis issue\ + \ is not implemented in `GithubProject`, but the real implementation\ + \ should be in the `_get_all_issue_comments`.\r\n\r\n```python\r\n \ + \ def _get_all_issue_comments(self, issue_id: int) -> List[IssueComment]:\r\ + \n issue = self.github_repo.get_pull(number=issue_id)\r\n \ + \ return [\r\n self._issuecomment_from_github_object(raw_comment)\r\ + \n for raw_comment in issue.get_issue_comments()\r\n \ + \ ]\r\n```\r\n\r\nAC:\r\n- [ ] Github/Pagure\r\n - [ ] implement\ + \ the `get_issue_comments` with the code `_get_all_issue_comments` (There\ + \ are some missing parameters.)\r\n - [ ] remove the `_get_all_issue_comments`\ + \ and change its usage to `get_issue_comments`\r\n - [ ] make sure\ + \ it works as expected\r\n- [ ] Implement the `get_issue_comments` in\ + \ `GitlabProject`\r\n- [ ] create test(s) for that if they are not already\ + \ there" + closed_at: '2019-10-03T14:35:15Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/205/comments + created_at: '2019-09-18T09:19:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/205/events + html_url: https://github.com/packit/ogr/issues/205 + id: 495098643 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/205/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTUwOTg2NDM= + number: 205 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix/implement get_issue_comments + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/205 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "```python\r\n def project_create(self, repo: str, namespace:\ + \ str = None) -> \"PagureProject\":\r\n pass\r\n```\r\n\r\nAPI\ + \ documentation:\r\nhttps://pagure.io/api/0/#projects\r\n\r\nAC:\r\n\ + \r\n- [ ] implement the method in `PagureService`\r\n- [ ] create at\ + \ least two tests for that (with and without specifying `namespace`)" + closed_at: '2019-10-15T07:33:19Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/204/comments + created_at: '2019-09-18T09:09:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/204/events + html_url: https://github.com/packit/ogr/issues/204 + id: 495092331 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -61884,33 +84855,26 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - - color: f9d0c4 + - color: 42e529 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/165/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/204/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODk3NjEyNTg= - number: 165 + node_id: MDU6SXNzdWU0OTUwOTIzMzE= + number: 204 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update and link the contribution guide in README - updated_at: '2020-08-14T17:30:15Z' - url: https://api.github.com/repos/packit/ogr/issues/165 + title: 'Implement Pagure method for create_project ' + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/204 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -61929,43 +84893,112 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: MEMBER - body: 'Closes #196 ' - closed_at: '2020-08-13T10:28:26Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/444/comments - created_at: '2020-08-03T09:30:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/444/events - html_url: https://github.com/packit/ogr/pull/444 - id: 671937907 + body: "Split service implementations into separate directories, module\ + \ for each class\r\n\r\n- [x] Directory for each service\r\n- [x] GitHub\r\ + \n - [x] split implementation into multiple modules\r\n - [x] add\ + \ `__init__.py` to make imports compatible\r\n - [x] update tests,\ + \ since they store \"full path\" of caller\r\n- [x] GitLab\r\n - [x]\ + \ split implementation into multiple modules\r\n - [x] add `__init__.py`\ + \ to make imports compatible\r\n - [x] update tests, since they store\ + \ \"full path\" of caller\r\n- [x] Pagure\r\n - [x] split implementation\ + \ into multiple modules\r\n - [x] add `__init__.py` to make imports\ + \ compatible\r\n - [x] update tests, since they store \"full path\"\ + \ of caller\r\n\r\nRelated to #86" + closed_at: '2019-10-11T06:36:16Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/232/comments + created_at: '2019-10-05T09:52:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/232/events + html_url: https://github.com/packit/ogr/issues/232 + id: 502942365 labels: - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/444/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/232/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDYyMDYyMjUw - number: 444 + node_id: MDU6SXNzdWU1MDI5NDIzNjU= + number: 232 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/444.diff - html_url: https://github.com/packit/ogr/pull/444 - patch_url: https://github.com/packit/ogr/pull/444.patch - url: https://api.github.com/repos/packit/ogr/pulls/444 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Jupyter examples - updated_at: '2020-08-13T10:29:44Z' - url: https://api.github.com/repos/packit/ogr/issues/444 + title: Prepare file structure for object-specific methods (#86) + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/232 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -61985,7 +85018,7 @@ requests.sessions: url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -62004,7 +85037,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -62022,29 +85055,25 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - author_association: CONTRIBUTOR - body: "We have recently added a short usage section into the README.md\ - \ (#195).\r\n\r\nIt would be nice to create a new folder in the root\ - \ of this repository called `examples` and demonstrate various ogr functions.\r\ - \n\r\nFor me, the best way how to do it is to create a [Jupyter notebook](https://jupyter.org/)\ - \ as it is supported by GitHub and we can easily combine code snippets,\ - \ with outputs and comments in Markdown.\r\n\r\n*update by @lachmanfrantisek*\r\ - \n\r\nTODO:\r\n- [ ] Update the example in the README (something short).\r\ - \n- [ ] Create a folder `examples`.\r\n- [ ] Create some interesting\ - \ examples / usecases using [jupyter-notebook](https://jupyter.org/)\ - \ in that folder (github can display the `ipynb` files pretty well).\r\ - \n - Be sure, that you are not commiting your authentication tokens..;)\r\ - \n- [ ] Link the examples in the README or link the `examples/README.md`\ - \ where we can have more descriptive text for examples and links for\ - \ the specific `ipynb` files." - closed_at: '2020-08-13T10:28:26Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/196/comments - created_at: '2019-09-12T10:02:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/196/events - html_url: https://github.com/packit/ogr/issues/196 - id: 492708275 + author_association: MEMBER + body: "1. Property `full_repo_name` is implemented both in `BaseGitProject`\ + \ and `GitProject`\r\n1. `full_repo_name` doesn't handle non-existing\ + \ namespace (in case of Pagure projects)" + closed_at: '2019-09-25T05:20:03Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/218/comments + created_at: '2019-09-24T09:15:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/218/events + html_url: https://github.com/packit/ogr/issues/218 + id: 497561711 labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: b60205 default: false description: Issue reserved to students from Red Hat Open Source Contest @@ -62052,13 +85081,6 @@ requests.sessions: name: RHOSC node_id: MDU6TGFiZWwxNTYzMzA5Nzcz url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - color: 7057ff default: false description: Good for newcomers @@ -62066,62 +85088,124 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: bf6b0b + - color: c2ef58 default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: 8be567 + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/196/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/218/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTI3MDgyNzU= - number: 196 + node_id: MDU6SXNzdWU0OTc1NjE3MTE= + number: 218 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Examples for ogr usage using Jupyter notebook - updated_at: '2020-08-13T10:28:26Z' - url: https://api.github.com/repos/packit/ogr/issues/196 + title: GitProject.full_repo_name() and Pagure implementation + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/218 user: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 - events_url: https://api.github.com/users/rpitonak/events{/privacy} - followers_url: https://api.github.com/users/rpitonak/followers - following_url: https://api.github.com/users/rpitonak/following{/other_user} - gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + 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/rpitonak - id: 26160778 - login: rpitonak - node_id: MDQ6VXNlcjI2MTYwNzc4 - organizations_url: https://api.github.com/users/rpitonak/orgs - received_events_url: https://api.github.com/users/rpitonak/received_events - repos_url: https://api.github.com/users/rpitonak/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + 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/rpitonak + url: https://api.github.com/users/mfocko + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Add reverse-dependence-test of packit.' + closed_at: '2019-10-10T14:18:42Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/241/comments + created_at: '2019-10-10T07:36:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/241/events + html_url: https://github.com/packit/ogr/pull/241 + id: 505092361 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/241/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI2NTkyODk0 + number: 241 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/241.diff + html_url: https://github.com/packit/ogr/pull/241 + patch_url: https://github.com/packit/ogr/pull/241.patch + url: https://api.github.com/repos/packit/ogr/pulls/241 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Reverse dependency testing of packit + updated_at: '2019-10-10T15:14:48Z' + url: https://api.github.com/repos/packit/ogr/issues/241 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: 'Fixes #449 ' - closed_at: '2020-08-13T07:00:04Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/451/comments - created_at: '2020-08-12T21:44:08Z' - events_url: https://api.github.com/repos/packit/ogr/issues/451/events - html_url: https://github.com/packit/ogr/pull/451 - id: 677997734 + body: '' + closed_at: '2019-10-09T09:50:00Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/239/comments + created_at: '2019-10-09T09:26:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/239/events + html_url: https://github.com/packit/ogr/pull/239 + id: 504525592 labels: - color: 0e8a16 default: false @@ -62130,67 +85214,173 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/451/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/239/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDY3MDIzODIw - number: 451 + node_id: MDExOlB1bGxSZXF1ZXN0MzI2MTU0MzU4 + number: 239 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/451.diff - html_url: https://github.com/packit/ogr/pull/451 - patch_url: https://github.com/packit/ogr/pull/451.patch - url: https://api.github.com/repos/packit/ogr/pulls/451 + diff_url: https://github.com/packit/ogr/pull/239.diff + html_url: https://github.com/packit/ogr/pull/239 + patch_url: https://github.com/packit/ogr/pull/239.patch + url: https://api.github.com/repos/packit/ogr/pulls/239 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Create issue in Github without labels - updated_at: '2020-08-13T07:00:04Z' - url: https://api.github.com/repos/packit/ogr/issues/451 + title: prepare for rev dependency testing, set project dir in case it + not come from zuul + updated_at: '2019-10-09T09:50:00Z' + url: https://api.github.com/repos/packit/ogr/issues/239 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-10-09T08:41:00Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/238/comments + created_at: '2019-10-09T07:06:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/238/events + html_url: https://github.com/packit/ogr/pull/238 + id: 504458794 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/238/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI2MTAxNzE3 + number: 238 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/238.diff + html_url: https://github.com/packit/ogr/pull/238 + patch_url: https://github.com/packit/ogr/pull/238.patch + url: https://api.github.com/repos/packit/ogr/pulls/238 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: remove all stuff what were moved to requre project + updated_at: '2019-10-09T08:41:00Z' + url: https://api.github.com/repos/packit/ogr/issues/238 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-10-07T14:04:40Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/235/comments + created_at: '2019-10-07T11:19:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/235/events + html_url: https://github.com/packit/ogr/pull/235 + id: 503387838 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/235/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI1MjUwMzkx + number: 235 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/235.diff + html_url: https://github.com/packit/ogr/pull/235 + patch_url: https://github.com/packit/ogr/pull/235.patch + url: https://api.github.com/repos/packit/ogr/pulls/235 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add Developer Certificate of Origin + updated_at: '2019-10-07T14:04:41Z' + url: https://api.github.com/repos/packit/ogr/issues/235 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: "Sentry Issue: [RED-HAT-0P-2RX](https://sentry.io/organizations/red-hat-0p/issues/1828647684/?referrer=github_integration)\r\ - \n\r\n```\r\nTypeError: 'NoneType' object is not iterable\r\n(2 additional\ - \ frame(s) were not displayed)\r\n...\r\n File \"packit_service/worker/handlers/abstract.py\"\ - , line 152, in run_n_clean\r\n return self.run()\r\n File \"packit_service/worker/handlers/github_handlers.py\"\ - , line 213, in run\r\n body=body_msg,\r\n File \"ogr/services/github/project.py\"\ - , line 313, in create_issue\r\n return GithubIssue.create(project=self,\ - \ title=title, body=body, labels=labels)\r\n File \"ogr/services/github/issue.py\"\ - , line 101, in create\r\n title=title, body=body, labels=labels\r\ - \n File \"github/Repository.py\", line 1063, in create_issue\r\n \ - \ assert labels is github.GithubObject.NotSet or all(isinstance(element,\ - \ github.Label.Label) or isinstance(element, str) for element in labels),\ - \ labels\r\n```\r\n\r\nRecently we added `labels` parameters to `create_issue`\ - \ method and it defaults to None, but it should probably default to\ - \ [] so that it does not fail on the line with `assert`." - closed_at: '2020-08-13T07:00:04Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/449/comments - created_at: '2020-08-10T07:47:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/449/events - html_url: https://github.com/packit/ogr/issues/449 - id: 675938538 + author_association: MEMBER + body: Gitlab tests import `PRStatus` and `IssueStatus` from `ogr.services.gitlab` + instead of `ogr.abstract` + closed_at: '2019-10-07T11:02:37Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/233/comments + created_at: '2019-10-05T15:21:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/233/events + html_url: https://github.com/packit/ogr/issues/233 + id: 502976447 labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: d73a4a default: true description: Something isn't working @@ -62205,144 +85395,106 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9e231 + - color: f9d0c4 default: false - description: High priority. - id: 1432779316 - name: high-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzE2 - url: https://api.github.com/repos/packit/ogr/labels/high-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/449/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/233/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NzU5Mzg1Mzg= - number: 449 + node_id: MDU6SXNzdWU1MDI5NzY0NDc= + number: 233 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Creating issues in Github fails with TypeError: ''NoneType'' object - is not iterable' - updated_at: '2020-08-13T07:00:04Z' - url: https://api.github.com/repos/packit/ogr/issues/449 + title: Gitlab tests imports + updated_at: '2019-10-07T11:02:38Z' + url: https://api.github.com/repos/packit/ogr/issues/233 user: - avatar_url: https://avatars2.githubusercontent.com/in/12637?v=4 - events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers - following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/gists{/gist_id} + 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/apps/sentry-io - id: 39604003 - login: sentry-io[bot] - node_id: MDM6Qm90Mzk2MDQwMDM= - organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events - repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/sentry-io%5Bbot%5D + 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 - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `The distgit repository /tmp/packit-dist-gitwfi22npg is dirty.This - is not supported.` | - - | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.12.1.tar.gz. - Reason: ''Not Found''. ` | - - | `master` | `The distgit repository /tmp/packit-dist-gitwfi22npg is - dirty.This is not supported.` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-08-09T16:57:04Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/423/comments - created_at: '2020-05-27T13:46:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/423/events - html_url: https://github.com/packit/ogr/issues/423 - id: 625711319 - labels: - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/423/labels{/name} + author_association: CONTRIBUTOR + body: "replace storing requests objects by ``requre`` project.\r\n\r\n\ + - [x] regenerate test data for ogr\r\n- [x] remove old functionality\ + \ after packit will be fixed as well, not now in this PR\r\n\r\n" + closed_at: '2019-10-07T10:42:46Z' + comments: 17 + comments_url: https://api.github.com/repos/packit/ogr/issues/201/comments + created_at: '2019-09-17T09:04:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/201/events + html_url: https://github.com/packit/ogr/pull/201 + id: 494495662 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/201/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjU3MTEzMTk= - number: 423 + node_id: MDExOlB1bGxSZXF1ZXN0MzE4MjM0OTky + number: 201 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/201.diff + html_url: https://github.com/packit/ogr/pull/201 + patch_url: https://github.com/packit/ogr/pull/201.patch + url: https://api.github.com/repos/packit/ogr/pulls/201 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.12.1' - updated_at: '2020-08-09T16:57:04Z' - url: https://api.github.com/repos/packit/ogr/issues/423 + title: use requre for storing data for tests + updated_at: '2019-10-07T10:42:47Z' + url: https://api.github.com/repos/packit/ogr/issues/201 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Making create_issue uniform\ - \ by adding labels\n* Add support to create private issue\n* Fix getting\ - \ the installation ID after PyGithub 1.52\n* Org rename: fix integration\ - \ tests\n* zuul: org rename\n* request access to project on Gitlab\n\ - * Support add group for pagure\n* Revert \"Drop python 3.6\"\n* Update\ - \ ogr/utils.py\n* Remove unused util functions\n* Refactor using sourcery\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.13.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2020-08-07T09:09:02Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/447/comments - created_at: '2020-08-05T14:20:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/447/events - html_url: https://github.com/packit/ogr/pull/447 - id: 673578649 + body: '- use requre for storing data for tests.' + closed_at: '2019-10-04T08:09:13Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/231/comments + created_at: '2019-10-03T08:51:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/231/events + html_url: https://github.com/packit/ogr/pull/231 + id: 501935145 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -62350,120 +85502,159 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/447/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/231/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDYzNDE2MTE4 - number: 447 + node_id: MDExOlB1bGxSZXF1ZXN0MzI0MTEwMzY5 + number: 231 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/447.diff - html_url: https://github.com/packit/ogr/pull/447 - patch_url: https://github.com/packit/ogr/pull/447.patch - url: https://api.github.com/repos/packit/ogr/pulls/447 + diff_url: https://github.com/packit/ogr/pull/231.diff + html_url: https://github.com/packit/ogr/pull/231 + patch_url: https://github.com/packit/ogr/pull/231.patch + url: https://api.github.com/repos/packit/ogr/pulls/231 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.13.0 release - updated_at: '2020-08-07T11:19:04Z' - url: https://api.github.com/repos/packit/ogr/issues/447 + title: 'Use requre (rebased #201)' + updated_at: '2019-10-04T08:24:34Z' + url: https://api.github.com/repos/packit/ogr/issues/231 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-08-05T14:20:46Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/446/comments - created_at: '2020-08-05T14:16:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/446/events - html_url: https://github.com/packit/ogr/issues/446 - id: 673575463 + body: "This property violates our rule that only methods with `get` can\ + \ touch the real servers.\r\n\r\nWe can:\r\n\r\n- Revert the change\ + \ and stay with guessing.\r\n- Change the property to `get_full_repo_name`\ + \ (needs deprecation to original property)\r\n- Change our mind and\ + \ do not be strict about that. (And use properties instead of methods\ + \ for objects.)\r\n - This will bring nicer user-experience, but\ + \ maybe some confusion.\r\n - Maybe, we can leave only `__init__`\ + \ offline?\r\n\r\n" + closed_at: '2019-10-02T09:17:18Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/220/comments + created_at: '2019-09-25T06:13:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/220/events + html_url: https://github.com/packit/ogr/issues/220 + id: 498070461 labels: - - color: ededed + - color: ff9990 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + - color: 8be567 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/446/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/220/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NzM1NzU0NjM= - number: 446 + node_id: MDU6SXNzdWU0OTgwNzA0NjE= + number: 220 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New minor release - updated_at: '2020-08-05T14:20:46Z' - url: https://api.github.com/repos/packit/ogr/issues/446 + title: PagureProject.full_repo_name touches service + updated_at: '2019-10-02T09:17:18Z' + url: https://api.github.com/repos/packit/ogr/issues/220 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "- [x] Gitlab - Private issues are known as confidential issues\r\ - \n- [x] Github - Does not support private/confidential issues. (raised\ - \ an error here)\r\n- [x] Pagure" - closed_at: '2020-08-05T10:19:34Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/441/comments - created_at: '2020-07-30T14:00:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/441/events - html_url: https://github.com/packit/ogr/pull/441 - id: 668760747 + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Replace numbers by access\ + \ constants\n* suggested changes added\n* methods for permissions\n\ + * (#107) Rename test\n* (#107) Fix type and formatting\n* (#107) Add\ + \ tests for querying PRs in issue-related functions (GitHub)\n* (#107)\ + \ Raise exception if querying PR using issue-related function\n* (#107)\ + \ Fix typo in Github._get_all_issue_comments\n* (#107) Update test_data\ + \ for Github's issues\n* (#107) Filter out pull requests from issues\ + \ (GitHub)\n* Do not save links beteen values in response files\n* specified\ + \ return type\n* exceptions added\n* methods for pr and issue labels\n\ + * (#218) Remove checking if fork exists in test for full_repo_name\n\ + * (#218) Add tests for full_repo_name with namespace and fork\n* (#218)\ + \ Add tests for full_repo_name property\n* (#218) Override full_repo_name\ + \ in PagureProject\n* (#218) Remove full_repo_name implementation from\ + \ GitProject\n* Fix flake8 remarks\n* (#213) Modify PagureProject.get_web_url()\ + \ to use project info\n* (#213) Fix wrong property name in Gitlab.get_web_url()\ + \ test and add test_data\n* (#213) Fix Pagure's get_web_url()\n* (#213)\ + \ Update GitLab.get_web_url() to use repo object\n* (#213) Update GitHub.get_web_url()\ + \ to use repo object\n* Add tests for get_web_url\n* Add get_web_url\ + \ to GitHub, GitLab and Pagure\n* Add get_web_url to GitProject\n* Add\ + \ tests for set_commit_status method\n* Add trim parameter to set_commit_status\ + \ method\n* test changed\n* test added\n* response files added\n* methods\ + \ for commit status and commit comment\n* refactor\n* github method\ + \ for creating projects added\n* Document the tests that are problematic\ + \ when regenerating\n* Be consistent in instantiating services in tests\n\ + * Update GitHub response files and fix the tests\n* Fix get_email in\ + \ GitHub implementation\n* Update Pagure response files and fix the\ + \ tests\n* Use returned GitLab repo instance in GitlabService.project_create\n\ + * Remove Gitlab also from example\n* delete GitLab from README.md\n\ + * Quickstart example\n* Generate response-file for test_create_fork\ + \ with python_gitlab-1.11\n* WIP: forking methods\n* better tests\n\ + * pr close, merge methods\n* Implement service.project_create for GitLab\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.8.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-10-01T19:57:46Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/223/comments + created_at: '2019-09-26T11:11:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/223/events + html_url: https://github.com/packit/ogr/pull/223 + id: 498820056 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -62471,208 +85662,305 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/441/labels{/name} + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/223/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDU5MjA4ODA5 - number: 441 + node_id: MDExOlB1bGxSZXF1ZXN0MzIxNjY2NjY0 + number: 223 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/441.diff - html_url: https://github.com/packit/ogr/pull/441 - patch_url: https://github.com/packit/ogr/pull/441.patch - url: https://api.github.com/repos/packit/ogr/pulls/441 + diff_url: https://github.com/packit/ogr/pull/223.diff + html_url: https://github.com/packit/ogr/pull/223 + patch_url: https://github.com/packit/ogr/pull/223.patch + url: https://api.github.com/repos/packit/ogr/pulls/223 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add support to create private issues. - updated_at: '2020-08-05T10:19:34Z' - url: https://api.github.com/repos/packit/ogr/issues/441 + title: 0.8.0 release + updated_at: '2019-10-01T19:59:12Z' + url: https://api.github.com/repos/packit/ogr/issues/223 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: 'Depends-on: https://github.com/packit/packit/pull/920' - closed_at: '2020-08-04T06:21:47Z' - comments: 20 - comments_url: https://api.github.com/repos/packit/ogr/issues/443/comments - created_at: '2020-08-03T09:07:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/443/events - html_url: https://github.com/packit/ogr/pull/443 - id: 671923353 + author_association: MEMBER + body: 'In `GithubProject` class there is identical implementation for + `who_can_close_issue` and `who_can_merge_pr`, is it intentional? Or + can we factor it out since it''s identical? ' + closed_at: '2019-09-30T11:40:39Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/224/comments + created_at: '2019-09-26T11:56:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/224/events + html_url: https://github.com/packit/ogr/issues/224 + id: 498839261 labels: - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/443/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/224/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDYyMDUwMTY5 - number: 443 + node_id: MDU6SXNzdWU0OTg4MzkyNjE= + number: 224 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/443.diff - html_url: https://github.com/packit/ogr/pull/443 - patch_url: https://github.com/packit/ogr/pull/443.patch - url: https://api.github.com/repos/packit/ogr/pulls/443 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'zuul: org rename' - updated_at: '2020-08-04T06:21:47Z' - url: https://api.github.com/repos/packit/ogr/issues/443 + title: Identical implementation for collaborators (Github Project) + updated_at: '2019-09-30T11:40:39Z' + url: https://api.github.com/repos/packit/ogr/issues/224 user: - avatar_url: https://avatars2.githubusercontent.com/u/84583?v=4 - events_url: https://api.github.com/users/morucci/events{/privacy} - followers_url: https://api.github.com/users/morucci/followers - following_url: https://api.github.com/users/morucci/following{/other_user} - gists_url: https://api.github.com/users/morucci/gists{/gist_id} + 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/morucci - id: 84583 - login: morucci - node_id: MDQ6VXNlcjg0NTgz - organizations_url: https://api.github.com/users/morucci/orgs - received_events_url: https://api.github.com/users/morucci/received_events - repos_url: https://api.github.com/users/morucci/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/morucci/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/morucci/subscriptions + 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/morucci + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-07-31T16:40:37Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/355/comments - created_at: '2020-03-17T12:39:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/355/events - html_url: https://github.com/packit/ogr/pull/355 - id: 582983115 + body: The release time is now! + closed_at: '2019-09-26T11:11:51Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/222/comments + created_at: '2019-09-26T11:06:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/222/events + html_url: https://github.com/packit/ogr/issues/222 + id: 498817742 labels: - - color: '000000' + - color: ededed default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/355/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/222/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg5ODExMzc3 - number: 355 + node_id: MDU6SXNzdWU0OTg4MTc3NDI= + number: 222 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/355.diff - html_url: https://github.com/packit/ogr/pull/355 - patch_url: https://github.com/packit/ogr/pull/355.patch - url: https://api.github.com/repos/packit/ogr/pulls/355 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'WIP: packit - make release work on stage' - updated_at: '2020-07-31T16:40:37Z' - url: https://api.github.com/repos/packit/ogr/issues/355 + title: new minor release + updated_at: '2019-09-26T11:11:51Z' + url: https://api.github.com/repos/packit/ogr/issues/222 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: Example of Issue description - closed_at: '2020-07-30T21:15:08Z' + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "Since we merged [the PR with the basic GitLab support](https://github.com/packit-service/ogr/pull/150)\ + \ is there still something missing?\r\n\r\n- [x] service mapping (#156\ + \ )\r\n- [x] fix the mix of new and old API (#167 )\r\n- [x] missing\ + \ methods:\r\n - [x] forking: https://github.com/packit-service/ogr/issues/168\r\ + \n - [x] owners and permissions: https://github.com/packit-service/ogr/issues/169\r\ + \n - [x] get_sha_from_tag: https://github.com/packit-service/ogr/issues/170\r\ + \n - [x] issue labels: https://github.com/packit-service/ogr/issues/171\r\ + \n - [x] commit comment/status: https://github.com/packit-service/ogr/issues/172\r\ + \n - [x] pr close/merge: https://github.com/packit-service/ogr/issues/173\r\ + \n - [x] PR labels: https://github.com/packit-service/ogr/issues/174\r\ + \n - [x] project info: https://github.com/packit-service/ogr/issues/175\r\ + \n - [x] latest release: https://github.com/packit-service/ogr/issues/176\r\ + \n\r\n" + closed_at: '2019-09-26T10:59:39Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/442/comments - created_at: '2020-07-30T21:14:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/442/events - html_url: https://github.com/packit/ogr/issues/442 - id: 669202849 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/442/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/158/comments + created_at: '2019-08-15T15:29:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/158/events + html_url: https://github.com/packit/ogr/issues/158 + id: 481206920 + labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/158/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NjkyMDI4NDk= - number: 442 + node_id: MDU6SXNzdWU0ODEyMDY5MjA= + number: 158 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: This is an issue - updated_at: '2020-07-31T12:43:32Z' - url: https://api.github.com/repos/packit/ogr/issues/442 + title: Missing features in GitLab implementation + updated_at: '2019-09-26T10:59:40Z' + url: https://api.github.com/repos/packit/ogr/issues/158 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Request project access - using it here (https://github.com/packit-service/packit-service/pull/740)\r\ - \n\r\n[Request access docs](https://python-gitlab.readthedocs.io/en/stable/gl_objects/access_requests.html)" - closed_at: '2020-07-31T11:19:06Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/439/comments - created_at: '2020-07-26T19:59:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/439/events - html_url: https://github.com/packit/ogr/pull/439 - id: 665849470 + body: 'Fixes #169. I used https://docs.gitlab.com/ee/user/permissions.html#project-members-permissions, + but I am not sure about the permission for closing of the project issues, + I couldn''t find more information about that.' + closed_at: '2019-09-26T10:43:42Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/207/comments + created_at: '2019-09-18T13:54:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/207/events + html_url: https://github.com/packit/ogr/pull/207 + id: 495242377 labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -62680,111 +85968,207 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/439/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/207/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDU2Nzk3ODcw - number: 439 + node_id: MDExOlB1bGxSZXF1ZXN0MzE4ODI1OTA4 + number: 207 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/439.diff - html_url: https://github.com/packit/ogr/pull/439 - patch_url: https://github.com/packit/ogr/pull/439.patch - url: https://api.github.com/repos/packit/ogr/pulls/439 + diff_url: https://github.com/packit/ogr/pull/207.diff + html_url: https://github.com/packit/ogr/pull/207 + patch_url: https://github.com/packit/ogr/pull/207.patch + url: https://api.github.com/repos/packit/ogr/pulls/207 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Requesting project access - updated_at: '2020-07-31T11:19:06Z' - url: https://api.github.com/repos/packit/ogr/issues/439 + title: methods for permissions + updated_at: '2019-09-26T10:43:42Z' + url: https://api.github.com/repos/packit/ogr/issues/207 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: '' - closed_at: '2020-07-28T07:54:55Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/436/comments - created_at: '2020-07-16T12:52:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/436/events - html_url: https://github.com/packit/ogr/pull/436 - id: 658170942 + body: "```python\r\n def get_owners(self) -> List[str]:\r\n \ + \ raise NotImplementedError()\r\n\r\n def who_can_close_issue(self)\ + \ -> Set[str]:\r\n raise NotImplementedError()\r\n\r\n def\ + \ who_can_merge_pr(self) -> Set[str]:\r\n raise NotImplementedError()\r\ + \n\r\n def can_close_issue(self, username: str, issue: Issue) ->\ + \ bool:\r\n raise NotImplementedError()\r\n\r\n def can_merge_pr(self,\ + \ username) -> bool:\r\n raise NotImplementedError()\r\n```\r\ + \n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-members\r\ + \n- https://docs.gitlab.com/ce/api/members.html" + closed_at: '2019-09-26T10:43:41Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/169/comments + created_at: '2019-09-06T07:20:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/169/events + html_url: https://github.com/packit/ogr/issues/169 + id: 490171859 labels: - - color: 0e8a16 + - color: d93f0b default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/436/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/169/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDUwMTcyMDA5 - number: 436 + node_id: MDU6SXNzdWU0OTAxNzE4NTk= + number: 169 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/436.diff - html_url: https://github.com/packit/ogr/pull/436 - patch_url: https://github.com/packit/ogr/pull/436.patch - url: https://api.github.com/repos/packit/ogr/pulls/436 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Support add group for pagure - updated_at: '2020-07-28T08:12:10Z' - url: https://api.github.com/repos/packit/ogr/issues/436 + title: Implement GitLab methods for owners and permissions + updated_at: '2019-09-26T10:43:41Z' + url: https://api.github.com/repos/packit/ogr/issues/169 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: "Since we [now](https://github.com/packit-service/ogr/pull/150)\ - \ support GitLab, we need to update our README to show it.\r\n\r\n+\ - \ [ ] and provide brief docs how to use it (@TomasTomecek had to google\ - \ a bit)" - closed_at: '2020-07-17T13:52:03Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/157/comments - created_at: '2019-08-15T15:27:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/157/events - html_url: https://github.com/packit/ogr/issues/157 - id: 481205806 + body: "```python\r\n def get_pr_labels(self, pr_id: int) -> List:\r\ + \n pass\r\n\r\n def add_pr_labels(self, pr_id, labels) ->\ + \ None:\r\n pass\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ + \n- https://docs.gitlab.com/ee/api/merge_requests.html" + closed_at: '2019-09-25T08:50:51Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/174/comments + created_at: '2019-09-06T07:23:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/174/events + html_url: https://github.com/packit/ogr/issues/174 + id: 490172937 labels: - color: d93f0b default: false @@ -62793,13 +86177,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -62807,26 +86191,26 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: '000000' + - color: 42e529 default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/157/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/174/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODEyMDU4MDY= - number: 157 + node_id: MDU6SXNzdWU0OTAxNzI5Mzc= + number: 174 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Mention GitLab support in README - updated_at: '2020-07-28T07:07:52Z' - url: https://api.github.com/repos/packit/ogr/issues/157 + title: Implement GitLab methods for PR labels (merge-request labels) + updated_at: '2019-09-25T08:50:51Z' + url: https://api.github.com/repos/packit/ogr/issues/174 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -62847,18 +86231,15 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "This reverts commit 74d84893f16f5020e60d2a1ba35e13d768b514f0.\r\ - \n\r\nIn Centos 8 Python 3.6 is the default python3. Having Python 3.6\ - \ support\r\nwill make life easier there.\r\n\r\nSigned-off-by: Hunor\ - \ Csomort\xE1ni " - closed_at: '2020-07-16T15:27:34Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/438/comments - created_at: '2020-07-16T14:39:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/438/events - html_url: https://github.com/packit/ogr/pull/438 - id: 658262033 + author_association: CONTRIBUTOR + body: 'Fixes #171, #174' + closed_at: '2019-09-25T08:34:08Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/198/comments + created_at: '2019-09-12T12:07:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/198/events + html_url: https://github.com/packit/ogr/pull/198 + id: 492763927 labels: - color: 0e8a16 default: false @@ -62867,136 +86248,242 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/438/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/198/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDUwMjQ5NTU2 - number: 438 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODczMjYx + number: 198 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/438.diff - html_url: https://github.com/packit/ogr/pull/438 - patch_url: https://github.com/packit/ogr/pull/438.patch - url: https://api.github.com/repos/packit/ogr/pulls/438 + diff_url: https://github.com/packit/ogr/pull/198.diff + html_url: https://github.com/packit/ogr/pull/198 + patch_url: https://github.com/packit/ogr/pull/198.patch + url: https://api.github.com/repos/packit/ogr/pulls/198 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Revert "Drop python 3.6" - updated_at: '2020-07-16T15:27:34Z' - url: https://api.github.com/repos/packit/ogr/issues/438 + title: methods for pr and issue labels + updated_at: '2019-09-25T08:34:08Z' + url: https://api.github.com/repos/packit/ogr/issues/198 user: - avatar_url: https://avatars0.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} + 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/csomh - id: 11816497 - login: csomh - node_id: MDQ6VXNlcjExODE2NDk3 - organizations_url: https://api.github.com/users/csomh/orgs - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + 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/csomh + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: 'Closes #414' - closed_at: '2020-06-25T10:41:12Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/419/comments - created_at: '2020-05-26T10:39:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/419/events - html_url: https://github.com/packit/ogr/pull/419 - id: 624783863 + body: "```python\r\n def get_issue_labels(self, issue_id: int) -> List:\r\ + \n raise NotImplementedError()\r\n\r\n def add_issue_labels(self,\ + \ issue_id, labels) -> None:\r\n raise NotImplementedError()\r\ + \n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ + \n- https://docs.gitlab.com/ce/api/issues.html" + closed_at: '2019-09-25T08:34:08Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/171/comments + created_at: '2019-09-06T07:22:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/171/events + html_url: https://github.com/packit/ogr/issues/171 + id: 490172449 labels: - - color: 0e8a16 + - color: d93f0b default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/419/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/171/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDIzMTI1MDgx - number: 419 + node_id: MDU6SXNzdWU0OTAxNzI0NDk= + number: 171 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/419.diff - html_url: https://github.com/packit/ogr/pull/419 - patch_url: https://github.com/packit/ogr/pull/419.patch - url: https://api.github.com/repos/packit/ogr/pulls/419 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pull requests on Gitlab - updated_at: '2020-07-14T21:08:48Z' - url: https://api.github.com/repos/packit/ogr/issues/419 + title: Implement GitLab methods for issue labels + updated_at: '2019-09-25T08:34:08Z' + url: https://api.github.com/repos/packit/ogr/issues/171 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Remove unused util functions. - - - Refactor using [sourcery](https://sourcery.ai/).' - closed_at: '2020-07-10T12:43:50Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/435/comments - created_at: '2020-07-10T11:46:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/435/events - html_url: https://github.com/packit/ogr/pull/435 - id: 654723717 + body: "In GitProject we do not have a method for getting web URL of the\ + \ project.\r\n\r\nAC:\r\n\r\n- [ ] Add the method to `abstract.GitProject`.\ + \ (And raise `NotImplementedError`.)\r\n- [ ] Implement the method for\ + \ all forges (GitHub, GitLab, Pagure).\r\n- [ ] Add tests for this method.\r\ + \n\r\nLinks:\r\n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ + \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \n https://docs.gitlab.com/ce/api/projects.html\r\n- https://pagure.io/api/0/#projects\r\ + \n\r\nExamples:\r\n- https://github.com/packit-service/ogr\r\n- https://gitlab.com/packit-service/ogr-tests\r\ + \n- https://pagure.io/ogr-tests/" + closed_at: '2019-09-24T08:53:16Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/213/comments + created_at: '2019-09-19T19:19:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/213/events + html_url: https://github.com/packit/ogr/issues/213 + id: 495981567 labels: - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/435/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/213/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQ3Mzk0MDIz - number: 435 + node_id: MDU6SXNzdWU0OTU5ODE1Njc= + number: 213 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/435.diff - html_url: https://github.com/packit/ogr/pull/435 - patch_url: https://github.com/packit/ogr/pull/435.patch - url: https://api.github.com/repos/packit/ogr/pulls/435 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Sourcery refactor - updated_at: '2020-07-10T12:46:54Z' - url: https://api.github.com/repos/packit/ogr/issues/435 + title: Implement GitProject.get_url() + updated_at: '2019-09-25T06:07:53Z' + url: https://api.github.com/repos/packit/ogr/issues/213 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -63017,96 +86504,17 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `Failed to init kerberos ticket:` | - - | `f32` | `Failed to init kerberos ticket:` | - - | `master` | `Failed to init kerberos ticket:` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-07-10T05:57:19Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/434/comments - created_at: '2020-07-09T11:03:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/434/events - html_url: https://github.com/packit/ogr/issues/434 - id: 653971970 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/434/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2NTM5NzE5NzA= - number: 434 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[packit] Propose update failed for release 0.12.2' - updated_at: '2020-07-10T09:36:14Z' - url: https://api.github.com/repos/packit/ogr/issues/434 - user: - avatar_url: https://avatars0.githubusercontent.com/in/29180?v=4 - events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service-stg - id: 49729116 - login: packit-as-a-service-stg[bot] - node_id: MDM6Qm90NDk3MjkxMTY= - organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Job metadata key 'dist_git_branch'\ - \ has been renamed to 'dist_git_branches'\n* Replace Python version\ - \ glob with macro\n* Fix get_file_content was returning byte format\n\ - * Build in copr for master commits and releases\n* Add usage to creating\ - \ PRs on GitLab\n* Fix GitLab pull requests\n* Add tests for creating\ - \ PRs on GitLab\n* [Zuul] Don't redefine base job\n* [Zuul] Use common\ - \ pre-commit job\n* Drop python 3.6\n* Update & run pre-commit\n* Improve\ - \ the message when marking issues as stale\n* Fix remarks from compatibility.md\ - \ review\n* Add compatibility table\n\n\nYou can change it by editing\ - \ `CHANGELOG.md` in the root of this repository and pushing to `0.12.2-release`\ - \ branch before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-07-09T10:57:56Z' + author_association: CONTRIBUTOR + body: "Fixes: #143 \r\n\r\n*edited by @lachmanfrantisek to close this\ + \ after merge*" + closed_at: '2019-09-19T14:18:04Z' comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/433/comments - created_at: '2020-07-09T07:36:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/433/events - html_url: https://github.com/packit/ogr/pull/433 - id: 653835899 + comments_url: https://api.github.com/repos/packit/ogr/issues/210/comments + created_at: '2019-09-19T11:24:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/210/events + html_url: https://github.com/packit/ogr/pull/210 + id: 495738504 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -63114,117 +86522,182 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/433/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/210/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQ2Njc2Mjcz - number: 433 + node_id: MDExOlB1bGxSZXF1ZXN0MzE5MjI3MjM2 + number: 210 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/433.diff - html_url: https://github.com/packit/ogr/pull/433 - patch_url: https://github.com/packit/ogr/pull/433.patch - url: https://api.github.com/repos/packit/ogr/pulls/433 + diff_url: https://github.com/packit/ogr/pull/210.diff + html_url: https://github.com/packit/ogr/pull/210 + patch_url: https://github.com/packit/ogr/pull/210.patch + url: https://api.github.com/repos/packit/ogr/pulls/210 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.12.2 release - updated_at: '2020-07-09T11:01:07Z' - url: https://api.github.com/repos/packit/ogr/issues/433 + title: Add trim parameter to set_commit_status method + updated_at: '2019-09-19T15:46:39Z' + url: https://api.github.com/repos/packit/ogr/issues/210 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-07-09T07:36:32Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/432/comments - created_at: '2020-07-09T07:36:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/432/events - html_url: https://github.com/packit/ogr/issues/432 - id: 653835751 + author_association: CONTRIBUTOR + body: "```\r\nTraceback (most recent call last): \ + \ \ + \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ + , line 385, in trace_task \ + \ \r\n R = retval = fun(*args,\ + \ **kwargs) \ + \ \ + \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ + , line 648, in __protected_call__ \ + \ \r\n return self.run(*args,\ + \ **kwargs) \ + \ \ + \ \r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ + , line 42, in process_message \ + \ \r\n return SteveJobs().process_message(event=event,\ + \ topic=topic) \ + \ \r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 126, in process_message \ + \ \r\n jobs_results = self.process_jobs(event_object)\ + \ \ + \ \r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 92, in process_jobs \ + \ \r\n handlers_results[job.job.value]\ + \ = handler.run() \ + \ \ + \ \r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/github_handlers.py\"\ + , line 330, in run \ + \ \r\n return self.handle_pull_request() \ + \ \ + \ \r\n\ + \ File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/github_handlers.py\"\ + , line 305, in handle_pull_request \ + \ \r\n r.report(\"failure\", msg)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/handler.py\"\ + , line 84, in report\r\n self.commit_sha, state, url, description,\ + \ check_name\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/read_only.py\"\ + , line 68, in readonly_func\r\n return func(self, *args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ + , line 541, in set_commit_status\r\n github_commit.create_status(state,\ + \ target_url, description, context)\r\n File \"/usr/local/lib/python3.7/site-packages/github/Commit.py\"\ + , line 189, in create_status\r\n input=post_parameters\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/github/Requester.py\", line\ + \ 276, in requestJsonAndCheck\r\n return self.__check(*self.requestJson(verb,\ + \ url, parameters, headers, input, self.__customConnection(url)))\r\n\ + \ File \"/usr/local/lib/python3.7/site-packages/github/Requester.py\"\ + , line 287, in __check\r\n raise self.__createException(status, responseHeaders,\ + \ output)\r\ngithub.GithubException.GithubException: 422 {'message':\ + \ 'Validation Failed', 'errors': [{'resource': 'Status', 'code': 'custom',\ + \ 'field': 'description', 'message': 'descript\r\nion is too long (maximum\ + \ is 140 characters)'}], 'documentation_url': 'https://developer.github.com/v3/repos/statuses/#create-a-status'}\r\ + \n```" + closed_at: '2019-09-19T14:18:04Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/143/comments + created_at: '2019-08-08T09:03:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/143/events + html_url: https://github.com/packit/ogr/issues/143 + id: 478340513 labels: - - color: ededed + - color: '000000' default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/432/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9e231 + default: false + description: High priority. + id: 1432779316 + name: high-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzE2 + url: https://api.github.com/repos/packit/ogr/labels/high-prio + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/143/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NTM4MzU3NTE= - number: 432 + node_id: MDU6SXNzdWU0NzgzNDA1MTM= + number: 143 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New patch release - updated_at: '2020-07-09T07:36:32Z' - url: https://api.github.com/repos/packit/ogr/issues/432 + title: GitHub check descriptions can only be 140 chars long + updated_at: '2019-09-19T14:18:04Z' + url: https://api.github.com/repos/packit/ogr/issues/143 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: in https://github.com/packit-service/packit/pull/797 - closed_at: '2020-07-07T06:51:21Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/431/comments - created_at: '2020-07-03T14:49:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/431/events - html_url: https://github.com/packit/ogr/pull/431 - id: 650642351 + author_association: CONTRIBUTOR + body: 'Fixes #172 ' + closed_at: '2019-09-19T09:46:56Z' + comments: 13 + comments_url: https://api.github.com/repos/packit/ogr/issues/206/comments + created_at: '2019-09-18T13:16:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/206/events + html_url: https://github.com/packit/ogr/pull/206 + id: 495219552 labels: - color: 0e8a16 default: false @@ -63233,87 +86706,84 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/431/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/206/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQ0MDk0ODQx - number: 431 + node_id: MDExOlB1bGxSZXF1ZXN0MzE4ODA3MTU3 + number: 206 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/431.diff - html_url: https://github.com/packit/ogr/pull/431 - patch_url: https://github.com/packit/ogr/pull/431.patch - url: https://api.github.com/repos/packit/ogr/pulls/431 + diff_url: https://github.com/packit/ogr/pull/206.diff + html_url: https://github.com/packit/ogr/pull/206 + patch_url: https://github.com/packit/ogr/pull/206.patch + url: https://api.github.com/repos/packit/ogr/pulls/206 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Job metadata key 'dist_git_branch' was renamed to 'dist_git_branches' - updated_at: '2020-07-07T07:13:31Z' - url: https://api.github.com/repos/packit/ogr/issues/431 + title: methods for commit status and commit comment + updated_at: '2019-09-19T09:46:56Z' + url: https://api.github.com/repos/packit/ogr/issues/206 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lbarcziova _next: null - elapsed: 0.2 + elapsed: 0.755678 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="next", ; - rel="last" + Date: Tue, 13 Apr 2021 18:00:09 GMT + ETag: W/"72c11b8de3bb847c88d7a67adf4d00226793457d891ebb818a7c46adfdc8ed8c" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7E969:1919588:6075DC28 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4819' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '181' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues?state=open&sort=updated&direction=desc: + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=14: - metadata: - latency: 1.005626916885376 + latency: 0.4061722755432129 module_call_list: - unittest.case - requre.online_replacing @@ -63331,176 +86801,189 @@ requests.sessions: __store_indicator: 2 _content: - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: there is just one issue, and it is that __init__.py has to be clear, - because now it causes confusion, and try sto store keys with various - depth -> raise error. - closed_at: null - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/452/comments - created_at: '2020-08-13T13:44:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/452/events - html_url: https://github.com/packit/ogr/pull/452 - id: 678448961 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/452/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDY3Mzk1MTgz - number: 452 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/452.diff - html_url: https://github.com/packit/ogr/pull/452 - patch_url: https://github.com/packit/ogr/pull/452.patch - url: https://api.github.com/repos/packit/ogr/pulls/452 - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: this is first draft how new tests could look like - updated_at: '2020-08-26T09:18:59Z' - url: https://api.github.com/repos/packit/ogr/issues/452 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + assignee: + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/lbarcziova + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: "Split tests into files like the implementations are.\r\n\r\nAs\ - \ @lachmanfrantisek suggested, it would be great to have both old tests\ - \ (checking that deprecated interfaces are still usable) and new ones,\ - \ but this would lead to keeping duplicates of test_data, since they\ - \ would check the same things, but each would need separate yaml for\ - \ responses.\r\n\r\nSo I suggest transition from old to new tests right\ - \ after 0.13.0 (or before 1.0.0, in case it will be released sooner)" - closed_at: null - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/295/comments - created_at: '2019-12-05T10:40:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/295/events - html_url: https://github.com/packit/ogr/issues/295 - id: 533267519 + body: "```python\r\n def commit_comment(\r\n self, commit: str,\ + \ body: str, filename: str = None, row: int = None\r\n ) -> \"CommitComment\"\ + :\r\n raise NotImplementedError()\r\n\r\n def set_commit_status(\r\ + \n self, commit: str, state: str, target_url: str, description:\ + \ str, context: str\r\n ) -> \"CommitFlag\":\r\n raise NotImplementedError()\r\ + \n\r\n def get_commit_statuses(self, commit: str) -> List[CommitFlag]:\r\ + \n \"\"\"\r\n Something like this:\r\n commit_object\ + \ = self.gitlab_repo.commits.get(commit)\r\n raw_statuses = commit_object.statuses.list()\r\ + \n return [\r\n GitlabProject._commit_status_from_gitlab_object(raw_status)\r\ + \n for raw_status in raw_statuses\r\n ]\r\n \ + \ \"\"\"\r\n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html\r\ + \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-comments\r\ + \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status" + closed_at: '2019-09-19T09:46:56Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/172/comments + created_at: '2019-09-06T07:23:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/172/events + html_url: https://github.com/packit/ogr/issues/172 + id: 490172659 labels: - - color: c2ef58 + - color: d93f0b default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/295/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/172/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MzMyNjc1MTk= - number: 295 + node_id: MDU6SXNzdWU0OTAxNzI2NTk= + number: 172 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Restructure tests - updated_at: '2020-08-24T10:14:58Z' - url: https://api.github.com/repos/packit/ogr/issues/295 + state: closed + title: Implement GitLab methods for commits + updated_at: '2019-09-19T09:46:56Z' + url: https://api.github.com/repos/packit/ogr/issues/172 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars0.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} + - 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko - author_association: CONTRIBUTOR - body: "The current implementation of labels has no implementation of GitLabel\ - \ defined in the abstract classes, which would be consistent with what\ - \ is done for GitUser, GitProject etc. This is leading to inconsistent\ - \ typing in the library where we have the following function signatures\ - \ within the codebase:\r\n\r\nabstract.py\r\n`def get_issue_labels(self,\ - \ issue_id: int) -> List[Any]`\r\n\r\ngithub/project.py\r\n`def get_issue_labels(self,\ - \ issue_id: int) -> List[GithubLabel]`\r\n\r\ngitlab/project.py\r\n\ - `def get_issue_labels(self, issue_id: int) -> List[str]`\r\n\r\nWould\ - \ be good to make this consistent and inherit from a base class of GitLabel.\r\ - \n\r\n@lachmanfrantisek " - closed_at: null - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/263/comments - created_at: '2019-11-02T14:16:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/263/events - html_url: https://github.com/packit/ogr/issues/263 - id: 516607686 + url: https://api.github.com/users/lbarcziova + author_association: MEMBER + body: "```python\r\n def project_create(self, repo: str, namespace:\ + \ str = None) -> \"GithubProject\":\r\n pass\r\n```\r\n\r\nThe\ + \ methods for creating projects are in two places:\r\n\r\n- user:\r\n\ + \ - [Github.get_user](https://pygithub.readthedocs.io/en/latest/github.html#github.MainClass.Github.get_user)\r\ + \n - [User.create_repo](https://pygithub.readthedocs.io/en/latest/github_objects/AuthenticatedUser.html#github.AuthenticatedUser.AuthenticatedUser.create_repo)\r\ + \n- namespace:\r\n - [Github.get_organization](https://pygithub.readthedocs.io/en/latest/github.html#github.MainClass.Github.get_organization)\r\ + \n - [Organization.create_repo](https://pygithub.readthedocs.io/en/latest/github_objects/Organization.html#github.Organization.Organization.create_repo)\r\ + \n\r\nAC:\r\n\r\n- [x] implement the method in `GithubService`\r\n-\ + \ [x] create at least two tests for that (with and without specifying\ + \ `namespace`)\r\n" + closed_at: '2019-09-19T09:13:21Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/203/comments + created_at: '2019-09-18T09:06:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/203/events + html_url: https://github.com/packit/ogr/issues/203 + id: 495090506 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: a2eeef default: false description: New feature or a request for enhancement. @@ -63508,147 +86991,200 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: bf6b0b + - color: 7057ff default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: c2ef58 + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/263/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/203/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTY2MDc2ODY= - number: 263 + node_id: MDU6SXNzdWU0OTUwOTA1MDY= + number: 203 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Improve class structure for Labels type - updated_at: '2020-08-24T06:40:40Z' - url: https://api.github.com/repos/packit/ogr/issues/263 + state: closed + title: Implement GitHub method for create_project + updated_at: '2019-09-19T09:27:27Z' + url: https://api.github.com/repos/packit/ogr/issues/203 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + 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/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + 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/svenharris + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "In *Set PR flags in Pagure #381*, the `set_flag` method for Pagure\ - \ pull-requests was left to return the `dict` from the response. \r\n\ - \r\nWrap that response in a class to make working with these kind of\ - \ flags easier." - closed_at: null - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/384/comments - created_at: '2020-04-16T07:35:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/384/events - html_url: https://github.com/packit/ogr/issues/384 - id: 600814459 + author_association: CONTRIBUTOR + body: 'Fixes #203 ' + closed_at: '2019-09-19T09:13:22Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/208/comments + created_at: '2019-09-19T06:12:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/208/events + html_url: https://github.com/packit/ogr/pull/208 + id: 495593829 labels: - - color: 1d76db + - color: 0e8a16 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/208/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE5MTEwNjY0 + number: 208 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/208.diff + html_url: https://github.com/packit/ogr/pull/208 + patch_url: https://github.com/packit/ogr/pull/208.patch + url: https://api.github.com/repos/packit/ogr/pulls/208 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: github method for creating projects added + updated_at: '2019-09-19T09:13:22Z' + url: https://api.github.com/repos/packit/ogr/issues/208 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- [x] Update Pagure response files and fix the tests.\r\n- [x]\ + \ Update GitHub response files and fix the tests.\r\n- ~~[ ] Update\ + \ GitLab response files and fix the tests if needed.~~\r\n\r\nFixes\ + \ #181 " + closed_at: '2019-09-19T08:09:47Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/202/comments + created_at: '2019-09-17T13:18:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/202/events + html_url: https://github.com/packit/ogr/pull/202 + id: 494619035 + labels: + - color: 0e8a16 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: c2ef58 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/384/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/202/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDA4MTQ0NTk= - number: 384 + node_id: MDExOlB1bGxSZXF1ZXN0MzE4MzM1NjYw + number: 202 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/202.diff + html_url: https://github.com/packit/ogr/pull/202 + patch_url: https://github.com/packit/ogr/pull/202.patch + url: https://api.github.com/repos/packit/ogr/pulls/202 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Create a class to hold information on pull-request flags - updated_at: '2020-08-24T06:39:05Z' - url: https://api.github.com/repos/packit/ogr/issues/384 + state: closed + title: Update tests and response files + updated_at: '2019-09-19T08:09:51Z' + url: https://api.github.com/repos/packit/ogr/issues/202 user: - avatar_url: https://avatars0.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} + 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/csomh - id: 11816497 - login: csomh - node_id: MDQ6VXNlcjExODE2NDk3 - organizations_url: https://api.github.com/users/csomh/orgs - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + 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/csomh + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "We need to document usage of ogr on custom/internal instances:\r\ - \n\r\n- [ ] usage of `instance_url`\r\n- [ ] setup of custom/internal\ - \ certificates:\r\n - export `REQUESTS_CA_BUNDLE=/etc/pki/tls/certs/ca-bundle.crt`\r\ - \n - ignore the SSL verification (`ssl_verify` argument)" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/356/comments - created_at: '2020-03-17T14:45:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/356/events - html_url: https://github.com/packit/ogr/issues/356 - id: 583065980 + body: "Currently, we need to know the author of the generated files, because\ + \ we do not know the owner of the fork we are using. (When we are not\ + \ setting the `PAGURE_USER` token, e.i. in CI.)\r\n\r\nAI: Fix the need\ + \ of `LAST_GENERATED_BY = ` constant." + closed_at: '2019-09-19T08:09:47Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/181/comments + created_at: '2019-09-09T08:16:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/181/events + html_url: https://github.com/packit/ogr/issues/181 + id: 490947039 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing - color: 42e529 default: false description: This issue was already processed and well defined. @@ -63656,19 +87192,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/356/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/181/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODMwNjU5ODA= - number: 356 + node_id: MDU6SXNzdWU0OTA5NDcwMzk= + number: 181 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Document the usage of custom instances and certificates - updated_at: '2020-08-24T06:10:50Z' - url: https://api.github.com/repos/packit/ogr/issues/356 + state: closed + title: Avoid saving author of the last generated response-files + updated_at: '2019-09-19T08:09:47Z' + url: https://api.github.com/repos/packit/ogr/issues/181 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -63689,121 +87225,146 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `Failed to init kerberos ticket:` | - - | `f32` | `Failed to init kerberos ticket:` | - - | `f33` | `Failed to init kerberos ticket:` | - - | `master` | `Failed to init kerberos ticket:` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: null - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/456/comments - created_at: '2020-08-20T08:09:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/456/events - html_url: https://github.com/packit/ogr/issues/456 - id: 682514734 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-09-19T07:00:59Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/194/comments + created_at: '2019-09-12T08:49:07Z' + events_url: https://api.github.com/repos/packit/ogr/issues/194/events + html_url: https://github.com/packit/ogr/issues/194 + id: 492670435 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/456/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/194/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2ODI1MTQ3MzQ= - number: 456 + node_id: MDU6SXNzdWU0OTI2NzA0MzU= + number: 194 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: '[packit] Propose update failed for release 0.13.1' - updated_at: '2020-08-20T08:09:32Z' - url: https://api.github.com/repos/packit/ogr/issues/456 + state: closed + title: Release 0.7.0 by /packit propose-update + updated_at: '2019-09-19T07:00:59Z' + url: https://api.github.com/repos/packit/ogr/issues/194 user: - avatar_url: https://avatars0.githubusercontent.com/in/29180?v=4 - events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service-stg - id: 49729116 - login: packit-as-a-service-stg[bot] - node_id: MDM6Qm90NDk3MjkxMTY= - organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions + type: User + url: https://api.github.com/users/phracek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-09-17T09:05:10Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/200/comments + created_at: '2019-09-13T12:21:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/200/events + html_url: https://github.com/packit/ogr/pull/200 + id: 493295672 + labels: + - color: dd5f74 + default: false + description: Work in progress. + id: 1432779248 + name: do-not-merge + node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 + url: https://api.github.com/repos/packit/ogr/labels/do-not-merge + labels_url: https://api.github.com/repos/packit/ogr/issues/200/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE3MzAxMTYz + number: 200 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/200.diff + html_url: https://github.com/packit/ogr/pull/200 + patch_url: https://github.com/packit/ogr/pull/200.patch + url: https://api.github.com/repos/packit/ogr/pulls/200 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'WIP: use requre project and list modules for next work' + updated_at: '2019-09-17T09:07:25Z' + url: https://api.github.com/repos/packit/ogr/issues/200 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Currently, we can instantiate objects (i.e. GitProject), that does\ - \ not exist.\r\n\r\nWe probably need to agree on the common understanding\ - \ of this approach:\r\n\r\n1. allow creating non-existing objects\r\n\ - \ - add `exists() -> Bool` method\r\n - add `create() -> ????`\ - \ methods\r\n - we do not need to connect to servers on each instantiation\r\ - \n - due to laziness it can fail at not-predictable places\r\n2.\ - \ raise an exception in methods like `get_project`\r\n - easier implementation\r\ - \n - we need to connect to the remote service even when it is not\ - \ needed" - closed_at: null - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/214/comments - created_at: '2019-09-19T19:30:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/214/events - html_url: https://github.com/packit/ogr/issues/214 - id: 495986265 + body: '- Use returned GitLab repo instance in GitlabService.project_create.' + closed_at: '2019-09-12T18:18:59Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/197/comments + created_at: '2019-09-12T10:18:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/197/events + html_url: https://github.com/packit/ogr/pull/197 + id: 492715580 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: ff9990 + - color: d93f0b default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - - color: 8be567 + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/214/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/197/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU5ODYyNjU= - number: 214 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODM0MDQ1 + number: 197 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/197.diff + html_url: https://github.com/packit/ogr/pull/197 + patch_url: https://github.com/packit/ogr/pull/197.patch + url: https://api.github.com/repos/packit/ogr/pulls/197 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: '[question] Allow objects representing nonexisting objects' - updated_at: '2020-08-17T12:28:02Z' - url: https://api.github.com/repos/packit/ogr/issues/214 + state: closed + title: Set GitLab object on project_create + updated_at: '2019-09-12T19:29:31Z' + url: https://api.github.com/repos/packit/ogr/issues/197 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -63824,22 +87385,199 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Add method to project classes to delete project.\r\n\r\nAC:\r\n\ - - [ ] In each implementation, add the `delete` method to project class\ - \ and implement it.\r\n - If possible/supported. (Document that if\ - \ it is not possible.)\r\n- [ ] Add tests for that.\r\n\r\nLinks:\r\n\ - - https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ - \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ - \n- https://pagure.io/api/0/ (not found the possible API call for that\ - \ on the first look)" - closed_at: null - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/215/comments - created_at: '2019-09-20T05:36:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/215/events - html_url: https://github.com/packit/ogr/issues/215 - id: 496154927 + author_association: CONTRIBUTOR + body: "In `packit-service`, I am using method `who_can_merge_pr` for getting\ + \ users who can merge PR.\r\n\r\n* `get_owners` for repository `packit-service/packit-service`\ + \ returns list `['packit-service']`\r\n```\r\n[2019-07-22 08:52:07,528:\ + \ DEBUG/ForkPoolWorker-1] Repository owners ['packit-service']\r\n```\r\ + \n* `who_can_merge_pr` for repository `rebase-helper/rebase-helper`\ + \ returns list like `{'FrNecas', 'uhliarik', 'phracek', 'nforro', 'thozza'}`\ + \ but for `packit-service/packit-service` repo it failed with traceback\r\ + \n\r\n```\r\n[2019-07-22 08:52:08,368: ERROR/ForkPoolWorker-1] Task\ + \ task.steve_jobs.process_message[9c44c1c8-5cf7-4a98-88d5-b0dbaca0262f]\ + \ raised unexpected: AttributeError(\"'Repository' object has no attribute\ + \ 'get_collaborator_permission'\")\r\nTraceback (most recent call last):\r\ + \n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ + , line 385, in trace_task\r\n R = retval = fun(*args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ + , line 648, in __protected_call__\r\n return self.run(*args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ + , line 31, in process_message\r\n return SteveJobs().process_message(event=event,\ + \ topic=topic)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 383, in process_message\r\n jobs_results = self.process_jobs(trigger,\ + \ package_config, event, project)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 341, in process_jobs\r\n handlers_results[job.job.value] =\ + \ handler.run()\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 793, in run\r\n return self.handle_pull_request()\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 717, in handle_pull_request\r\n collaborators = self.project.who_can_merge_pr()\r\ + \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ + , line 254, in who_can_merge_pr\r\n collaborators = self._get_collaborators_with_permission()\r\ + \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ + , line 294, in _get_collaborators_with_permission\r\n permission\ + \ = self.github_repo.get_collaborator_permission(user)\r\nAttributeError:\ + \ 'Repository' object has no attribute 'get_collaborator_permission'\r\ + \n```\r\n\r\nFunction GITHUB API function which gets all collaborators\ + \ returns\r\n```\r\n[2019-07-22 08:52:08,136: DEBUG/ForkPoolWorker-1]\ + \ GET https://api.github.com/repos/packit-service/hello-world/collaborators\ + \ \r\n{'Authorization': 'token (oauth token removed)', 'User-Agent':\ + \ 'PyGithub/Python'} None ==> 200 {'date': 'Mon, 22 Jul 2019 08:52:05\ + \ GMT', 'content-type': 'application/json; charset=utf-8', 'content-length':\ + \ '9897', 'server': 'GitHub.com', 'status': '200 OK', 'x-ratelimit-limit':\ + \ '5000', 'x-ratelimit-remaining': '4997', 'x-ratelimit-reset': '1563789120',\ + \ 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept-Encoding',\ + \ 'etag': '\"608e280b2b2bc2d96b1393ce9c294cee\"', 'x-github-media-type':\ + \ 'github.v3; format=json', 'access-control-expose-headers': 'ETag,\ + \ Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining,\ + \ X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval,\ + \ X-GitHub-Media-Type', 'access-control-allow-origin': '*', 'strict-transport-security':\ + \ 'max-age=31536000; includeSubdomains; preload', 'x-frame-options':\ + \ 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1;\ + \ mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin',\ + \ 'content-security-policy': \"default-src 'none'\", 'x-github-request-id':\ + \ '1110:253E:289043:3B0BB6:5D357935'}b'[\r\n{\"login\":\"jpopelka\"\ + ,\"id\":288686,\"node_id\":\"MDQ6VXNlcjI4ODY4Ng==\",\"avatar_url\":\"\ + https://avatars0.githubusercontent.com/u/288686?v=4\",\"gravatar_id\"\ + :\"\",\"url\":\"https://api.github.com/users/jpopelka\",\"html_url\"\ + :\"https://github.com/jpopelka\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/jpopelka/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/jpopelka/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/jpopelka/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/jpopelka/repos\",\"events_url\"\ + :\"https://api.github.com/users /jpopelka/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/jpopelka/received_events\",\"type\"\ + :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"TomasTomecek\",\"id\":1662493,\"\ + node_id\":\"MDQ6VXNlcjE2NjI0OTM=\",\"avatar_url\":\"https://avatars0.githubusercontent.com/u/1662493?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/TomasTomecek\"\ + ,\"html_url\":\"https://github.com/TomasTomecek\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/TomasTomecek/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/TomasTomecek/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/TomasTomecek/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/TomasTomecek/repos\",\"\ + events_url\":\"https://api.github.com/users/TomasTomecek/events{/privacy}\"\ + ,\"received_events_url\":\"https://api.github.com/users/TomasTomecek/received_events\"\ + ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ + push\":true,\"pull\":true}},\r\n{\"login\":\"eliskasl\",\"id\":1866652,\"\ + node_id\":\"MDQ6VXNlcjE4NjY2NTI=\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/1866652?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/eliskasl\"\ + ,\"html_url\":\"https://github.com/eliskasl\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/eliskasl/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/eliskasl/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/eliskasl/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/eliskasl/repos\",\"events_url\"\ + :\"https://api.github.com/users/eliskasl/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/ eliskasl/received_events\",\"type\"\ + :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"phracek\",\"id\":3416672,\"node_id\"\ + :\"MDQ6VXNlcjM0MTY2NzI=\",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/3416672?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/phracek\"\ + ,\"html_url\":\"https://github.com/phracek\",\"followers_url\":\"https://api.github.com/users/phracek/followers\"\ + ,\"following_url\":\"https://api.github.com/users/phracek/following{/other_user}\"\ + ,\"gists_url\":\"https://api.github.com/users/phracek/gists{/gist_id}\"\ + ,\"starred_url\":\"https://api.github.com/users/phracek/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/phracek/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/phracek/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/phracek/repos\",\"events_url\"\ + :\"https://api.github.com/users/phracek/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/phracek/received_events\",\"type\":\"\ + User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"jscotka\",\"id\":8735467,\"node_id\"\ + :\"MDQ6VXNlcjg3MzU0Njc=\",\"avatar_url\":\"https://avatars0.githubusercontent.com/u/8735467?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/jscotka\"\ + ,\"html_url\":\"https://github.com/jscotka\",\"followers_url\":\"https://api.github.com/users/jscotka/followers\"\ + ,\"following_url\":\"https://api.github.com/users/jscotka/following{/other_user}\"\ + ,\"gists_url\":\"https://api.github.com/users/jscotka/gists{/gist_id}\"\ + ,\"starred_url\":\"https://api.github.com/users/jscotka/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/jscotka/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/jscotka/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/jscotka/repos\",\"events_url\"\ + :\"https://api.github.com/users/jscotka/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/jscotka/received_events\",\"type\":\"\ + User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},{\"login\":\"lachmanfrantisek\",\"id\":202140\ + \ 43,\"node_id\":\"MDQ6VXNlcjIwMjE0MDQz\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/20214043?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/lachmanfrantisek\"\ + ,\"html_url\":\"https://github.com/lachmanfrantisek\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/lachmanfrantisek/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/lachmanfrantisek/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/lachmanfrantisek/repos\"\ + ,\"events_url\":\"https://api.github.com/users/lachmanfrantisek/events{/privacy}\"\ + ,\"received_events_url\":\"https://api.github.com/users/lachmanfrantisek/received_events\"\ + ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ + push\":true,\"pull\":true}},\r\n{\"login\":\"rpitonak\",\"id\":26160778,\"\ + node_id\":\"MDQ6VXNlcjI2MTYwNzc4\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/26160778?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/rpitonak\"\ + ,\"html_url\":\"https://github.com/rpitonak\",\"followers_url\":\"https://api.github.com/users/rpitonak/followers\"\ + ,\"following_url\":\"https://api.github.com/users/rpitonak/following{/other_user}\"\ + ,\"gists_url\":\"https://api.github.com/users/rpitonak/gists{/gist_id}\"\ + ,\"starred_url\":\"https://api.github.com/users/rpitonak/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/rpitonak/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/rpitonak/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/rpitonak/repos\",\"events_url\"\ + :\"https://api.github.com/users/rpitonak/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/rpitonak/received_events\",\"type\"\ + :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"dhodovsk\",\"id\":31201372,\"\ + node_id\":\"MDQ6VXNlcjMxMjAxMzcy \",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/31201372?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/dhodovsk\"\ + ,\"html_url\":\"https://github.com/dhodovsk\",\"followers_url\":\"https://api.github.com/users/dhodovsk/followers\"\ + ,\"following_url\":\"https://api.github.com/users/dhodovsk/following{/other_user}\"\ + ,\"gists_url\":\"https://api.github.com/users/dhodovsk/gists{/gist_id}\"\ + ,\"starred_url\":\"https://api.github.com/users/dhodovsk/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/dhodovsk/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/dhodovsk/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/dhodovsk/repos\",\"events_url\"\ + :\"https://api.github.com/users/dhodovsk/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/dhodovsk/received_events\",\"type\"\ + :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"usercont-release-bot\",\"id\"\ + :36231209,\"node_id\":\"MDQ6VXNlcjM2MjMxMjA5\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/36231209?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/usercont-release-bot\"\ + ,\"html_url\":\"https://github.com/usercont-release-bot\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/usercont-release-bot/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/usercont-release-bot/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/usercont-release-bot/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/usercont-release-bot/repos\"\ + ,\"events_url\":\"https://api.github.com/users/usercont-release-bot/events{/privacy}\"\ + ,\"received_events_url\":\"https://api.github.com/users/usercont-release-bot/received_events\"\ + ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ + push\":true,\"pull\":true}},\r\n{\"login\":\"lbarcziova\",\"id\":49026743,\"\ + node_id\": \"MDQ6VXNlcjQ5MDI2NzQz\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/49026743?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/lbarcziova\"\ + ,\"html_url\":\"https://github.com/lbarcziova\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/lbarcziova/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/lbarcziova/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/lbarcziova/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/lbarcziova/repos\",\"\ + events_url\":\"https://api.github.com/users/lbarcziova/events{/privacy}\"\ + ,\"received_events_url\":\"https://api.github.com/users/lbarcziova/received_events\"\ + ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ + push\":true,\"pull\":true}}]'\r\n```" + closed_at: '2019-09-12T11:13:02Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/132/comments + created_at: '2019-07-22T09:03:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/132/events + html_url: https://github.com/packit/ogr/issues/132 + id: 470977370 labels: - color: '000000' default: false @@ -63848,293 +87586,301 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/215/labels{/name} + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/132/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTYxNTQ5Mjc= - number: 215 + node_id: MDU6SXNzdWU0NzA5NzczNzA= + number: 132 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Implement GitProject.delete() - updated_at: '2020-08-17T10:59:13Z' - url: https://api.github.com/repos/packit/ogr/issues/215 + state: closed + title: fnc `who_can_merge_pr` fails with traceback + updated_at: '2019-09-12T15:19:54Z' + url: https://api.github.com/repos/packit/ogr/issues/132 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/phracek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- [ ] Check tests and create them if necessary\r\n- [ ] Implement\ - \ creating diff comments for GitLab (already implemented for GitHub\ - \ and Pagure)\r\n- [ ] Create and implement interface for properties\ - \ of diff comments (`is_diff_comment`, `commit`, `path`, `position`;\ - \ consider new/old or only one)\r\n- [ ] Implement functions for acquiring\ - \ diff comments on pull requests, e.g. `get_diff_comments`" - closed_at: null - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/424/comments - created_at: '2020-05-29T09:01:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/424/events - html_url: https://github.com/packit/ogr/issues/424 - id: 627115330 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/424/labels{/name} + author_association: CONTRIBUTOR + body: "I would like to solve an issue https://github.com/packit-service/packit/issues/328\r\ + \nbut it failed with traceback:\r\n\r\n~~~\r\n$ packit -d propose-update\r\ + \n[..snip..]\r\n10:40:20.990 upstream.py DEBUG Version in spec\ + \ file: 0.16.3\r\nPicking version found in spec file.\r\nChecking out\ + \ upstream version 0.16.3\r\n10:40:21.013 base_git.py DEBUG Allowed\ + \ GPG keys are not set, skipping the verification.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running ActionName.pre_sync hook.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running ActionName.pre_sync.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running default implementation for ActionName.pre_sync.\r\ + \nUsing 'master' dist-git branch\r\n10:40:21.017 base_git.py DEBUG\ + \ It seems that branch master already exists, checking it out.\r\n\ + 10:40:21.020 distgit.py DEBUG About to update branch 'master'\r\ + \n10:40:21.727 api.py DEBUG Path of README /tmp/tmpzla3qy3y/README.packit\r\ + \n10:40:21.728 base_git.py DEBUG Running ActionName.prepare_files.\r\ + \n10:40:21.729 base_git.py DEBUG Running default implementation\ + \ for ActionName.prepare_files.\r\n10:40:21.729 sync.py DEBUG\ + \ Copy synced files [RawSyncFilesItem(src=/home/vagrant/rebase-helper/.packit.yml,\ + \ dest=/tmp/tmpzla3qy3y/.packit.yml, dist_is_dir=False), RawSyncFilesItem(src=/home/vagrant/rebase-helper/rebase-helper.spec,\ + \ dest=/tmp/tmpzla3qy3y/rebase-helper.spec, dist_is_dir=False)]\r\n\ + 10:40:21.730 sync.py DEBUG src = /home/vagrant/rebase-helper/.packit.yml,\ + \ dest = /tmp/tmpzla3qy3y/.packit.yml\r\nCopying /home/vagrant/rebase-helper/.packit.yml\ + \ to /tmp/tmpzla3qy3y/.packit.yml.\r\n10:40:21.731 sync.py \ + \ DEBUG src = /home/vagrant/rebase-helper/rebase-helper.spec, dest\ + \ = /tmp/tmpzla3qy3y/rebase-helper.spec\r\nCopying /home/vagrant/rebase-helper/rebase-helper.spec\ + \ to /tmp/tmpzla3qy3y/rebase-helper.spec.\r\n10:40:21.814 distgit.py\ + \ DEBUG Upstream archive name is 'rebase-helper-0.16.3.tar.gz'\r\ + \nArchive rebase-helper-0.16.3.tar.gz found in lookaside cache (skipping\ + \ upload).\r\n10:40:22.347 distgit.py DEBUG Upstream archive\ + \ name is 'rebase-helper-0.16.3.tar.gz'\r\n10:40:22.348 base_git.py\ + \ DEBUG About to add all & commit\r\n10:40:22.366 distgit.py\ + \ DEBUG About to force push changes to branch 0.16.3-master-update\ + \ of a fork fork of the dist-git repo\r\n10:40:32.251 distgit.py \ + \ DEBUG About to create dist-git pull request from 0.16.3-master-update\ + \ to master\r\nERROR There was an error while creating the PR: PagureAPIException('Page\ + \ `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.')\r\nERROR Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.\r\nTraceback (most recent call\ + \ last):\r\n File \"/usr/local/lib/python3.7/site-packages/packit/cli/utils.py\"\ + , line 58, in covered_func\r\n func(config=config, *args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/packit/cli/update.py\"\ + , line 113, in update\r\n upstream_ref=upstream_ref,\r\n File \"\ + /usr/local/lib/python3.7/site-packages/packit/api.py\", line 229, in\ + \ sync_release\r\n dist_git_branch=dist_git_branch,\r\n File \"\ + /usr/local/lib/python3.7/site-packages/packit/api.py\", line 316, in\ + \ push_and_create_pr\r\n target_branch=dist_git_branch,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit/distgit.py\", line\ + \ 211, in create_pull\r\n target_branch=target_branch,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/ogr/mock_core.py\", line\ + \ 49, in readonly_func\r\n return func(self, *args, **kwargs)\r\n\ + \ File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 377, in pr_create\r\n \"initial_comment\": body,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 232, in _call_project_api\r\n url=request_url, method=method,\ + \ params=params, data=data\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 71, in call_api\r\n raise PagureAPIException(f\"Page `{url}`\ + \ not found when calling Pagure API.\")\r\nogr.exceptions.PagureAPIException:\ + \ Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.\r\n10:40:34.958 local_project.py\ + \ DEBUG Cleaning: /tmp/tmpzla3qy3y\r\n~~~\r\n\r\n\r\nReferenced issues:\r\ + \nhttps://pagure.io/pagure/issue/4512\r\nhttps://github.com/packit-service/packit/issues/328\r\ + \n" + closed_at: '2019-09-12T11:17:19Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/91/comments + created_at: '2019-06-27T10:41:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/91/events + html_url: https://github.com/packit/ogr/issues/91 + id: 461455149 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/91/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjcxMTUzMzA= - number: 424 + node_id: MDU6SXNzdWU0NjE0NTUxNDk= + number: 91 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Diff/review comments on pull requests - updated_at: '2020-08-17T08:56:04Z' - url: https://api.github.com/repos/packit/ogr/issues/424 + state: closed + title: ' Page `/fork/phracek/rpms/rebase-helper/pull-request/new` not + found when calling Pagure API' + updated_at: '2019-09-12T11:17:20Z' + url: https://api.github.com/repos/packit/ogr/issues/91 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/phracek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "and ideally link it with pull request and git project\r\n\r\nThe\ - \ expectation here is that when ogr returns name of a branch, it would\ - \ return a GitBranch instance instead.\r\n\r\nThe class should contain\ - \ at minimum:\r\n* name\r\n* be linked to a repository\r\n\r\nWould\ - \ be nice if:\r\n* there was a connection to a PR if there is one\r\n\ - * datetime it was created\r\n* datetime of last change" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/359/comments - created_at: '2020-03-23T12:36:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/359/events - html_url: https://github.com/packit/ogr/issues/359 - id: 586176845 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/359/labels{/name} + author_association: CONTRIBUTOR + body: "see log: \r\nhttps://softwarefactory-project.io/logs/13/513/8c3c6370096e5834c90dc5ff06e47cf9f3443cde/check/tests-pip-deps/cd79e16/job-output.txt.gz\r\ + \nwith git master it works, but pypi and rpm version of ogr fails with\ + \ errors like:\r\n**TypeError: __init__() got an unexpected keyword\ + \ argument 'exception'**\r\n\r\n```\r\n self = .ClassWithPersistentStorage\ + \ object at 0x7fa913e99450>\r\n2019-09-06 07:32:25.448747 | test-node\ + \ | url = 'https://src.fedoraproject.org//api/0/rpms/python-ogr/git/branches'\r\ + \n2019-09-06 07:32:25.448840 | test-node | method = 'GET', params =\ + \ None, data = None, header = None\r\n2019-09-06 07:32:25.448859 | test-node\ + \ |\r\n2019-09-06 07:32:25.448868 | test-node | def get_raw_request(\r\ + \n2019-09-06 07:32:25.448909 | test-node | self, url, method=\"\ + GET\", params=None, data=None, header=None\r\n2019-09-06 07:32:25.448924\ + \ | test-node | ):\r\n2019-09-06 07:32:25.448949 | test-node | \ + \ keys_internal = [method, url, params, data]\r\n2019-09-06 07:32:25.448977\ + \ | test-node | if self.persistent_storage.is_write_mode:\r\n\ + 2019-09-06 07:32:25.449005 | test-node | output = super().get_raw_request(\r\ + \n2019-09-06 07:32:25.449038 | test-node | url, method=method,\ + \ params=params, data=data, header=header\r\n2019-09-06 07:32:25.449066\ + \ | test-node | )\r\n2019-09-06 07:32:25.449078 | test-node\ + \ | self.persistent_storage.store(\r\n2019-09-06 07:32:25.449120\ + \ | test-node | keys=keys_internal, values=output.to_json_format()\r\ + \n2019-09-06 07:32:25.449148 | test-node | )\r\n2019-09-06\ + \ 07:32:25.449159 | test-node | else:\r\n2019-09-06 07:32:25.449190\ + \ | test-node | output_dict = self.persistent_storage.read(keys=keys_internal)\r\ + \n2019-09-06 07:32:25.449242 | test-node | > output = RequestResponse(**output_dict)\r\ + \n2019-09-06 07:32:25.449276 | test-node | E TypeError: __init__()\ + \ got an unexpected keyword argument 'exception'\r\n```" + closed_at: '2019-09-12T11:08:06Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/177/comments + created_at: '2019-09-06T07:58:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/177/events + html_url: https://github.com/packit/ogr/issues/177 + id: 490185857 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/177/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODYxNzY4NDU= - number: 359 + node_id: MDU6SXNzdWU0OTAxODU4NTc= + number: 177 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: introduce a class for a git branch - updated_at: '2020-08-10T09:23:58Z' - url: https://api.github.com/repos/packit/ogr/issues/359 + state: closed + title: adding storing exception to RecordRequest class in utils caused + regression + updated_at: '2019-09-12T11:08:06Z' + url: https://api.github.com/repos/packit/ogr/issues/177 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "and ideally link it with pull request, branch, author and git project\r\ - \n\r\nThe expectation here is that when ogr returns a commit has, it\ - \ would return a GitCommit instance instead.\r\n\r\nThe class should\ - \ contain at minimum:\r\n* sha\r\n* be linked to a repository\r\n* author\r\ - \n* datetime it was created\r\n* subject\r\n* body\r\n* branch it's\ - \ on\r\n\r\n@lachmanfrantisek added links to the documentation:\r\n\ - - Github:\r\n - https://pygithub.readthedocs.io/en/latest/examples/Commit.html\r\ - \n - https://pygithub.readthedocs.io/en/latest/github_objects/Commit.html\r\ - \n - https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.get_commits\r\ - \n - https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.merge_commit_sha\ - \ (?)\r\n- Gitlab:\r\n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html\r\ - \n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\ - \ -> `List commits of a MR:`\r\n- Pagure:\r\n - https://src.fedoraproject.org/api/0/\ - \ -> `Pull-request information`" - closed_at: null - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/360/comments - created_at: '2020-03-23T12:38:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/360/events - html_url: https://github.com/packit/ogr/issues/360 - id: 586178020 + author_association: CONTRIBUTOR + body: When new people come to the OGR repository, I think it is worth + to have a simple example on the top part of README.md demonstrating + the usage. WDYT? + closed_at: '2019-09-12T10:57:56Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/195/comments + created_at: '2019-09-12T09:33:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/195/events + html_url: https://github.com/packit/ogr/pull/195 + id: 492693187 labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/360/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/195/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODYxNzgwMjA= - number: 360 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODE1NjE1 + number: 195 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/195.diff + html_url: https://github.com/packit/ogr/pull/195 + patch_url: https://github.com/packit/ogr/pull/195.patch + url: https://api.github.com/repos/packit/ogr/pulls/195 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: introduce a new class for GitCommit - updated_at: '2020-08-10T09:23:51Z' - url: https://api.github.com/repos/packit/ogr/issues/360 + state: closed + title: Quickstart example + updated_at: '2019-09-12T10:57:56Z' + url: https://api.github.com/repos/packit/ogr/issues/195 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 + events_url: https://api.github.com/users/rpitonak/events{/privacy} + followers_url: https://api.github.com/users/rpitonak/followers + following_url: https://api.github.com/users/rpitonak/following{/other_user} + gists_url: https://api.github.com/users/rpitonak/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/rpitonak + id: 26160778 + login: rpitonak + node_id: MDQ6VXNlcjI2MTYwNzc4 + organizations_url: https://api.github.com/users/rpitonak/orgs + received_events_url: https://api.github.com/users/rpitonak/received_events + repos_url: https://api.github.com/users/rpitonak/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/rpitonak/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/rpitonak - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "* [ ] Project\r\n* [ ] Service (**don't** include secrets)\r\n\ - * [ ] Release\r\n* [ ] PR\r\n* [ ] Issue" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/365/comments - created_at: '2020-03-25T13:23:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/365/events - html_url: https://github.com/packit/ogr/issues/365 - id: 587692896 + author_association: CONTRIBUTOR + body: "Fixes #168 \r\nTest for creating fork succeeded first time and\ + \ since that it has been failing and I can't find out the reason." + closed_at: '2019-09-12T10:04:42Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/192/comments + created_at: '2019-09-11T12:39:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/192/events + html_url: https://github.com/packit/ogr/pull/192 + id: 492212114 labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: a2eeef default: false description: New feature or a request for enhancement. @@ -64142,211 +87888,137 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/365/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/192/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODc2OTI4OTY= - number: 365 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2NDI3NjE1 + number: 192 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/192.diff + html_url: https://github.com/packit/ogr/pull/192 + patch_url: https://github.com/packit/ogr/pull/192.patch + url: https://api.github.com/repos/packit/ogr/pulls/192 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: add __repr__ to classes - updated_at: '2020-08-10T09:23:44Z' - url: https://api.github.com/repos/packit/ogr/issues/365 + state: closed + title: Forking methods + updated_at: '2019-09-12T10:04:42Z' + url: https://api.github.com/repos/packit/ogr/issues/192 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `The distgit repository /tmp/packit-dist-git9pvi9zgh is dirty.This - is not supported.` | - - | `f32` | `The distgit repository /tmp/packit-dist-git9pvi9zgh is dirty.This - is not supported.` | - - | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.13.0.tar.gz. - Reason: ''Not Found''. ` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: null - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/448/comments - created_at: '2020-08-07T09:12:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/448/events - html_url: https://github.com/packit/ogr/issues/448 - id: 674879684 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/448/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2NzQ4Nzk2ODQ= - number: 448 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: '[packit] Propose update failed for release 0.13.0' - updated_at: '2020-08-07T09:12:33Z' - url: https://api.github.com/repos/packit/ogr/issues/448 - user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + assignee: + 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/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "After the Packit organisation rename, I had to regenerate the test\ - \ data for GitHub. This proved to be a considerable effort, with roughly\ - \ the following steps:\r\n\r\n- create a Python virtualenv and install\ - \ test dependencies - this needed several attempts, to get it right.\r\ - \n- clean up test data for GitHub\r\n- set my GitHub API token\r\n-\ - \ run the tests with `make check` only to realise that the `GITHUB_APP_ID`\ - \ and the `GITHUB_APP_PRIVATE_KEY_PATH` env vars were not set. Ask by\ - \ the team how what values to set these (stage is fine) and run the\ - \ tests again.\r\n- Start following comments left in individul tests,\ - \ to manually bring the repos, PRs, issues in the state the state expected\ - \ them to be. For this I had to run the tests over and over again, see\ - \ a test fail, inspect the failure to figure out the reason, fix the\ - \ pre-conditions and run the tests again to check that the fix worked.\r\ - \n\r\nThe above is extremely tedious and frustrating.\r\n\r\nRegenerating\ - \ test data should be trivial, for example:\r\n\r\n- if credentials\ - \ are needed, the contribution guide should explicitly call those out\ - \ with clear indication what their values/credentials should be.\r\n\ - - they should be checked to be set even before starting any test run.\r\ - \n- pre-conditions for tests should be checked, and preferably automatically\ - \ set up given the credentials above, without requiring any manual action.\r\ - \n- if it's still required to set pre-conditions manually, these steps\ - \ should be clearly called out with detailed instructions in the contribution\ - \ guide. " - closed_at: null - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/445/comments - created_at: '2020-08-03T13:50:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/445/events - html_url: https://github.com/packit/ogr/issues/445 - id: 672091016 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/445/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2NzIwOTEwMTY= - number: 445 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Regenerating the test data for the integration tests should be - trivial - updated_at: '2020-08-03T13:50:00Z' - url: https://api.github.com/repos/packit/ogr/issues/445 - user: - avatar_url: https://avatars0.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} + 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 + assignees: + - 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/csomh - id: 11816497 - login: csomh - node_id: MDQ6VXNlcjExODE2NDk3 - organizations_url: https://api.github.com/users/csomh/orgs - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + 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/csomh - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "Pipelines are specific to the GitLab but there were some requests\ - \ (ping @thrix ) to support them in OGR as well.\r\n\r\n- It's going\ - \ against the purpose of OGR to have one API for multiple forges. :-1:\ - \ \r\n- Users can access `python-gitlab` to do that instead. :-1: \r\ - \n - But it's not a good UX. `python-gitlab` is our implementation\ - \ detail. We should not force users to access that. :+1: \r\n- Technically\ - \ it will be easy to implement. :+1: (No big changes needed, just add\ - \ some GitLab specific classes and methods.)\r\n- It will be useful\ - \ for packit-service GitLab implementation :+1: (ping @shreyaspapi ..;-)\r\ - \n\r\nAC:\r\n- [ ] Provide a class abstraction on top of the objects\ - \ related to that.\r\n - Make here a proposal before coding.\r\n- [\ - \ ] Implement useful methods and classes.\r\n- [ ] Create new issues\ - \ for anything that can be implemented later." - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/420/comments - created_at: '2020-05-26T14:37:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/420/events - html_url: https://github.com/packit/ogr/issues/420 - id: 624934468 + body: "```python\r\n @property\r\n def is_fork(self) -> bool:\r\n\ + \ raise NotImplementedError()\r\n\r\n @property\r\n def\ + \ parent(self) -> Optional[\"GitlabProject\"]:\r\n raise NotImplementedError()\r\ + \n\r\n def is_forked(self) -> bool:\r\n raise NotImplementedError()\r\ + \n\r\n def get_fork(self, create: bool = True) -> Optional[\"GitlabProject\"\ + ]:\r\n raise NotImplementedError()\r\n\r\n```\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\ + \ -> Fork a project\r\n- An old snippet of code that may be helpful:\r\ + \n\r\n```python\r\n @staticmethod\r\n def is_fork_of(user_repo,\ + \ target_repo):\r\n \"\"\" is provided repo fork of the {parent_repo}/?\ + \ \"\"\"\r\n return user_repo.forked_from_project[\"id\"] ==\ + \ target_repo.id\r\n\r\n def fork(self, target_repo):\r\n \ + \ target_repo_org, target_repo_name = target_repo.split(\"/\", 1)\r\n\ + \r\n target_repo_gl = self.gitlab_instance.projects.get(target_repo)\r\ + \n\r\n try:\r\n # is it already forked?\r\n \ + \ user_repo = self.gitlab_instance.projects.get(\r\n \ + \ \"{}/{}\".format(self.user.get_username(), target_repo_name)\r\ + \n )\r\n if not self.is_fork_of(user_repo, target_repo_gl):\r\ + \n raise RuntimeError(\r\n \"repo\ + \ %s is not a fork of %s\" % (user_repo, target_repo_gl)\r\n \ + \ )\r\n except Exception:\r\n # nope\r\n \ + \ user_repo = None\r\n\r\n if self.user.get_username()\ + \ == target_repo_org:\r\n # user wants to fork its own repo;\ + \ let's just set up remotes 'n stuff\r\n if not user_repo:\r\ + \n raise RuntimeError(\"repo %s not found\" % target_repo_name)\r\ + \n clone_repo_and_cd_inside(\r\n user_repo.path,\ + \ user_repo.attributes[\"ssh_url_to_repo\"], target_repo_org\r\n \ + \ )\r\n else:\r\n user_repo = user_repo or\ + \ self._fork_gracefully(target_repo_gl)\r\n\r\n clone_repo_and_cd_inside(\r\ + \n user_repo.path, user_repo.attributes[\"ssh_url_to_repo\"\ + ], target_repo_org\r\n )\r\n\r\n set_upstream_remote(\r\ + \n clone_url=target_repo_gl.attributes[\"http_url_to_repo\"\ + ],\r\n ssh_url=target_repo_gl.attributes[\"ssh_url_to_repo\"\ + ],\r\n pull_merge_name=\"merge-requests\",\r\n \ + \ )\r\n set_origin_remote(\r\n user_repo.attributes[\"\ + ssh_url_to_repo\"], pull_merge_name=\"merge-requests\"\r\n )\r\ + \n fetch_all()\r\n\r\n @staticmethod\r\n def _fork_gracefully(target_repo):\r\ + \n \"\"\" fork if not forked, return forked repo \"\"\"\r\n \ + \ try:\r\n logger.info(\"forking repo %s\", target_repo)\r\ + \n fork = target_repo.forks.create({})\r\n except\ + \ gitlab.GitlabCreateError:\r\n logger.error(\"repo %s cannot\ + \ be forked\" % target_repo)\r\n raise RuntimeError(\"repo\ + \ %s not found\" % target_repo)\r\n\r\n return fork\r\n```" + closed_at: '2019-09-12T10:04:41Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/168/comments + created_at: '2019-09-06T07:20:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/168/events + html_url: https://github.com/packit/ogr/issues/168 + id: 490171633 labels: - color: d93f0b default: false @@ -64362,19 +88034,33 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/420/labels{/name} + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/168/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjQ5MzQ0Njg= - number: 420 + node_id: MDU6SXNzdWU0OTAxNzE2MzM= + number: 168 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Support for GitLab pipelines - updated_at: '2020-08-03T07:28:07Z' - url: https://api.github.com/repos/packit/ogr/issues/420 + state: closed + title: Implement GitLab methods for forking + updated_at: '2019-09-12T10:04:41Z' + url: https://api.github.com/repos/packit/ogr/issues/168 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -64395,25 +88081,117 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "We have `get_username` method in GitUser class. At the moment we\ - \ are missing method `get_email` for both Github and Pagure services.\r\ - \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" - closed_at: null - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments - created_at: '2019-07-18T07:56:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/126/events - html_url: https://github.com/packit/ogr/issues/126 - id: 469623000 + author_association: CONTRIBUTOR + body: 'Fixes #173 + fix of get_pr_list and get_issue_list' + closed_at: '2019-09-12T08:58:35Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/191/comments + created_at: '2019-09-11T12:07:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/191/events + html_url: https://github.com/packit/ogr/pull/191 + id: 492196881 labels: - - color: 1d76db + - color: 0e8a16 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/191/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE2NDE1MTM4 + number: 191 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/191.diff + html_url: https://github.com/packit/ogr/pull/191 + patch_url: https://github.com/packit/ogr/pull/191.patch + url: https://api.github.com/repos/packit/ogr/pulls/191 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: pr close, merge methods + updated_at: '2019-09-12T08:58:35Z' + url: https://api.github.com/repos/packit/ogr/issues/191 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "```python\r\n def pr_close(self, pr_id: int) -> \"PullRequest\"\ + :\r\n pass\r\n\r\n def pr_merge(self, pr_id: int) -> \"PullRequest\"\ + :\r\n pass\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ + \n- https://docs.gitlab.com/ee/api/merge_requests.html" + closed_at: '2019-09-12T08:58:35Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/173/comments + created_at: '2019-09-06T07:23:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/173/events + html_url: https://github.com/packit/ogr/issues/173 + id: 490172801 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: a2eeef default: false description: New feature or a request for enhancement. @@ -64435,74 +88213,103 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/126/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/173/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njk2MjMwMDA= - number: 126 + node_id: MDU6SXNzdWU0OTAxNzI4MDE= + number: 173 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: get_email for GitUser - updated_at: '2020-07-31T10:43:43Z' - url: https://api.github.com/repos/packit/ogr/issues/126 + state: closed + title: Implement GitLab methods for pr close/merge + updated_at: '2019-09-12T08:58:35Z' + url: https://api.github.com/repos/packit/ogr/issues/173 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Be able to run tests via tmt also locally.' - closed_at: null - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/358/comments - created_at: '2020-03-19T08:50:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/358/events - html_url: https://github.com/packit/ogr/pull/358 - id: 584255021 + body: "- Implement service.project_create for GitLab.\r\n\r\n\r\n(reason:\ + \ I would like to use OGR in my [figitool](https://gitlab.fi.muni.cz/xlachma1/figitool)\ + \ and this functionality is missing.)" + closed_at: '2019-09-12T08:09:14Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/189/comments + created_at: '2019-09-11T07:58:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/189/events + html_url: https://github.com/packit/ogr/pull/189 + id: 492077676 labels: - - color: dd5f74 + - color: d93f0b default: false - description: Work in progress. - id: 1432779248 - name: do-not-merge - node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 - url: https://api.github.com/repos/packit/ogr/labels/do-not-merge - labels_url: https://api.github.com/repos/packit/ogr/issues/358/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/189/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzkwODczODYy - number: 358 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2MzIwMzE0 + number: 189 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/358.diff - html_url: https://github.com/packit/ogr/pull/358 - patch_url: https://github.com/packit/ogr/pull/358.patch - url: https://api.github.com/repos/packit/ogr/pulls/358 + diff_url: https://github.com/packit/ogr/pull/189.diff + html_url: https://github.com/packit/ogr/pull/189 + patch_url: https://github.com/packit/ogr/pull/189.patch + url: https://api.github.com/repos/packit/ogr/pulls/189 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: 'WIP: Tmt local run' - updated_at: '2020-07-28T12:13:04Z' - url: https://api.github.com/repos/packit/ogr/issues/358 + state: closed + title: Creating Gitlab projects + updated_at: '2019-09-12T08:09:18Z' + url: https://api.github.com/repos/packit/ogr/issues/189 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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} @@ -64520,88 +88327,350 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* changed sha\n* tests on\ + \ new repo\n* test fixed\n* raising exception\n* method get_sha_from_tag\n\ + * gitlab: project info methods\n* note added\n* method get_latest_release\n\ + * Fix some typing issues in factory.py\n* Not overwrite the gitlab token\ + \ when set on read-mode\n* Support GitlabAuthenticationError in response\ + \ files as well\n* fix backward compafibility for tests\n* Test creating\ + \ Pagure PRs and fix some username problems in Pagure tests\n* Creating\ + \ Pagure PRs calls upstream project url (not the url of fork)\n* Return\ + \ Gitlab specific release in get_latest_release in GitlabProject\n*\ + \ Remove create_from_remote_url since it is not used anywhere\n* Remove\ + \ unused+unrelated code from GitlabService class\n* Fix the naming issues\ + \ in GitLab API and add the skeleton of the non-implemented methods\n\ + * Fix API for update_pr_info\n* Update error msg with missing github-app\ + \ key as @TomasTomecek suggested\n* Improve handling of private-key\ + \ in github-app tests\n* Fix imports of the GitHub exceptions\n* Add\ + \ cryptography to dependencies to be able to authenticate as a github\ + \ app\n* Add test for github-app authentication\n* Add github_app_private_key_path\ + \ to GithubService\n* Document the `get_instances_from_dict`\n* Add\ + \ test for github app loading from dict\n* Improve __str__ for services\n\ + * Add method for loading services from dictionary\n* Add more gitlab\ + \ tests for service mapping\n* Remove repo specific methods from GitlabService\n\ + * Make the creation of gitlab objects lazy\n* Add tests for gitlab service-mapping\n\ + * Make the pagure service mapping more general\n* Add gitlab to service\ + \ mapping\n* Use non-None token for gitlab tests\n* tag tests added\n\ + * Save GitlabHttpError to response file\n* test responses added, test_nonexisting_file\ + \ fails\n* Fix loading of gitlab response files\n* Save responses for\ + \ gitlab\n* WIP: GitlabRelease, GitlabProject, GitlabUser added\n* WIP:\ + \ functions for gitlab\n* Run zuul tests both on pip and rpm\n* Remove\ + \ Jenkinsfile\n* [CONTRIBUTING.md] CentOS CI -> Zuul\n* pagure: use\ + \ web url in issue\n* [README.md] Zuul badge\n* removed Optional\n*\ + \ add suggested changes\n* edit_release as method, get_release changed\n\ + * add method edit_release\n* Rename get_pr_commits to get_all_pr_commits\n\ + * run tests on one repository\n* Better description\n* Add get_pr_commits\ + \ into abstract.py\n* Remove `assert commits` and check only first and\ + \ last commit\n* Update ogr/services/github.py\n* Add fnc for getting\ + \ all commits for PR\n* PersistenStorageException -> PersistentStorageException\n\ + * run pre-commit\n* git cherry-pick of PR#129 and make it works\n* Update\ + \ pagure.py\n* Update github.py\n* packit.yaml: propose_downstream:\ + \ s/_/-/\n\n\nYou can change it by editing `CHANGELOG.md` in the root\ + \ of this repository and pushing to `0.7.0-release` branch before merging\ + \ this PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-09-12T07:46:13Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/190/comments + created_at: '2019-09-11T07:59:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/190/events + html_url: https://github.com/packit/ogr/pull/190 + id: 492078119 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/190/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE2MzIwNjY1 + number: 190 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/190.diff + html_url: https://github.com/packit/ogr/pull/190 + patch_url: https://github.com/packit/ogr/pull/190.patch + url: https://api.github.com/repos/packit/ogr/pulls/190 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.7.0 release + updated_at: '2019-09-12T07:49:01Z' + url: https://api.github.com/repos/packit/ogr/issues/190 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "AFAIK at the moment it is not possible to get the info about whether\ - \ the repository is private or not in pagure. Now we depend on the info\ - \ that in src.fedoraproject.org and pagure.io, the private repositories\ - \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments - created_at: '2020-02-18T12:39:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/330/events - html_url: https://github.com/packit/ogr/issues/330 - id: 566865331 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-09-11T07:59:58Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/188/comments + created_at: '2019-09-11T07:57:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/188/events + html_url: https://github.com/packit/ogr/issues/188 + id: 492077048 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/188/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTIwNzcwNDg= + number: 188 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-09-11T07:59:58Z' + url: https://api.github.com/repos/packit/ogr/issues/188 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: I accidently deleted the testing repo, so I have regenerated the + tests on new repo [https://gitlab.com/packit-service/ogr-tests](url) + closed_at: '2019-09-11T06:44:23Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/187/comments + created_at: '2019-09-10T14:21:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/187/events + html_url: https://github.com/packit/ogr/pull/187 + id: 491705182 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/187/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE2MDIwMzM5 + number: 187 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/187.diff + html_url: https://github.com/packit/ogr/pull/187 + patch_url: https://github.com/packit/ogr/pull/187.patch + url: https://api.github.com/repos/packit/ogr/pulls/187 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: tests on new repo + updated_at: '2019-09-11T06:44:23Z' + url: https://api.github.com/repos/packit/ogr/issues/187 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #170 ' + closed_at: '2019-09-10T14:30:35Z' + comments: 24 + comments_url: https://api.github.com/repos/packit/ogr/issues/186/comments + created_at: '2019-09-10T10:45:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/186/events + html_url: https://github.com/packit/ogr/pull/186 + id: 491594645 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/330/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/186/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NjY4NjUzMzE= - number: 330 + node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTMwNzcy + number: 186 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/186.diff + html_url: https://github.com/packit/ogr/pull/186 + patch_url: https://github.com/packit/ogr/pull/186.patch + url: https://api.github.com/repos/packit/ogr/pulls/186 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: better is_private method for pagure projects - updated_at: '2020-07-28T11:32:52Z' - url: https://api.github.com/repos/packit/ogr/issues/330 + state: closed + title: method get_sha_from_tag + updated_at: '2019-09-10T14:30:35Z' + url: https://api.github.com/repos/packit/ogr/issues/186 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: "https://github.com/packit-service/ogr/pull/415 implements `PagurePullRequest.patch`\ - \ property to get a patch from a pull request.\r\n`Gitlab` & `Github`\ - \ implementation are missing." - closed_at: null - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/416/comments - created_at: '2020-05-22T16:21:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/416/events - html_url: https://github.com/packit/ogr/issues/416 - id: 623324928 + body: "```python\r\n def get_sha_from_tag(self, tag_name: str) -> str:\r\ + \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html" + closed_at: '2019-09-10T14:30:35Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/170/comments + created_at: '2019-09-06T07:21:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/170/events + html_url: https://github.com/packit/ogr/issues/170 + id: 490171969 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -64616,72 +88685,6 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/416/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MjMzMjQ5Mjg= - number: 416 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Implement patch property in GitlabPullRequest and GithubPullRequest - updated_at: '2020-07-23T11:20:56Z' - url: https://api.github.com/repos/packit/ogr/issues/416 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "It would be nice to add the following parts to CONTRIBUTING.md\r\ - \n\r\n- What is `git rebase` and how to rebase a pull-request.\r\n \ - \ - We want to have a git tree like this: \r\n![Sn\xEDmek z 2019-09-19\ - \ 11-43-15](https://user-images.githubusercontent.com/20214043/65233459-2712aa00-dad3-11e9-8849-6bb5babf75fe.png)\r\ - \n - not this: \r\n![Sn\xEDmek z 2019-09-19 11-43-51](https://user-images.githubusercontent.com/20214043/65233488-309c1200-dad3-11e9-93a9-b2b15e8a0f39.png)\r\ - \n\r\n- links to documentation we are using when implementing the code\ - \ for github, gitlab, pagure\r\n - https://src.fedoraproject.org/api/0/\r\ - \n - https://pagure.io/api/0/\r\n - https://pygithub.readthedocs.io/\r\ - \n - https://python-gitlab.readthedocs.io/\r\n - ...\r\n \r\n\ - - How to write a good git commit messages:\r\n - https://chris.beams.io/posts/git-commit/" - closed_at: null - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/209/comments - created_at: '2019-09-19T09:51:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/209/events - html_url: https://github.com/packit/ogr/issues/209 - id: 495693202 - labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - color: 7057ff default: false description: Good for newcomers @@ -64689,19 +88692,26 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/209/labels{/name} + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/170/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU2OTMyMDI= - number: 209 + node_id: MDU6SXNzdWU0OTAxNzE5Njk= + number: 170 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Add info about git workflow to contribution guide (and other suggestions) - updated_at: '2020-07-21T09:28:36Z' - url: https://api.github.com/repos/packit/ogr/issues/209 + state: closed + title: 'Implement GitLab method: get_sha_from_tag' + updated_at: '2019-09-10T14:30:35Z' + url: https://api.github.com/repos/packit/ogr/issues/170 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -64722,90 +88732,15 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Current API appears to be fully functional and sufficiently covered\ - \ by tests for GitHub and Pagure.\r\n\r\n## Services\r\n\r\n### GitHub\ - \ + GitLab\r\n\r\n- allows creating fork of forks\r\n- allows creating\ - \ PRs from one fork to another\r\n\r\n### Pagure\r\n\r\n- doesn't allow\ - \ creating fork of forks\r\n- allows creating PRs on a project (assuming\ - \ it's not a fork) or from fork to upstream\r\n\r\n## Current implementation\r\ - \n\r\n```python\r\ndef create_pr(\r\n self,\r\n title: str,\r\n body:\ - \ str,\r\n target_branch: str,\r\n source_branch: str,\r\n fork_username:\ - \ str = None,\r\n) -> \"PullRequest\":\r\n```\r\n\r\n## Example objects\ - \ used later\r\n\r\n```python\r\nupstream_project = service.get_project(namespace=\"\ - packit-service\", repo=\"ogr\")\r\nmy_fork = service.get_project(namespace=\"\ - mfocko\", repo=\"ogr\")\r\nfork_of_different_user = service.get_project(namespace=\"\ - lachmanfrantisek\", repo=\"ogr\")\r\n```" - closed_at: null - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/412/comments - created_at: '2020-05-19T20:57:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/412/events - html_url: https://github.com/packit/ogr/issues/412 - id: 621279784 - labels: - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/412/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MjEyNzk3ODQ= - number: 412 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Revisiting API for creating PRs - updated_at: '2020-07-21T09:28:30Z' - url: https://api.github.com/repos/packit/ogr/issues/412 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Follow-up of #344 (PR: #374)\r\n\r\nAPI docs (https://docs.gitlab.com/ee/api/commits.html#post-the-build-status-to-a-commit):\r\ - \n> Adds or updates a build status of a commit.\r\n\r\nGitlab API suggests\ - \ that setting commit flag can update existing one, which could mean\ - \ this issue is blocked by API.\r\n\r\nUpdating could also mean:\r\n\ - 1. adding new commit flag that replaces old one\r\n2. adding new commit\ - \ flag, but keeping the old one\r\n\r\nExample output from docs doesn't\ - \ contain commit flag with same name." - closed_at: null - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/413/comments - created_at: '2020-05-20T21:27:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/413/events - html_url: https://github.com/packit/ogr/issues/413 - id: 622095374 + author_association: CONTRIBUTOR + body: 'Fixes #175 ' + closed_at: '2019-09-10T11:56:53Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/184/comments + created_at: '2019-09-10T10:04:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/184/events + html_url: https://github.com/packit/ogr/pull/184 + id: 491575224 labels: - color: d93f0b default: false @@ -64814,121 +88749,109 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: fef2c0 + - color: a2eeef default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - - color: 42e529 + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/413/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/184/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjIwOTUzNzQ= - number: 413 + node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTE0OTk4 + number: 184 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/184.diff + html_url: https://github.com/packit/ogr/pull/184 + patch_url: https://github.com/packit/ogr/pull/184.patch + url: https://api.github.com/repos/packit/ogr/pulls/184 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: edited on Gitlab's commit flag - updated_at: '2020-07-21T09:27:54Z' - url: https://api.github.com/repos/packit/ogr/issues/413 + state: closed + title: 'gitlab: project info methods' + updated_at: '2019-09-10T11:56:53Z' + url: https://api.github.com/repos/packit/ogr/issues/184 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos - site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions - type: User - url: https://api.github.com/users/nasirhm + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} + - 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/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions + 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/nasirhm - author_association: CONTRIBUTOR - body: "Is it possible to assign Issues to particular user-names using\ - \ the issue object by any chance?\r\n\r\n#### Github\r\n- github-api:\ - \ https://developer.github.com/v3/issues/assignees/#add-assignees-to-an-issue\r\ - \n- pygithub: https://pygithub.readthedocs.io/en/latest/github_objects/Issue.html\r\ - \n\r\n#### Gitlab\r\n- gitlab-api: https://docs.gitlab.com/ee/api/issues.html#edit-issue\r\ - \n- python-gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ - \n- example of the code: https://gitlab.fi.muni.cz/xlachma1/figitool/blob/master/figitool/figitool.py#L576\r\ - \n```python\r\n user_id = gitlab_instance.users.list(username=login)[0].id\r\ - \n gitlab_mr.assignee_id = user_id\r\n gitlab_mr.save()\r\ - \n```\r\n\r\n#### Pagure:\r\n- https://src.fedoraproject.org/api/0/#issues\r\ - \n - -> Create a new issue\r\n - -> Assign an issue\r\n\r\n### TODO:\r\ - \n\r\n- [ ] add `assignee` argument to methods for creating the issue\r\ - \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ - \ tests for it\r\n- [ ] add the get/set property for the Issue classes\r\ - \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ - \ tests for it\r\n\r\n\r\nupdated by @lachmanfrantisek " - closed_at: null - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/329/comments - created_at: '2020-02-17T15:16:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/329/events - html_url: https://github.com/packit/ogr/issues/329 - id: 566364748 + url: https://api.github.com/users/lbarcziova + author_association: MEMBER + body: "```python\r\n def get_description(self) -> str:\r\n #\ + \ Probably something like this:\r\n # return self.gitlab_repo.attributes[\"\ + description\"]\r\n raise NotImplementedError()\r\n\r\n def\ + \ get_git_urls(self) -> Dict[str, str]:\r\n pass\r\n```\r\n\r\ + \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \n- https://docs.gitlab.com/ce/api/projects.html" + closed_at: '2019-09-10T11:56:53Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/175/comments + created_at: '2019-09-06T07:24:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/175/events + html_url: https://github.com/packit/ogr/issues/175 + id: 490173038 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -64936,13 +88859,6 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: a2eeef default: false description: New feature or a request for enhancement. @@ -64964,56 +88880,49 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/329/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/175/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NjYzNjQ3NDg= - number: 329 + node_id: MDU6SXNzdWU0OTAxNzMwMzg= + number: 175 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Assigning Issues to based on usernames. - updated_at: '2020-07-17T06:32:56Z' - url: https://api.github.com/repos/packit/ogr/issues/329 + state: closed + title: Implement GitLab methods for project info + updated_at: '2019-09-10T11:56:53Z' + url: https://api.github.com/repos/packit/ogr/issues/175 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 - events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} - followers_url: https://api.github.com/users/saisankargochhayat/followers - following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} - gists_url: https://api.github.com/users/saisankargochhayat/gists{/gist_id} + 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/saisankargochhayat - id: 9396452 - login: saisankargochhayat - node_id: MDQ6VXNlcjkzOTY0NTI= - organizations_url: https://api.github.com/users/saisankargochhayat/orgs - received_events_url: https://api.github.com/users/saisankargochhayat/received_events - repos_url: https://api.github.com/users/saisankargochhayat/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions + 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/saisankargochhayat + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Related: https://github.com/packit-service/ogr/pull/436' - closed_at: null - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/437/comments - created_at: '2020-07-16T12:54:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/437/events - html_url: https://github.com/packit/ogr/issues/437 - id: 658172107 + author_association: CONTRIBUTOR + body: 'Fixes #176 ' + closed_at: '2019-09-10T11:44:36Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/185/comments + created_at: '2019-09-10T10:10:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/185/events + html_url: https://github.com/packit/ogr/pull/185 + id: 491578586 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -65028,116 +88937,99 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: 0e8a16 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/437/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/185/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NTgxNzIxMDc= - number: 437 + node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTE3NzMx + number: 185 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/185.diff + html_url: https://github.com/packit/ogr/pull/185 + patch_url: https://github.com/packit/ogr/pull/185.patch + url: https://api.github.com/repos/packit/ogr/pulls/185 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Support adding group permission for Gitlab and Github projects - updated_at: '2020-07-16T13:21:03Z' - url: https://api.github.com/repos/packit/ogr/issues/437 + state: closed + title: method get_latest_release + updated_at: '2019-09-10T11:44:36Z' + url: https://api.github.com/repos/packit/ogr/issues/185 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} + 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/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions + 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/dinolinjob + url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} + - 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/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions + 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/dinolinjob + url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "Multiple times in the code (mostly in the `parsing.py`), we need\ - \ to parse the hostname of the instance.\r\n\r\n```python\r\nservice_repo_url\ - \ = parse_git_repo(repo_url.get_instance_url())\r\nservice_repo_url.hostname\r\ - \n```\r\n\r\nIt would be useful to have a `hostame` property in service\ - \ classes`.\r\n\r\nTODO:\r\n- [ ] add the (read-only) property to the\ - \ `abstract.py`\r\n- [ ] implement the common behaviour in the `base.py`\ - \ (see the example above)\r\n - services with multiple instances possible\r\ - \n- [ ] hardcode the value for static instances (GitHub)\r\n- [ ] use\ - \ that property in places, where we are getting hostname of the instance\r\ - \n- [ ] create some unit tests for that" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/338/comments - created_at: '2020-02-21T08:57:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/338/events - html_url: https://github.com/packit/ogr/issues/338 - id: 568821401 + body: "```python\r\n def get_latest_release(self) -> GitlabRelease:\r\ + \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-releases\r\ + \n- https://docs.gitlab.com/ee/api/releases/" + closed_at: '2019-09-10T11:44:35Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/176/comments + created_at: '2019-09-06T07:24:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/176/events + html_url: https://github.com/packit/ogr/issues/176 + id: 490173186 labels: - - color: fbca04 - default: false - description: Reserved for the participants/applicants of the Google - Summer of Code. - id: 1867054141 - name: GSOC - node_id: MDU6TGFiZWwxODY3MDU0MTQx - url: https://api.github.com/repos/packit/ogr/labels/GSOC - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -65145,13 +89037,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db + - color: a2eeef default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -65159,13 +89051,6 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - color: 42e529 default: false description: This issue was already processed and well defined. @@ -65173,19 +89058,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/338/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/176/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1Njg4MjE0MDE= - number: 338 + node_id: MDU6SXNzdWU0OTAxNzMxODY= + number: 176 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: hostname property in the service classes - updated_at: '2020-07-14T06:47:13Z' - url: https://api.github.com/repos/packit/ogr/issues/338 + state: closed + title: Implement GitLab method for latest release + updated_at: '2019-09-10T11:44:35Z' + url: https://api.github.com/repos/packit/ogr/issues/176 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -65207,14 +89092,182 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: Implement get_files() method in Pagure. - closed_at: null - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/310/comments - created_at: '2020-01-21T12:50:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/310/events - html_url: https://github.com/packit/ogr/issues/310 - id: 552856957 + body: "- Fix some typing issues in factory.py.\r\n\r\nReason: typing problems\ + \ in the packit code on top of it." + closed_at: '2019-09-10T11:00:14Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/183/comments + created_at: '2019-09-10T09:22:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/183/events + html_url: https://github.com/packit/ogr/pull/183 + id: 491553190 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/183/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE1ODk3MjEz + number: 183 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/183.diff + html_url: https://github.com/packit/ogr/pull/183 + patch_url: https://github.com/packit/ogr/pull/183.patch + url: https://api.github.com/repos/packit/ogr/pulls/183 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix typing in factory + updated_at: '2019-09-10T11:21:08Z' + url: https://api.github.com/repos/packit/ogr/issues/183 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Not overwrite the gitlab token when set on read-mode. + + - Support GitlabAuthenticationError in response files as well.' + closed_at: '2019-09-10T09:06:12Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/182/comments + created_at: '2019-09-09T10:59:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/182/events + html_url: https://github.com/packit/ogr/pull/182 + id: 491026784 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/182/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE1NDc0NDYw + number: 182 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/182.diff + html_url: https://github.com/packit/ogr/pull/182 + patch_url: https://github.com/packit/ogr/pull/182.patch + url: https://api.github.com/repos/packit/ogr/pulls/182 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Support GitlabAuthenticationError + updated_at: '2019-09-10T09:07:59Z' + url: https://api.github.com/repos/packit/ogr/issues/182 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "fix the issue causing that older ogr does not know what is exception\ + \ in init.\r\ndo not store values what are empty" + closed_at: '2019-09-09T10:52:04Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/179/comments + created_at: '2019-09-06T12:29:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/179/events + html_url: https://github.com/packit/ogr/pull/179 + id: 490300829 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/179/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE0OTMzMDEy + number: 179 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/179.diff + html_url: https://github.com/packit/ogr/pull/179 + patch_url: https://github.com/packit/ogr/pull/179.patch + url: https://api.github.com/repos/packit/ogr/pulls/179 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: fix backward compafibility for tests + updated_at: '2019-09-09T14:13:28Z' + url: https://api.github.com/repos/packit/ogr/issues/179 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Test creating Pagure PRs and fix some username problems in Pagure + tests. + + - Creating Pagure PRs calls upstream project url (not the url of fork). + + + Fixes: #161' + closed_at: '2019-09-09T08:16:38Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/180/comments + created_at: '2019-09-06T19:01:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/180/events + html_url: https://github.com/packit/ogr/pull/180 + id: 490477438 labels: - color: 1d76db default: false @@ -65223,90 +89276,118 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: bc4812 - default: false - description: We are blocked! - id: 1432779229 - name: blocker - node_id: MDU6TGFiZWwxNDMyNzc5MjI5 - url: https://api.github.com/repos/packit/ogr/labels/blocker - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/310/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/180/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTI4NTY5NTc= - number: 310 + node_id: MDExOlB1bGxSZXF1ZXN0MzE1MDc2NjUy + number: 180 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/180.diff + html_url: https://github.com/packit/ogr/pull/180 + patch_url: https://github.com/packit/ogr/pull/180.patch + url: https://api.github.com/repos/packit/ogr/pulls/180 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Support get_files() in Pagure - updated_at: '2020-07-07T06:21:10Z' - url: https://api.github.com/repos/packit/ogr/issues/310 + state: closed + title: Fix creating Pagure PRs + updated_at: '2019-09-09T08:16:44Z' + url: https://api.github.com/repos/packit/ogr/issues/180 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/lachmanfrantisek + _next: null + elapsed: 0.405518 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:13 GMT + ETag: W/"6a934182ddf78ca7e382a43ea92bdf44e164d2c153c7d874438a5deaccd7fbcb" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7ECBC:1919A8B:6075DC2D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4802' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '198' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=15: + - metadata: + latency: 0.5293014049530029 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "When working with PRs, there are also URLs linking directly to\ - \ commit list tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the\ - \ `url_commits` and implement it.\r\n - Use API if possible, otherwise\ - \ \"guess\" the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\n\ - Examples:\r\n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/commits\r\ - \n- https://github.com/packit-service/ogr/pull/1/commits\r\n- https://pagure.io/ogr-tests/pull-request/7#commit_list\r\ - \n" - closed_at: null + author_association: CONTRIBUTOR + body: "https://src.stg.fedoraproject.org/api/0/#pull-requests\r\n\r\n\ + we just need to use the new fields such as repo_from which were added\ + \ to the API in order to create PRs from forks to parent repos.\r\n\r\ + \nfollow up to https://github.com/packit-service/packit/pull/496\r\n\ + blocks https://github.com/packit-service/packit.dev/pull/42\r\n\r\n\ + likely packit will need some code changes to support this" + closed_at: '2019-09-09T08:16:38Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/212/comments - created_at: '2019-09-19T18:48:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/212/events - html_url: https://github.com/packit/ogr/issues/212 - id: 495968279 + comments_url: https://api.github.com/repos/packit/ogr/issues/161/comments + created_at: '2019-08-29T09:31:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/161/events + html_url: https://github.com/packit/ogr/issues/161 + id: 486845482 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 1d76db default: false description: Related to Pagure implementation. @@ -65328,26 +89409,77 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 + - color: f9e231 default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/212/labels{/name} + description: High priority. + id: 1432779316 + name: high-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzE2 + url: https://api.github.com/repos/packit/ogr/labels/high-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/161/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU5NjgyNzk= - number: 212 + node_id: MDU6SXNzdWU0ODY4NDU0ODI= + number: 161 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Add commits url to PullRequest class - updated_at: '2020-07-03T14:18:58Z' - url: https://api.github.com/repos/packit/ogr/issues/212 + state: closed + title: 'pagure: support new way of creating PRs from forks' + updated_at: '2019-09-09T08:16:38Z' + url: https://api.github.com/repos/packit/ogr/issues/161 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Fix the naming issues in GitLab API and add the skeleton of the + non-implemented methods. + + - Fix API for update_pr_info.' + closed_at: '2019-09-06T08:20:46Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/167/comments + created_at: '2019-09-06T06:33:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/167/events + html_url: https://github.com/packit/ogr/pull/167 + id: 490155512 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/167/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE0ODE1OTI3 + number: 167 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/167.diff + html_url: https://github.com/packit/ogr/pull/167 + patch_url: https://github.com/packit/ogr/pull/167.patch + url: https://api.github.com/repos/packit/ogr/pulls/167 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix the inconsistences in the GitLab API + updated_at: '2019-09-06T08:20:50Z' + url: https://api.github.com/repos/packit/ogr/issues/167 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -65368,153 +89500,73 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Would be nice to be able to manipulate labels on pagure issues.\ - \ i.e. `get_issue_labels()` `add_issue_labels()`, etc.. \r\n\r\n\r\n\ - *update by @lachmanfrantisek:*\r\n\r\nTODO: \r\n- [x] `labels` property\ - \ for `PagureIssue` class (https://github.com/packit-service/ogr/pull/321\ - \ by @cverna )\r\n- [x] `labels` argument for `PagureIssue.create` and\ - \ `PagureProject.create_issue` (https://github.com/packit-service/ogr/pull/321\ - \ by @cverna)\r\n- [ ] `labels` property for `PagurePullRequest` class\r\ - \n- [ ] `labels` argument for `PagurePullRequest.create` and `PagureProject.create_pr`\r\ - \n- [ ] `add_label` methods blocked by the PagureAPI (https://pagure.io/pagure/issue/2175)\r\ - \n- [ ] add tests for all of those\r\n\r\n" - closed_at: null - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/147/comments - created_at: '2019-08-09T22:23:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/147/events - html_url: https://github.com/packit/ogr/issues/147 - id: 479187441 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - labels_url: https://api.github.com/repos/packit/ogr/issues/147/labels{/name} + author_association: MEMBER + body: 'Fixes #162' + closed_at: '2019-09-05T09:00:25Z' + comments: 31 + comments_url: https://api.github.com/repos/packit/ogr/issues/163/comments + created_at: '2019-09-02T12:37:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/163/events + html_url: https://github.com/packit/ogr/pull/163 + id: 488169691 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/163/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzkxODc0NDE= - number: 147 + node_id: MDExOlB1bGxSZXF1ZXN0MzEzMjQ4MzIz + number: 163 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/163.diff + html_url: https://github.com/packit/ogr/pull/163 + patch_url: https://github.com/packit/ogr/pull/163.patch + url: https://api.github.com/repos/packit/ogr/pulls/163 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: create label* functions for pagure backend - updated_at: '2020-06-29T06:46:49Z' - url: https://api.github.com/repos/packit/ogr/issues/147 + state: closed + title: Be able to set private key path for GitHub app + updated_at: '2019-09-05T09:00:29Z' + url: https://api.github.com/repos/packit/ogr/issues/163 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 - events_url: https://api.github.com/users/dustymabe/events{/privacy} - followers_url: https://api.github.com/users/dustymabe/followers - following_url: https://api.github.com/users/dustymabe/following{/other_user} - gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + 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/dustymabe - id: 4530030 - login: dustymabe - node_id: MDQ6VXNlcjQ1MzAwMzA= - organizations_url: https://api.github.com/users/dustymabe/orgs - received_events_url: https://api.github.com/users/dustymabe/received_events - repos_url: https://api.github.com/users/dustymabe/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + 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/dustymabe + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "It is sometimes hard to get the right problem when a user receives\ - \ a long traceback with some GitHub/GitLab exception at the end. Those\ - \ exceptions are not always clear or too general (`e.g. Object not found`).\r\ - \n\r\nWe can probably do better and raise our exceptions that will have\ - \ much clearer message since we usually know the context (e.g. `PR with\ - \ id={id} not found.`).\r\n\r\nAC:\r\n\r\n- [ ] Go through the code\ - \ and cover some parts of code in the try blocks and raise our exception\ - \ with good message:\r\n\r\n```python\r\n try:\r\n problematic_code()\r\ - \n except TheExternalException as ex:\r\n raise SomeOgrException(\"\ - Good reason\", ex)\r\n```\r\n- [ ] update/extend the tests\r\n" - closed_at: null - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/199/comments - created_at: '2019-09-13T08:04:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/199/events - html_url: https://github.com/packit/ogr/issues/199 - id: 493190190 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/199/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0OTMxOTAxOTA= - number: 199 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Do not let the external exception go to the user - updated_at: '2020-06-16T12:56:15Z' - url: https://api.github.com/repos/packit/ogr/issues/199 - user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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} @@ -65532,44 +89584,48 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] author_association: MEMBER - body: "In #226 we found multiple problems with the offline x online handling.\r\ - \n\r\nWe need to:\r\n\r\n- [x] agree on the rules (e.g. properties cannot\ - \ touch the services)\r\n- [ ] document the rules\r\n- [x] fix the current\ - \ implementation(s) to satisfy the rules\r\n - use deprecations if\ - \ needed\r\n\r\nRelated to #214 " - closed_at: null - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/229/comments - created_at: '2019-10-01T07:47:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/229/events - html_url: https://github.com/packit/ogr/issues/229 - id: 500722982 + body: "When authenticating as a GitHub-app we currently need a private_key\ + \ as a string.\r\n\r\nIt would be very convenient (and very usefull\ + \ when having #160 ) to have another attribute for the private-key path.\r\ + \n\r\nThe code can be moved/stolen [from packit](https://github.com/packit-service/packit/blob/master/packit/upstream.py#L88).\r\ + \n" + closed_at: '2019-09-05T09:00:25Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/162/comments + created_at: '2019-09-02T09:12:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/162/events + html_url: https://github.com/packit/ogr/issues/162 + id: 488085461 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: bf6b0b + - color: '000000' default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: c2ef58 + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged - color: 8be567 default: false description: Usability issue. @@ -65577,19 +89633,19 @@ requests.sessions: name: user-experience node_id: MDU6TGFiZWwxNDMyNzc5NDY0 url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/229/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/162/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDA3MjI5ODI= - number: 229 + node_id: MDU6SXNzdWU0ODgwODU0NjE= + number: 162 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Investigate online x offline handling - updated_at: '2020-06-15T08:46:36Z' - url: https://api.github.com/repos/packit/ogr/issues/229 + state: closed + title: Be able to use path to private_key for GitHub app authentication + updated_at: '2019-09-05T09:00:25Z' + url: https://api.github.com/repos/packit/ogr/issues/162 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -65607,163 +89663,42 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="next", ; - rel="last" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=10: - - metadata: - latency: 0.5616762638092041 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "Since we merged [the PR with the basic GitLab support](https://github.com/packit-service/ogr/pull/150)\ - \ is there still something missing?\r\n\r\n- [x] service mapping (#156\ - \ )\r\n- [x] fix the mix of new and old API (#167 )\r\n- [x] missing\ - \ methods:\r\n - [x] forking: https://github.com/packit-service/ogr/issues/168\r\ - \n - [x] owners and permissions: https://github.com/packit-service/ogr/issues/169\r\ - \n - [x] get_sha_from_tag: https://github.com/packit-service/ogr/issues/170\r\ - \n - [x] issue labels: https://github.com/packit-service/ogr/issues/171\r\ - \n - [x] commit comment/status: https://github.com/packit-service/ogr/issues/172\r\ - \n - [x] pr close/merge: https://github.com/packit-service/ogr/issues/173\r\ - \n - [x] PR labels: https://github.com/packit-service/ogr/issues/174\r\ - \n - [x] project info: https://github.com/packit-service/ogr/issues/175\r\ - \n - [x] latest release: https://github.com/packit-service/ogr/issues/176\r\ - \n\r\n" - closed_at: '2019-09-26T10:59:39Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/158/comments - created_at: '2019-08-15T15:29:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/158/events - html_url: https://github.com/packit/ogr/issues/158 - id: 481206920 - labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/158/labels{/name} + body: '- Add method for loading services from dictionary. + + - Tests included. + + + Fixes: #159' + closed_at: '2019-09-02T10:30:19Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/160/comments + created_at: '2019-08-21T08:47:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/160/events + html_url: https://github.com/packit/ogr/pull/160 + id: 483284044 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/160/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODEyMDY5MjA= - number: 158 + node_id: MDExOlB1bGxSZXF1ZXN0MzA5Mzg5NjA4 + number: 160 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/160.diff + html_url: https://github.com/packit/ogr/pull/160 + patch_url: https://github.com/packit/ogr/pull/160.patch + url: https://api.github.com/repos/packit/ogr/pulls/160 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Missing features in GitLab implementation - updated_at: '2019-09-26T10:59:40Z' - url: https://api.github.com/repos/packit/ogr/issues/158 + title: Loading services from dict + updated_at: '2019-09-02T10:47:59Z' + url: https://api.github.com/repos/packit/ogr/issues/160 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -65781,134 +89716,65 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #169. I used https://docs.gitlab.com/ee/user/permissions.html#project-members-permissions, - but I am not sure about the permission for closing of the project issues, - I couldn''t find more information about that.' - closed_at: '2019-09-26T10:43:42Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/207/comments - created_at: '2019-09-18T13:54:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/207/events - html_url: https://github.com/packit/ogr/pull/207 - id: 495242377 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/207/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE4ODI1OTA4 - number: 207 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/207.diff - html_url: https://github.com/packit/ogr/pull/207 - patch_url: https://github.com/packit/ogr/pull/207.patch - url: https://api.github.com/repos/packit/ogr/pulls/207 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: methods for permissions - updated_at: '2019-09-26T10:43:42Z' - url: https://api.github.com/repos/packit/ogr/issues/207 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - active_lock_reason: null assignee: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/lachmanfrantisek assignees: - - avatar_url: https://avatars3.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} + - 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/lachmanfrantisek author_association: MEMBER - body: "```python\r\n def get_owners(self) -> List[str]:\r\n \ - \ raise NotImplementedError()\r\n\r\n def who_can_close_issue(self)\ - \ -> Set[str]:\r\n raise NotImplementedError()\r\n\r\n def\ - \ who_can_merge_pr(self) -> Set[str]:\r\n raise NotImplementedError()\r\ - \n\r\n def can_close_issue(self, username: str, issue: Issue) ->\ - \ bool:\r\n raise NotImplementedError()\r\n\r\n def can_merge_pr(self,\ - \ username) -> bool:\r\n raise NotImplementedError()\r\n```\r\ - \n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-members\r\ - \n- https://docs.gitlab.com/ce/api/members.html" - closed_at: '2019-09-26T10:43:41Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/169/comments - created_at: '2019-09-06T07:20:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/169/events - html_url: https://github.com/packit/ogr/issues/169 - id: 490171859 + body: "In [packit](https://github.com/packit-service/packit) and [upsint](https://github.com/packit-service/upsint/),\ + \ we need to load authentication for services from files.\r\n\r\nIt\ + \ would be nice to have a method for loading instances from `dict` so\ + \ we can use it from multiple projects.\r\n\r\n```python\r\n>>> from\ + \ ogr import get_instances_from_dict\r\n>>> get_instances_from_dict({\r\ + \n... \"github.com\": {\"token\": \"abcd\"},\r\n... \"pagure.io\"\ + : {\"token\": \"defg\"},\r\n... \"src.fedoraproject.org\": {\"token\"\ + : \"asdasdasda\"},\r\n... })\r\n[\r\n GithubService(token=\"abcd\"\ + ),\r\n PagureService(instance_url=\"https://pagure.io\", token=\"\ + defg\"),\r\n PagureService(instance_url=\"https://src.fedoraproject.org\"\ + , token=\"asdasdasda\"),\r\n]\r\n```\r\n\r\n\r\n" + closed_at: '2019-09-02T10:30:19Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/159/comments + created_at: '2019-08-20T12:11:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/159/events + html_url: https://github.com/packit/ogr/issues/159 + id: 482822700 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: a2eeef default: false description: New feature or a request for enhancement. @@ -65916,13 +89782,6 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -65930,19 +89789,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/169/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/159/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzE4NTk= - number: 169 + node_id: MDU6SXNzdWU0ODI4MjI3MDA= + number: 159 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for owners and permissions - updated_at: '2019-09-26T10:43:41Z' - url: https://api.github.com/repos/packit/ogr/issues/169 + title: Add method for loading instances from dict + updated_at: '2019-09-02T10:30:19Z' + url: https://api.github.com/repos/packit/ogr/issues/159 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -65961,56 +89820,20 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "```python\r\n def get_pr_labels(self, pr_id: int) -> List:\r\ - \n pass\r\n\r\n def add_pr_labels(self, pr_id, labels) ->\ - \ None:\r\n pass\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ - \n- https://docs.gitlab.com/ee/api/merge_requests.html" - closed_at: '2019-09-25T08:50:51Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/174/comments - created_at: '2019-09-06T07:23:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/174/events - html_url: https://github.com/packit/ogr/issues/174 - id: 490172937 + body: "- Remove repo specific methods from GitlabService.\r\n- Make the\ + \ creation of gitlab objects lazy.\r\n- Add tests for gitlab service-mapping.\r\ + \n- Make the pagure service mapping more general.\r\n- Add gitlab to\ + \ service mapping." + closed_at: '2019-08-20T11:55:31Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/156/comments + created_at: '2019-08-15T14:37:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/156/events + html_url: https://github.com/packit/ogr/pull/156 + id: 481182139 labels: - color: d93f0b default: false @@ -66019,40 +89842,24 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/174/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/156/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzI5Mzc= - number: 174 + node_id: MDExOlB1bGxSZXF1ZXN0MzA3NzMxMDE1 + number: 156 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/156.diff + html_url: https://github.com/packit/ogr/pull/156 + patch_url: https://github.com/packit/ogr/pull/156.patch + url: https://api.github.com/repos/packit/ogr/pulls/156 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for PR labels (merge-request labels) - updated_at: '2019-09-25T08:50:51Z' - url: https://api.github.com/repos/packit/ogr/issues/174 + title: Add gitlab to service mapping + updated_at: '2019-08-20T11:55:35Z' + url: https://api.github.com/repos/packit/ogr/issues/156 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -66073,41 +89880,41 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #171, #174' - closed_at: '2019-09-25T08:34:08Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/198/comments - created_at: '2019-09-12T12:07:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/198/events - html_url: https://github.com/packit/ogr/pull/198 - id: 492763927 + author_association: CONTRIBUTOR + body: "Fixes #125 \r\nTests fail because test responses can't be saved." + closed_at: '2019-08-15T14:34:37Z' + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/150/comments + created_at: '2019-08-13T13:16:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/150/events + html_url: https://github.com/packit/ogr/pull/150 + id: 480151584 labels: - - color: 0e8a16 + - color: d93f0b default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/198/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + labels_url: https://api.github.com/repos/packit/ogr/issues/150/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODczMjYx - number: 198 + node_id: MDExOlB1bGxSZXF1ZXN0MzA2OTAyMTg4 + number: 150 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/198.diff - html_url: https://github.com/packit/ogr/pull/198 - patch_url: https://github.com/packit/ogr/pull/198.patch - url: https://api.github.com/repos/packit/ogr/pulls/198 + diff_url: https://github.com/packit/ogr/pull/150.diff + html_url: https://github.com/packit/ogr/pull/150 + patch_url: https://github.com/packit/ogr/pull/150.patch + url: https://api.github.com/repos/packit/ogr/pulls/150 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: methods for pr and issue labels - updated_at: '2019-09-25T08:34:08Z' - url: https://api.github.com/repos/packit/ogr/issues/198 + title: Functions for gitlab + updated_at: '2019-08-20T07:19:51Z' + url: https://api.github.com/repos/packit/ogr/issues/150 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -66127,7 +89934,7 @@ requests.sessions: url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -66146,7 +89953,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -66165,18 +89972,16 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "```python\r\n def get_issue_labels(self, issue_id: int) -> List:\r\ - \n raise NotImplementedError()\r\n\r\n def add_issue_labels(self,\ - \ issue_id, labels) -> None:\r\n raise NotImplementedError()\r\ - \n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ - \n- https://docs.gitlab.com/ce/api/issues.html" - closed_at: '2019-09-25T08:34:08Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/171/comments - created_at: '2019-09-06T07:22:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/171/events - html_url: https://github.com/packit/ogr/issues/171 - id: 490172449 + body: "It would be nice to finally start implementing the GitLab support.\r\ + \n\r\nWe can probably combine the code from GitHub and the already present\ + \ code.\r\n\r\nThe documentation can be found here: https://python-gitlab.readthedocs.io/en/stable/" + closed_at: '2019-08-15T14:34:37Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/125/comments + created_at: '2019-07-18T07:17:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/125/events + html_url: https://github.com/packit/ogr/issues/125 + id: 469608368 labels: - color: d93f0b default: false @@ -66192,13 +89997,6 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -66206,19 +90004,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/171/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/125/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzI0NDk= - number: 171 + node_id: MDU6SXNzdWU0Njk2MDgzNjg= + number: 125 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for issue labels - updated_at: '2019-09-25T08:34:08Z' - url: https://api.github.com/repos/packit/ogr/issues/171 + title: GitLab support + updated_at: '2019-08-15T14:34:37Z' + url: https://api.github.com/repos/packit/ogr/issues/125 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -66240,236 +90038,235 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "In GitProject we do not have a method for getting web URL of the\ - \ project.\r\n\r\nAC:\r\n\r\n- [ ] Add the method to `abstract.GitProject`.\ - \ (And raise `NotImplementedError`.)\r\n- [ ] Implement the method for\ - \ all forges (GitHub, GitLab, Pagure).\r\n- [ ] Add tests for this method.\r\ - \n\r\nLinks:\r\n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ - \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ - \n https://docs.gitlab.com/ce/api/projects.html\r\n- https://pagure.io/api/0/#projects\r\ - \n\r\nExamples:\r\n- https://github.com/packit-service/ogr\r\n- https://gitlab.com/packit-service/ogr-tests\r\ - \n- https://pagure.io/ogr-tests/" - closed_at: '2019-09-24T08:53:16Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/213/comments - created_at: '2019-09-19T19:19:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/213/events - html_url: https://github.com/packit/ogr/issues/213 - id: 495981567 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/213/labels{/name} + body: '- Run zuul tests both on pip and rpm.' + closed_at: '2019-08-15T14:20:14Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/155/comments + created_at: '2019-08-15T09:27:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/155/events + html_url: https://github.com/packit/ogr/pull/155 + id: 481069480 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/155/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA3NjQwNzUy + number: 155 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/155.diff + html_url: https://github.com/packit/ogr/pull/155 + patch_url: https://github.com/packit/ogr/pull/155.patch + url: https://api.github.com/repos/packit/ogr/pulls/155 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Run zuul for pip and rpm + updated_at: '2019-08-15T14:20:18Z' + url: https://api.github.com/repos/packit/ogr/issues/155 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Don't use the api url when populating the data for an issue. Use\r\ + \nthe web url so that it can be used in a web browser.\r\n\r\nFixes\ + \ #146" + closed_at: '2019-08-15T07:11:16Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/151/comments + created_at: '2019-08-13T18:06:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/151/events + html_url: https://github.com/packit/ogr/pull/151 + id: 480292368 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/151/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA3MDE3Mjky + number: 151 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/151.diff + html_url: https://github.com/packit/ogr/pull/151 + patch_url: https://github.com/packit/ogr/pull/151.patch + url: https://api.github.com/repos/packit/ogr/pulls/151 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'pagure: use web url in issue' + updated_at: '2019-08-15T13:23:23Z' + url: https://api.github.com/repos/packit/ogr/issues/151 + user: + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 + events_url: https://api.github.com/users/dustymabe/events{/privacy} + followers_url: https://api.github.com/users/dustymabe/followers + following_url: https://api.github.com/users/dustymabe/following{/other_user} + gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dustymabe + id: 4530030 + login: dustymabe + node_id: MDQ6VXNlcjQ1MzAwMzA= + organizations_url: https://api.github.com/users/dustymabe/orgs + received_events_url: https://api.github.com/users/dustymabe/received_events + repos_url: https://api.github.com/users/dustymabe/repos + site_admin: false + starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + type: User + url: https://api.github.com/users/dustymabe + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Fixes #123 ' + closed_at: '2019-08-15T08:12:06Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/154/comments + created_at: '2019-08-14T15:25:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/154/events + html_url: https://github.com/packit/ogr/pull/154 + id: 480744033 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/154/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU5ODE1Njc= - number: 213 + node_id: MDExOlB1bGxSZXF1ZXN0MzA3MzgxNTAw + number: 154 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/154.diff + html_url: https://github.com/packit/ogr/pull/154 + patch_url: https://github.com/packit/ogr/pull/154.patch + url: https://api.github.com/repos/packit/ogr/pulls/154 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitProject.get_url() - updated_at: '2019-09-25T06:07:53Z' - url: https://api.github.com/repos/packit/ogr/issues/213 + title: Mention Zuul in CONTRIBUTING.md and remove Jenkinsfile + updated_at: '2019-08-15T08:12:10Z' + url: https://api.github.com/repos/packit/ogr/issues/154 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Fixes: #143 \r\n\r\n*edited by @lachmanfrantisek to close this\ - \ after merge*" - closed_at: '2019-09-19T14:18:04Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/210/comments - created_at: '2019-09-19T11:24:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/210/events - html_url: https://github.com/packit/ogr/pull/210 - id: 495738504 + author_association: COLLABORATOR + body: "Can we please update the contribution guide. Ogr now uses new zuul\ + \ CI (or softwarefactory-project-zuul). \r\n\r\nI'm a little bit stuck\ + \ on what should I do to make my tests passing when PR is opened. On\ + \ my localhost, everything is working in the \"old way\" and tests are\ + \ passing." + closed_at: '2019-08-15T08:12:06Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/123/comments + created_at: '2019-07-17T12:03:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/123/events + html_url: https://github.com/packit/ogr/issues/123 + id: 469153115 labels: - - color: 0e8a16 + - color: 008672 + default: true + description: Extra attention is needed + id: 1160311265 + name: help wanted + node_id: MDU6TGFiZWwxMTYwMzExMjY1 + url: https://api.github.com/repos/packit/ogr/labels/help%20wanted + - color: f9d0c4 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/210/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/123/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE5MjI3MjM2 - number: 210 + node_id: MDU6SXNzdWU0NjkxNTMxMTU= + number: 123 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/210.diff - html_url: https://github.com/packit/ogr/pull/210 - patch_url: https://github.com/packit/ogr/pull/210.patch - url: https://api.github.com/repos/packit/ogr/pulls/210 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add trim parameter to set_commit_status method - updated_at: '2019-09-19T15:46:39Z' - url: https://api.github.com/repos/packit/ogr/issues/210 + title: update contribution guide + updated_at: '2019-08-15T08:12:06Z' + url: https://api.github.com/repos/packit/ogr/issues/123 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\nTraceback (most recent call last): \ - \ \ - \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ - , line 385, in trace_task \ - \ \r\n R = retval = fun(*args,\ - \ **kwargs) \ - \ \ - \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ - , line 648, in __protected_call__ \ - \ \r\n return self.run(*args,\ - \ **kwargs) \ - \ \ - \ \r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ - , line 42, in process_message \ - \ \r\n return SteveJobs().process_message(event=event,\ - \ topic=topic) \ - \ \r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 126, in process_message \ - \ \r\n jobs_results = self.process_jobs(event_object)\ - \ \ - \ \r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 92, in process_jobs \ - \ \r\n handlers_results[job.job.value]\ - \ = handler.run() \ - \ \ - \ \r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/github_handlers.py\"\ - , line 330, in run \ - \ \r\n return self.handle_pull_request() \ - \ \ - \ \r\n\ - \ File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/github_handlers.py\"\ - , line 305, in handle_pull_request \ - \ \r\n r.report(\"failure\", msg)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/handler.py\"\ - , line 84, in report\r\n self.commit_sha, state, url, description,\ - \ check_name\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/read_only.py\"\ - , line 68, in readonly_func\r\n return func(self, *args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ - , line 541, in set_commit_status\r\n github_commit.create_status(state,\ - \ target_url, description, context)\r\n File \"/usr/local/lib/python3.7/site-packages/github/Commit.py\"\ - , line 189, in create_status\r\n input=post_parameters\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/github/Requester.py\", line\ - \ 276, in requestJsonAndCheck\r\n return self.__check(*self.requestJson(verb,\ - \ url, parameters, headers, input, self.__customConnection(url)))\r\n\ - \ File \"/usr/local/lib/python3.7/site-packages/github/Requester.py\"\ - , line 287, in __check\r\n raise self.__createException(status, responseHeaders,\ - \ output)\r\ngithub.GithubException.GithubException: 422 {'message':\ - \ 'Validation Failed', 'errors': [{'resource': 'Status', 'code': 'custom',\ - \ 'field': 'description', 'message': 'descript\r\nion is too long (maximum\ - \ is 140 characters)'}], 'documentation_url': 'https://developer.github.com/v3/repos/statuses/#create-a-status'}\r\ - \n```" - closed_at: '2019-09-19T14:18:04Z' + author_association: CONTRIBUTOR + body: "Just checking to see what is the desired behavior. I create an\ + \ issue and then print the url from the created issue. I'd then like\ + \ to open that url in a web browser and have it go to the graphical\ + \ UI and not the API.\r\n\r\nFor example:\r\n\r\n```\r\n>>> i = project.create_issue('TestIssue',\ + \ 'foo bar baz')\r\n>>> print(i.url)\r\nhttps://pagure.io/api/0/dusty/failed-composes/issue/2244\r\ + \n```\r\n\r\nBut what I really want is the url to the web frontent.\ + \ So `i.url.replace('api/0/','')`. What is the intended behavior? " + closed_at: '2019-08-15T07:11:15Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/143/comments - created_at: '2019-08-08T09:03:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/143/events - html_url: https://github.com/packit/ogr/issues/143 - id: 478340513 + comments_url: https://api.github.com/repos/packit/ogr/issues/146/comments + created_at: '2019-08-09T21:53:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/146/events + html_url: https://github.com/packit/ogr/issues/146 + id: 479180564 labels: - - color: '000000' + - color: 1d76db default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: d73a4a default: true description: Something isn't working @@ -66484,88 +90281,115 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9e231 - default: false - description: High priority. - id: 1432779316 - name: high-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzE2 - url: https://api.github.com/repos/packit/ogr/labels/high-prio - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/143/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/146/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzgzNDA1MTM= - number: 143 + node_id: MDU6SXNzdWU0NzkxODA1NjQ= + number: 146 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitHub check descriptions can only be 140 chars long - updated_at: '2019-09-19T14:18:04Z' - url: https://api.github.com/repos/packit/ogr/issues/143 + title: the url in an issue object is the API url + updated_at: '2019-08-15T07:11:15Z' + url: https://api.github.com/repos/packit/ogr/issues/146 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 + events_url: https://api.github.com/users/dustymabe/events{/privacy} + followers_url: https://api.github.com/users/dustymabe/followers + following_url: https://api.github.com/users/dustymabe/following{/other_user} + gists_url: https://api.github.com/users/dustymabe/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/dustymabe + id: 4530030 + login: dustymabe + node_id: MDQ6VXNlcjQ1MzAwMzA= + organizations_url: https://api.github.com/users/dustymabe/orgs + received_events_url: https://api.github.com/users/dustymabe/received_events + repos_url: https://api.github.com/users/dustymabe/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dustymabe/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/dustymabe - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #172 ' - closed_at: '2019-09-19T09:46:56Z' - comments: 13 - comments_url: https://api.github.com/repos/packit/ogr/issues/206/comments - created_at: '2019-09-18T13:16:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/206/events - html_url: https://github.com/packit/ogr/pull/206 - id: 495219552 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/206/labels{/name} + body: '' + closed_at: '2019-08-14T12:37:27Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/153/comments + created_at: '2019-08-14T12:22:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/153/events + html_url: https://github.com/packit/ogr/pull/153 + id: 480648599 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/153/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE4ODA3MTU3 - number: 206 + node_id: MDExOlB1bGxSZXF1ZXN0MzA3MzA0MjMx + number: 153 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/206.diff - html_url: https://github.com/packit/ogr/pull/206 - patch_url: https://github.com/packit/ogr/pull/206.patch - url: https://api.github.com/repos/packit/ogr/pulls/206 + diff_url: https://github.com/packit/ogr/pull/153.diff + html_url: https://github.com/packit/ogr/pull/153 + patch_url: https://github.com/packit/ogr/pull/153.patch + url: https://api.github.com/repos/packit/ogr/pulls/153 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: methods for commit status and commit comment - updated_at: '2019-09-19T09:46:56Z' - url: https://api.github.com/repos/packit/ogr/issues/206 + title: '[README.md] Zuul badge' + updated_at: '2019-08-14T15:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/153 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #127 ' + closed_at: '2019-08-13T07:27:51Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/137/comments + created_at: '2019-07-25T10:41:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/137/events + html_url: https://github.com/packit/ogr/pull/137 + id: 472793637 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/137/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzAxMDg1MDUw + number: 137 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/137.diff + html_url: https://github.com/packit/ogr/pull/137 + patch_url: https://github.com/packit/ogr/pull/137.patch + url: https://api.github.com/repos/packit/ogr/pulls/137 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add method edit_release + updated_at: '2019-08-13T07:27:52Z' + url: https://api.github.com/repos/packit/ogr/issues/137 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -66585,7 +90409,7 @@ requests.sessions: url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -66604,7 +90428,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -66622,35 +90446,24 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions type: User url: https://api.github.com/users/lbarcziova - author_association: MEMBER - body: "```python\r\n def commit_comment(\r\n self, commit: str,\ - \ body: str, filename: str = None, row: int = None\r\n ) -> \"CommitComment\"\ - :\r\n raise NotImplementedError()\r\n\r\n def set_commit_status(\r\ - \n self, commit: str, state: str, target_url: str, description:\ - \ str, context: str\r\n ) -> \"CommitFlag\":\r\n raise NotImplementedError()\r\ - \n\r\n def get_commit_statuses(self, commit: str) -> List[CommitFlag]:\r\ - \n \"\"\"\r\n Something like this:\r\n commit_object\ - \ = self.gitlab_repo.commits.get(commit)\r\n raw_statuses = commit_object.statuses.list()\r\ - \n return [\r\n GitlabProject._commit_status_from_gitlab_object(raw_status)\r\ - \n for raw_status in raw_statuses\r\n ]\r\n \ - \ \"\"\"\r\n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html\r\ - \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-comments\r\ - \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status" - closed_at: '2019-09-19T09:46:56Z' + author_association: COLLABORATOR + body: Can we create a method for editing a release? We can use [this](https://pygithub.readthedocs.io/en/latest/github_objects/GitRelease.html#github.GitRelease.GitRelease.update_release) + for it. + closed_at: '2019-08-13T07:27:51Z' comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/172/comments - created_at: '2019-09-06T07:23:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/172/events - html_url: https://github.com/packit/ogr/issues/172 - id: 490172659 + comments_url: https://api.github.com/repos/packit/ogr/issues/127/comments + created_at: '2019-07-18T08:08:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/127/events + html_url: https://github.com/packit/ogr/issues/127 + id: 469627928 labels: - - color: d93f0b + - color: '000000' default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: a2eeef default: false description: New feature or a request for enhancement. @@ -66672,39 +90485,87 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/172/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/127/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzI2NTk= - number: 172 + node_id: MDU6SXNzdWU0Njk2Mjc5Mjg= + number: 127 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for commits - updated_at: '2019-09-19T09:46:56Z' - url: https://api.github.com/repos/packit/ogr/issues/172 + title: edit Github release + updated_at: '2019-08-13T07:27:51Z' + url: https://api.github.com/repos/packit/ogr/issues/127 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #124 ' + closed_at: '2019-08-13T07:11:39Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/136/comments + created_at: '2019-07-25T07:39:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/136/events + html_url: https://github.com/packit/ogr/pull/136 + id: 472712760 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/136/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzAxMDE5ODMy + number: 136 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/136.diff + html_url: https://github.com/packit/ogr/pull/136 + patch_url: https://github.com/packit/ogr/pull/136.patch + url: https://api.github.com/repos/packit/ogr/pulls/136 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: run tests on one repository + updated_at: '2019-08-13T07:11:39Z' + url: https://api.github.com/repos/packit/ogr/issues/136 + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -66723,7 +90584,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -66742,23 +90603,16 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "```python\r\n def project_create(self, repo: str, namespace:\ - \ str = None) -> \"GithubProject\":\r\n pass\r\n```\r\n\r\nThe\ - \ methods for creating projects are in two places:\r\n\r\n- user:\r\n\ - \ - [Github.get_user](https://pygithub.readthedocs.io/en/latest/github.html#github.MainClass.Github.get_user)\r\ - \n - [User.create_repo](https://pygithub.readthedocs.io/en/latest/github_objects/AuthenticatedUser.html#github.AuthenticatedUser.AuthenticatedUser.create_repo)\r\ - \n- namespace:\r\n - [Github.get_organization](https://pygithub.readthedocs.io/en/latest/github.html#github.MainClass.Github.get_organization)\r\ - \n - [Organization.create_repo](https://pygithub.readthedocs.io/en/latest/github_objects/Organization.html#github.Organization.Organization.create_repo)\r\ - \n\r\nAC:\r\n\r\n- [x] implement the method in `GithubService`\r\n-\ - \ [x] create at least two tests for that (with and without specifying\ - \ `namespace`)\r\n" - closed_at: '2019-09-19T09:13:21Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/203/comments - created_at: '2019-09-18T09:06:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/203/events - html_url: https://github.com/packit/ogr/issues/203 - id: 495090506 + body: "- Try to have only one project for testing (ideally OGR itself\ + \ in case of GitHub).\r\n- Then it is easy for everyone to regenerate\ + \ the test responses." + closed_at: '2019-08-13T07:11:39Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/124/comments + created_at: '2019-07-18T07:15:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/124/events + html_url: https://github.com/packit/ogr/issues/124 + id: 469607471 labels: - color: '000000' default: false @@ -66767,13 +90621,13 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef + - color: 1d76db default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: 7057ff default: false description: Good for newcomers @@ -66781,6 +90635,20 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing - color: 42e529 default: false description: This issue was already processed and well defined. @@ -66788,19 +90656,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/203/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/124/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTUwOTA1MDY= - number: 203 + node_id: MDU6SXNzdWU0Njk2MDc0NzE= + number: 124 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitHub method for create_project - updated_at: '2019-09-19T09:27:27Z' - url: https://api.github.com/repos/packit/ogr/issues/203 + title: Run tests on the OGR project itself + updated_at: '2019-08-13T07:11:39Z' + url: https://api.github.com/repos/packit/ogr/issues/124 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -66822,545 +90690,543 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #203 ' - closed_at: '2019-09-19T09:13:22Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/208/comments - created_at: '2019-09-19T06:12:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/208/events - html_url: https://github.com/packit/ogr/pull/208 - id: 495593829 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/208/labels{/name} + body: '' + closed_at: '2019-08-10T14:24:33Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/148/comments + created_at: '2019-08-10T13:32:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/148/events + html_url: https://github.com/packit/ogr/pull/148 + id: 479267763 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/148/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE5MTEwNjY0 - number: 208 + node_id: MDExOlB1bGxSZXF1ZXN0MzA2MjEyNjI0 + number: 148 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/208.diff - html_url: https://github.com/packit/ogr/pull/208 - patch_url: https://github.com/packit/ogr/pull/208.patch - url: https://api.github.com/repos/packit/ogr/pulls/208 + diff_url: https://github.com/packit/ogr/pull/148.diff + html_url: https://github.com/packit/ogr/pull/148 + patch_url: https://github.com/packit/ogr/pull/148.patch + url: https://api.github.com/repos/packit/ogr/pulls/148 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: github method for creating projects added - updated_at: '2019-09-19T09:13:22Z' - url: https://api.github.com/repos/packit/ogr/issues/208 + title: testing + updated_at: '2019-08-10T14:30:25Z' + url: https://api.github.com/repos/packit/ogr/issues/148 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- [x] Update Pagure response files and fix the tests.\r\n- [x]\ - \ Update GitHub response files and fix the tests.\r\n- ~~[ ] Update\ - \ GitLab response files and fix the tests if needed.~~\r\n\r\nFixes\ - \ #181 " - closed_at: '2019-09-19T08:09:47Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/202/comments - created_at: '2019-09-17T13:18:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/202/events - html_url: https://github.com/packit/ogr/pull/202 - id: 494619035 + author_association: CONTRIBUTOR + body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ + \nBy PR #144 we add a bug. In `github.py` is mentioned https://github.com/packit-service/ogr/blob/master/ogr/services/github.py#L398\ + \ `get_all_pr_commits`.\r\n\r\nSuddenly it was not caught by PR review." + closed_at: '2019-08-09T14:48:39Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/145/comments + created_at: '2019-08-09T13:29:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/145/events + html_url: https://github.com/packit/ogr/pull/145 + id: 478987478 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/145/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA1OTkwNTI1 + number: 145 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/145.diff + html_url: https://github.com/packit/ogr/pull/145 + patch_url: https://github.com/packit/ogr/pull/145.patch + url: https://api.github.com/repos/packit/ogr/pulls/145 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Rename get_pr_commits to get_all_pr_commits in abstract.py + updated_at: '2019-08-09T14:48:39Z' + url: https://api.github.com/repos/packit/ogr/issues/145 + user: + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos + site_admin: false + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions + type: User + url: https://api.github.com/users/phracek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ + \nAdd function `get_pr_commits` into `abstract.py`." + closed_at: '2019-08-08T14:03:49Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/144/comments + created_at: '2019-08-08T12:17:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/144/events + html_url: https://github.com/packit/ogr/pull/144 + id: 478434638 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/144/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA1NTQ5MTcw + number: 144 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/144.diff + html_url: https://github.com/packit/ogr/pull/144 + patch_url: https://github.com/packit/ogr/pull/144.patch + url: https://api.github.com/repos/packit/ogr/pulls/144 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add get_pr_commits into abstract.py + updated_at: '2019-08-08T14:03:49Z' + url: https://api.github.com/repos/packit/ogr/issues/144 + user: + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos + site_admin: false + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions + type: User + url: https://api.github.com/users/phracek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ + \nPull request adds a function for getting all commits for specific\ + \ PR.\r\nIt is useful when the user adds a comment into `packit-service`\ + \ like `/packit copr-build` and we would like to get especially the\ + \ latest commit from the PR.\r\n\r\nA real example:\r\nhttps://github.com/packit-service/packit-service/blob/master/packit_service/worker/github_handlers.py#L92\ + \ `pr_event/base_ref` cannot by `pr/9` but reference to the latest commit\ + \ for a pull request.\r\n\r\n- [x] Pull Request contains info about\ + \ SHA of the latest commit.\r\n- [x] tests are covered." + closed_at: '2019-08-08T10:10:30Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/140/comments + created_at: '2019-08-05T10:56:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/140/events + html_url: https://github.com/packit/ogr/pull/140 + id: 476794481 labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 + - color: 18e033 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/202/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/140/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE4MzM1NjYw - number: 202 + node_id: MDExOlB1bGxSZXF1ZXN0MzA0MjQ5MTY2 + number: 140 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/202.diff - html_url: https://github.com/packit/ogr/pull/202 - patch_url: https://github.com/packit/ogr/pull/202.patch - url: https://api.github.com/repos/packit/ogr/pulls/202 + diff_url: https://github.com/packit/ogr/pull/140.diff + html_url: https://github.com/packit/ogr/pull/140 + patch_url: https://github.com/packit/ogr/pull/140.patch + url: https://api.github.com/repos/packit/ogr/pulls/140 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update tests and response files - updated_at: '2019-09-19T08:09:51Z' - url: https://api.github.com/repos/packit/ogr/issues/202 + title: Function for getting all commits from specific PR. + updated_at: '2019-08-08T10:10:30Z' + url: https://api.github.com/repos/packit/ogr/issues/140 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/phracek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Currently, we need to know the author of the generated files, because\ - \ we do not know the owner of the fork we are using. (When we are not\ - \ setting the `PAGURE_USER` token, e.i. in CI.)\r\n\r\nAI: Fix the need\ - \ of `LAST_GENERATED_BY = ` constant." - closed_at: '2019-09-19T08:09:47Z' + body: I checked it's not used anywhere else. + closed_at: '2019-08-06T11:03:47Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/181/comments - created_at: '2019-09-09T08:16:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/181/events - html_url: https://github.com/packit/ogr/issues/181 - id: 490947039 + comments_url: https://api.github.com/repos/packit/ogr/issues/142/comments + created_at: '2019-08-06T10:20:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/142/events + html_url: https://github.com/packit/ogr/pull/142 + id: 477295662 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/142/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA0NjQ3NzYz + number: 142 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/142.diff + html_url: https://github.com/packit/ogr/pull/142 + patch_url: https://github.com/packit/ogr/pull/142.patch + url: https://api.github.com/repos/packit/ogr/pulls/142 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: PersistenStorageException -> PersistentStorageException + updated_at: '2019-08-06T11:03:50Z' + url: https://api.github.com/repos/packit/ogr/issues/142 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-08-06T07:30:48Z' + comments: 23 + comments_url: https://api.github.com/repos/packit/ogr/issues/129/comments + created_at: '2019-07-18T17:29:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/129/events + html_url: https://github.com/packit/ogr/pull/129 + id: 469897903 labels: - - color: f9d0c4 + - color: '000000' default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 42e529 + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/181/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/129/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTA5NDcwMzk= - number: 181 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk5MDE3NDM2 + number: 129 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/129.diff + html_url: https://github.com/packit/ogr/pull/129 + patch_url: https://github.com/packit/ogr/pull/129.patch + url: https://api.github.com/repos/packit/ogr/pulls/129 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Avoid saving author of the last generated response-files - updated_at: '2019-09-19T08:09:47Z' - url: https://api.github.com/repos/packit/ogr/issues/181 + title: 'Fix Issue #126, implemented get_email' + updated_at: '2019-08-06T07:30:49Z' + url: https://api.github.com/repos/packit/ogr/issues/129 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/38399871?v=4 + events_url: https://api.github.com/users/yzhang2907/events{/privacy} + followers_url: https://api.github.com/users/yzhang2907/followers + following_url: https://api.github.com/users/yzhang2907/following{/other_user} + gists_url: https://api.github.com/users/yzhang2907/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/yzhang2907 + id: 38399871 + login: yzhang2907 + node_id: MDQ6VXNlcjM4Mzk5ODcx + organizations_url: https://api.github.com/users/yzhang2907/orgs + received_events_url: https://api.github.com/users/yzhang2907/received_events + repos_url: https://api.github.com/users/yzhang2907/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/yzhang2907/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/yzhang2907/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/yzhang2907 - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: '' - closed_at: '2019-09-19T07:00:59Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/194/comments - created_at: '2019-09-12T08:49:07Z' - events_url: https://api.github.com/repos/packit/ogr/issues/194/events - html_url: https://github.com/packit/ogr/issues/194 - id: 492670435 + author_association: COLLABORATOR + body: "I made `git cherry-pick` of all @yzhang2907 commits in PR #129\ + \ which solves #126. I also found out that there is no current way how\ + \ to get the user's email from Pagure API and @yzhang2907 code wouldn't\ + \ work for Pagure. However, the code for Github is fine now. \r\n\r\n" + closed_at: '2019-08-06T07:27:43Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/141/comments + created_at: '2019-08-05T12:28:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/141/events + html_url: https://github.com/packit/ogr/pull/141 + id: 476831775 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/194/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/141/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTI2NzA0MzU= - number: 194 + node_id: MDExOlB1bGxSZXF1ZXN0MzA0Mjc5NjI3 + number: 141 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/141.diff + html_url: https://github.com/packit/ogr/pull/141 + patch_url: https://github.com/packit/ogr/pull/141.patch + url: https://api.github.com/repos/packit/ogr/pulls/141 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Release 0.7.0 by /packit propose-update - updated_at: '2019-09-19T07:00:59Z' - url: https://api.github.com/repos/packit/ogr/issues/194 + title: get-email + updated_at: '2019-08-06T07:27:43Z' + url: https://api.github.com/repos/packit/ogr/issues/141 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/phracek + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-09-17T09:05:10Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/200/comments - created_at: '2019-09-13T12:21:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/200/events - html_url: https://github.com/packit/ogr/pull/200 - id: 493295672 - labels: - - color: dd5f74 - default: false - description: Work in progress. - id: 1432779248 - name: do-not-merge - node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 - url: https://api.github.com/repos/packit/ogr/labels/do-not-merge - labels_url: https://api.github.com/repos/packit/ogr/issues/200/labels{/name} + author_association: CONTRIBUTOR + body: https://packit.dev/docs/configuration/#supported-jobs + closed_at: '2019-07-30T10:59:00Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/138/comments + created_at: '2019-07-30T07:31:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/138/events + html_url: https://github.com/packit/ogr/pull/138 + id: 474421629 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/138/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE3MzAxMTYz - number: 200 + node_id: MDExOlB1bGxSZXF1ZXN0MzAyMzY2NTU5 + number: 138 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/200.diff - html_url: https://github.com/packit/ogr/pull/200 - patch_url: https://github.com/packit/ogr/pull/200.patch - url: https://api.github.com/repos/packit/ogr/pulls/200 + diff_url: https://github.com/packit/ogr/pull/138.diff + html_url: https://github.com/packit/ogr/pull/138 + patch_url: https://github.com/packit/ogr/pull/138.patch + url: https://api.github.com/repos/packit/ogr/pulls/138 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'WIP: use requre project and list modules for next work' - updated_at: '2019-09-17T09:07:25Z' - url: https://api.github.com/repos/packit/ogr/issues/200 + title: 'packit.yaml: propose_downstream: s/_/-/' + updated_at: '2019-07-30T14:27:13Z' + url: https://api.github.com/repos/packit/ogr/issues/138 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Use returned GitLab repo instance in GitlabService.project_create.' - closed_at: '2019-09-12T18:18:59Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/197/comments - created_at: '2019-09-12T10:18:06Z' - events_url: https://api.github.com/repos/packit/ogr/issues/197/events - html_url: https://github.com/packit/ogr/pull/197 - id: 492715580 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* method _pr_from_github_object\ + \ differentiate closed and merged status\n* allow usage of PRStatus.merged\ + \ for github pull requests\n* add get_latest_release(), create Releases\ + \ class in test_github.py\n* Simplify imports\n* Split mocking and persistent_storage\n\ + * Fix github-app authentication\n* Rename env-var for mocking and allow\ + \ setting response file from RESPONSE_FILE env-var\n* Use PersistentObjectStorage\ + \ as a Singleton\n* Split mocking and read_only from mocking\n* Set\ + \ persistent storage only via class\n* Update mocking of GithubIntegration\ + \ from PyGithub\n* Improve mocking and add support for authentication\ + \ as a github-app\n* improve tests from previous commit\n* add labeling\ + \ github pull requests\n* mistake fixed\n* PRFlag changed back to PRStatus\n\ + * CommitStatus, PRStatus renamed to CommitFlag, PRFlag\n* use zuul for\ + \ realz now\n* test changed\n* method create release for github created\n\ + * add zuul config\n* bump base image to F30\n* add get_releses for Pagure\n\ + * unused functions removed\n* add get_releases/get_release into abstract.py\n\ + * add who_can_marge_pr and who_can_close_issue\n* delete obsolete comments\n\ + * fix review notes, add can_close_issue and can_merge_pr, remove who_can_close_issue\ + \ and who_can_merge_pr\n* fix mypy errors\n* get project's owners and\ + \ permissions of various users\n* split test_get_tag_from_tag_name\n\ + * value of git_tag in github Release set\n* link to GitTag from Release\ + \ added\n* collections.Hashable -> collections.abc.Hashable\n* Make\ + \ PersistentObjectStorage.__init__() backwards compatible\n* in get_file_content\ + \ catch only 404\n* subprocess.run fix\n* unify external command invocation\ + \ by subprocess.run\n* Add integration tests for factory and add more\ + \ unit tests\n* Add docstrings to factory and types to parsing\n* Add\ + \ get_project and get_service_class to global imports\n* Add tests for\ + \ parsing\n* Add tests for factory\n* Add __eq__ for projects and services\n\ + * Save more attributes about parsed url\n* [github] Be lazy with github_repo\ + \ object from pygithub\n* Fix __str__ after rebase\n* Add support for\ + \ services-mapping update\n* Import services in ogr/__init__.py to see\ + \ it in the mapping\n* Add method for creating projects from url\n*\ + \ Get project from url\n* fix code format issues\n* add tests, fix review\ + \ notes\n* creating/closing/commenting Pagure Issues\n* Fix formating\ + \ for __str__ methods\n* Changes requested to_str_method of classes\n\ + * Added instantiation-like syntax\n* Added __str__ method to classes\n\ + * Added __str__ method to classes\n\n\nYou can change it by editing\ + \ `CHANGELOG.md` in the root of this repository and pushing to `0.6.0-release`\ + \ branch before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2019-07-25T07:48:18Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/135/comments + created_at: '2019-07-23T11:55:07Z' + events_url: https://api.github.com/repos/packit/ogr/issues/135/events + html_url: https://github.com/packit/ogr/pull/135 + id: 471653597 labels: - - color: d93f0b + - color: ededed default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 0e8a16 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/197/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/135/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODM0MDQ1 - number: 197 + node_id: MDExOlB1bGxSZXF1ZXN0MzAwMjYxMzU3 + number: 135 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/197.diff - html_url: https://github.com/packit/ogr/pull/197 - patch_url: https://github.com/packit/ogr/pull/197.patch - url: https://api.github.com/repos/packit/ogr/pulls/197 + diff_url: https://github.com/packit/ogr/pull/135.diff + html_url: https://github.com/packit/ogr/pull/135 + patch_url: https://github.com/packit/ogr/pull/135.patch + url: https://api.github.com/repos/packit/ogr/pulls/135 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Set GitLab object on project_create - updated_at: '2019-09-12T19:29:31Z' - url: https://api.github.com/repos/packit/ogr/issues/197 + title: 0.6.0 release + updated_at: '2019-07-25T07:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/135 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "In `packit-service`, I am using method `who_can_merge_pr` for getting\ - \ users who can merge PR.\r\n\r\n* `get_owners` for repository `packit-service/packit-service`\ - \ returns list `['packit-service']`\r\n```\r\n[2019-07-22 08:52:07,528:\ - \ DEBUG/ForkPoolWorker-1] Repository owners ['packit-service']\r\n```\r\ - \n* `who_can_merge_pr` for repository `rebase-helper/rebase-helper`\ - \ returns list like `{'FrNecas', 'uhliarik', 'phracek', 'nforro', 'thozza'}`\ - \ but for `packit-service/packit-service` repo it failed with traceback\r\ - \n\r\n```\r\n[2019-07-22 08:52:08,368: ERROR/ForkPoolWorker-1] Task\ - \ task.steve_jobs.process_message[9c44c1c8-5cf7-4a98-88d5-b0dbaca0262f]\ - \ raised unexpected: AttributeError(\"'Repository' object has no attribute\ - \ 'get_collaborator_permission'\")\r\nTraceback (most recent call last):\r\ - \n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ - , line 385, in trace_task\r\n R = retval = fun(*args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ - , line 648, in __protected_call__\r\n return self.run(*args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ - , line 31, in process_message\r\n return SteveJobs().process_message(event=event,\ - \ topic=topic)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 383, in process_message\r\n jobs_results = self.process_jobs(trigger,\ - \ package_config, event, project)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 341, in process_jobs\r\n handlers_results[job.job.value] =\ - \ handler.run()\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 793, in run\r\n return self.handle_pull_request()\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 717, in handle_pull_request\r\n collaborators = self.project.who_can_merge_pr()\r\ - \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ - , line 254, in who_can_merge_pr\r\n collaborators = self._get_collaborators_with_permission()\r\ - \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ - , line 294, in _get_collaborators_with_permission\r\n permission\ - \ = self.github_repo.get_collaborator_permission(user)\r\nAttributeError:\ - \ 'Repository' object has no attribute 'get_collaborator_permission'\r\ - \n```\r\n\r\nFunction GITHUB API function which gets all collaborators\ - \ returns\r\n```\r\n[2019-07-22 08:52:08,136: DEBUG/ForkPoolWorker-1]\ - \ GET https://api.github.com/repos/packit-service/hello-world/collaborators\ - \ \r\n{'Authorization': 'token (oauth token removed)', 'User-Agent':\ - \ 'PyGithub/Python'} None ==> 200 {'date': 'Mon, 22 Jul 2019 08:52:05\ - \ GMT', 'content-type': 'application/json; charset=utf-8', 'content-length':\ - \ '9897', 'server': 'GitHub.com', 'status': '200 OK', 'x-ratelimit-limit':\ - \ '5000', 'x-ratelimit-remaining': '4997', 'x-ratelimit-reset': '1563789120',\ - \ 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept-Encoding',\ - \ 'etag': '\"608e280b2b2bc2d96b1393ce9c294cee\"', 'x-github-media-type':\ - \ 'github.v3; format=json', 'access-control-expose-headers': 'ETag,\ - \ Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining,\ - \ X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval,\ - \ X-GitHub-Media-Type', 'access-control-allow-origin': '*', 'strict-transport-security':\ - \ 'max-age=31536000; includeSubdomains; preload', 'x-frame-options':\ - \ 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1;\ - \ mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin',\ - \ 'content-security-policy': \"default-src 'none'\", 'x-github-request-id':\ - \ '1110:253E:289043:3B0BB6:5D357935'}b'[\r\n{\"login\":\"jpopelka\"\ - ,\"id\":288686,\"node_id\":\"MDQ6VXNlcjI4ODY4Ng==\",\"avatar_url\":\"\ - https://avatars0.githubusercontent.com/u/288686?v=4\",\"gravatar_id\"\ - :\"\",\"url\":\"https://api.github.com/users/jpopelka\",\"html_url\"\ - :\"https://github.com/jpopelka\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/jpopelka/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/jpopelka/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/jpopelka/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/jpopelka/repos\",\"events_url\"\ - :\"https://api.github.com/users /jpopelka/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/jpopelka/received_events\",\"type\"\ - :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"TomasTomecek\",\"id\":1662493,\"\ - node_id\":\"MDQ6VXNlcjE2NjI0OTM=\",\"avatar_url\":\"https://avatars0.githubusercontent.com/u/1662493?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/TomasTomecek\"\ - ,\"html_url\":\"https://github.com/TomasTomecek\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/TomasTomecek/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/TomasTomecek/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/TomasTomecek/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/TomasTomecek/repos\",\"\ - events_url\":\"https://api.github.com/users/TomasTomecek/events{/privacy}\"\ - ,\"received_events_url\":\"https://api.github.com/users/TomasTomecek/received_events\"\ - ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ - push\":true,\"pull\":true}},\r\n{\"login\":\"eliskasl\",\"id\":1866652,\"\ - node_id\":\"MDQ6VXNlcjE4NjY2NTI=\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/1866652?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/eliskasl\"\ - ,\"html_url\":\"https://github.com/eliskasl\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/eliskasl/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/eliskasl/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/eliskasl/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/eliskasl/repos\",\"events_url\"\ - :\"https://api.github.com/users/eliskasl/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/ eliskasl/received_events\",\"type\"\ - :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"phracek\",\"id\":3416672,\"node_id\"\ - :\"MDQ6VXNlcjM0MTY2NzI=\",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/3416672?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/phracek\"\ - ,\"html_url\":\"https://github.com/phracek\",\"followers_url\":\"https://api.github.com/users/phracek/followers\"\ - ,\"following_url\":\"https://api.github.com/users/phracek/following{/other_user}\"\ - ,\"gists_url\":\"https://api.github.com/users/phracek/gists{/gist_id}\"\ - ,\"starred_url\":\"https://api.github.com/users/phracek/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/phracek/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/phracek/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/phracek/repos\",\"events_url\"\ - :\"https://api.github.com/users/phracek/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/phracek/received_events\",\"type\":\"\ - User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"jscotka\",\"id\":8735467,\"node_id\"\ - :\"MDQ6VXNlcjg3MzU0Njc=\",\"avatar_url\":\"https://avatars0.githubusercontent.com/u/8735467?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/jscotka\"\ - ,\"html_url\":\"https://github.com/jscotka\",\"followers_url\":\"https://api.github.com/users/jscotka/followers\"\ - ,\"following_url\":\"https://api.github.com/users/jscotka/following{/other_user}\"\ - ,\"gists_url\":\"https://api.github.com/users/jscotka/gists{/gist_id}\"\ - ,\"starred_url\":\"https://api.github.com/users/jscotka/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/jscotka/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/jscotka/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/jscotka/repos\",\"events_url\"\ - :\"https://api.github.com/users/jscotka/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/jscotka/received_events\",\"type\":\"\ - User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},{\"login\":\"lachmanfrantisek\",\"id\":202140\ - \ 43,\"node_id\":\"MDQ6VXNlcjIwMjE0MDQz\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/20214043?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/lachmanfrantisek\"\ - ,\"html_url\":\"https://github.com/lachmanfrantisek\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/lachmanfrantisek/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/lachmanfrantisek/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/lachmanfrantisek/repos\"\ - ,\"events_url\":\"https://api.github.com/users/lachmanfrantisek/events{/privacy}\"\ - ,\"received_events_url\":\"https://api.github.com/users/lachmanfrantisek/received_events\"\ - ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ - push\":true,\"pull\":true}},\r\n{\"login\":\"rpitonak\",\"id\":26160778,\"\ - node_id\":\"MDQ6VXNlcjI2MTYwNzc4\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/26160778?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/rpitonak\"\ - ,\"html_url\":\"https://github.com/rpitonak\",\"followers_url\":\"https://api.github.com/users/rpitonak/followers\"\ - ,\"following_url\":\"https://api.github.com/users/rpitonak/following{/other_user}\"\ - ,\"gists_url\":\"https://api.github.com/users/rpitonak/gists{/gist_id}\"\ - ,\"starred_url\":\"https://api.github.com/users/rpitonak/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/rpitonak/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/rpitonak/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/rpitonak/repos\",\"events_url\"\ - :\"https://api.github.com/users/rpitonak/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/rpitonak/received_events\",\"type\"\ - :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"dhodovsk\",\"id\":31201372,\"\ - node_id\":\"MDQ6VXNlcjMxMjAxMzcy \",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/31201372?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/dhodovsk\"\ - ,\"html_url\":\"https://github.com/dhodovsk\",\"followers_url\":\"https://api.github.com/users/dhodovsk/followers\"\ - ,\"following_url\":\"https://api.github.com/users/dhodovsk/following{/other_user}\"\ - ,\"gists_url\":\"https://api.github.com/users/dhodovsk/gists{/gist_id}\"\ - ,\"starred_url\":\"https://api.github.com/users/dhodovsk/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/dhodovsk/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/dhodovsk/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/dhodovsk/repos\",\"events_url\"\ - :\"https://api.github.com/users/dhodovsk/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/dhodovsk/received_events\",\"type\"\ - :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"usercont-release-bot\",\"id\"\ - :36231209,\"node_id\":\"MDQ6VXNlcjM2MjMxMjA5\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/36231209?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/usercont-release-bot\"\ - ,\"html_url\":\"https://github.com/usercont-release-bot\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/usercont-release-bot/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/usercont-release-bot/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/usercont-release-bot/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/usercont-release-bot/repos\"\ - ,\"events_url\":\"https://api.github.com/users/usercont-release-bot/events{/privacy}\"\ - ,\"received_events_url\":\"https://api.github.com/users/usercont-release-bot/received_events\"\ - ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ - push\":true,\"pull\":true}},\r\n{\"login\":\"lbarcziova\",\"id\":49026743,\"\ - node_id\": \"MDQ6VXNlcjQ5MDI2NzQz\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/49026743?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/lbarcziova\"\ - ,\"html_url\":\"https://github.com/lbarcziova\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/lbarcziova/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/lbarcziova/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/lbarcziova/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/lbarcziova/repos\",\"\ - events_url\":\"https://api.github.com/users/lbarcziova/events{/privacy}\"\ - ,\"received_events_url\":\"https://api.github.com/users/lbarcziova/received_events\"\ - ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ - push\":true,\"pull\":true}}]'\r\n```" - closed_at: '2019-09-12T11:13:02Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/132/comments - created_at: '2019-07-22T09:03:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/132/events - html_url: https://github.com/packit/ogr/issues/132 - id: 470977370 + author_association: COLLABORATOR + body: "Based on our discussion in PR #128 this code makes consistency\ + \ in `get_pr_list(status)` between Pagure and Github. We can use `PRStatus.merged`\ + \ for Github now.\r\n\r\nCan we close #128 without merging? It was easier\ + \ to create a new branch since the code is completely different.\r\n" + closed_at: '2019-07-23T11:51:08Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/130/comments + created_at: '2019-07-21T13:19:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/130/events + html_url: https://github.com/packit/ogr/pull/130 + id: 470780887 labels: - color: '000000' default: false @@ -67376,294 +91242,494 @@ requests.sessions: name: bug node_id: MDU6TGFiZWwxMTYwMzExMjYy url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/132/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/130/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk5NjM1NzU2 + number: 130 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/130.diff + html_url: https://github.com/packit/ogr/pull/130 + patch_url: https://github.com/packit/ogr/pull/130.patch + url: https://api.github.com/repos/packit/ogr/pulls/130 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: allow usage of PRStatus.merged for Github get_pr_list(status) + updated_at: '2019-07-23T12:16:08Z' + url: https://api.github.com/repos/packit/ogr/issues/130 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "It's pretty common looking for the latest release only. It would\ + \ be useful to have a fast method for it without looking for some identifier\ + \ or getting all releases. Here it is. \r\n\r\nI also think that tests\ + \ for releases were in the incorrect class. Release tests which are\ + \ increasing deserve its own class. " + closed_at: '2019-07-23T11:01:50Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/131/comments + created_at: '2019-07-21T15:22:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/131/events + html_url: https://github.com/packit/ogr/pull/131 + id: 470793486 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/131/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzA5NzczNzA= - number: 132 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk5NjQ0MzIy + number: 131 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/131.diff + html_url: https://github.com/packit/ogr/pull/131 + patch_url: https://github.com/packit/ogr/pull/131.patch + url: https://api.github.com/repos/packit/ogr/pulls/131 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: fnc `who_can_merge_pr` fails with traceback - updated_at: '2019-09-12T15:19:54Z' - url: https://api.github.com/repos/packit/ogr/issues/132 + title: add get_latest_release(), create Releases class in test_github.py + updated_at: '2019-07-23T12:12:58Z' + url: https://api.github.com/repos/packit/ogr/issues/131 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/phracek + url: https://api.github.com/users/marusinm + _next: null + elapsed: 0.528698 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:16 GMT + ETag: W/"24c62d7d1a84946988d4c5947d41b3c9a4f71577924ec9bb33f6239421391d54" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7EF8A:1919EFE:6075DC30 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4788' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '212' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=16: + - metadata: + latency: 0.3965725898742676 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "I would like to solve an issue https://github.com/packit-service/packit/issues/328\r\ - \nbut it failed with traceback:\r\n\r\n~~~\r\n$ packit -d propose-update\r\ - \n[..snip..]\r\n10:40:20.990 upstream.py DEBUG Version in spec\ - \ file: 0.16.3\r\nPicking version found in spec file.\r\nChecking out\ - \ upstream version 0.16.3\r\n10:40:21.013 base_git.py DEBUG Allowed\ - \ GPG keys are not set, skipping the verification.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running ActionName.pre_sync hook.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running ActionName.pre_sync.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running default implementation for ActionName.pre_sync.\r\ - \nUsing 'master' dist-git branch\r\n10:40:21.017 base_git.py DEBUG\ - \ It seems that branch master already exists, checking it out.\r\n\ - 10:40:21.020 distgit.py DEBUG About to update branch 'master'\r\ - \n10:40:21.727 api.py DEBUG Path of README /tmp/tmpzla3qy3y/README.packit\r\ - \n10:40:21.728 base_git.py DEBUG Running ActionName.prepare_files.\r\ - \n10:40:21.729 base_git.py DEBUG Running default implementation\ - \ for ActionName.prepare_files.\r\n10:40:21.729 sync.py DEBUG\ - \ Copy synced files [RawSyncFilesItem(src=/home/vagrant/rebase-helper/.packit.yml,\ - \ dest=/tmp/tmpzla3qy3y/.packit.yml, dist_is_dir=False), RawSyncFilesItem(src=/home/vagrant/rebase-helper/rebase-helper.spec,\ - \ dest=/tmp/tmpzla3qy3y/rebase-helper.spec, dist_is_dir=False)]\r\n\ - 10:40:21.730 sync.py DEBUG src = /home/vagrant/rebase-helper/.packit.yml,\ - \ dest = /tmp/tmpzla3qy3y/.packit.yml\r\nCopying /home/vagrant/rebase-helper/.packit.yml\ - \ to /tmp/tmpzla3qy3y/.packit.yml.\r\n10:40:21.731 sync.py \ - \ DEBUG src = /home/vagrant/rebase-helper/rebase-helper.spec, dest\ - \ = /tmp/tmpzla3qy3y/rebase-helper.spec\r\nCopying /home/vagrant/rebase-helper/rebase-helper.spec\ - \ to /tmp/tmpzla3qy3y/rebase-helper.spec.\r\n10:40:21.814 distgit.py\ - \ DEBUG Upstream archive name is 'rebase-helper-0.16.3.tar.gz'\r\ - \nArchive rebase-helper-0.16.3.tar.gz found in lookaside cache (skipping\ - \ upload).\r\n10:40:22.347 distgit.py DEBUG Upstream archive\ - \ name is 'rebase-helper-0.16.3.tar.gz'\r\n10:40:22.348 base_git.py\ - \ DEBUG About to add all & commit\r\n10:40:22.366 distgit.py\ - \ DEBUG About to force push changes to branch 0.16.3-master-update\ - \ of a fork fork of the dist-git repo\r\n10:40:32.251 distgit.py \ - \ DEBUG About to create dist-git pull request from 0.16.3-master-update\ - \ to master\r\nERROR There was an error while creating the PR: PagureAPIException('Page\ - \ `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.')\r\nERROR Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.\r\nTraceback (most recent call\ - \ last):\r\n File \"/usr/local/lib/python3.7/site-packages/packit/cli/utils.py\"\ - , line 58, in covered_func\r\n func(config=config, *args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/packit/cli/update.py\"\ - , line 113, in update\r\n upstream_ref=upstream_ref,\r\n File \"\ - /usr/local/lib/python3.7/site-packages/packit/api.py\", line 229, in\ - \ sync_release\r\n dist_git_branch=dist_git_branch,\r\n File \"\ - /usr/local/lib/python3.7/site-packages/packit/api.py\", line 316, in\ - \ push_and_create_pr\r\n target_branch=dist_git_branch,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit/distgit.py\", line\ - \ 211, in create_pull\r\n target_branch=target_branch,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/ogr/mock_core.py\", line\ - \ 49, in readonly_func\r\n return func(self, *args, **kwargs)\r\n\ - \ File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 377, in pr_create\r\n \"initial_comment\": body,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 232, in _call_project_api\r\n url=request_url, method=method,\ - \ params=params, data=data\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 71, in call_api\r\n raise PagureAPIException(f\"Page `{url}`\ - \ not found when calling Pagure API.\")\r\nogr.exceptions.PagureAPIException:\ - \ Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.\r\n10:40:34.958 local_project.py\ - \ DEBUG Cleaning: /tmp/tmpzla3qy3y\r\n~~~\r\n\r\n\r\nReferenced issues:\r\ - \nhttps://pagure.io/pagure/issue/4512\r\nhttps://github.com/packit-service/packit/issues/328\r\ - \n" - closed_at: '2019-09-12T11:17:19Z' + author_association: MEMBER + body: '' + closed_at: '2019-07-23T11:55:10Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/91/comments - created_at: '2019-06-27T10:41:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/91/events - html_url: https://github.com/packit/ogr/issues/91 - id: 461455149 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/91/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/134/comments + created_at: '2019-07-23T11:52:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/134/events + html_url: https://github.com/packit/ogr/issues/134 + id: 471652493 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/134/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE0NTUxNDk= - number: 91 + node_id: MDU6SXNzdWU0NzE2NTI0OTM= + number: 134 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ' Page `/fork/phracek/rpms/rebase-helper/pull-request/new` not - found when calling Pagure API' - updated_at: '2019-09-12T11:17:20Z' - url: https://api.github.com/repos/packit/ogr/issues/91 + title: new minor release + updated_at: '2019-07-23T11:55:10Z' + url: https://api.github.com/repos/packit/ogr/issues/134 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + 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/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + 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/phracek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "see log: \r\nhttps://softwarefactory-project.io/logs/13/513/8c3c6370096e5834c90dc5ff06e47cf9f3443cde/check/tests-pip-deps/cd79e16/job-output.txt.gz\r\ - \nwith git master it works, but pypi and rpm version of ogr fails with\ - \ errors like:\r\n**TypeError: __init__() got an unexpected keyword\ - \ argument 'exception'**\r\n\r\n```\r\n self = .ClassWithPersistentStorage\ - \ object at 0x7fa913e99450>\r\n2019-09-06 07:32:25.448747 | test-node\ - \ | url = 'https://src.fedoraproject.org//api/0/rpms/python-ogr/git/branches'\r\ - \n2019-09-06 07:32:25.448840 | test-node | method = 'GET', params =\ - \ None, data = None, header = None\r\n2019-09-06 07:32:25.448859 | test-node\ - \ |\r\n2019-09-06 07:32:25.448868 | test-node | def get_raw_request(\r\ - \n2019-09-06 07:32:25.448909 | test-node | self, url, method=\"\ - GET\", params=None, data=None, header=None\r\n2019-09-06 07:32:25.448924\ - \ | test-node | ):\r\n2019-09-06 07:32:25.448949 | test-node | \ - \ keys_internal = [method, url, params, data]\r\n2019-09-06 07:32:25.448977\ - \ | test-node | if self.persistent_storage.is_write_mode:\r\n\ - 2019-09-06 07:32:25.449005 | test-node | output = super().get_raw_request(\r\ - \n2019-09-06 07:32:25.449038 | test-node | url, method=method,\ - \ params=params, data=data, header=header\r\n2019-09-06 07:32:25.449066\ - \ | test-node | )\r\n2019-09-06 07:32:25.449078 | test-node\ - \ | self.persistent_storage.store(\r\n2019-09-06 07:32:25.449120\ - \ | test-node | keys=keys_internal, values=output.to_json_format()\r\ - \n2019-09-06 07:32:25.449148 | test-node | )\r\n2019-09-06\ - \ 07:32:25.449159 | test-node | else:\r\n2019-09-06 07:32:25.449190\ - \ | test-node | output_dict = self.persistent_storage.read(keys=keys_internal)\r\ - \n2019-09-06 07:32:25.449242 | test-node | > output = RequestResponse(**output_dict)\r\ - \n2019-09-06 07:32:25.449276 | test-node | E TypeError: __init__()\ - \ got an unexpected keyword argument 'exception'\r\n```" - closed_at: '2019-09-12T11:08:06Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/177/comments - created_at: '2019-09-06T07:58:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/177/events - html_url: https://github.com/packit/ogr/issues/177 - id: 490185857 + author_association: COLLABORATOR + body: "`PullRequest` class in abstract.py already has `status` field.\ + \ \r\n\r\nIn the case of Github, the set of values from API for this\ + \ field is `open`/`closed`/`all` and therefore there is missing value\ + \ `merged`. I added `is_merged` field into `PullRequest` class (since\ + \ it causes bugs in release-bot).\r\n\r\nI set the new `is_merged` field\ + \ also for Pagure." + closed_at: '2019-07-23T07:43:52Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/128/comments + created_at: '2019-07-18T10:12:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/128/events + html_url: https://github.com/packit/ogr/pull/128 + id: 469685206 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/177/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/128/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxODU4NTc= - number: 177 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk4ODQ0ODYy + number: 128 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/128.diff + html_url: https://github.com/packit/ogr/pull/128 + patch_url: https://github.com/packit/ogr/pull/128.patch + url: https://api.github.com/repos/packit/ogr/pulls/128 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: adding storing exception to RecordRequest class in utils caused - regression - updated_at: '2019-09-12T11:08:06Z' - url: https://api.github.com/repos/packit/ogr/issues/177 + title: add is_merged field into PullRequest + updated_at: '2019-07-23T07:43:52Z' + url: https://api.github.com/repos/packit/ogr/issues/128 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/jscotka + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: When new people come to the OGR repository, I think it is worth - to have a simple example on the top part of README.md demonstrating - the usage. WDYT? - closed_at: '2019-09-12T10:57:56Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/195/comments - created_at: '2019-09-12T09:33:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/195/events - html_url: https://github.com/packit/ogr/pull/195 - id: 492693187 + author_association: MEMBER + body: "- Improve saving responses.\r\n - Use Singleton for `PersistentObjectStorage`.\r\ + \n - Enable saving responses by env-var (`RECORD_REQUESTS`).\r\n\ + - Add support for authentication as a github-app.\r\n\r\n\r\n-----\r\ + \n\r\n### Usage:\r\n- Set `RECORD_REQUESTS` env. variable to turn it\ + \ on and import services directly from ogr.\r\n - Use `from ogr import\ + \ PagureService`, not `from ogr.services.pagure import PagureService`.\r\ + \n - You can use the following code in the `__init__.py` to enable\ + \ mocking for whole module:\r\n ```python\r\n import os\r\n \ + \ os.environ[\"RECORD_REQUESTS\"] = \"TRUE\"\r\n ```\r\n- Set the\ + \ storage file name before the test:\r\n ```python\r\n PersistentObjectStorage().storage_file\ + \ = persistent_data_file\r\n ```\r\n - In OGR we are using file\ + \ per test -- we have the following code in the `setUp` in `TestCase`:\r\ + \n ```python\r\n test_name = self.id() or \"all\"\r\n \ + \ persistent_data_file = os.path.join(\r\n PERSISTENT_DATA_PREFIX,\ + \ f\"test_github_data_{test_name}.yaml\"\r\n )\r\n PersistentObjectStorage().storage_file\ + \ = persistent_data_file\r\n ```\r\n- You can use `PersistentObjectStorage().is_write_mode`\ + \ to check the mode.\r\n\r\n-----\r\n\r\nTODO:\r\n\r\n\r\n- [x] less\ + \ magic in ogr/__init__.py\r\n- ~~[ ] docs~~ will make a new PR\r\n\ + - ~~[ ] fix the test for github-app~~ I am having some problems with\ + \ python-crypto -- I can fix that later to not leave that here for so\ + \ long." + closed_at: '2019-07-23T07:42:32Z' + comments: 22 + comments_url: https://api.github.com/repos/packit/ogr/issues/113/comments + created_at: '2019-07-11T10:58:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/113/events + html_url: https://github.com/packit/ogr/pull/113 + id: 466821422 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/195/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/113/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2NTkxMzkx + number: 113 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/113.diff + html_url: https://github.com/packit/ogr/pull/113 + patch_url: https://github.com/packit/ogr/pull/113.patch + url: https://api.github.com/repos/packit/ogr/pulls/113 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Authentication as a github app and mocking upgrade + updated_at: '2019-07-23T07:42:46Z' + url: https://api.github.com/repos/packit/ogr/issues/113 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + author_association: MEMBER + body: "It would be useful to have a method for getting the owner(s) of\ + \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ + \ `get_owners` and return list of strings." + closed_at: '2019-07-18T07:11:53Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments + created_at: '2019-06-26T07:44:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/88/events + html_url: https://github.com/packit/ogr/issues/88 + id: 460813032 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODE1NjE1 - number: 195 + node_id: MDU6SXNzdWU0NjA4MTMwMzI= + number: 88 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/195.diff - html_url: https://github.com/packit/ogr/pull/195 - patch_url: https://github.com/packit/ogr/pull/195.patch - url: https://api.github.com/repos/packit/ogr/pulls/195 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Quickstart example - updated_at: '2019-09-12T10:57:56Z' - url: https://api.github.com/repos/packit/ogr/issues/195 + title: Add get_owner/get_owners method to project classes + updated_at: '2019-07-18T07:11:53Z' + url: https://api.github.com/repos/packit/ogr/issues/88 user: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 - events_url: https://api.github.com/users/rpitonak/events{/privacy} - followers_url: https://api.github.com/users/rpitonak/followers - following_url: https://api.github.com/users/rpitonak/following{/other_user} - gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + 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/rpitonak - id: 26160778 - login: rpitonak - node_id: MDQ6VXNlcjI2MTYwNzc4 - organizations_url: https://api.github.com/users/rpitonak/orgs - received_events_url: https://api.github.com/users/rpitonak/received_events - repos_url: https://api.github.com/users/rpitonak/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + 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/rpitonak + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Fixes #168 \r\nTest for creating fork succeeded first time and\ - \ since that it has been failing and I can't find out the reason." - closed_at: '2019-09-12T10:04:42Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/192/comments - created_at: '2019-09-11T12:39:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/192/events - html_url: https://github.com/packit/ogr/pull/192 - id: 492212114 + author_association: COLLABORATOR + body: Just copied labeling from issues and create the same for pull requests. + closed_at: '2019-07-18T05:03:03Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/122/comments + created_at: '2019-07-17T11:08:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/122/events + html_url: https://github.com/packit/ogr/pull/122 + id: 469130471 labels: - - color: d93f0b + - color: '000000' default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: a2eeef default: false description: New feature or a request for enhancement. @@ -67671,70 +91737,72 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/192/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/122/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2NDI3NjE1 - number: 192 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk4NDE5MTM2 + number: 122 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/192.diff - html_url: https://github.com/packit/ogr/pull/192 - patch_url: https://github.com/packit/ogr/pull/192.patch - url: https://api.github.com/repos/packit/ogr/pulls/192 + diff_url: https://github.com/packit/ogr/pull/122.diff + html_url: https://github.com/packit/ogr/pull/122 + patch_url: https://github.com/packit/ogr/pull/122.patch + url: https://api.github.com/repos/packit/ogr/pulls/122 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Forking methods - updated_at: '2019-09-12T10:04:42Z' - url: https://api.github.com/repos/packit/ogr/issues/192 + title: add labeling github pull requests + updated_at: '2019-07-18T05:03:03Z' + url: https://api.github.com/repos/packit/ogr/issues/122 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/marusinm - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #73 ' + closed_at: '2019-07-17T12:52:02Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/118/comments + created_at: '2019-07-15T08:21:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/118/events + html_url: https://github.com/packit/ogr/pull/118 + id: 467997614 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/118/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTE0NDAy + number: 118 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/118.diff + html_url: https://github.com/packit/ogr/pull/118 + patch_url: https://github.com/packit/ogr/pull/118.patch + url: https://api.github.com/repos/packit/ogr/pulls/118 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: CommitStatus, PRStatus renamed to CommitFlag, PRFlag + updated_at: '2019-07-17T12:52:02Z' + url: https://api.github.com/repos/packit/ogr/issues/118 + 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} @@ -67752,71 +91820,20 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions type: User url: https://api.github.com/users/lbarcziova + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "```python\r\n @property\r\n def is_fork(self) -> bool:\r\n\ - \ raise NotImplementedError()\r\n\r\n @property\r\n def\ - \ parent(self) -> Optional[\"GitlabProject\"]:\r\n raise NotImplementedError()\r\ - \n\r\n def is_forked(self) -> bool:\r\n raise NotImplementedError()\r\ - \n\r\n def get_fork(self, create: bool = True) -> Optional[\"GitlabProject\"\ - ]:\r\n raise NotImplementedError()\r\n\r\n```\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\ - \ -> Fork a project\r\n- An old snippet of code that may be helpful:\r\ - \n\r\n```python\r\n @staticmethod\r\n def is_fork_of(user_repo,\ - \ target_repo):\r\n \"\"\" is provided repo fork of the {parent_repo}/?\ - \ \"\"\"\r\n return user_repo.forked_from_project[\"id\"] ==\ - \ target_repo.id\r\n\r\n def fork(self, target_repo):\r\n \ - \ target_repo_org, target_repo_name = target_repo.split(\"/\", 1)\r\n\ - \r\n target_repo_gl = self.gitlab_instance.projects.get(target_repo)\r\ - \n\r\n try:\r\n # is it already forked?\r\n \ - \ user_repo = self.gitlab_instance.projects.get(\r\n \ - \ \"{}/{}\".format(self.user.get_username(), target_repo_name)\r\ - \n )\r\n if not self.is_fork_of(user_repo, target_repo_gl):\r\ - \n raise RuntimeError(\r\n \"repo\ - \ %s is not a fork of %s\" % (user_repo, target_repo_gl)\r\n \ - \ )\r\n except Exception:\r\n # nope\r\n \ - \ user_repo = None\r\n\r\n if self.user.get_username()\ - \ == target_repo_org:\r\n # user wants to fork its own repo;\ - \ let's just set up remotes 'n stuff\r\n if not user_repo:\r\ - \n raise RuntimeError(\"repo %s not found\" % target_repo_name)\r\ - \n clone_repo_and_cd_inside(\r\n user_repo.path,\ - \ user_repo.attributes[\"ssh_url_to_repo\"], target_repo_org\r\n \ - \ )\r\n else:\r\n user_repo = user_repo or\ - \ self._fork_gracefully(target_repo_gl)\r\n\r\n clone_repo_and_cd_inside(\r\ - \n user_repo.path, user_repo.attributes[\"ssh_url_to_repo\"\ - ], target_repo_org\r\n )\r\n\r\n set_upstream_remote(\r\ - \n clone_url=target_repo_gl.attributes[\"http_url_to_repo\"\ - ],\r\n ssh_url=target_repo_gl.attributes[\"ssh_url_to_repo\"\ - ],\r\n pull_merge_name=\"merge-requests\",\r\n \ - \ )\r\n set_origin_remote(\r\n user_repo.attributes[\"\ - ssh_url_to_repo\"], pull_merge_name=\"merge-requests\"\r\n )\r\ - \n fetch_all()\r\n\r\n @staticmethod\r\n def _fork_gracefully(target_repo):\r\ - \n \"\"\" fork if not forked, return forked repo \"\"\"\r\n \ - \ try:\r\n logger.info(\"forking repo %s\", target_repo)\r\ - \n fork = target_repo.forks.create({})\r\n except\ - \ gitlab.GitlabCreateError:\r\n logger.error(\"repo %s cannot\ - \ be forked\" % target_repo)\r\n raise RuntimeError(\"repo\ - \ %s not found\" % target_repo)\r\n\r\n return fork\r\n```" - closed_at: '2019-09-12T10:04:41Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/168/comments - created_at: '2019-09-06T07:20:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/168/events - html_url: https://github.com/packit/ogr/issues/168 - id: 490171633 + body: "What about changing `CommitStatus`/`PullRequestStatus` to `CommitFlag`/`PullRequestFlag`?\r\ + \n\r\n_Original discussion: https://github.com/packit-service/ogr/pull/71#pullrequestreview-240461635_" + closed_at: '2019-07-17T12:52:02Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/73/comments + created_at: '2019-05-29T07:10:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/73/events + html_url: https://github.com/packit/ogr/issues/73 + id: 449635096 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -67824,6 +91841,13 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor - color: 42e529 default: false description: This issue was already processed and well defined. @@ -67831,19 +91855,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/168/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/73/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzE2MzM= - number: 168 + node_id: MDU6SXNzdWU0NDk2MzUwOTY= + number: 73 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for forking - updated_at: '2019-09-12T10:04:41Z' - url: https://api.github.com/repos/packit/ogr/issues/168 + title: Change "Status" to "Flag" in the class names + updated_at: '2019-07-17T12:52:02Z' + url: https://api.github.com/repos/packit/ogr/issues/73 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -67864,41 +91888,90 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #173 + fix of get_pr_list and get_issue_list' - closed_at: '2019-09-12T08:58:35Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/191/comments - created_at: '2019-09-11T12:07:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/191/events - html_url: https://github.com/packit/ogr/pull/191 - id: 492196881 + author_association: CONTRIBUTOR + body: "EDIT (jpopelka): https://zuul-ci.org/docs/zuul/user/config.html#project\r\ + \nEDIT2 (jpopelka): http://post-office.corp.redhat.com/archives/user-cont/2019-July/msg00086.html" + closed_at: '2019-07-17T08:25:26Z' + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/120/comments + created_at: '2019-07-15T11:53:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/120/events + html_url: https://github.com/packit/ogr/pull/120 + id: 468084884 labels: - - color: 0e8a16 + - color: 18e033 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/191/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/120/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2NDE1MTM4 - number: 191 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTg1NDQ5 + number: 120 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/191.diff - html_url: https://github.com/packit/ogr/pull/191 - patch_url: https://github.com/packit/ogr/pull/191.patch - url: https://api.github.com/repos/packit/ogr/pulls/191 + diff_url: https://github.com/packit/ogr/pull/120.diff + html_url: https://github.com/packit/ogr/pull/120 + patch_url: https://github.com/packit/ogr/pull/120.patch + url: https://api.github.com/repos/packit/ogr/pulls/120 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: pr close, merge methods - updated_at: '2019-09-12T08:58:35Z' - url: https://api.github.com/repos/packit/ogr/issues/191 + title: add zuul config + updated_at: '2019-07-17T12:32:37Z' + url: https://api.github.com/repos/packit/ogr/issues/120 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #111 ' + closed_at: '2019-07-17T07:14:35Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/114/comments + created_at: '2019-07-11T14:09:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/114/events + html_url: https://github.com/packit/ogr/pull/114 + id: 466916976 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/114/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2NjcwNDMw + number: 114 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/114.diff + html_url: https://github.com/packit/ogr/pull/114 + patch_url: https://github.com/packit/ogr/pull/114.patch + url: https://api.github.com/repos/packit/ogr/pulls/114 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: method create release for github created + updated_at: '2019-07-17T07:14:36Z' + url: https://api.github.com/repos/packit/ogr/issues/114 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -67918,7 +91991,7 @@ requests.sessions: url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -67937,7 +92010,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -67956,25 +92029,24 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "```python\r\n def pr_close(self, pr_id: int) -> \"PullRequest\"\ - :\r\n pass\r\n\r\n def pr_merge(self, pr_id: int) -> \"PullRequest\"\ - :\r\n pass\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ - \n- https://docs.gitlab.com/ee/api/merge_requests.html" - closed_at: '2019-09-12T08:58:35Z' + body: "For `Github` we can get the releases:\r\nhttps://github.com/packit-service/ogr/blob/master/ogr/services/github.py#L571\r\ + \n\r\nWe need to also create a new release from API.\r\n\r\n---\r\n\r\ + \nRelevant documentation:\r\nhttps://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_git_release" + closed_at: '2019-07-17T07:14:35Z' comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/173/comments - created_at: '2019-09-06T07:23:24Z' - events_url: https://api.github.com/repos/packit/ogr/issues/173/events - html_url: https://github.com/packit/ogr/issues/173 - id: 490172801 + comments_url: https://api.github.com/repos/packit/ogr/issues/111/comments + created_at: '2019-07-11T08:20:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/111/events + html_url: https://github.com/packit/ogr/issues/111 + id: 466738216 labels: - - color: d93f0b + - color: '000000' default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: a2eeef default: false description: New feature or a request for enhancement. @@ -67996,19 +92068,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/173/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/111/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzI4MDE= - number: 173 + node_id: MDU6SXNzdWU0NjY3MzgyMTY= + number: 111 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for pr close/merge - updated_at: '2019-09-12T08:58:35Z' - url: https://api.github.com/repos/packit/ogr/issues/173 + title: Allow creating releases + updated_at: '2019-07-17T07:14:35Z' + url: https://api.github.com/repos/packit/ogr/issues/111 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -68026,53 +92098,107 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #103 ' + closed_at: '2019-07-16T13:56:45Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/119/comments + created_at: '2019-07-15T10:07:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/119/events + html_url: https://github.com/packit/ogr/pull/119 + id: 468043834 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/119/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTUxNjYx + number: 119 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/119.diff + html_url: https://github.com/packit/ogr/pull/119 + patch_url: https://github.com/packit/ogr/pull/119.patch + url: https://api.github.com/repos/packit/ogr/pulls/119 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: unused functions in utils.py removed + updated_at: '2019-07-16T13:56:45Z' + url: https://api.github.com/repos/packit/ogr/issues/119 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Implement service.project_create for GitLab.\r\n\r\n\r\n(reason:\ - \ I would like to use OGR in my [figitool](https://gitlab.fi.muni.cz/xlachma1/figitool)\ - \ and this functionality is missing.)" - closed_at: '2019-09-12T08:09:14Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/189/comments - created_at: '2019-09-11T07:58:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/189/events - html_url: https://github.com/packit/ogr/pull/189 - id: 492077676 + body: "In #102, I've realized that most of the functions in [utils.py](https://github.com/packit-service/ogr/blob/master/ogr/utils.py)\ + \ are never used.\r\n\r\nWe need to go through the functions and check\ + \ if they are not used anywhere (please, control the packit codebase\ + \ as well) and remove the unused ones.\r\n\r\n----\r\n\r\nIn the other\ + \ hand, we can move here the [LocalProject](https://github.com/packit-service/packit/blob/master/packit/local_project.py)\ + \ or other git-related code from the Packit. Do we want OGR to be only\ + \ remote API or git-helper?" + closed_at: '2019-07-16T13:56:45Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/103/comments + created_at: '2019-07-09T09:27:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/103/events + html_url: https://github.com/packit/ogr/issues/103 + id: 465672061 labels: - - color: d93f0b + - color: 7057ff default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 0e8a16 + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/189/labels{/name} + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/103/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2MzIwMzE0 - number: 189 + node_id: MDU6SXNzdWU0NjU2NzIwNjE= + number: 103 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/189.diff - html_url: https://github.com/packit/ogr/pull/189 - patch_url: https://github.com/packit/ogr/pull/189.patch - url: https://api.github.com/repos/packit/ogr/pulls/189 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Creating Gitlab projects - updated_at: '2019-09-12T08:09:18Z' - url: https://api.github.com/repos/packit/ogr/issues/189 + title: Clean the ogr/utils.py + updated_at: '2019-07-16T13:56:45Z' + url: https://api.github.com/repos/packit/ogr/issues/103 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -68091,366 +92217,308 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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} + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Functions `get_release` and `get_releases` implemented in services/github.py\ + \ were missing in the abstract.py. I also fixed notes from PR #101 which\ + \ was added after PR was merged. \r\n\r\n**Edit:** I also added functionality\ + \ `get_releases` for Pagure in the second commit." + closed_at: '2019-07-15T11:44:25Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/117/comments + created_at: '2019-07-15T08:12:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/117/events + html_url: https://github.com/packit/ogr/pull/117 + id: 467994039 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/117/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTExNTgx + number: 117 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/117.diff + html_url: https://github.com/packit/ogr/pull/117 + patch_url: https://github.com/packit/ogr/pull/117.patch + url: https://api.github.com/repos/packit/ogr/pulls/117 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add get_release/get_releases into abstract.py + updated_at: '2019-07-15T11:44:25Z' + url: https://api.github.com/repos/packit/ogr/issues/117 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* changed sha\n* tests on\ - \ new repo\n* test fixed\n* raising exception\n* method get_sha_from_tag\n\ - * gitlab: project info methods\n* note added\n* method get_latest_release\n\ - * Fix some typing issues in factory.py\n* Not overwrite the gitlab token\ - \ when set on read-mode\n* Support GitlabAuthenticationError in response\ - \ files as well\n* fix backward compafibility for tests\n* Test creating\ - \ Pagure PRs and fix some username problems in Pagure tests\n* Creating\ - \ Pagure PRs calls upstream project url (not the url of fork)\n* Return\ - \ Gitlab specific release in get_latest_release in GitlabProject\n*\ - \ Remove create_from_remote_url since it is not used anywhere\n* Remove\ - \ unused+unrelated code from GitlabService class\n* Fix the naming issues\ - \ in GitLab API and add the skeleton of the non-implemented methods\n\ - * Fix API for update_pr_info\n* Update error msg with missing github-app\ - \ key as @TomasTomecek suggested\n* Improve handling of private-key\ - \ in github-app tests\n* Fix imports of the GitHub exceptions\n* Add\ - \ cryptography to dependencies to be able to authenticate as a github\ - \ app\n* Add test for github-app authentication\n* Add github_app_private_key_path\ - \ to GithubService\n* Document the `get_instances_from_dict`\n* Add\ - \ test for github app loading from dict\n* Improve __str__ for services\n\ - * Add method for loading services from dictionary\n* Add more gitlab\ - \ tests for service mapping\n* Remove repo specific methods from GitlabService\n\ - * Make the creation of gitlab objects lazy\n* Add tests for gitlab service-mapping\n\ - * Make the pagure service mapping more general\n* Add gitlab to service\ - \ mapping\n* Use non-None token for gitlab tests\n* tag tests added\n\ - * Save GitlabHttpError to response file\n* test responses added, test_nonexisting_file\ - \ fails\n* Fix loading of gitlab response files\n* Save responses for\ - \ gitlab\n* WIP: GitlabRelease, GitlabProject, GitlabUser added\n* WIP:\ - \ functions for gitlab\n* Run zuul tests both on pip and rpm\n* Remove\ - \ Jenkinsfile\n* [CONTRIBUTING.md] CentOS CI -> Zuul\n* pagure: use\ - \ web url in issue\n* [README.md] Zuul badge\n* removed Optional\n*\ - \ add suggested changes\n* edit_release as method, get_release changed\n\ - * add method edit_release\n* Rename get_pr_commits to get_all_pr_commits\n\ - * run tests on one repository\n* Better description\n* Add get_pr_commits\ - \ into abstract.py\n* Remove `assert commits` and check only first and\ - \ last commit\n* Update ogr/services/github.py\n* Add fnc for getting\ - \ all commits for PR\n* PersistenStorageException -> PersistentStorageException\n\ - * run pre-commit\n* git cherry-pick of PR#129 and make it works\n* Update\ - \ pagure.py\n* Update github.py\n* packit.yaml: propose_downstream:\ - \ s/_/-/\n\n\nYou can change it by editing `CHANGELOG.md` in the root\ - \ of this repository and pushing to `0.7.0-release` branch before merging\ - \ this PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-09-12T07:46:13Z' - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/190/comments - created_at: '2019-09-11T07:59:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/190/events - html_url: https://github.com/packit/ogr/pull/190 - id: 492078119 + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "In the case of Github, it is possible to get a repository's file\ + \ content via [API](https://developer.github.com/v3/repos/contents/#get-contents)\ + \ or [PyGithub lib](https://pygithub.readthedocs.io/en/latest/github_objects/ContentFile.html).\ + \ In the case of Pagure, I am not sure if it is possible. \r\n\r\n(I\ + \ need this for release-bot, I can hack it for now, but would be wonderful\ + \ to have such feature in ogr.)" + closed_at: '2019-07-13T18:50:35Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/115/comments + created_at: '2019-07-12T14:05:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/115/events + html_url: https://github.com/packit/ogr/issues/115 + id: 467432493 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed + - color: e4e669 + default: true + description: This doesn't seem right. + id: 1160311267 + name: invalid + node_id: MDU6TGFiZWwxMTYwMzExMjY3 + url: https://api.github.com/repos/packit/ogr/labels/invalid + - color: 42e529 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/190/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/115/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2MzIwNjY1 - number: 190 + node_id: MDU6SXNzdWU0Njc0MzI0OTM= + number: 115 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/190.diff - html_url: https://github.com/packit/ogr/pull/190 - patch_url: https://github.com/packit/ogr/pull/190.patch - url: https://api.github.com/repos/packit/ogr/pulls/190 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.7.0 release - updated_at: '2019-09-12T07:49:01Z' - url: https://api.github.com/repos/packit/ogr/issues/190 + title: Missing functionality for getting content of a file. + updated_at: '2019-07-13T18:50:35Z' + url: https://api.github.com/repos/packit/ogr/issues/115 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos 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 + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-09-11T07:59:58Z' + author_association: COLLABORATOR + body: services.github.py already can [list all releases](https://github.com/packit-service/ogr/blob/badeddd87032da354d411fff3365bb02e260571b/ogr/services/github.py#L656). + We need this for Pagure too. + closed_at: '2019-07-12T21:58:49Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/188/comments - created_at: '2019-09-11T07:57:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/188/events - html_url: https://github.com/packit/ogr/issues/188 - id: 492077048 + comments_url: https://api.github.com/repos/packit/ogr/issues/116/comments + created_at: '2019-07-12T14:55:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/116/events + html_url: https://github.com/packit/ogr/issues/116 + id: 467458155 labels: - - color: ededed + - color: 1d76db default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: cfd3d7 + default: true + description: This issue or pull request already exists + id: 1160311263 + name: duplicate + node_id: MDU6TGFiZWwxMTYwMzExMjYz + url: https://api.github.com/repos/packit/ogr/labels/duplicate + - color: a2eeef default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/188/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/116/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTIwNzcwNDg= - number: 188 + node_id: MDU6SXNzdWU0Njc0NTgxNTU= + number: 116 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-09-11T07:59:58Z' - url: https://api.github.com/repos/packit/ogr/issues/188 + title: get_releases for Pagure + updated_at: '2019-07-12T21:59:06Z' + url: https://api.github.com/repos/packit/ogr/issues/116 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: I accidently deleted the testing repo, so I have regenerated the - tests on new repo [https://gitlab.com/packit-service/ogr-tests](url) - closed_at: '2019-09-11T06:44:23Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/187/comments - created_at: '2019-09-10T14:21:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/187/events - html_url: https://github.com/packit/ogr/pull/187 - id: 491705182 + author_association: COLLABORATOR + body: "Implementation of getting project owners related to #88. \r\nAnd\ + \ getting users with permission for closing Issues and merging PR based\ + \ on [Github permissions](https://help.github.com/en/articles/repository-permission-levels-for-an-organization)\ + \ and [Pagure permissions](https://docs.pagure.org/pagure/usage/project_acls.html)\ + \ related to issue #100." + closed_at: '2019-07-12T07:51:41Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/101/comments + created_at: '2019-07-08T13:03:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/101/events + html_url: https://github.com/packit/ogr/pull/101 + id: 465245940 labels: - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/187/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/101/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2MDIwMzM5 - number: 187 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk1MzI1ODUx + number: 101 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/187.diff - html_url: https://github.com/packit/ogr/pull/187 - patch_url: https://github.com/packit/ogr/pull/187.patch - url: https://api.github.com/repos/packit/ogr/pulls/187 + diff_url: https://github.com/packit/ogr/pull/101.diff + html_url: https://github.com/packit/ogr/pull/101 + patch_url: https://github.com/packit/ogr/pull/101.patch + url: https://api.github.com/repos/packit/ogr/pulls/101 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: tests on new repo - updated_at: '2019-09-11T06:44:23Z' - url: https://api.github.com/repos/packit/ogr/issues/187 + title: get project's owners and permissions of various users + updated_at: '2019-07-12T12:44:34Z' + url: https://api.github.com/repos/packit/ogr/issues/101 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/lbarcziova - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=11: - - metadata: - latency: 0.6061098575592041 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #170 ' - closed_at: '2019-09-10T14:30:35Z' - comments: 24 - comments_url: https://api.github.com/repos/packit/ogr/issues/186/comments - created_at: '2019-09-10T10:45:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/186/events - html_url: https://github.com/packit/ogr/pull/186 - id: 491594645 + author_association: CONTRIBUTOR + body: 'Fixes #74' + closed_at: '2019-07-11T08:48:44Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/106/comments + created_at: '2019-07-10T07:38:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/106/events + html_url: https://github.com/packit/ogr/pull/106 + id: 466149524 labels: - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/186/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/106/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTMwNzcy - number: 186 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDQ2Mjc3 + number: 106 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/186.diff - html_url: https://github.com/packit/ogr/pull/186 - patch_url: https://github.com/packit/ogr/pull/186.patch - url: https://api.github.com/repos/packit/ogr/pulls/186 + diff_url: https://github.com/packit/ogr/pull/106.diff + html_url: https://github.com/packit/ogr/pull/106 + patch_url: https://github.com/packit/ogr/pull/106.patch + url: https://api.github.com/repos/packit/ogr/pulls/106 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: method get_sha_from_tag - updated_at: '2019-09-10T14:30:35Z' - url: https://api.github.com/repos/packit/ogr/issues/186 + title: link to GitTag from Release added + updated_at: '2019-07-11T08:48:44Z' + url: https://api.github.com/repos/packit/ogr/issues/106 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -68469,62 +92537,33 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "```python\r\n def get_sha_from_tag(self, tag_name: str) -> str:\r\ - \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html" - closed_at: '2019-09-10T14:30:35Z' + body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ + \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" + closed_at: '2019-07-11T08:48:44Z' comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/170/comments - created_at: '2019-09-06T07:21:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/170/events - html_url: https://github.com/packit/ogr/issues/170 - id: 490171969 + comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments + created_at: '2019-05-29T07:12:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/74/events + html_url: https://github.com/packit/ogr/issues/74 + id: 449635655 labels: - - color: d93f0b + - color: '000000' default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: a2eeef default: false description: New feature or a request for enhancement. @@ -68546,19 +92585,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/170/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzE5Njk= - number: 170 + node_id: MDU6SXNzdWU0NDk2MzU2NTU= + number: 74 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Implement GitLab method: get_sha_from_tag' - updated_at: '2019-09-10T14:30:35Z' - url: https://api.github.com/repos/packit/ogr/issues/170 + title: Add a link to `GitTag` from `Release`. + updated_at: '2019-07-11T08:48:44Z' + url: https://api.github.com/repos/packit/ogr/issues/74 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -68580,54 +92619,131 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #175 ' - closed_at: '2019-09-10T11:56:53Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/184/comments - created_at: '2019-09-10T10:04:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/184/events - html_url: https://github.com/packit/ogr/pull/184 - id: 491575224 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/184/labels{/name} + body: "Fixes\r\n_DeprecationWarning: Using or importing the ABCs from\ + \ 'collections' instead of from 'collections.abc' is deprecated, and\ + \ in 3.8 it will stop working_" + closed_at: '2019-07-11T07:03:27Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/109/comments + created_at: '2019-07-10T14:24:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/109/events + html_url: https://github.com/packit/ogr/pull/109 + id: 466340777 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/109/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTE0OTk4 - number: 184 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MTk4Nzc4 + number: 109 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/184.diff - html_url: https://github.com/packit/ogr/pull/184 - patch_url: https://github.com/packit/ogr/pull/184.patch - url: https://api.github.com/repos/packit/ogr/pulls/184 + diff_url: https://github.com/packit/ogr/pull/109.diff + html_url: https://github.com/packit/ogr/pull/109 + patch_url: https://github.com/packit/ogr/pull/109.patch + url: https://api.github.com/repos/packit/ogr/pulls/109 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'gitlab: project info methods' - updated_at: '2019-09-10T11:56:53Z' - url: https://api.github.com/repos/packit/ogr/issues/184 + title: collections.Hashable -> collections.abc.Hashable + updated_at: '2019-07-11T07:53:20Z' + url: https://api.github.com/repos/packit/ogr/issues/109 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: See https://github.com/packit-service/packit/pull/407 + closed_at: '2019-07-10T12:56:20Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/108/comments + created_at: '2019-07-10T12:47:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/108/events + html_url: https://github.com/packit/ogr/pull/108 + id: 466289238 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/108/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MTU3NzYy + number: 108 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/108.diff + html_url: https://github.com/packit/ogr/pull/108 + patch_url: https://github.com/packit/ogr/pull/108.patch + url: https://api.github.com/repos/packit/ogr/pulls/108 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Make PersistentObjectStorage.__init__() backwards compatible + updated_at: '2019-07-10T12:56:33Z' + url: https://api.github.com/repos/packit/ogr/issues/108 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #52' + closed_at: '2019-07-10T07:35:48Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/105/comments + created_at: '2019-07-10T07:09:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/105/events + html_url: https://github.com/packit/ogr/pull/105 + id: 466138321 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/105/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDM3NjM1 + number: 105 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/105.diff + html_url: https://github.com/packit/ogr/pull/105 + patch_url: https://github.com/packit/ogr/pull/105.patch + url: https://api.github.com/repos/packit/ogr/pulls/105 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: in get_file_content catch only 404 + updated_at: '2019-07-10T07:40:13Z' + url: https://api.github.com/repos/packit/ogr/issues/105 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -68647,7 +92763,7 @@ requests.sessions: url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -68666,7 +92782,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -68684,35 +92800,33 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions type: User url: https://api.github.com/users/lbarcziova - author_association: MEMBER - body: "```python\r\n def get_description(self) -> str:\r\n #\ - \ Probably something like this:\r\n # return self.gitlab_repo.attributes[\"\ - description\"]\r\n raise NotImplementedError()\r\n\r\n def\ - \ get_git_urls(self) -> Dict[str, str]:\r\n pass\r\n```\r\n\r\ - \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ - \n- https://docs.gitlab.com/ce/api/projects.html" - closed_at: '2019-09-10T11:56:53Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/175/comments - created_at: '2019-09-06T07:24:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/175/events - html_url: https://github.com/packit/ogr/issues/175 - id: 490173038 + author_association: CONTRIBUTOR + body: "Just spent some time debugging an issue where packit.yaml was not\ + \ found while being 100 % it's in there.\r\n\r\nIt turned out that my\ + \ token was incorrect and github kept throwing 401: that should bubble\ + \ up, we should catch 404 only. " + closed_at: '2019-07-10T07:35:48Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/52/comments + created_at: '2019-03-27T21:00:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/52/events + html_url: https://github.com/packit/ogr/issues/52 + id: 426181525 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef + - color: '000000' default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug - color: 7057ff default: false description: Good for newcomers @@ -68727,19 +92841,207 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/175/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/52/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzMwMzg= - number: 175 + node_id: MDU6SXNzdWU0MjYxODE1MjU= + number: 52 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for project info - updated_at: '2019-09-10T11:56:53Z' - url: https://api.github.com/repos/packit/ogr/issues/175 + title: 'get_file_content: catch only 404, raise everything else' + updated_at: '2019-07-10T07:35:48Z' + url: https://api.github.com/repos/packit/ogr/issues/52 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + author_association: COLLABORATOR + body: 'Based on our discussion on Issue #79, there is no functionality + in ogr for commenting on Github/Pagure issues.' + closed_at: '2019-07-10T06:57:03Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/80/comments + created_at: '2019-06-19T07:21:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/80/events + html_url: https://github.com/packit/ogr/issues/80 + id: 457847996 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/80/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTc4NDc5OTY= + number: 80 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Commenting on Issues + updated_at: '2019-07-10T06:57:03Z' + url: https://api.github.com/repos/packit/ogr/issues/80 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + author_association: MEMBER + body: It would be nice to implement `__str__` methods for all classes + (e.g. `GithubProject`, `Issue`,...). + closed_at: '2019-07-10T06:51:37Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments + created_at: '2019-06-27T10:29:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/90/events + html_url: https://github.com/packit/ogr/issues/90 + id: 461449910 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjE0NDk5MTA= + number: 90 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: String representations for classes + updated_at: '2019-07-10T06:51:37Z' + url: https://api.github.com/repos/packit/ogr/issues/90 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -68760,55 +93062,82 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #176 ' - closed_at: '2019-09-10T11:44:36Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/185/comments - created_at: '2019-09-10T10:10:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/185/events - html_url: https://github.com/packit/ogr/pull/185 - id: 491578586 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/185/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-07-09T13:56:31Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/104/comments + created_at: '2019-07-09T11:05:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/104/events + html_url: https://github.com/packit/ogr/pull/104 + id: 465717381 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/104/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTE3NzMx - number: 185 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk1NzAyNDc0 + number: 104 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/185.diff - html_url: https://github.com/packit/ogr/pull/185 - patch_url: https://github.com/packit/ogr/pull/185.patch - url: https://api.github.com/repos/packit/ogr/pulls/185 + diff_url: https://github.com/packit/ogr/pull/104.diff + html_url: https://github.com/packit/ogr/pull/104 + patch_url: https://github.com/packit/ogr/pull/104.patch + url: https://api.github.com/repos/packit/ogr/pulls/104 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: method get_latest_release - updated_at: '2019-09-10T11:44:36Z' - url: https://api.github.com/repos/packit/ogr/issues/185 + title: unify external command invocation - fix + updated_at: '2019-07-09T13:56:31Z' + url: https://api.github.com/repos/packit/ogr/issues/104 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #33 ' + closed_at: '2019-07-09T09:29:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/102/comments + created_at: '2019-07-09T08:49:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/102/events + html_url: https://github.com/packit/ogr/pull/102 + id: 465652910 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/102/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk1NjUwMTA5 + number: 102 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/102.diff + html_url: https://github.com/packit/ogr/pull/102 + patch_url: https://github.com/packit/ogr/pull/102.patch + url: https://api.github.com/repos/packit/ogr/pulls/102 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: unify external command invocation + updated_at: '2019-07-09T10:49:16Z' + url: https://api.github.com/repos/packit/ogr/issues/102 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -68828,7 +93157,7 @@ requests.sessions: url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -68847,7 +93176,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -68866,24 +93195,22 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "```python\r\n def get_latest_release(self) -> GitlabRelease:\r\ - \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-releases\r\ - \n- https://docs.gitlab.com/ee/api/releases/" - closed_at: '2019-09-10T11:44:35Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/176/comments - created_at: '2019-09-06T07:24:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/176/events - html_url: https://github.com/packit/ogr/issues/176 - id: 490173186 + body: "utils.py uses several different approaches to invoke an external\ + \ command:\r\n\r\n* [subprocess.Popen](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L103)\r\ + \n* [subprocess.check_call](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L122)\r\ + \n* [subprocess.check_output](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L171)\r\ + \n\r\nThe recommended approach (since Python 3.5) is to use [subprocess.run](https://docs.python.org/3/library/subprocess.html#subprocess.run).\r\ + \n\r\nAlso, there's lots of external libraries for this use case:\r\n\ + * http://amoffat.github.io/sh/\r\n* https://www.pyinvoke.org/\r\n* https://plumbum.readthedocs.io\r\ + \n* https://pexpect.readthedocs.io" + closed_at: '2019-07-09T09:29:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/33/comments + created_at: '2019-03-14T13:51:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/33/events + html_url: https://github.com/packit/ogr/issues/33 + id: 421030116 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: a2eeef default: false description: New feature or a request for enhancement. @@ -68898,284 +93225,70 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/176/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0OTAxNzMxODY= - number: 176 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Implement GitLab method for latest release - updated_at: '2019-09-10T11:44:35Z' - url: https://api.github.com/repos/packit/ogr/issues/176 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "- Fix some typing issues in factory.py.\r\n\r\nReason: typing problems\ - \ in the packit code on top of it." - closed_at: '2019-09-10T11:00:14Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/183/comments - created_at: '2019-09-10T09:22:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/183/events - html_url: https://github.com/packit/ogr/pull/183 - id: 491553190 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/183/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1ODk3MjEz - number: 183 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/183.diff - html_url: https://github.com/packit/ogr/pull/183 - patch_url: https://github.com/packit/ogr/pull/183.patch - url: https://api.github.com/repos/packit/ogr/pulls/183 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Fix typing in factory - updated_at: '2019-09-10T11:21:08Z' - url: https://api.github.com/repos/packit/ogr/issues/183 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Not overwrite the gitlab token when set on read-mode. - - - Support GitlabAuthenticationError in response files as well.' - closed_at: '2019-09-10T09:06:12Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/182/comments - created_at: '2019-09-09T10:59:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/182/events - html_url: https://github.com/packit/ogr/pull/182 - id: 491026784 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/182/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1NDc0NDYw - number: 182 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/182.diff - html_url: https://github.com/packit/ogr/pull/182 - patch_url: https://github.com/packit/ogr/pull/182.patch - url: https://api.github.com/repos/packit/ogr/pulls/182 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Support GitlabAuthenticationError - updated_at: '2019-09-10T09:07:59Z' - url: https://api.github.com/repos/packit/ogr/issues/182 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "fix the issue causing that older ogr does not know what is exception\ - \ in init.\r\ndo not store values what are empty" - closed_at: '2019-09-09T10:52:04Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/179/comments - created_at: '2019-09-06T12:29:16Z' - events_url: https://api.github.com/repos/packit/ogr/issues/179/events - html_url: https://github.com/packit/ogr/pull/179 - id: 490300829 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/179/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/33/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE0OTMzMDEy - number: 179 + node_id: MDU6SXNzdWU0MjEwMzAxMTY= + number: 33 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/179.diff - html_url: https://github.com/packit/ogr/pull/179 - patch_url: https://github.com/packit/ogr/pull/179.patch - url: https://api.github.com/repos/packit/ogr/pulls/179 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: fix backward compafibility for tests - updated_at: '2019-09-09T14:13:28Z' - url: https://api.github.com/repos/packit/ogr/issues/179 + title: Unify external command invocation + updated_at: '2019-07-09T09:29:53Z' + url: https://api.github.com/repos/packit/ogr/issues/33 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Test creating Pagure PRs and fix some username problems in Pagure - tests. - - - Creating Pagure PRs calls upstream project url (not the url of fork). - - - Fixes: #161' - closed_at: '2019-09-09T08:16:38Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/180/comments - created_at: '2019-09-06T19:01:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/180/events - html_url: https://github.com/packit/ogr/pull/180 - id: 490477438 + body: "- Add method for creating projects from url.\r\n- Get project from\ + \ url.\r\n\r\n\r\nTODO:\r\n\r\n- [x] add a way to use existing service\ + \ classes\r\n- [x] add a way to update mapping by user\r\n- [ ] consider\ + \ implementing API checks if we cannot find a match in mapping\r\n-\ + \ [x] tests\r\n - [x] make the `github_repo` lazy for easier testing\r\ + \n - [x] tests for geting project/service class from url\r\n -\ + \ [x] tests for parsing\r\n\r\n----\r\n\r\nHow to test?\r\n\r\n```python\r\ + \nfrom ogr import get_service_class\r\n\r\nget_service_class(url=\"\ + github.com/packit-service/ogr\")\r\nget_service_class(url=\"src.fedoraproject.org/rpms/python-ogr\"\ + )\r\n```\r\n```python\r\nfrom ogr import get_project\r\nfrom ogr import\ + \ GithubService, PagureService\r\n\r\nget_project(\r\n url=\"src.fedoraproject.org/rpms/python-ogr\"\ + ,\r\n custom_instances=[\r\n GithubService(token=\"asda\"\ + ),\r\n PagureService(instance_url=\"pagure.io\", token=\"qwe\"\ + ),\r\n PagureService(instance_url=\"src.fedoraproject.org\",\ + \ token=\"asdaasda\"),\r\n ],\r\n)\r\n\r\n```" + closed_at: '2019-07-03T13:12:23Z' + comments: 13 + comments_url: https://api.github.com/repos/packit/ogr/issues/95/comments + created_at: '2019-06-28T08:30:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/95/events + html_url: https://github.com/packit/ogr/pull/95 + id: 461920354 labels: - - color: 1d76db + - color: '000000' default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - labels_url: https://api.github.com/repos/packit/ogr/issues/180/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1MDc2NjUy - number: 180 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/180.diff - html_url: https://github.com/packit/ogr/pull/180 - patch_url: https://github.com/packit/ogr/pull/180.patch - url: https://api.github.com/repos/packit/ogr/pulls/180 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Fix creating Pagure PRs - updated_at: '2019-09-09T08:16:44Z' - url: https://api.github.com/repos/packit/ogr/issues/180 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "https://src.stg.fedoraproject.org/api/0/#pull-requests\r\n\r\n\ - we just need to use the new fields such as repo_from which were added\ - \ to the API in order to create PRs from forks to parent repos.\r\n\r\ - \nfollow up to https://github.com/packit-service/packit/pull/496\r\n\ - blocks https://github.com/packit-service/packit.dev/pull/42\r\n\r\n\ - likely packit will need some code changes to support this" - closed_at: '2019-09-09T08:16:38Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/161/comments - created_at: '2019-08-29T09:31:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/161/events - html_url: https://github.com/packit/ogr/issues/161 - id: 486845482 - labels: + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: 1d76db default: false description: Related to Pagure implementation. @@ -69185,89 +93298,29 @@ requests.sessions: url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: a2eeef default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9e231 - default: false - description: High priority. - id: 1432779316 - name: high-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzE2 - url: https://api.github.com/repos/packit/ogr/labels/high-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/161/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0ODY4NDU0ODI= - number: 161 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'pagure: support new way of creating PRs from forks' - updated_at: '2019-09-09T08:16:38Z' - url: https://api.github.com/repos/packit/ogr/issues/161 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Fix the naming issues in GitLab API and add the skeleton of the - non-implemented methods. - - - Fix API for update_pr_info.' - closed_at: '2019-09-06T08:20:46Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/167/comments - created_at: '2019-09-06T06:33:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/167/events - html_url: https://github.com/packit/ogr/pull/167 - id: 490155512 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/167/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/95/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE0ODE1OTI3 - number: 167 + node_id: MDExOlB1bGxSZXF1ZXN0MjkyNzM4MzEx + number: 95 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/167.diff - html_url: https://github.com/packit/ogr/pull/167 - patch_url: https://github.com/packit/ogr/pull/167.patch - url: https://api.github.com/repos/packit/ogr/pulls/167 + diff_url: https://github.com/packit/ogr/pull/95.diff + html_url: https://github.com/packit/ogr/pull/95 + patch_url: https://github.com/packit/ogr/pull/95.patch + url: https://api.github.com/repos/packit/ogr/pulls/95 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix the inconsistences in the GitLab API - updated_at: '2019-09-06T08:20:50Z' - url: https://api.github.com/repos/packit/ogr/issues/167 + title: Methods for creating projects from url + updated_at: '2019-07-03T13:20:09Z' + url: https://api.github.com/repos/packit/ogr/issues/95 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -69288,205 +93341,196 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #162' - closed_at: '2019-09-05T09:00:25Z' - comments: 31 - comments_url: https://api.github.com/repos/packit/ogr/issues/163/comments - created_at: '2019-09-02T12:37:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/163/events - html_url: https://github.com/packit/ogr/pull/163 - id: 488169691 + author_association: COLLABORATOR + body: "Related to #80\r\n\r\nThis PR contains functionality for Pagure\ + \ issues except for tagging issues. I had some problems with tagging,\ + \ therefore, I'll create separated PR for it.\r\n\r\nIf I am right I\ + \ have to set Pagure token for creating yaml test-files. We can manage\ + \ that in private chat, then I'll add tests." + closed_at: '2019-07-02T11:56:47Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/99/comments + created_at: '2019-06-30T21:39:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/99/events + html_url: https://github.com/packit/ogr/pull/99 + id: 462449449 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/163/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/99/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzEzMjQ4MzIz - number: 163 + node_id: MDExOlB1bGxSZXF1ZXN0MjkzMTM0Mjcw + number: 99 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/163.diff - html_url: https://github.com/packit/ogr/pull/163 - patch_url: https://github.com/packit/ogr/pull/163.patch - url: https://api.github.com/repos/packit/ogr/pulls/163 + diff_url: https://github.com/packit/ogr/pull/99.diff + html_url: https://github.com/packit/ogr/pull/99 + patch_url: https://github.com/packit/ogr/pull/99.patch + url: https://api.github.com/repos/packit/ogr/pulls/99 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Be able to set private key path for GitHub app - updated_at: '2019-09-05T09:00:29Z' - url: https://api.github.com/repos/packit/ogr/issues/163 + title: creating/closing/commenting Pagure Issues + updated_at: '2019-07-02T11:56:47Z' + url: https://api.github.com/repos/packit/ogr/issues/99 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/marusinm - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "When authenticating as a GitHub-app we currently need a private_key\ - \ as a string.\r\n\r\nIt would be very convenient (and very usefull\ - \ when having #160 ) to have another attribute for the private-key path.\r\ - \n\r\nThe code can be moved/stolen [from packit](https://github.com/packit-service/packit/blob/master/packit/upstream.py#L88).\r\ - \n" - closed_at: '2019-09-05T09:00:25Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/162/comments - created_at: '2019-09-02T09:12:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/162/events - html_url: https://github.com/packit/ogr/issues/162 - id: 488085461 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/162/labels{/name} + body: '' + closed_at: '2019-06-11T15:21:02Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/78/comments + created_at: '2019-06-11T14:33:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/78/events + html_url: https://github.com/packit/ogr/pull/78 + id: 454727768 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/78/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODgwODU0NjE= - number: 162 + node_id: MDExOlB1bGxSZXF1ZXN0Mjg3MTIwMTYy + number: 78 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/78.diff + html_url: https://github.com/packit/ogr/pull/78 + patch_url: https://github.com/packit/ogr/pull/78.patch + url: https://api.github.com/repos/packit/ogr/pulls/78 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Be able to use path to private_key for GitHub app authentication - updated_at: '2019-09-05T09:00:25Z' - url: https://api.github.com/repos/packit/ogr/issues/162 + title: '[spec] bump to 0.4.0' + updated_at: '2019-07-01T13:06:37Z' + url: https://api.github.com/repos/packit/ogr/issues/78 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka + _next: null + elapsed: 0.391995 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:18 GMT + ETag: W/"f5f2d07894fe10edcda2ba7974a4ba38b2cf0cdba00d3c274940154644681ad6" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7F119:191A160:6075DC32 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4779' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '221' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=17: + - metadata: + latency: 0.4331352710723877 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Add method for loading services from dictionary. - - - Tests included. - - - Fixes: #159' - closed_at: '2019-09-02T10:30:19Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/160/comments - created_at: '2019-08-21T08:47:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/160/events - html_url: https://github.com/packit/ogr/pull/160 - id: 483284044 + body: "- Fix formating for __str__ methods.\r\n- Changes requested to_str_method\ + \ of classes. @shreyanshrs44\r\n- Added instantiation-like syntax. @shreyanshrs44\r\ + \n- Added __str__ method to classes. @shreyanshrs44\r\n- Added __str__\ + \ method to classes. @shreyanshrs44\r\n\r\nFixed version of #93 " + closed_at: '2019-06-28T13:26:06Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/98/comments + created_at: '2019-06-28T12:20:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/98/events + html_url: https://github.com/packit/ogr/pull/98 + id: 462007848 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/160/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/98/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA5Mzg5NjA4 - number: 160 + node_id: MDExOlB1bGxSZXF1ZXN0MjkyODA5MjI0 + number: 98 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/160.diff - html_url: https://github.com/packit/ogr/pull/160 - patch_url: https://github.com/packit/ogr/pull/160.patch - url: https://api.github.com/repos/packit/ogr/pulls/160 + diff_url: https://github.com/packit/ogr/pull/98.diff + html_url: https://github.com/packit/ogr/pull/98 + patch_url: https://github.com/packit/ogr/pull/98.patch + url: https://api.github.com/repos/packit/ogr/pulls/98 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Loading services from dict - updated_at: '2019-09-02T10:47:59Z' - url: https://api.github.com/repos/packit/ogr/issues/160 + title: Added __str__ method to classes. (new) + updated_at: '2019-06-28T13:26:15Z' + url: https://api.github.com/repos/packit/ogr/issues/98 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -69505,149 +93549,176 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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} + assignee: null + assignees: [] + author_association: NONE + body: "I have added __str__ method to classes in /ogr/services/github.py\ + \ , /ogr/services/gitlab.py, /ogr/services/pagure.py.\r\nPlease have\ + \ a look and give feedback on necessary changes.\r\nI have not touched\ + \ the classes inside /ogr/abstract.py as it containes __str__ method\ + \ for most of classes in it. " + closed_at: '2019-06-28T12:23:38Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/93/comments + created_at: '2019-06-27T12:17:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/93/events + html_url: https://github.com/packit/ogr/pull/93 + id: 461495461 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/93/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkyNDA3Mjc3 + number: 93 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/93.diff + html_url: https://github.com/packit/ogr/pull/93 + patch_url: https://github.com/packit/ogr/pull/93.patch + url: https://api.github.com/repos/packit/ogr/pulls/93 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Added __str__ method to classes. + updated_at: '2019-06-28T12:23:38Z' + url: https://api.github.com/repos/packit/ogr/issues/93 + user: + avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek - author_association: MEMBER - body: "In [packit](https://github.com/packit-service/packit) and [upsint](https://github.com/packit-service/upsint/),\ - \ we need to load authentication for services from files.\r\n\r\nIt\ - \ would be nice to have a method for loading instances from `dict` so\ - \ we can use it from multiple projects.\r\n\r\n```python\r\n>>> from\ - \ ogr import get_instances_from_dict\r\n>>> get_instances_from_dict({\r\ - \n... \"github.com\": {\"token\": \"abcd\"},\r\n... \"pagure.io\"\ - : {\"token\": \"defg\"},\r\n... \"src.fedoraproject.org\": {\"token\"\ - : \"asdasdasda\"},\r\n... })\r\n[\r\n GithubService(token=\"abcd\"\ - ),\r\n PagureService(instance_url=\"https://pagure.io\", token=\"\ - defg\"),\r\n PagureService(instance_url=\"https://src.fedoraproject.org\"\ - , token=\"asdasdasda\"),\r\n]\r\n```\r\n\r\n\r\n" - closed_at: '2019-09-02T10:30:19Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/159/comments - created_at: '2019-08-20T12:11:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/159/events - html_url: https://github.com/packit/ogr/issues/159 - id: 482822700 + url: https://api.github.com/users/shreyanshrs44 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add response file for\ + \ test_update_pr_info for github\n* Skip the update_pr for pagure, since\ + \ we have no token for generating response files\n* exceptions changed\n\ + * update_pr_info methods created, wip\n* Add MIT headers to code files\n\ + * Add tests for creating forks\n* Allow saving multiple responses\n\ + * Add get_projects/get_forks to user; add get_forks to project\n* [pagure]\ + \ Fix fork tests\n* [pagure] Fix user in fork part of url\n* Better\ + \ get_fork for pagure\n* Better get_fork for github\n* Fix formating\ + \ from the previous PR\n* [pagure] Use empty dict as a default header\n\ + * creating, closing, labeling Github Issues\n* get info and comment\ + \ Github Issues\n* Document the test generation\n* Add Makefile targets\ + \ for removing response files\n* Determine forcewrite mode from file\ + \ existance\n* Rename @readonly to @if_readonly\n* [spec] bump to 0.4.0\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.5.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-06-28T09:40:08Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/97/comments + created_at: '2019-06-28T08:43:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/97/events + html_url: https://github.com/packit/ogr/pull/97 + id: 461925608 labels: - - color: a2eeef + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/159/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/97/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODI4MjI3MDA= - number: 159 + node_id: MDExOlB1bGxSZXF1ZXN0MjkyNzQyNDQ2 + number: 97 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/97.diff + html_url: https://github.com/packit/ogr/pull/97 + patch_url: https://github.com/packit/ogr/pull/97.patch + url: https://api.github.com/repos/packit/ogr/pulls/97 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add method for loading instances from dict - updated_at: '2019-09-02T10:30:19Z' - url: https://api.github.com/repos/packit/ogr/issues/159 + title: 0.5.0 release + updated_at: '2019-06-28T09:45:09Z' + url: https://api.github.com/repos/packit/ogr/issues/97 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Remove repo specific methods from GitlabService.\r\n- Make the\ - \ creation of gitlab objects lazy.\r\n- Add tests for gitlab service-mapping.\r\ - \n- Make the pagure service mapping more general.\r\n- Add gitlab to\ - \ service mapping." - closed_at: '2019-08-20T11:55:31Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/156/comments - created_at: '2019-08-15T14:37:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/156/events - html_url: https://github.com/packit/ogr/pull/156 - id: 481182139 + body: "ReleaseBot, we would like to release a new version.\r\n\r\nThanks\ + \ in advance!" + closed_at: '2019-06-28T08:43:29Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/96/comments + created_at: '2019-06-28T08:38:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/96/events + html_url: https://github.com/packit/ogr/issues/96 + id: 461923699 labels: - - color: d93f0b + - color: ededed default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - labels_url: https://api.github.com/repos/packit/ogr/issues/156/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/96/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3NzMxMDE1 - number: 156 + node_id: MDU6SXNzdWU0NjE5MjM2OTk= + number: 96 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/156.diff - html_url: https://github.com/packit/ogr/pull/156 - patch_url: https://github.com/packit/ogr/pull/156.patch - url: https://api.github.com/repos/packit/ogr/pulls/156 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add gitlab to service mapping - updated_at: '2019-08-20T11:55:35Z' - url: https://api.github.com/repos/packit/ogr/issues/156 + title: new minor release + updated_at: '2019-06-28T08:43:29Z' + url: https://api.github.com/repos/packit/ogr/issues/96 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -69668,41 +93739,34 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Fixes #125 \r\nTests fail because test responses can't be saved." - closed_at: '2019-08-15T14:34:37Z' - comments: 28 - comments_url: https://api.github.com/repos/packit/ogr/issues/150/comments - created_at: '2019-08-13T13:16:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/150/events - html_url: https://github.com/packit/ogr/pull/150 - id: 480151584 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - labels_url: https://api.github.com/repos/packit/ogr/issues/150/labels{/name} + author_association: CONTRIBUTOR + body: 'Fixes #87' + closed_at: '2019-06-28T06:51:21Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/92/comments + created_at: '2019-06-27T11:54:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/92/events + html_url: https://github.com/packit/ogr/pull/92 + id: 461485336 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/92/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA2OTAyMTg4 - number: 150 + node_id: MDExOlB1bGxSZXF1ZXN0MjkyMzk4ODk2 + number: 92 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/150.diff - html_url: https://github.com/packit/ogr/pull/150 - patch_url: https://github.com/packit/ogr/pull/150.patch - url: https://api.github.com/repos/packit/ogr/pulls/150 + diff_url: https://github.com/packit/ogr/pull/92.diff + html_url: https://github.com/packit/ogr/pull/92 + patch_url: https://github.com/packit/ogr/pull/92.patch + url: https://api.github.com/repos/packit/ogr/pulls/92 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Functions for gitlab - updated_at: '2019-08-20T07:19:51Z' - url: https://api.github.com/repos/packit/ogr/issues/150 + title: update_pr_info methods created + updated_at: '2019-06-28T06:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/92 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -69722,7 +93786,7 @@ requests.sessions: url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -69741,7 +93805,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -69760,24 +93824,32 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "It would be nice to finally start implementing the GitLab support.\r\ - \n\r\nWe can probably combine the code from GitHub and the already present\ - \ code.\r\n\r\nThe documentation can be found here: https://python-gitlab.readthedocs.io/en/stable/" - closed_at: '2019-08-15T14:34:37Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/125/comments - created_at: '2019-07-18T07:17:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/125/events - html_url: https://github.com/packit/ogr/issues/125 - id: 469608368 + body: "Add methods to `GithubProject`/`PagureProject` for editing title\ + \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ + \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ + \ information " + closed_at: '2019-06-28T06:51:21Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments + created_at: '2019-06-26T07:17:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/87/events + html_url: https://github.com/packit/ogr/issues/87 + id: 460802132 labels: - - color: d93f0b + - color: '000000' default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: a2eeef default: false description: New feature or a request for enhancement. @@ -69785,26 +93857,26 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + - color: 7057ff default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/125/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njk2MDgzNjg= - number: 125 + node_id: MDU6SXNzdWU0NjA4MDIxMzI= + number: 87 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitLab support - updated_at: '2019-08-15T14:34:37Z' - url: https://api.github.com/repos/packit/ogr/issues/125 + title: ' Update pull-request information' + updated_at: '2019-06-28T06:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/87 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -69826,33 +93898,350 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- Run zuul tests both on pip and rpm.' - closed_at: '2019-08-15T14:20:14Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/155/comments - created_at: '2019-08-15T09:27:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/155/events - html_url: https://github.com/packit/ogr/pull/155 - id: 481069480 + body: '- Add MIT headers to code files.' + closed_at: '2019-06-27T13:51:08Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/94/comments + created_at: '2019-06-27T13:15:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/94/events + html_url: https://github.com/packit/ogr/pull/94 + id: 461522977 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/155/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/94/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3NjQwNzUy - number: 155 + node_id: MDExOlB1bGxSZXF1ZXN0MjkyNDI5NzM5 + number: 94 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/155.diff - html_url: https://github.com/packit/ogr/pull/155 - patch_url: https://github.com/packit/ogr/pull/155.patch - url: https://api.github.com/repos/packit/ogr/pulls/155 + diff_url: https://github.com/packit/ogr/pull/94.diff + html_url: https://github.com/packit/ogr/pull/94 + patch_url: https://github.com/packit/ogr/pull/94.patch + url: https://api.github.com/repos/packit/ogr/pulls/94 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Run zuul for pip and rpm - updated_at: '2019-08-15T14:20:18Z' - url: https://api.github.com/repos/packit/ogr/issues/155 + title: Add license headers + updated_at: '2019-06-27T13:51:12Z' + url: https://api.github.com/repos/packit/ogr/issues/94 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\nHi, see lines in: https://github.com/packit-service/ogr/blob/master/tests/integration/test_github.py#L20\r\ + \nSo for regenereation these files, you have to use syntax eg:\r\n``FORCE_WRITE=yes\ + \ GITHUB_TOKEN=yourtoken GITHUB_USER=yourname pytest3 tests/integration/test_github.py``\r\ + \nor this will also work ``FORCE_WRITE=yes GITHUB_TOKEN=yourtoken GITHUB_USER=yourname\ + \ make check`` with make check, you have to have set PAGURE_TOKEN and\ + \ USER env vars\r\n```\r\n\r\n_Originally posted by @jscotka in https://github.com/packit-service/ogr/issues/80#issuecomment-503991164_\r\ + \n" + closed_at: '2019-06-27T12:56:06Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/82/comments + created_at: '2019-06-21T09:12:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/82/events + html_url: https://github.com/packit/ogr/issues/82 + id: 459096186 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/82/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTkwOTYxODY= + number: 82 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Document how to save HTTP sessions for sake of testing + updated_at: '2019-06-27T12:56:06Z' + url: https://api.github.com/repos/packit/ogr/issues/82 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "I'm trying to implement ogr into [release-bot](https://github.com/user-cont/release-bot)\ + \ and it's a little bit painful without documentation from ogr. \r\n\ + \r\nI was playing with ogr on my Github projects and everything is working\ + \ fine. When I tried to reimplement [release-bot's](https://github.com/user-cont/release-bot)\ + \ functionalities which communicate with Github via GraphQL or rest\ + \ API I got stuck. \r\n\r\nOne of the examples could be comments. I\ + \ want to implement commenting on Github issues and PRs via ogr. \r\n\ + - In [release-bot](https://github.com/user-cont/release-bot) it works\ + \ via graphQL and sending some `node_id` inside query which recognizes\ + \ a PR or an Issue. \r\n- In ogr there is `pr_comment` function in ogr/services/github.py.\ + \ If am I right this is an alternative I'm looking for. However, I don't\ + \ fully understand the function's parameters since it needs something\ + \ else then API query.\r\n\r\nI understand that this could be a very\ + \ complex problem since ogr need to preserve compatibility with all\ + \ git forges. I'm just looking for some starting point on how to change\ + \ GraphQL/rest API with ogr. Maybe I just misunderstand some ogr's fundamentals.\r\ + \n" + closed_at: '2019-06-27T12:40:34Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/79/comments + created_at: '2019-06-17T22:01:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/79/events + html_url: https://github.com/packit/ogr/issues/79 + id: 457168292 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/79/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTcxNjgyOTI= + number: 79 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add compatibility with Github's GraphQL API v4 and rest API v3 + updated_at: '2019-06-27T12:40:34Z' + url: https://api.github.com/repos/packit/ogr/issues/79 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Better get_fork for pagure and github. (Fixes #58)\r\n\r\nTODO:\r\ + \n\r\n- [x] `get_forks` on project\r\n- [x] use `project.get_forks()`\ + \ in `project.get_fork`\r\n- [x] `get_forks` for user\r\n- [x] more\ + \ tests\r\n - [x] save sequence of responses\r\n - [x] tests for\ + \ creating fork" + closed_at: '2019-06-27T10:34:34Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/85/comments + created_at: '2019-06-25T11:05:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/85/events + html_url: https://github.com/packit/ogr/pull/85 + id: 460358105 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/85/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkxNTAyODU2 + number: 85 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/85.diff + html_url: https://github.com/packit/ogr/pull/85 + patch_url: https://github.com/packit/ogr/pull/85.patch + url: https://api.github.com/repos/packit/ogr/pulls/85 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Better fork handling + updated_at: '2019-06-27T10:34:38Z' + url: https://api.github.com/repos/packit/ogr/issues/85 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR + body: "FML!\r\n\r\nSo my fork of packit is named source-git, not packit.\r\ + \n\r\nWe should use an API call to obtain github forks, not a guess\ + \ work." + closed_at: '2019-06-27T10:34:34Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/58/comments + created_at: '2019-04-15T11:38:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/58/events + html_url: https://github.com/packit/ogr/issues/58 + id: 433234905 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/58/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MzMyMzQ5MDU= + number: 58 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'github: fork repository name may not match the upstream repo name' + updated_at: '2019-06-27T10:34:34Z' + url: https://api.github.com/repos/packit/ogr/issues/58 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- [pagure] Use empty dict as a default header.' + closed_at: '2019-06-26T13:30:50Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/89/comments + created_at: '2019-06-26T12:51:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/89/events + html_url: https://github.com/packit/ogr/pull/89 + id: 460952659 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/89/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkxOTc0MzU1 + number: 89 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/89.diff + html_url: https://github.com/packit/ogr/pull/89 + patch_url: https://github.com/packit/ogr/pull/89.patch + url: https://api.github.com/repos/packit/ogr/pulls/89 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix pagure header without token + updated_at: '2019-06-26T13:30:53Z' + url: https://api.github.com/repos/packit/ogr/issues/89 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -69873,145 +94262,42 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Don't use the api url when populating the data for an issue. Use\r\ - \nthe web url so that it can be used in a web browser.\r\n\r\nFixes\ - \ #146" - closed_at: '2019-08-15T07:11:16Z' + author_association: COLLABORATOR + body: "Related to #80 \r\n\r\nI provided functionality for Github Issues\ + \ including `get_issue_info`, `get_issue_list`, `get_issue_comments`,\ + \ `issue_comment`. \r\n\r\nHowever, two tests for my new functionality\ + \ are failing. I cannot create .yaml files for them on path tests/integration/test-data.\ + \ When we solve this, I can finish functionality for labeling and closing\ + \ issues.\r\n\r\nthis PR also solves #79 - I assign pull-request number\ + \ into `PullRequest.id` in ogr/abstract.py. Before it was assigning\ + \ some \"global Github pull-request id\" instead \"pull-request number\"\ + \ which was incorrect. " + closed_at: '2019-06-26T11:37:09Z' comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/151/comments - created_at: '2019-08-13T18:06:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/151/events - html_url: https://github.com/packit/ogr/pull/151 - id: 480292368 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/151/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3MDE3Mjky - number: 151 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/151.diff - html_url: https://github.com/packit/ogr/pull/151 - patch_url: https://github.com/packit/ogr/pull/151.patch - url: https://api.github.com/repos/packit/ogr/pulls/151 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'pagure: use web url in issue' - updated_at: '2019-08-15T13:23:23Z' - url: https://api.github.com/repos/packit/ogr/issues/151 - user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 - events_url: https://api.github.com/users/dustymabe/events{/privacy} - followers_url: https://api.github.com/users/dustymabe/followers - following_url: https://api.github.com/users/dustymabe/following{/other_user} - gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dustymabe - id: 4530030 - login: dustymabe - node_id: MDQ6VXNlcjQ1MzAwMzA= - organizations_url: https://api.github.com/users/dustymabe/orgs - received_events_url: https://api.github.com/users/dustymabe/received_events - repos_url: https://api.github.com/users/dustymabe/repos - site_admin: false - starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dustymabe/subscriptions - type: User - url: https://api.github.com/users/dustymabe - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #123 ' - closed_at: '2019-08-15T08:12:06Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/154/comments - created_at: '2019-08-14T15:25:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/154/events - html_url: https://github.com/packit/ogr/pull/154 - id: 480744033 + comments_url: https://api.github.com/repos/packit/ogr/issues/81/comments + created_at: '2019-06-20T13:59:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/81/events + html_url: https://github.com/packit/ogr/pull/81 + id: 458676227 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/154/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/81/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3MzgxNTAw - number: 154 + node_id: MDExOlB1bGxSZXF1ZXN0MjkwMjMwMDk0 + number: 81 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/154.diff - html_url: https://github.com/packit/ogr/pull/154 - patch_url: https://github.com/packit/ogr/pull/154.patch - url: https://api.github.com/repos/packit/ogr/pulls/154 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Mention Zuul in CONTRIBUTING.md and remove Jenkinsfile - updated_at: '2019-08-15T08:12:10Z' - url: https://api.github.com/repos/packit/ogr/issues/154 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: COLLABORATOR - body: "Can we please update the contribution guide. Ogr now uses new zuul\ - \ CI (or softwarefactory-project-zuul). \r\n\r\nI'm a little bit stuck\ - \ on what should I do to make my tests passing when PR is opened. On\ - \ my localhost, everything is working in the \"old way\" and tests are\ - \ passing." - closed_at: '2019-08-15T08:12:06Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/123/comments - created_at: '2019-07-17T12:03:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/123/events - html_url: https://github.com/packit/ogr/issues/123 - id: 469153115 - labels: - - color: 008672 - default: true - description: Extra attention is needed - id: 1160311265 - name: help wanted - node_id: MDU6TGFiZWwxMTYwMzExMjY1 - url: https://api.github.com/repos/packit/ogr/labels/help%20wanted - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/123/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NjkxNTMxMTU= - number: 123 - performed_via_github_app: null + diff_url: https://github.com/packit/ogr/pull/81.diff + html_url: https://github.com/packit/ogr/pull/81 + patch_url: https://github.com/packit/ogr/pull/81.patch + url: https://api.github.com/repos/packit/ogr/pulls/81 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: update contribution guide - updated_at: '2019-08-15T08:12:06Z' - url: https://api.github.com/repos/packit/ogr/issues/123 + title: get info and comment Github Issues + updated_at: '2019-06-26T11:37:09Z' + url: https://api.github.com/repos/packit/ogr/issues/81 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -70033,35 +94319,16 @@ requests.sessions: assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Just checking to see what is the desired behavior. I create an\ - \ issue and then print the url from the created issue. I'd then like\ - \ to open that url in a web browser and have it go to the graphical\ - \ UI and not the API.\r\n\r\nFor example:\r\n\r\n```\r\n>>> i = project.create_issue('TestIssue',\ - \ 'foo bar baz')\r\n>>> print(i.url)\r\nhttps://pagure.io/api/0/dusty/failed-composes/issue/2244\r\ - \n```\r\n\r\nBut what I really want is the url to the web frontent.\ - \ So `i.url.replace('api/0/','')`. What is the intended behavior? " - closed_at: '2019-08-15T07:11:15Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/146/comments - created_at: '2019-08-09T21:53:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/146/events - html_url: https://github.com/packit/ogr/issues/146 - id: 479180564 + body: "as integration tests needs regeneration stored yaml API communication.\r\ + \nWould be nice to add there target to be able to regenerate these files" + closed_at: '2019-06-25T14:47:44Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/61/comments + created_at: '2019-04-26T07:35:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/61/events + html_url: https://github.com/packit/ogr/issues/61 + id: 437538907 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - color: 7057ff default: false description: Good for newcomers @@ -70069,394 +94336,238 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/146/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/61/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzkxODA1NjQ= - number: 146 + node_id: MDU6SXNzdWU0Mzc1Mzg5MDc= + number: 61 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: the url in an issue object is the API url - updated_at: '2019-08-15T07:11:15Z' - url: https://api.github.com/repos/packit/ogr/issues/146 + title: create target for makefile for regeneration testing yaml files + updated_at: '2019-06-25T14:47:44Z' + url: https://api.github.com/repos/packit/ogr/issues/61 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 - events_url: https://api.github.com/users/dustymabe/events{/privacy} - followers_url: https://api.github.com/users/dustymabe/followers - following_url: https://api.github.com/users/dustymabe/following{/other_user} - gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dustymabe - id: 4530030 - login: dustymabe - node_id: MDQ6VXNlcjQ1MzAwMzA= - organizations_url: https://api.github.com/users/dustymabe/orgs - received_events_url: https://api.github.com/users/dustymabe/received_events - repos_url: https://api.github.com/users/dustymabe/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/dustymabe + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-08-14T12:37:27Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/153/comments - created_at: '2019-08-14T12:22:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/153/events - html_url: https://github.com/packit/ogr/pull/153 - id: 480648599 + author_association: CONTRIBUTOR + body: "Hi,\r\nit is unbale to get or install ``ansible-bender`` for ``make\ + \ build`` target.\r\n\r\nIt is not part of Fedora-29.\r\n\r\nI've found\ + \ that @TomasTomecek done this: https://github.com/TomasTomecek/ansible-bender\r\ + \nbut it still failed:\r\n```\r\n12:43 $ sudo pip3 install ansible-bender\r\ + \nWARNING: Running pip install with root privileges is generally not\ + \ a good idea. Try `pip3 install --user` instead.\r\nCollecting ansible-bender\r\ + \n Downloading https://files.pythonhosted.org/packages/fa/5c/04c822b3ee6e2ff41eed372f15d954cccf164d0340341fbd0270d500bb83/ansible_bender-0.4.0-py2.py3-none-any.whl\r\ + \nRequirement already satisfied: PyYAML in /usr/lib64/python3.7/site-packages\ + \ (from ansible-bender) (4.2b4)\r\nCollecting tabulate (from ansible-bender)\r\ + \n Downloading https://files.pythonhosted.org/packages/c2/fd/202954b3f0eb896c53b7b6f07390851b1fd2ca84aa95880d7ae4f434c4ac/tabulate-0.8.3.tar.gz\ + \ (46kB)\r\n 100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ + \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ + \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ + | 51kB 2.0MB/s \r\nInstalling collected packages: tabulate, ansible-bender\r\ + \n Running setup.py install for tabulate ... done\r\nSuccessfully installed\ + \ ansible-bender-0.4.0 tabulate-0.8.3\r\n\u2714 ~/git/userspace-containerization/ogr\ + \ [tests1 L|\u202638] \r\n12:44 $ sudo make build \r\nsudo ansible-bender\ + \ build --build-volumes /home/jscotka/git/userspace-containerization/ogr:/src:Z\ + \ -- ./recipe.yaml registry.fedoraproject.org/fedora:29 ogr\r\nThere\ + \ was an error during execution: buildah command doesn't seem to be\ + \ available on your system. Please follow the upstream instructions\ + \ available at https://github.com/projectatomic/buildah/blob/master/install.md\r\ + \nmake: *** [Makefile:7: build] Error 2\r\n```\r\n\r\nafter installing:\ + \ ``sudo dnf install buildah `` it finally works." + closed_at: '2019-06-25T09:00:15Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/17/comments + created_at: '2019-02-18T11:46:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/17/events + html_url: https://github.com/packit/ogr/issues/17 + id: 411437302 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/153/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/17/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3MzA0MjMx - number: 153 + node_id: MDU6SXNzdWU0MTE0MzczMDI= + number: 17 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/153.diff - html_url: https://github.com/packit/ogr/pull/153 - patch_url: https://github.com/packit/ogr/pull/153.patch - url: https://api.github.com/repos/packit/ogr/pulls/153 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[README.md] Zuul badge' - updated_at: '2019-08-14T15:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/153 + title: missing ansible-bender dep for building + updated_at: '2019-06-25T09:00:15Z' + url: https://api.github.com/repos/packit/ogr/issues/17 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #127 ' - closed_at: '2019-08-13T07:27:51Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/137/comments - created_at: '2019-07-25T10:41:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/137/events - html_url: https://github.com/packit/ogr/pull/137 - id: 472793637 + author_association: CONTRIBUTOR + body: "* [x] don't fail when PAGURE_{TOKEN,USER} are not specified\r\n\ + * [x] mock remote API and write complete unit tests using those data\ + \ (or even have a single test suite and enable it to run against live\ + \ instance and mocked data)\r\n* [x] [tox](https://developer.fedoraproject.org/tech/languages/python/multiple-pythons.html)-ify\ + \ it (#27)" + closed_at: '2019-06-25T08:59:43Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/8/comments + created_at: '2019-01-30T10:19:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/8/events + html_url: https://github.com/packit/ogr/issues/8 + id: 404698352 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/137/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzAxMDg1MDUw - number: 137 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/137.diff - html_url: https://github.com/packit/ogr/pull/137 - patch_url: https://github.com/packit/ogr/pull/137.patch - url: https://api.github.com/repos/packit/ogr/pulls/137 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: add method edit_release - updated_at: '2019-08-13T07:27:52Z' - url: https://api.github.com/repos/packit/ogr/issues/137 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: COLLABORATOR - body: Can we create a method for editing a release? We can use [this](https://pygithub.readthedocs.io/en/latest/github_objects/GitRelease.html#github.GitRelease.GitRelease.update_release) - for it. - closed_at: '2019-08-13T07:27:51Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/127/comments - created_at: '2019-07-18T08:08:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/127/events - html_url: https://github.com/packit/ogr/issues/127 - id: 469627928 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/127/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/8/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njk2Mjc5Mjg= - number: 127 + node_id: MDU6SXNzdWU0MDQ2OTgzNTI= + number: 8 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: edit Github release - updated_at: '2019-08-13T07:27:51Z' - url: https://api.github.com/repos/packit/ogr/issues/127 + title: Improve testing + updated_at: '2019-06-25T08:59:43Z' + url: https://api.github.com/repos/packit/ogr/issues/8 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #124 ' - closed_at: '2019-08-13T07:11:39Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/136/comments - created_at: '2019-07-25T07:39:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/136/events - html_url: https://github.com/packit/ogr/pull/136 - id: 472712760 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/136/labels{/name} + author_association: CONTRIBUTOR + body: "we need this in packit this sprint when we start building in copr\r\ + \n\r\nthis should be implemented soonish and land in next release\r\n\ + \r\nrelevant code for github:\r\nhttps://github.com/packit-service/packit/blob/04793f16d5ced27b5e7fec7d963d650b065a4276/packit/watcher.py#L94" + closed_at: '2019-06-25T07:31:05Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/54/comments + created_at: '2019-04-04T14:24:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/54/events + html_url: https://github.com/packit/ogr/issues/54 + id: 429309114 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/54/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzAxMDE5ODMy - number: 136 + node_id: MDU6SXNzdWU0MjkzMDkxMTQ= + number: 54 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/136.diff - html_url: https://github.com/packit/ogr/pull/136 - patch_url: https://github.com/packit/ogr/pull/136.patch - url: https://api.github.com/repos/packit/ogr/pulls/136 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: run tests on one repository - updated_at: '2019-08-13T07:11:39Z' - url: https://api.github.com/repos/packit/ogr/issues/136 + title: add a way to set check results for a commit + updated_at: '2019-06-25T07:31:05Z' + url: https://api.github.com/repos/packit/ogr/issues/54 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "- Try to have only one project for testing (ideally OGR itself\ - \ in case of GitHub).\r\n- Then it is easy for everyone to regenerate\ - \ the test responses." - closed_at: '2019-08-13T07:11:39Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/124/comments - created_at: '2019-07-18T07:15:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/124/events - html_url: https://github.com/packit/ogr/issues/124 - id: 469607471 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/124/labels{/name} + body: "- Add Makefile targets for removing response files.\r\n- Determine\ + \ forcewrite mode from file existance.\r\n\r\n\r\nWhy?\r\n- less magic\r\ + \n- easier for newcomers:\r\n - When adding a new test, you need\ + \ to rerun the tests to generate the response files.\r\n - To update\ + \ a response file, you need to remove the file and rerun the tests.\r\ + \n\r\n\r\nTODO:\r\n\r\n- [x] describe the testing in the contribution\ + \ guide" + closed_at: '2019-06-24T14:55:24Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/84/comments + created_at: '2019-06-24T12:33:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/84/events + html_url: https://github.com/packit/ogr/pull/84 + id: 459865460 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/84/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njk2MDc0NzE= - number: 124 + node_id: MDExOlB1bGxSZXF1ZXN0MjkxMTExNTU4 + number: 84 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/84.diff + html_url: https://github.com/packit/ogr/pull/84 + patch_url: https://github.com/packit/ogr/pull/84.patch + url: https://api.github.com/repos/packit/ogr/pulls/84 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Run tests on the OGR project itself - updated_at: '2019-08-13T07:11:39Z' - url: https://api.github.com/repos/packit/ogr/issues/124 + title: Forcewrite mode from file existance + updated_at: '2019-06-24T14:55:57Z' + url: https://api.github.com/repos/packit/ogr/issues/84 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -70478,306 +94589,222 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-08-10T14:24:33Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/148/comments - created_at: '2019-08-10T13:32:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/148/events - html_url: https://github.com/packit/ogr/pull/148 - id: 479267763 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/148/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA2MjEyNjI0 - number: 148 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/148.diff - html_url: https://github.com/packit/ogr/pull/148 - patch_url: https://github.com/packit/ogr/pull/148.patch - url: https://api.github.com/repos/packit/ogr/pulls/148 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: testing - updated_at: '2019-08-10T14:30:25Z' - url: https://api.github.com/repos/packit/ogr/issues/148 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=12: - - metadata: - latency: 0.5997006893157959 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ - \nBy PR #144 we add a bug. In `github.py` is mentioned https://github.com/packit-service/ogr/blob/master/ogr/services/github.py#L398\ - \ `get_all_pr_commits`.\r\n\r\nSuddenly it was not caught by PR review." - closed_at: '2019-08-09T14:48:39Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/145/comments - created_at: '2019-08-09T13:29:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/145/events - html_url: https://github.com/packit/ogr/pull/145 - id: 478987478 + body: 'Rename @readonly to @if_readonly. + + + + Fixes #56' + closed_at: '2019-06-24T14:46:14Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/83/comments + created_at: '2019-06-24T11:34:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/83/events + html_url: https://github.com/packit/ogr/pull/83 + id: 459840373 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/145/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/83/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA1OTkwNTI1 - number: 145 + node_id: MDExOlB1bGxSZXF1ZXN0MjkxMDkxNDg4 + number: 83 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/145.diff - html_url: https://github.com/packit/ogr/pull/145 - patch_url: https://github.com/packit/ogr/pull/145.patch - url: https://api.github.com/repos/packit/ogr/pulls/145 + diff_url: https://github.com/packit/ogr/pull/83.diff + html_url: https://github.com/packit/ogr/pull/83 + patch_url: https://github.com/packit/ogr/pull/83.patch + url: https://api.github.com/repos/packit/ogr/pulls/83 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Rename get_pr_commits to get_all_pr_commits in abstract.py - updated_at: '2019-08-09T14:48:39Z' - url: https://api.github.com/repos/packit/ogr/issues/145 + title: Rename readonly decorator + updated_at: '2019-06-24T14:46:47Z' + url: https://api.github.com/repos/packit/ogr/issues/83 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + 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/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + 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/phracek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ - \nAdd function `get_pr_commits` into `abstract.py`." - closed_at: '2019-08-08T14:03:49Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/144/comments - created_at: '2019-08-08T12:17:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/144/events - html_url: https://github.com/packit/ogr/pull/144 - id: 478434638 + author_association: MEMBER + body: "The `@readonly` decorator should be renamed as it can confuse newcomers\ + \ that the method itself is \"readonly\". The fact is that it has the\ + \ opposite meaning of the read-only.\r\n\r\nFeel free to add your ideas\ + \ as a single comment so we can easily vote.\r\n\r\n-----\r\n\r\nFollow-up\ + \ from #48" + closed_at: '2019-06-24T14:46:14Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/56/comments + created_at: '2019-04-09T08:17:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/56/events + html_url: https://github.com/packit/ogr/issues/56 + id: 430829968 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/144/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/56/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA1NTQ5MTcw - number: 144 + node_id: MDU6SXNzdWU0MzA4Mjk5Njg= + number: 56 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/144.diff - html_url: https://github.com/packit/ogr/pull/144 - patch_url: https://github.com/packit/ogr/pull/144.patch - url: https://api.github.com/repos/packit/ogr/pulls/144 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add get_pr_commits into abstract.py - updated_at: '2019-08-08T14:03:49Z' - url: https://api.github.com/repos/packit/ogr/issues/144 + title: 'better name for @readonly decorator ' + updated_at: '2019-06-24T14:46:14Z' + url: https://api.github.com/repos/packit/ogr/issues/56 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + 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/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + 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/phracek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ - \nPull request adds a function for getting all commits for specific\ - \ PR.\r\nIt is useful when the user adds a comment into `packit-service`\ - \ like `/packit copr-build` and we would like to get especially the\ - \ latest commit from the PR.\r\n\r\nA real example:\r\nhttps://github.com/packit-service/packit-service/blob/master/packit_service/worker/github_handlers.py#L92\ - \ `pr_event/base_ref` cannot by `pr/9` but reference to the latest commit\ - \ for a pull request.\r\n\r\n- [x] Pull Request contains info about\ - \ SHA of the latest commit.\r\n- [x] tests are covered." - closed_at: '2019-08-08T10:10:30Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/140/comments - created_at: '2019-08-05T10:56:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/140/events - html_url: https://github.com/packit/ogr/pull/140 - id: 476794481 + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* enable calling dump()\ + \ after store()\n* packit.yaml: add a link to docs\n* packit: sync from\ + \ downstream & build in copr\n* Fix mypy errors\n* Dump RequestResponse\ + \ on our own\n* Fix old imports\n* Remove old Pagure tests\n* Fix tests\ + \ and regenerate test responses, do not save headers\n* Use custom response\ + \ class for Pagure\n* Add missing readonly decorator\n* Use self.get_raw_request\ + \ on cal_api\n* Add docstring for Pagure methods\n* Fix creation of\ + \ pr comments\n* Improve the request/response handling and fix authentication\ + \ header\n* Apply suggestions by @jpopelka from code review\n* Fix commit\ + \ flags/statuses\n* Remove libpagure from recipe\n* Methods for commit\ + \ statuses/flags and comments\n* Add methods for tags\n* Fix __str__\ + \ for PRComment and PullRequest\n* Remove libpagure from requirements\n\ + * Fix forking\n* Better response handling for Pagure API\n* Remove OurPagure\n\ + * Implement forking logic and PR methods\n* First part of implementing\ + \ the Pagure classes without libpagure\n* Add string representation\ + \ for PRComment and PullRequest\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.4.0-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2019-06-11T14:05:10Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/77/comments + created_at: '2019-06-11T13:18:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/77/events + html_url: https://github.com/packit/ogr/pull/77 + id: 454686226 labels: - - color: 18e033 + - color: ededed default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/140/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/77/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA0MjQ5MTY2 - number: 140 + node_id: MDExOlB1bGxSZXF1ZXN0Mjg3MDg2Mzg1 + number: 77 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/140.diff - html_url: https://github.com/packit/ogr/pull/140 - patch_url: https://github.com/packit/ogr/pull/140.patch - url: https://api.github.com/repos/packit/ogr/pulls/140 + diff_url: https://github.com/packit/ogr/pull/77.diff + html_url: https://github.com/packit/ogr/pull/77 + patch_url: https://github.com/packit/ogr/pull/77.patch + url: https://api.github.com/repos/packit/ogr/pulls/77 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Function for getting all commits from specific PR. - updated_at: '2019-08-08T10:10:30Z' - url: https://api.github.com/repos/packit/ogr/issues/140 + title: 0.4.0 release + updated_at: '2019-06-11T14:10:26Z' + url: https://api.github.com/repos/packit/ogr/issues/77 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + 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/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + 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/phracek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: I checked it's not used anywhere else. - closed_at: '2019-08-06T11:03:47Z' + body: '' + closed_at: '2019-06-11T13:19:01Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/142/comments - created_at: '2019-08-06T10:20:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/142/events - html_url: https://github.com/packit/ogr/pull/142 - id: 477295662 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/142/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/76/comments + created_at: '2019-06-11T13:18:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/76/events + html_url: https://github.com/packit/ogr/issues/76 + id: 454685925 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/76/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA0NjQ3NzYz - number: 142 + node_id: MDU6SXNzdWU0NTQ2ODU5MjU= + number: 76 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/142.diff - html_url: https://github.com/packit/ogr/pull/142 - patch_url: https://github.com/packit/ogr/pull/142.patch - url: https://api.github.com/repos/packit/ogr/pulls/142 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: PersistenStorageException -> PersistentStorageException - updated_at: '2019-08-06T11:03:50Z' - url: https://api.github.com/repos/packit/ogr/issues/142 + title: new minor release + updated_at: '2019-06-11T13:19:01Z' + url: https://api.github.com/repos/packit/ogr/issues/76 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -70799,153 +94826,151 @@ requests.sessions: assignee: null assignees: [] author_association: CONTRIBUTOR - body: '' - closed_at: '2019-08-06T07:30:48Z' - comments: 23 - comments_url: https://api.github.com/repos/packit/ogr/issues/129/comments - created_at: '2019-07-18T17:29:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/129/events - html_url: https://github.com/packit/ogr/pull/129 - id: 469897903 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/129/labels{/name} + body: '\+ packit.yaml: add a link to docs' + closed_at: '2019-05-29T14:23:24Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/72/comments + created_at: '2019-05-22T14:36:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/72/events + html_url: https://github.com/packit/ogr/pull/72 + id: 447175169 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/72/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk5MDE3NDM2 - number: 129 + node_id: MDExOlB1bGxSZXF1ZXN0MjgxMjI1MTU2 + number: 72 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/129.diff - html_url: https://github.com/packit/ogr/pull/129 - patch_url: https://github.com/packit/ogr/pull/129.patch - url: https://api.github.com/repos/packit/ogr/pulls/129 + diff_url: https://github.com/packit/ogr/pull/72.diff + html_url: https://github.com/packit/ogr/pull/72 + patch_url: https://github.com/packit/ogr/pull/72.patch + url: https://api.github.com/repos/packit/ogr/pulls/72 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Fix Issue #126, implemented get_email' - updated_at: '2019-08-06T07:30:49Z' - url: https://api.github.com/repos/packit/ogr/issues/129 + title: dump() when store() is called + updated_at: '2019-05-29T14:23:28Z' + url: https://api.github.com/repos/packit/ogr/issues/72 user: - avatar_url: https://avatars1.githubusercontent.com/u/38399871?v=4 - events_url: https://api.github.com/users/yzhang2907/events{/privacy} - followers_url: https://api.github.com/users/yzhang2907/followers - following_url: https://api.github.com/users/yzhang2907/following{/other_user} - gists_url: https://api.github.com/users/yzhang2907/gists{/gist_id} + 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/yzhang2907 - id: 38399871 - login: yzhang2907 - node_id: MDQ6VXNlcjM4Mzk5ODcx - organizations_url: https://api.github.com/users/yzhang2907/orgs - received_events_url: https://api.github.com/users/yzhang2907/received_events - repos_url: https://api.github.com/users/yzhang2907/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/yzhang2907/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/yzhang2907/subscriptions + 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/yzhang2907 + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "I made `git cherry-pick` of all @yzhang2907 commits in PR #129\ - \ which solves #126. I also found out that there is no current way how\ - \ to get the user's email from Pagure API and @yzhang2907 code wouldn't\ - \ work for Pagure. However, the code for Github is fine now. \r\n\r\n" - closed_at: '2019-08-06T07:27:43Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/141/comments - created_at: '2019-08-05T12:28:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/141/events - html_url: https://github.com/packit/ogr/pull/141 - id: 476831775 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/141/labels{/name} + author_association: MEMBER + body: "- Remove OurPagure.\r\n- Implement forking logic and PR methods.\r\ + \n- First part of implementing the Pagure classes without libpagure.\r\ + \n- Add string representation for PRComment and PullRequest.\r\n\r\n\ + Fix #64\r\nFix #67\r\n\r\n---\r\n\r\nTODO:\r\n\r\n- [x] readonly mode\r\ + \n- [x] tests\r\n\r\n\r\n---\r\n\r\n## How to test?\r\n\r\n```python\r\ + \nfrom ogr.services.pagure import PagureService\r\nfrom ogr.abstract\ + \ import PRStatus\r\n\r\n\r\nservice = PagureService(token=\"???_PAGURE_TOKEN_???\"\ + )\r\n\r\n# Play with the API\r\n\r\nprint(service.user.get_username())\r\ + \nproject = service.get_project(repo=\"colin\", namespace=\"rpms\")\r\ + \nprint(project.get_commit_statuses(\"339a19b0bbc766d0c6cdbbc2ef5a32c0de9f7551\"\ + )[0])\r\nprint(project.get_tags())\r\n\r\nfork = project.get_fork()\r\ + \nprint(fork.exists())\r\n\r\nproject.fork_create()\r\n\r\nfor pr in\ + \ project.get_pr_list(status=PRStatus.all):\r\n print(pr)\r\n\r\n\ + pr = project.get_pr_info(3)\r\nprint(pr)\r\nfor c in project.get_pr_comments(3):\r\ + \n print(c)\r\n\r\nprint(fork.is_fork)\r\nprint(fork.is_forked())\r\ + \n```" + closed_at: '2019-05-29T07:46:28Z' + comments: 17 + comments_url: https://api.github.com/repos/packit/ogr/issues/71/comments + created_at: '2019-05-20T10:11:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/71/events + html_url: https://github.com/packit/ogr/pull/71 + id: 446033070 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + labels_url: https://api.github.com/repos/packit/ogr/issues/71/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA0Mjc5NjI3 - number: 141 + node_id: MDExOlB1bGxSZXF1ZXN0MjgwMzI0Njgx + number: 71 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/141.diff - html_url: https://github.com/packit/ogr/pull/141 - patch_url: https://github.com/packit/ogr/pull/141.patch - url: https://api.github.com/repos/packit/ogr/pulls/141 + diff_url: https://github.com/packit/ogr/pull/71.diff + html_url: https://github.com/packit/ogr/pull/71 + patch_url: https://github.com/packit/ogr/pull/71.patch + url: https://api.github.com/repos/packit/ogr/pulls/71 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get-email - updated_at: '2019-08-06T07:27:43Z' - url: https://api.github.com/repos/packit/ogr/issues/141 + title: Remove libpagure + updated_at: '2019-05-29T11:00:10Z' + url: https://api.github.com/repos/packit/ogr/issues/71 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: https://packit.dev/docs/configuration/#supported-jobs - closed_at: '2019-07-30T10:59:00Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/138/comments - created_at: '2019-07-30T07:31:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/138/events - html_url: https://github.com/packit/ogr/pull/138 - id: 474421629 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-05-29T08:31:09Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/75/comments + created_at: '2019-05-29T07:41:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/75/events + html_url: https://github.com/packit/ogr/pull/75 + id: 449647079 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/138/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/75/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzAyMzY2NTU5 - number: 138 + node_id: MDExOlB1bGxSZXF1ZXN0MjgzMTMxNzY3 + number: 75 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/138.diff - html_url: https://github.com/packit/ogr/pull/138 - patch_url: https://github.com/packit/ogr/pull/138.patch - url: https://api.github.com/repos/packit/ogr/pulls/138 + diff_url: https://github.com/packit/ogr/pull/75.diff + html_url: https://github.com/packit/ogr/pull/75 + patch_url: https://github.com/packit/ogr/pull/75.patch + url: https://api.github.com/repos/packit/ogr/pulls/75 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'packit.yaml: propose_downstream: s/_/-/' - updated_at: '2019-07-30T14:27:13Z' - url: https://api.github.com/repos/packit/ogr/issues/138 + title: 'packit: sync from downstream & build in copr' + updated_at: '2019-05-29T08:31:13Z' + url: https://api.github.com/repos/packit/ogr/issues/75 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -70963,57 +94988,222 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ + \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ + \nhas to be adapted, currenly I've added dependency on lower version\ + \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ + \nto avoid this issue." + closed_at: '2019-05-29T07:46:28Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments + created_at: '2019-04-29T14:41:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/64/events + html_url: https://github.com/packit/ogr/issues/64 + id: 438351136 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MzgzNTExMzY= + number: 64 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'libpagure has changed ' + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/64 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "While debugging https://github.com/packit-service/packit/issues/305\ + \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ + \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ + \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ attribute has a value `rpm/packit`, while libpagure probably expects\ + \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ + \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ + \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ + \ expects `/` in `self.repo`, which is probably not what `libpagure`\ + \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ + \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ + \ even more recently." + closed_at: '2019-05-29T07:46:28Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments + created_at: '2019-05-10T11:09:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/67/events + html_url: https://github.com/packit/ogr/issues/67 + id: 442664622 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDI2NjQ2MjI= + number: 67 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: libpagure.Pagure expects '/' not in repo attribute + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/67 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER + body: '' + closed_at: '2019-05-14T14:52:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/70/comments + created_at: '2019-05-14T14:49:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/70/events + html_url: https://github.com/packit/ogr/pull/70 + id: 443960153 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/70/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjc4NzE5MTU5 + number: 70 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/70.diff + html_url: https://github.com/packit/ogr/pull/70 + patch_url: https://github.com/packit/ogr/pull/70.patch + url: https://api.github.com/repos/packit/ogr/pulls/70 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.3.1 release + updated_at: '2019-05-14T14:55:27Z' + url: https://api.github.com/repos/packit/ogr/issues/70 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* method _pr_from_github_object\ - \ differentiate closed and merged status\n* allow usage of PRStatus.merged\ - \ for github pull requests\n* add get_latest_release(), create Releases\ - \ class in test_github.py\n* Simplify imports\n* Split mocking and persistent_storage\n\ - * Fix github-app authentication\n* Rename env-var for mocking and allow\ - \ setting response file from RESPONSE_FILE env-var\n* Use PersistentObjectStorage\ - \ as a Singleton\n* Split mocking and read_only from mocking\n* Set\ - \ persistent storage only via class\n* Update mocking of GithubIntegration\ - \ from PyGithub\n* Improve mocking and add support for authentication\ - \ as a github-app\n* improve tests from previous commit\n* add labeling\ - \ github pull requests\n* mistake fixed\n* PRFlag changed back to PRStatus\n\ - * CommitStatus, PRStatus renamed to CommitFlag, PRFlag\n* use zuul for\ - \ realz now\n* test changed\n* method create release for github created\n\ - * add zuul config\n* bump base image to F30\n* add get_releses for Pagure\n\ - * unused functions removed\n* add get_releases/get_release into abstract.py\n\ - * add who_can_marge_pr and who_can_close_issue\n* delete obsolete comments\n\ - * fix review notes, add can_close_issue and can_merge_pr, remove who_can_close_issue\ - \ and who_can_merge_pr\n* fix mypy errors\n* get project's owners and\ - \ permissions of various users\n* split test_get_tag_from_tag_name\n\ - * value of git_tag in github Release set\n* link to GitTag from Release\ - \ added\n* collections.Hashable -> collections.abc.Hashable\n* Make\ - \ PersistentObjectStorage.__init__() backwards compatible\n* in get_file_content\ - \ catch only 404\n* subprocess.run fix\n* unify external command invocation\ - \ by subprocess.run\n* Add integration tests for factory and add more\ - \ unit tests\n* Add docstrings to factory and types to parsing\n* Add\ - \ get_project and get_service_class to global imports\n* Add tests for\ - \ parsing\n* Add tests for factory\n* Add __eq__ for projects and services\n\ - * Save more attributes about parsed url\n* [github] Be lazy with github_repo\ - \ object from pygithub\n* Fix __str__ after rebase\n* Add support for\ - \ services-mapping update\n* Import services in ogr/__init__.py to see\ - \ it in the mapping\n* Add method for creating projects from url\n*\ - \ Get project from url\n* fix code format issues\n* add tests, fix review\ - \ notes\n* creating/closing/commenting Pagure Issues\n* Fix formating\ - \ for __str__ methods\n* Changes requested to_str_method of classes\n\ - * Added instantiation-like syntax\n* Added __str__ method to classes\n\ - * Added __str__ method to classes\n\n\nYou can change it by editing\ - \ `CHANGELOG.md` in the root of this repository and pushing to `0.6.0-release`\ - \ branch before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2019-07-25T07:48:18Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/135/comments - created_at: '2019-07-23T11:55:07Z' - events_url: https://api.github.com/repos/packit/ogr/issues/135/events - html_url: https://github.com/packit/ogr/pull/135 - id: 471653597 + \ is the changelog I created:\n### Changes\n* add comment why there\ + \ is little bit confusing assigment\n* improve mock pf persistent objects\n\ + * use generic exception, to not fail when regenerating\n* raise filenotfound\ + \ exception in pagure method get_file_content\n* enable readonly tests\n\ + * enable some tests what were disabled when debugging various issues\n\ + * check write mode in dump function not in desctructor\n* do not flush\ + \ within desctructor, in case read mode\n* avoid to use default flow\ + \ style for yaml files\n* mock pagure classes\n* commit status\n* Regenerate\ + \ github test data\n* Implement adding PR comments\n* commit_comment:\ + \ Fix typo in docs\n* Implement adding commit comments\n* method GithubProject().get_sha_from_tag\ + \ in\n* rename github in mock to another name to fix the pypy test\n\ + * fix integration test for github by skipping\n* add yaml dependency\ + \ to requirements\n* add there class attribute to be possible to use\ + \ ogr mocking in pagure\n* fixed using of open in destructor\n* fixed\ + \ using of open in destructor\n* rename write_mode to is_write_mode\ + \ to be more explicit that there is expected boolean primarily\n* add\ + \ doc strings and adapt PR review comments\n* pagure/get_urls: fill\ + \ in {username}\n* use internal keys also in github to be clearer\n\ + * mocking also pagure in simplier way\n* raise special exception in\ + \ case key is not in storage file\n* move storage class to mock_core\n\ + * mock via persistent storage: run integration tests with persistent\ + \ storage\n* adapt jpopelka suggestions from PR\n* adapt jpopelka suggestion\ + \ from PR\n* add read only helper and option to github and pagure classes\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.3.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-05-14T10:16:08Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/69/comments + created_at: '2019-05-13T12:52:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/69/events + html_url: https://github.com/packit/ogr/pull/69 + id: 443381757 labels: - color: ededed default: false @@ -71029,24 +95219,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/135/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/69/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzAwMjYxMzU3 - number: 135 + node_id: MDExOlB1bGxSZXF1ZXN0Mjc4MjYwMzM4 + number: 69 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/135.diff - html_url: https://github.com/packit/ogr/pull/135 - patch_url: https://github.com/packit/ogr/pull/135.patch - url: https://api.github.com/repos/packit/ogr/pulls/135 + diff_url: https://github.com/packit/ogr/pull/69.diff + html_url: https://github.com/packit/ogr/pull/69 + patch_url: https://github.com/packit/ogr/pull/69.patch + url: https://api.github.com/repos/packit/ogr/pulls/69 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.6.0 release - updated_at: '2019-07-25T07:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/135 + title: 0.3.0 release + updated_at: '2019-05-14T10:20:51Z' + url: https://api.github.com/repos/packit/ogr/issues/69 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -71067,656 +95257,748 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Based on our discussion in PR #128 this code makes consistency\ - \ in `get_pr_list(status)` between Pagure and Github. We can use `PRStatus.merged`\ - \ for Github now.\r\n\r\nCan we close #128 without merging? It was easier\ - \ to create a new branch since the code is completely different.\r\n" - closed_at: '2019-07-23T11:51:08Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/130/comments - created_at: '2019-07-21T13:19:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/130/events - html_url: https://github.com/packit/ogr/pull/130 - id: 470780887 + author_association: MEMBER + body: '' + closed_at: '2019-05-13T12:52:45Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/68/comments + created_at: '2019-05-13T12:50:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/68/events + html_url: https://github.com/packit/ogr/issues/68 + id: 443380561 labels: - - color: '000000' + - color: ededed default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/130/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/68/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk5NjM1NzU2 - number: 130 + node_id: MDU6SXNzdWU0NDMzODA1NjE= + number: 68 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-05-13T12:52:45Z' + url: https://api.github.com/repos/packit/ogr/issues/68 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.426113 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:21 GMT + ETag: W/"918b085f1d5af8d58fc5623ed7a804dadcbfd98a03b2b8bc537aa349704b931e" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7F31D:191A4CB:6075DC34 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4766' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '234' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=18: + - metadata: + latency: 0.4749131202697754 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: Improve mocking, to be easily able mock `packit` via passing `persistent_storage` + class variable + closed_at: '2019-05-02T12:42:40Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/66/comments + created_at: '2019-05-02T11:19:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/66/events + html_url: https://github.com/packit/ogr/pull/66 + id: 439539983 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/66/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjc1MzIyNTg2 + number: 66 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/130.diff - html_url: https://github.com/packit/ogr/pull/130 - patch_url: https://github.com/packit/ogr/pull/130.patch - url: https://api.github.com/repos/packit/ogr/pulls/130 + diff_url: https://github.com/packit/ogr/pull/66.diff + html_url: https://github.com/packit/ogr/pull/66 + patch_url: https://github.com/packit/ogr/pull/66.patch + url: https://api.github.com/repos/packit/ogr/pulls/66 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: allow usage of PRStatus.merged for Github get_pr_list(status) - updated_at: '2019-07-23T12:16:08Z' - url: https://api.github.com/repos/packit/ogr/issues/130 + title: improve mock of persistent objects + updated_at: '2019-05-02T12:42:41Z' + url: https://api.github.com/repos/packit/ogr/issues/66 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/marusinm + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "It's pretty common looking for the latest release only. It would\ - \ be useful to have a fast method for it without looking for some identifier\ - \ or getting all releases. Here it is. \r\n\r\nI also think that tests\ - \ for releases were in the incorrect class. Release tests which are\ - \ increasing deserve its own class. " - closed_at: '2019-07-23T11:01:50Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/131/comments - created_at: '2019-07-21T15:22:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/131/events - html_url: https://github.com/packit/ogr/pull/131 - id: 470793486 + author_association: CONTRIBUTOR + body: "now each integration test class contains right one file with stored\ + \ API data.\r\nWe could reconsider it, and maybe have file for each\ + \ test, to avoid to regenerate big file and have big commits.\r\nWe\ + \ have to solve several issues:\r\n * How to handle it per test, now\ + \ there is right one service pytest fixture function what contains it\r\ + \n * How to regenerate just relevant part \r\n * maybe remove some\ + \ timestamps, UIDs and similar objects what can change on every request\r\ + \n * or manually(semiautomatically) call just affected tests - ie:\ + \ run tests, find failures (key errors) and then try to just regenerate\ + \ files for failed tests" + closed_at: '2019-04-30T19:32:17Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/62/comments + created_at: '2019-04-26T13:21:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/62/events + html_url: https://github.com/packit/ogr/issues/62 + id: 437670314 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/131/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/62/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk5NjQ0MzIy - number: 131 + node_id: MDU6SXNzdWU0Mzc2NzAzMTQ= + number: 62 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'testing: split yaml files with data for each test to avoid regeneration + big file and big commits' + updated_at: '2019-04-30T19:32:17Z' + url: https://api.github.com/repos/packit/ogr/issues/62 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-30T13:49:40Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/63/comments + created_at: '2019-04-26T13:21:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/63/events + html_url: https://github.com/packit/ogr/pull/63 + id: 437670526 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/63/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjczODk1Njc5 + number: 63 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/131.diff - html_url: https://github.com/packit/ogr/pull/131 - patch_url: https://github.com/packit/ogr/pull/131.patch - url: https://api.github.com/repos/packit/ogr/pulls/131 + diff_url: https://github.com/packit/ogr/pull/63.diff + html_url: https://github.com/packit/ogr/pull/63 + patch_url: https://github.com/packit/ogr/pull/63.patch + url: https://api.github.com/repos/packit/ogr/pulls/63 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add get_latest_release(), create Releases class in test_github.py - updated_at: '2019-07-23T12:12:58Z' - url: https://api.github.com/repos/packit/ogr/issues/131 + title: mock pagure classes + updated_at: '2019-04-30T13:49:40Z' + url: https://api.github.com/repos/packit/ogr/issues/63 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/marusinm + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2019-07-23T11:55:10Z' + closed_at: '2019-04-30T10:41:00Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/65/comments + created_at: '2019-04-30T08:16:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/65/events + html_url: https://github.com/packit/ogr/pull/65 + id: 438653697 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/65/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjc0NjM1NjI0 + number: 65 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/65.diff + html_url: https://github.com/packit/ogr/pull/65 + patch_url: https://github.com/packit/ogr/pull/65.patch + url: https://api.github.com/repos/packit/ogr/pulls/65 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: commit status + updated_at: '2019-04-30T10:41:00Z' + url: https://api.github.com/repos/packit/ogr/issues/65 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-27T11:06:49Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/134/comments - created_at: '2019-07-23T11:52:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/134/events - html_url: https://github.com/packit/ogr/issues/134 - id: 471652493 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/134/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/60/comments + created_at: '2019-04-24T13:58:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/60/events + html_url: https://github.com/packit/ogr/pull/60 + id: 436713552 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/60/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzE2NTI0OTM= - number: 134 + node_id: MDExOlB1bGxSZXF1ZXN0MjczMTQ0MTgw + number: 60 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/60.diff + html_url: https://github.com/packit/ogr/pull/60 + patch_url: https://github.com/packit/ogr/pull/60.patch + url: https://api.github.com/repos/packit/ogr/pulls/60 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-07-23T11:55:10Z' - url: https://api.github.com/repos/packit/ogr/issues/134 + title: Add method for creating comments on commits + updated_at: '2019-04-27T11:06:50Z' + url: https://api.github.com/repos/packit/ogr/issues/60 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "`PullRequest` class in abstract.py already has `status` field.\ - \ \r\n\r\nIn the case of Github, the set of values from API for this\ - \ field is `open`/`closed`/`all` and therefore there is missing value\ - \ `merged`. I added `is_merged` field into `PullRequest` class (since\ - \ it causes bugs in release-bot).\r\n\r\nI set the new `is_merged` field\ - \ also for Pagure." - closed_at: '2019-07-23T07:43:52Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/128/comments - created_at: '2019-07-18T10:12:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/128/events - html_url: https://github.com/packit/ogr/pull/128 - id: 469685206 + author_association: CONTRIBUTOR + body: 'Exsmple: https://github.com/dhodovsk/rsyslog/pull/1' + closed_at: '2019-04-27T11:05:13Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/59/comments + created_at: '2019-04-24T08:28:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/59/events + html_url: https://github.com/packit/ogr/pull/59 + id: 436563500 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/128/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/59/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk4ODQ0ODYy - number: 128 + node_id: MDExOlB1bGxSZXF1ZXN0MjczMDI1OTcw + number: 59 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/128.diff - html_url: https://github.com/packit/ogr/pull/128 - patch_url: https://github.com/packit/ogr/pull/128.patch - url: https://api.github.com/repos/packit/ogr/pulls/128 + diff_url: https://github.com/packit/ogr/pull/59.diff + html_url: https://github.com/packit/ogr/pull/59 + patch_url: https://github.com/packit/ogr/pull/59.patch + url: https://api.github.com/repos/packit/ogr/pulls/59 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add is_merged field into PullRequest - updated_at: '2019-07-23T07:43:52Z' - url: https://api.github.com/repos/packit/ogr/issues/128 + title: Implement adding PR comments + updated_at: '2019-04-27T11:05:13Z' + url: https://api.github.com/repos/packit/ogr/issues/59 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/marusinm + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Improve saving responses.\r\n - Use Singleton for `PersistentObjectStorage`.\r\ - \n - Enable saving responses by env-var (`RECORD_REQUESTS`).\r\n\ - - Add support for authentication as a github-app.\r\n\r\n\r\n-----\r\ - \n\r\n### Usage:\r\n- Set `RECORD_REQUESTS` env. variable to turn it\ - \ on and import services directly from ogr.\r\n - Use `from ogr import\ - \ PagureService`, not `from ogr.services.pagure import PagureService`.\r\ - \n - You can use the following code in the `__init__.py` to enable\ - \ mocking for whole module:\r\n ```python\r\n import os\r\n \ - \ os.environ[\"RECORD_REQUESTS\"] = \"TRUE\"\r\n ```\r\n- Set the\ - \ storage file name before the test:\r\n ```python\r\n PersistentObjectStorage().storage_file\ - \ = persistent_data_file\r\n ```\r\n - In OGR we are using file\ - \ per test -- we have the following code in the `setUp` in `TestCase`:\r\ - \n ```python\r\n test_name = self.id() or \"all\"\r\n \ - \ persistent_data_file = os.path.join(\r\n PERSISTENT_DATA_PREFIX,\ - \ f\"test_github_data_{test_name}.yaml\"\r\n )\r\n PersistentObjectStorage().storage_file\ - \ = persistent_data_file\r\n ```\r\n- You can use `PersistentObjectStorage().is_write_mode`\ - \ to check the mode.\r\n\r\n-----\r\n\r\nTODO:\r\n\r\n\r\n- [x] less\ - \ magic in ogr/__init__.py\r\n- ~~[ ] docs~~ will make a new PR\r\n\ - - ~~[ ] fix the test for github-app~~ I am having some problems with\ - \ python-crypto -- I can fix that later to not leave that here for so\ - \ long." - closed_at: '2019-07-23T07:42:32Z' - comments: 22 - comments_url: https://api.github.com/repos/packit/ogr/issues/113/comments - created_at: '2019-07-11T10:58:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/113/events - html_url: https://github.com/packit/ogr/pull/113 - id: 466821422 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/113/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-25T09:08:30Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/55/comments + created_at: '2019-04-08T13:30:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/55/events + html_url: https://github.com/packit/ogr/pull/55 + id: 430453106 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/55/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2NTkxMzkx - number: 113 + node_id: MDExOlB1bGxSZXF1ZXN0MjY4MzM3Mjk1 + number: 55 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/113.diff - html_url: https://github.com/packit/ogr/pull/113 - patch_url: https://github.com/packit/ogr/pull/113.patch - url: https://api.github.com/repos/packit/ogr/pulls/113 + diff_url: https://github.com/packit/ogr/pull/55.diff + html_url: https://github.com/packit/ogr/pull/55 + patch_url: https://github.com/packit/ogr/pull/55.patch + url: https://api.github.com/repos/packit/ogr/pulls/55 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Authentication as a github app and mocking upgrade - updated_at: '2019-07-23T07:42:46Z' - url: https://api.github.com/repos/packit/ogr/issues/113 + title: persistent storage for github class for testing ogr and packit + updated_at: '2019-04-25T09:09:03Z' + url: https://api.github.com/repos/packit/ogr/issues/55 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/jscotka - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - author_association: MEMBER - body: "It would be useful to have a method for getting the owner(s) of\ - \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ - \ `get_owners` and return list of strings." - closed_at: '2019-07-18T07:11:53Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments - created_at: '2019-06-26T07:44:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/88/events - html_url: https://github.com/packit/ogr/issues/88 - id: 460813032 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'https://pagure.io/pagure/issue/4427 + + + ``` + + $ pytest-3 -k test_fork + + === test session starts === + + platform linux -- Python 3.7.3, pytest-3.6.4, py-1.5.4, pluggy-0.6.0 + + rootdir: /home/tt/g/user-cont/ogr, inifile: + + plugins: cov-2.5.1 + + collected 76 items / 72 deselected + + + tests/integration/test_github.py s [ 25%] + + tests/integration/test_pagure.py .. [ 75%] + + tests/unit/test_pagure.py . [100%] + + + ==== 3 passed, 1 skipped, 72 deselected in 8.83 seconds === + + ```' + closed_at: '2019-04-15T14:09:04Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/57/comments + created_at: '2019-04-15T10:47:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/57/events + html_url: https://github.com/packit/ogr/pull/57 + id: 433214625 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/57/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA4MTMwMzI= - number: 88 + node_id: MDExOlB1bGxSZXF1ZXN0MjcwNDYzNzQ2 + number: 57 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/57.diff + html_url: https://github.com/packit/ogr/pull/57 + patch_url: https://github.com/packit/ogr/pull/57.patch + url: https://api.github.com/repos/packit/ogr/pulls/57 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add get_owner/get_owners method to project classes - updated_at: '2019-07-18T07:11:53Z' - url: https://api.github.com/repos/packit/ogr/issues/88 + title: 'pagure/get_urls: fill in {username}' + updated_at: '2019-04-15T14:09:10Z' + url: https://api.github.com/repos/packit/ogr/issues/57 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: Just copied labeling from issues and create the same for pull requests. - closed_at: '2019-07-18T05:03:03Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/122/comments - created_at: '2019-07-17T11:08:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/122/events - html_url: https://github.com/packit/ogr/pull/122 - id: 469130471 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/122/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-09T07:38:57Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/48/comments + created_at: '2019-03-26T14:15:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/48/events + html_url: https://github.com/packit/ogr/pull/48 + id: 425444570 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/48/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk4NDE5MTM2 - number: 122 + node_id: MDExOlB1bGxSZXF1ZXN0MjY0NTM4MDgx + number: 48 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/122.diff - html_url: https://github.com/packit/ogr/pull/122 - patch_url: https://github.com/packit/ogr/pull/122.patch - url: https://api.github.com/repos/packit/ogr/pulls/122 + diff_url: https://github.com/packit/ogr/pull/48.diff + html_url: https://github.com/packit/ogr/pull/48 + patch_url: https://github.com/packit/ogr/pull/48.patch + url: https://api.github.com/repos/packit/ogr/pulls/48 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add labeling github pull requests - updated_at: '2019-07-18T05:03:03Z' - url: https://api.github.com/repos/packit/ogr/issues/122 + title: Ogr Read only mode support with simple test + updated_at: '2019-04-09T07:58:35Z' + url: https://api.github.com/repos/packit/ogr/issues/48 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/marusinm + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #73 ' - closed_at: '2019-07-17T12:52:02Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/118/comments - created_at: '2019-07-15T08:21:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/118/events - html_url: https://github.com/packit/ogr/pull/118 - id: 467997614 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-01T12:20:57Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/40/comments + created_at: '2019-03-20T14:58:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/40/events + html_url: https://github.com/packit/ogr/pull/40 + id: 423299795 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/118/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/40/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTE0NDAy - number: 118 + node_id: MDExOlB1bGxSZXF1ZXN0MjYyOTAyNzA3 + number: 40 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/118.diff - html_url: https://github.com/packit/ogr/pull/118 - patch_url: https://github.com/packit/ogr/pull/118.patch - url: https://api.github.com/repos/packit/ogr/pulls/118 + diff_url: https://github.com/packit/ogr/pull/40.diff + html_url: https://github.com/packit/ogr/pull/40 + patch_url: https://github.com/packit/ogr/pull/40.patch + url: https://api.github.com/repos/packit/ogr/pulls/40 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: CommitStatus, PRStatus renamed to CommitFlag, PRFlag - updated_at: '2019-07-17T12:52:02Z' - url: https://api.github.com/repos/packit/ogr/issues/118 + title: 'WIP: Simulation' + updated_at: '2019-04-01T12:20:57Z' + url: https://api.github.com/repos/packit/ogr/issues/40 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "What about changing `CommitStatus`/`PullRequestStatus` to `CommitFlag`/`PullRequestFlag`?\r\ - \n\r\n_Original discussion: https://github.com/packit-service/ogr/pull/71#pullrequestreview-240461635_" - closed_at: '2019-07-17T12:52:02Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/73/comments - created_at: '2019-05-29T07:10:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/73/events - html_url: https://github.com/packit/ogr/issues/73 - id: 449635096 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* [packit] sync from downstream\ + \ branch 'master'\n* tests,is_forked: comment why and test for return\ + \ type\n* Update ogr/services/github.py\n* forges may allow forks of\ + \ forks\n* is_forked to return bool again\n* gh: use HTML URL instead\ + \ of API URL\n* pagure/fork_create to return PagureProject\n* Jirka\ + \ can't live w/o pre-commit\n* _release_from_github_object: nicer docstring\n\ + * implement forking interface for github\n* upgrade fork API\n* [tox.ini]\ + \ code coverage\n* [Jenkinsfile] parallel tasks vol. 2\n* [Jenkinsfile]\ + \ Run tests & linters/checkers in parallel\n* [Jenkinsfile] run pre-commit\n\ + * utilize kwargs.setdefault\n* Jirka <3 pre-commit\n* add parent prop\ + \ into api\n* Apply suggestions from code review\n* CONTRIBUTING.md\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.2.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-03-28T09:20:22Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/51/comments + created_at: '2019-03-27T09:03:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/51/events + html_url: https://github.com/packit/ogr/pull/51 + id: 425837436 labels: - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 + - color: ededed default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/73/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/51/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDk2MzUwOTY= - number: 73 + node_id: MDExOlB1bGxSZXF1ZXN0MjY0ODMyODQw + number: 51 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/51.diff + html_url: https://github.com/packit/ogr/pull/51 + patch_url: https://github.com/packit/ogr/pull/51.patch + url: https://api.github.com/repos/packit/ogr/pulls/51 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Change "Status" to "Flag" in the class names - updated_at: '2019-07-17T12:52:02Z' - url: https://api.github.com/repos/packit/ogr/issues/73 + title: 0.2.0 release + updated_at: '2019-03-28T09:22:01Z' + url: https://api.github.com/repos/packit/ogr/issues/51 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "EDIT (jpopelka): https://zuul-ci.org/docs/zuul/user/config.html#project\r\ - \nEDIT2 (jpopelka): http://post-office.corp.redhat.com/archives/user-cont/2019-July/msg00086.html" - closed_at: '2019-07-17T08:25:26Z' - comments: 28 - comments_url: https://api.github.com/repos/packit/ogr/issues/120/comments - created_at: '2019-07-15T11:53:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/120/events - html_url: https://github.com/packit/ogr/pull/120 - id: 468084884 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-27T09:03:50Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/50/comments + created_at: '2019-03-27T08:58:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/50/events + html_url: https://github.com/packit/ogr/issues/50 + id: 425835263 labels: - - color: 18e033 + - color: ededed default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/120/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/50/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTg1NDQ5 - number: 120 + node_id: MDU6SXNzdWU0MjU4MzUyNjM= + number: 50 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/120.diff - html_url: https://github.com/packit/ogr/pull/120 - patch_url: https://github.com/packit/ogr/pull/120.patch - url: https://api.github.com/repos/packit/ogr/pulls/120 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add zuul config - updated_at: '2019-07-17T12:32:37Z' - url: https://api.github.com/repos/packit/ogr/issues/120 + title: 0.2.0 release + updated_at: '2019-03-27T09:03:50Z' + url: https://api.github.com/repos/packit/ogr/issues/50 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -71737,710 +96019,415 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #111 ' - closed_at: '2019-07-17T07:14:35Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/114/comments - created_at: '2019-07-11T14:09:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/114/events - html_url: https://github.com/packit/ogr/pull/114 - id: 466916976 + author_association: CONTRIBUTOR + body: '* implement forking interface for github + + * upgrade fork API + + + Fixes #31' + closed_at: '2019-03-26T16:18:24Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/44/comments + created_at: '2019-03-25T14:39:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/44/events + html_url: https://github.com/packit/ogr/pull/44 + id: 424938659 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/114/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/44/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2NjcwNDMw - number: 114 + node_id: MDExOlB1bGxSZXF1ZXN0MjY0MTQ4NTky + number: 44 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/114.diff - html_url: https://github.com/packit/ogr/pull/114 - patch_url: https://github.com/packit/ogr/pull/114.patch - url: https://api.github.com/repos/packit/ogr/pulls/114 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: method create release for github created - updated_at: '2019-07-17T07:14:36Z' - url: https://api.github.com/repos/packit/ogr/issues/114 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "For `Github` we can get the releases:\r\nhttps://github.com/packit-service/ogr/blob/master/ogr/services/github.py#L571\r\ - \n\r\nWe need to also create a new release from API.\r\n\r\n---\r\n\r\ - \nRelevant documentation:\r\nhttps://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_git_release" - closed_at: '2019-07-17T07:14:35Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/111/comments - created_at: '2019-07-11T08:20:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/111/events - html_url: https://github.com/packit/ogr/issues/111 - id: 466738216 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/111/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NjY3MzgyMTY= - number: 111 - performed_via_github_app: null + diff_url: https://github.com/packit/ogr/pull/44.diff + html_url: https://github.com/packit/ogr/pull/44 + patch_url: https://github.com/packit/ogr/pull/44.patch + url: https://api.github.com/repos/packit/ogr/pulls/44 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Allow creating releases - updated_at: '2019-07-17T07:14:35Z' - url: https://api.github.com/repos/packit/ogr/issues/111 + title: m0ar forking + updated_at: '2019-03-27T08:37:30Z' + url: https://api.github.com/repos/packit/ogr/issues/44 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #103 ' - closed_at: '2019-07-16T13:56:45Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/119/comments - created_at: '2019-07-15T10:07:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/119/events - html_url: https://github.com/packit/ogr/pull/119 - id: 468043834 + author_association: CONTRIBUTOR + body: 'Downstream commit: 48f9c4254f4eb328740129f902c9836105cdc86c + + ' + closed_at: '2019-03-26T16:38:43Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/46/comments + created_at: '2019-03-25T22:24:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/46/events + html_url: https://github.com/packit/ogr/pull/46 + id: 425142588 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/119/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/46/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTUxNjYx - number: 119 + node_id: MDExOlB1bGxSZXF1ZXN0MjY0MzA5NDgy + number: 46 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/119.diff - html_url: https://github.com/packit/ogr/pull/119 - patch_url: https://github.com/packit/ogr/pull/119.patch - url: https://api.github.com/repos/packit/ogr/pulls/119 + diff_url: https://github.com/packit/ogr/pull/46.diff + html_url: https://github.com/packit/ogr/pull/46 + patch_url: https://github.com/packit/ogr/pull/46.patch + url: https://api.github.com/repos/packit/ogr/pulls/46 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: unused functions in utils.py removed - updated_at: '2019-07-16T13:56:45Z' - url: https://api.github.com/repos/packit/ogr/issues/119 + title: Update from downstream branch 'master' + updated_at: '2019-03-27T08:36:53Z' + url: https://api.github.com/repos/packit/ogr/issues/46 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "In #102, I've realized that most of the functions in [utils.py](https://github.com/packit-service/ogr/blob/master/ogr/utils.py)\ - \ are never used.\r\n\r\nWe need to go through the functions and check\ - \ if they are not used anywhere (please, control the packit codebase\ - \ as well) and remove the unused ones.\r\n\r\n----\r\n\r\nIn the other\ - \ hand, we can move here the [LocalProject](https://github.com/packit-service/packit/blob/master/packit/local_project.py)\ - \ or other git-related code from the Packit. Do we want OGR to be only\ - \ remote API or git-helper?" - closed_at: '2019-07-16T13:56:45Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/103/comments - created_at: '2019-07-09T09:27:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/103/events - html_url: https://github.com/packit/ogr/issues/103 - id: 465672061 - labels: - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/103/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NjU2NzIwNjE= - number: 103 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Clean the ogr/utils.py - updated_at: '2019-07-16T13:56:45Z' - url: https://api.github.com/repos/packit/ogr/issues/103 - user: - avatar_url: https://avatars1.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} + assignee: + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: COLLABORATOR - body: "Functions `get_release` and `get_releases` implemented in services/github.py\ - \ were missing in the abstract.py. I also fixed notes from PR #101 which\ - \ was added after PR was merged. \r\n\r\n**Edit:** I also added functionality\ - \ `get_releases` for Pagure in the second commit." - closed_at: '2019-07-15T11:44:25Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/117/comments - created_at: '2019-07-15T08:12:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/117/events - html_url: https://github.com/packit/ogr/pull/117 - id: 467994039 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/117/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTExNTgx - number: 117 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/117.diff - html_url: https://github.com/packit/ogr/pull/117 - patch_url: https://github.com/packit/ogr/pull/117.patch - url: https://api.github.com/repos/packit/ogr/pulls/117 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: add get_release/get_releases into abstract.py - updated_at: '2019-07-15T11:44:25Z' - url: https://api.github.com/repos/packit/ogr/issues/117 - user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + url: https://api.github.com/users/TomasTomecek + assignees: + - 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - - active_lock_reason: null - assignee: null - assignees: [] - author_association: COLLABORATOR - body: "In the case of Github, it is possible to get a repository's file\ - \ content via [API](https://developer.github.com/v3/repos/contents/#get-contents)\ - \ or [PyGithub lib](https://pygithub.readthedocs.io/en/latest/github_objects/ContentFile.html).\ - \ In the case of Pagure, I am not sure if it is possible. \r\n\r\n(I\ - \ need this for release-bot, I can hack it for now, but would be wonderful\ - \ to have such feature in ogr.)" - closed_at: '2019-07-13T18:50:35Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/115/comments - created_at: '2019-07-12T14:05:06Z' - events_url: https://api.github.com/repos/packit/ogr/issues/115/events - html_url: https://github.com/packit/ogr/issues/115 - id: 467432493 - labels: - - color: e4e669 - default: true - description: This doesn't seem right. - id: 1160311267 - name: invalid - node_id: MDU6TGFiZWwxMTYwMzExMjY3 - url: https://api.github.com/repos/packit/ogr/labels/invalid - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/115/labels{/name} + 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 + author_association: CONTRIBUTOR + body: "```\r\n if req.status_code != 200:\r\n LOG.error(output)\r\ + \n if 'error_code' in output:\r\n> raise APIError(output['error'])\r\ + \nE libpagure.exceptions.APIError: Repo \"forks/ttomecek/sen\"\ + \ already exists \r\n```\r\n\r\n```\r\n/home/tt/.local/lib/python3.7/site-packages/ogr/services/pagure.py:151:\ + \ in fork_create\r\n self._pagure.create_fork()\r\n/home/tt/.local/lib/python3.7/site-packages/ogr/services/our_pagure.py:254:\ + \ in create_fork \ + \ \r\n data={\"repo\": self.repo_name,\ + \ \"namespace\": self.namespace, \"wait\": True},\r\n```\r\n\r\nWDYT?" + closed_at: '2019-03-26T16:18:24Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/31/comments + created_at: '2019-03-07T09:18:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/31/events + html_url: https://github.com/packit/ogr/issues/31 + id: 418203993 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/31/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njc0MzI0OTM= - number: 115 + node_id: MDU6SXNzdWU0MTgyMDM5OTM= + number: 31 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Missing functionality for getting content of a file. - updated_at: '2019-07-13T18:50:35Z' - url: https://api.github.com/repos/packit/ogr/issues/115 + title: create_fork should not fail if the fork already exists + updated_at: '2019-03-26T16:18:24Z' + url: https://api.github.com/repos/packit/ogr/issues/31 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: services.github.py already can [list all releases](https://github.com/packit-service/ogr/blob/badeddd87032da354d411fff3365bb02e260571b/ogr/services/github.py#L656). - We need this for Pagure too. - closed_at: '2019-07-12T21:58:49Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/116/comments - created_at: '2019-07-12T14:55:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/116/events - html_url: https://github.com/packit/ogr/issues/116 - id: 467458155 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: cfd3d7 - default: true - description: This issue or pull request already exists - id: 1160311263 - name: duplicate - node_id: MDU6TGFiZWwxMTYwMzExMjYz - url: https://api.github.com/repos/packit/ogr/labels/duplicate - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/116/labels{/name} + author_association: MEMBER + body: '' + closed_at: '2019-03-26T08:51:03Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/47/comments + created_at: '2019-03-26T06:53:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/47/events + html_url: https://github.com/packit/ogr/pull/47 + id: 425253987 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/47/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njc0NTgxNTU= - number: 116 + node_id: MDExOlB1bGxSZXF1ZXN0MjY0Mzk0MTk2 + number: 47 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/47.diff + html_url: https://github.com/packit/ogr/pull/47 + patch_url: https://github.com/packit/ogr/pull/47.patch + url: https://api.github.com/repos/packit/ogr/pulls/47 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get_releases for Pagure - updated_at: '2019-07-12T21:59:06Z' - url: https://api.github.com/repos/packit/ogr/issues/116 + title: '[tox.ini] code coverage' + updated_at: '2019-03-26T08:51:06Z' + url: https://api.github.com/repos/packit/ogr/issues/47 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Implementation of getting project owners related to #88. \r\nAnd\ - \ getting users with permission for closing Issues and merging PR based\ - \ on [Github permissions](https://help.github.com/en/articles/repository-permission-levels-for-an-organization)\ - \ and [Pagure permissions](https://docs.pagure.org/pagure/usage/project_acls.html)\ - \ related to issue #100." - closed_at: '2019-07-12T07:51:41Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/101/comments - created_at: '2019-07-08T13:03:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/101/events - html_url: https://github.com/packit/ogr/pull/101 - id: 465245940 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/101/labels{/name} + author_association: MEMBER + body: '' + closed_at: '2019-03-26T06:42:32Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/45/comments + created_at: '2019-03-25T17:06:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/45/events + html_url: https://github.com/packit/ogr/pull/45 + id: 425016622 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/45/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk1MzI1ODUx - number: 101 + node_id: MDExOlB1bGxSZXF1ZXN0MjY0MjEwMTc2 + number: 45 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/101.diff - html_url: https://github.com/packit/ogr/pull/101 - patch_url: https://github.com/packit/ogr/pull/101.patch - url: https://api.github.com/repos/packit/ogr/pulls/101 + diff_url: https://github.com/packit/ogr/pull/45.diff + html_url: https://github.com/packit/ogr/pull/45 + patch_url: https://github.com/packit/ogr/pull/45.patch + url: https://api.github.com/repos/packit/ogr/pulls/45 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get project's owners and permissions of various users - updated_at: '2019-07-12T12:44:34Z' - url: https://api.github.com/repos/packit/ogr/issues/101 + title: '[Jenkinsfile] run pre-commit' + updated_at: '2019-03-26T06:42:35Z' + url: https://api.github.com/repos/packit/ogr/issues/45 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #74' - closed_at: '2019-07-11T08:48:44Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/106/comments - created_at: '2019-07-10T07:38:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/106/events - html_url: https://github.com/packit/ogr/pull/106 - id: 466149524 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/106/labels{/name} + author_association: CONTRIBUTOR + body: and implement it for github and pagure + closed_at: '2019-03-25T13:52:31Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/43/comments + created_at: '2019-03-23T20:58:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/43/events + html_url: https://github.com/packit/ogr/pull/43 + id: 424544327 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/43/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDQ2Mjc3 - number: 106 + node_id: MDExOlB1bGxSZXF1ZXN0MjYzODYxMDc4 + number: 43 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/106.diff - html_url: https://github.com/packit/ogr/pull/106 - patch_url: https://github.com/packit/ogr/pull/106.patch - url: https://api.github.com/repos/packit/ogr/pulls/106 + diff_url: https://github.com/packit/ogr/pull/43.diff + html_url: https://github.com/packit/ogr/pull/43 + patch_url: https://github.com/packit/ogr/pull/43.patch + url: https://api.github.com/repos/packit/ogr/pulls/43 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: link to GitTag from Release added - updated_at: '2019-07-11T08:48:44Z' - url: https://api.github.com/repos/packit/ogr/issues/106 + title: add parent prop into api + updated_at: '2019-03-25T13:52:57Z' + url: https://api.github.com/repos/packit/ogr/issues/43 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ - \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" - closed_at: '2019-07-11T08:48:44Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments - created_at: '2019-05-29T07:12:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/74/events - html_url: https://github.com/packit/ogr/issues/74 - id: 449635655 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-21T15:21:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/41/comments + created_at: '2019-03-21T14:47:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/41/events + html_url: https://github.com/packit/ogr/pull/41 + id: 423768837 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/41/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDk2MzU2NTU= - number: 74 + node_id: MDExOlB1bGxSZXF1ZXN0MjYzMjY2NDE3 + number: 41 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/41.diff + html_url: https://github.com/packit/ogr/pull/41 + patch_url: https://github.com/packit/ogr/pull/41.patch + url: https://api.github.com/repos/packit/ogr/pulls/41 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add a link to `GitTag` from `Release`. - updated_at: '2019-07-11T08:48:44Z' - url: https://api.github.com/repos/packit/ogr/issues/74 + title: bump spec to 0.1.0 + updated_at: '2019-03-23T20:14:13Z' + url: https://api.github.com/repos/packit/ogr/issues/41 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Fixes\r\n_DeprecationWarning: Using or importing the ABCs from\ - \ 'collections' instead of from 'collections.abc' is deprecated, and\ - \ in 3.8 it will stop working_" - closed_at: '2019-07-11T07:03:27Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/109/comments - created_at: '2019-07-10T14:24:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/109/events - html_url: https://github.com/packit/ogr/pull/109 - id: 466340777 + body: '' + closed_at: '2019-03-22T14:08:51Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/42/comments + created_at: '2019-03-21T16:38:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/42/events + html_url: https://github.com/packit/ogr/pull/42 + id: 423829259 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/109/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/42/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MTk4Nzc4 - number: 109 + node_id: MDExOlB1bGxSZXF1ZXN0MjYzMzE0NzEw + number: 42 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/109.diff - html_url: https://github.com/packit/ogr/pull/109 - patch_url: https://github.com/packit/ogr/pull/109.patch - url: https://api.github.com/repos/packit/ogr/pulls/109 + diff_url: https://github.com/packit/ogr/pull/42.diff + html_url: https://github.com/packit/ogr/pull/42 + patch_url: https://github.com/packit/ogr/pull/42.patch + url: https://api.github.com/repos/packit/ogr/pulls/42 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: collections.Hashable -> collections.abc.Hashable - updated_at: '2019-07-11T07:53:20Z' - url: https://api.github.com/repos/packit/ogr/issues/109 + title: CONTRIBUTING.md + updated_at: '2019-03-22T14:08:54Z' + url: https://api.github.com/repos/packit/ogr/issues/42 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -72454,263 +96441,250 @@ requests.sessions: received_events_url: https://api.github.com/users/jpopelka/received_events repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: With these changes, `packit srpm` should *just work*. + closed_at: '2019-03-18T14:00:44Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/35/comments + created_at: '2019-03-18T13:17:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/35/events + html_url: https://github.com/packit/ogr/pull/35 + id: 422212338 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/35/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjYyMDUxMjgx + number: 35 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/35.diff + html_url: https://github.com/packit/ogr/pull/35 + patch_url: https://github.com/packit/ogr/pull/35.patch + url: https://api.github.com/repos/packit/ogr/pulls/35 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: update packit.yaml to reflect packit==0.2.0 + updated_at: '2019-03-18T18:34:17Z' + url: https://api.github.com/repos/packit/ogr/issues/35 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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/jpopelka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: See https://github.com/packit-service/packit/pull/407 - closed_at: '2019-07-10T12:56:20Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/108/comments - created_at: '2019-07-10T12:47:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/108/events - html_url: https://github.com/packit/ogr/pull/108 - id: 466289238 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/108/labels{/name} + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n\n### Other\n\n* Utilize\ + \ gitchangelog feature of r-bot. [Tomas Tomecek]\n\n* Merge pull request\ + \ #35 from TomasTomecek/update-packit-yaml. [Tomas Tomecek]\n\n update\ + \ packit.yaml to reflect packit==0.2.0\n\n* Update packit.yaml to reflect\ + \ packit==0.2.0. [Tomas Tomecek]\n\n* Merge pull request #34 from jpopelka/no-dimensions.\ + \ [Jiri Popelka]\n\n pre-commit config & black/Flake8/mypy fixes\n\n\ + * Black & Flake8 & mypy fixes. [Jiri Popelka]\n\n* .pre-commit-config.yaml.\ + \ [Jiri Popelka]\n\n* Merge pull request #32 from packit-service/releases.\ + \ [Jiri Popelka]\n\n Releases\n\n* Add test and docs for GitHub releases.\ + \ [Radoslav Pitonak]\n\n* Add releases for github. [Frantisek Lachman]\n\ + \n* Merge pull request #27 from jpopelka/ci. [Jiri Popelka]\n\n Tox\ + \ & Jenkinsfile\n\n* Jenkinsfile. [Jiri Popelka]\n\n* Tox. [Jiri Popelka]\n\ + \n* [Makefile] no sudo. [Jiri Popelka]\n\n* Enum -> IntEnum. [Jiri Popelka]\n\ + \n* Merge pull request #30 from jscotka/test_integration_skip. [Jiri\ + \ Popelka]\n\n [integration tests] skip whole module if not all env.\ + \ variables set\n\n* Move skip_tests() to conftest.py. [Jiri Popelka]\n\ + \n* Create better function to skip tests. [Jan Scotka]\n\n* Add skip\ + \ decorators to skip whole module in case of integration tests in case\ + \ env vars are not typed. [Jan Scotka]\n\n* Merge pull request #28 from\ + \ TomasTomecek/add-packit. [Tomas Tomecek]\n\n add packit config\n\n\ + * Add packit config. [Tomas Tomecek]\n\n\n\n\nYou can change it by editing\ + \ `CHANGELOG.md` in the root of this repository and pushing to `0.1.0-release`\ + \ branch before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2019-03-18T17:58:28Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/39/comments + created_at: '2019-03-18T17:45:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/39/events + html_url: https://github.com/packit/ogr/pull/39 + id: 422351830 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/39/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MTU3NzYy - number: 108 + node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTYxMjI4 + number: 39 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/108.diff - html_url: https://github.com/packit/ogr/pull/108 - patch_url: https://github.com/packit/ogr/pull/108.patch - url: https://api.github.com/repos/packit/ogr/pulls/108 + diff_url: https://github.com/packit/ogr/pull/39.diff + html_url: https://github.com/packit/ogr/pull/39 + patch_url: https://github.com/packit/ogr/pull/39.patch + url: https://api.github.com/repos/packit/ogr/pulls/39 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Make PersistentObjectStorage.__init__() backwards compatible - updated_at: '2019-07-10T12:56:33Z' - url: https://api.github.com/repos/packit/ogr/issues/108 + title: 0.1.0 release + updated_at: '2019-03-18T18:00:48Z' + url: https://api.github.com/repos/packit/ogr/issues/39 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=13: - - metadata: - latency: 0.604485034942627 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #52' - closed_at: '2019-07-10T07:35:48Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/105/comments - created_at: '2019-07-10T07:09:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/105/events - html_url: https://github.com/packit/ogr/pull/105 - id: 466138321 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/105/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-18T17:45:29Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/36/comments + created_at: '2019-03-18T16:53:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/36/events + html_url: https://github.com/packit/ogr/issues/36 + id: 422327353 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/36/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDM3NjM1 - number: 105 + node_id: MDU6SXNzdWU0MjIzMjczNTM= + number: 36 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/105.diff - html_url: https://github.com/packit/ogr/pull/105 - patch_url: https://github.com/packit/ogr/pull/105.patch - url: https://api.github.com/repos/packit/ogr/pulls/105 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: in get_file_content catch only 404 - updated_at: '2019-07-10T07:40:13Z' - url: https://api.github.com/repos/packit/ogr/issues/105 + title: new minor release + updated_at: '2019-03-18T17:45:29Z' + url: https://api.github.com/repos/packit/ogr/issues/36 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "Just spent some time debugging an issue where packit.yaml was not\ - \ found while being 100 % it's in there.\r\n\r\nIt turned out that my\ - \ token was incorrect and github kept throwing 401: that should bubble\ - \ up, we should catch 404 only. " - closed_at: '2019-07-10T07:35:48Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/52/comments - created_at: '2019-03-27T21:00:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/52/events - html_url: https://github.com/packit/ogr/issues/52 - id: 426181525 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\nNo changelog provided\n\n\ + You can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.1.0-release` branch before merging this PR.\nI didn't\ + \ find any files where `__version__` is set." + closed_at: '2019-03-18T17:44:20Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/38/comments + created_at: '2019-03-18T17:28:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/38/events + html_url: https://github.com/packit/ogr/pull/38 + id: 422343992 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/52/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/38/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjYxODE1MjU= - number: 52 + node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTU1MTM0 + number: 38 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/38.diff + html_url: https://github.com/packit/ogr/pull/38 + patch_url: https://github.com/packit/ogr/pull/38.patch + url: https://api.github.com/repos/packit/ogr/pulls/38 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'get_file_content: catch only 404, raise everything else' - updated_at: '2019-07-10T07:35:48Z' - url: https://api.github.com/repos/packit/ogr/issues/52 + title: 0.1.0 release + updated_at: '2019-03-18T17:44:28Z' + url: https://api.github.com/repos/packit/ogr/issues/38 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -72729,176 +96703,157 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - author_association: COLLABORATOR - body: 'Based on our discussion on Issue #79, there is no functionality - in ogr for commenting on Github/Pagure issues.' - closed_at: '2019-07-10T06:57:03Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/80/comments - created_at: '2019-06-19T07:21:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/80/events - html_url: https://github.com/packit/ogr/issues/80 - id: 457847996 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* update packit.yaml to\ + \ reflect packit==0.2.0\n* black & Flake8 & mypy fixes\n* .pre-commit-config.yaml\n\ + * add test and docs for GitHub releases\n* Add releases for github\n\ + * Jenkinsfile\n* Tox\n* [Makefile] no sudo\n* Enum -> IntEnum\n* Move\ + \ skip_tests() to conftest.py\n* create better function to skip tests.\n\ + * add skip decorators to skip whole module in case of integration tests\ + \ in case env vars are not typed\n* add packit config\n\n\nYou can change\ + \ it by editing `CHANGELOG.md` in the root of this repository and pushing\ + \ to `0.1.0-release` branch before merging this PR.\nI didn't find any\ + \ files where `__version__` is set." + closed_at: '2019-03-18T16:58:25Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/37/comments + created_at: '2019-03-18T16:54:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/37/events + html_url: https://github.com/packit/ogr/pull/37 + id: 422328099 labels: - - color: a2eeef + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/80/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/37/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTc4NDc5OTY= - number: 80 + node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTQyNjc3 + number: 37 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/37.diff + html_url: https://github.com/packit/ogr/pull/37 + patch_url: https://github.com/packit/ogr/pull/37.patch + url: https://api.github.com/repos/packit/ogr/pulls/37 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Commenting on Issues - updated_at: '2019-07-10T06:57:03Z' - url: https://api.github.com/repos/packit/ogr/issues/80 + title: 0.1.0 release + updated_at: '2019-03-18T17:26:48Z' + url: https://api.github.com/repos/packit/ogr/issues/37 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos - site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions - type: User - url: https://api.github.com/users/shreyanshrs44 - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-03-15T13:51:22Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/34/comments + created_at: '2019-03-15T11:27:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/34/events + html_url: https://github.com/packit/ogr/pull/34 + id: 421473951 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/34/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjYxNTE1NjA5 + number: 34 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/34.diff + html_url: https://github.com/packit/ogr/pull/34 + patch_url: https://github.com/packit/ogr/pull/34.patch + url: https://api.github.com/repos/packit/ogr/pulls/34 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: pre-commit config & black/Flake8/mypy fixes + updated_at: '2019-03-15T13:51:25Z' + url: https://api.github.com/repos/packit/ogr/issues/34 + 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/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + 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/shreyanshrs44 + url: https://api.github.com/users/jpopelka + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: It would be nice to implement `__str__` methods for all classes - (e.g. `GithubProject`, `Issue`,...). - closed_at: '2019-07-10T06:51:37Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments - created_at: '2019-06-27T10:29:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/90/events - html_url: https://github.com/packit/ogr/issues/90 - id: 461449910 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} + body: "- Added object representation for GitHub releases.\r\n- What about\ + \ pagure? Is there anything that can be used?" + closed_at: '2019-03-15T09:41:59Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/32/comments + created_at: '2019-03-12T13:35:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/32/events + html_url: https://github.com/packit/ogr/pull/32 + id: 419989710 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/32/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE0NDk5MTA= - number: 90 + node_id: MDExOlB1bGxSZXF1ZXN0MjYwMzY1NTk1 + number: 32 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/32.diff + html_url: https://github.com/packit/ogr/pull/32 + patch_url: https://github.com/packit/ogr/pull/32.patch + url: https://api.github.com/repos/packit/ogr/pulls/32 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: String representations for classes - updated_at: '2019-07-10T06:51:37Z' - url: https://api.github.com/repos/packit/ogr/issues/90 + title: Releases + updated_at: '2019-03-15T09:42:04Z' + url: https://api.github.com/repos/packit/ogr/issues/32 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -72921,263 +96876,437 @@ requests.sessions: assignees: [] author_association: MEMBER body: '' - closed_at: '2019-07-09T13:56:31Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/104/comments - created_at: '2019-07-09T11:05:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/104/events - html_url: https://github.com/packit/ogr/pull/104 - id: 465717381 + closed_at: '2019-03-05T17:01:01Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/27/comments + created_at: '2019-03-01T16:03:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/27/events + html_url: https://github.com/packit/ogr/pull/27 + id: 416169456 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/104/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/27/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk1NzAyNDc0 - number: 104 + node_id: MDExOlB1bGxSZXF1ZXN0MjU3NDk2Mjcz + number: 27 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/104.diff - html_url: https://github.com/packit/ogr/pull/104 - patch_url: https://github.com/packit/ogr/pull/104.patch - url: https://api.github.com/repos/packit/ogr/pulls/104 + diff_url: https://github.com/packit/ogr/pull/27.diff + html_url: https://github.com/packit/ogr/pull/27 + patch_url: https://github.com/packit/ogr/pull/27.patch + url: https://api.github.com/repos/packit/ogr/pulls/27 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: unify external command invocation - fix - updated_at: '2019-07-09T13:56:31Z' - url: https://api.github.com/repos/packit/ogr/issues/104 + title: Tox & Jenkinsfile + updated_at: '2019-03-05T17:01:04Z' + url: https://api.github.com/repos/packit/ogr/issues/27 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #33 ' - closed_at: '2019-07-09T09:29:53Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-05T15:25:00Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/102/comments - created_at: '2019-07-09T08:49:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/102/events - html_url: https://github.com/packit/ogr/pull/102 - id: 465652910 + comments_url: https://api.github.com/repos/packit/ogr/issues/30/comments + created_at: '2019-03-04T14:02:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/30/events + html_url: https://github.com/packit/ogr/pull/30 + id: 416815413 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/102/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/30/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk1NjUwMTA5 - number: 102 + node_id: MDExOlB1bGxSZXF1ZXN0MjU3OTUzMjI1 + number: 30 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/102.diff - html_url: https://github.com/packit/ogr/pull/102 - patch_url: https://github.com/packit/ogr/pull/102.patch - url: https://api.github.com/repos/packit/ogr/pulls/102 + diff_url: https://github.com/packit/ogr/pull/30.diff + html_url: https://github.com/packit/ogr/pull/30 + patch_url: https://github.com/packit/ogr/pull/30.patch + url: https://api.github.com/repos/packit/ogr/pulls/30 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: unify external command invocation - updated_at: '2019-07-09T10:49:16Z' - url: https://api.github.com/repos/packit/ogr/issues/102 + title: '[integration tests] skip whole module if not all env. variables + set' + updated_at: '2019-03-05T15:25:01Z' + url: https://api.github.com/repos/packit/ogr/issues/30 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/jscotka - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-01T17:19:12Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/28/comments + created_at: '2019-03-01T16:44:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/28/events + html_url: https://github.com/packit/ogr/pull/28 + id: 416187270 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/28/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjU3NTEwNDk4 + number: 28 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/28.diff + html_url: https://github.com/packit/ogr/pull/28 + patch_url: https://github.com/packit/ogr/pull/28.patch + url: https://api.github.com/repos/packit/ogr/pulls/28 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add packit config + updated_at: '2019-03-01T17:19:16Z' + url: https://api.github.com/repos/packit/ogr/issues/28 + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova - assignees: - - avatar_url: https://avatars3.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} + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.472088 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:24 GMT + ETag: W/"223dfa64632dca637fe2044a41e29261036c6fe5cd5c1294a20e20d19c7d3c5c" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7F5DA:191A90D:6075DC37 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4751' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '249' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=19: + - metadata: + latency: 0.2875034809112549 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\nNo changelog provided\n\n\ + You can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.1.0-release` branch before merging this PR.\nI didn't\ + \ find any files where `__version__` is set." + closed_at: '2019-03-01T16:41:07Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/26/comments + created_at: '2019-03-01T15:56:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/26/events + html_url: https://github.com/packit/ogr/pull/26 + id: 416166108 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/26/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjU3NDkzNTkx + number: 26 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/26.diff + html_url: https://github.com/packit/ogr/pull/26 + patch_url: https://github.com/packit/ogr/pull/26.patch + url: https://api.github.com/repos/packit/ogr/pulls/26 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.1.0 release + updated_at: '2019-03-01T16:49:43Z' + url: https://api.github.com/repos/packit/ogr/issues/26 + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova - author_association: MEMBER - body: "utils.py uses several different approaches to invoke an external\ - \ command:\r\n\r\n* [subprocess.Popen](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L103)\r\ - \n* [subprocess.check_call](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L122)\r\ - \n* [subprocess.check_output](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L171)\r\ - \n\r\nThe recommended approach (since Python 3.5) is to use [subprocess.run](https://docs.python.org/3/library/subprocess.html#subprocess.run).\r\ - \n\r\nAlso, there's lots of external libraries for this use case:\r\n\ - * http://amoffat.github.io/sh/\r\n* https://www.pyinvoke.org/\r\n* https://plumbum.readthedocs.io\r\ - \n* https://pexpect.readthedocs.io" - closed_at: '2019-07-09T09:29:53Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/33/comments - created_at: '2019-03-14T13:51:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/33/events - html_url: https://github.com/packit/ogr/issues/33 - id: 421030116 + url: https://api.github.com/users/usercont-release-bot + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "we need this b/c 0.0.2 doesn't have specfile\r\n\r\nand I want\ + \ to use packit to bring the release to fedora" + closed_at: '2019-03-01T15:56:25Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/25/comments + created_at: '2019-03-01T15:52:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/25/events + html_url: https://github.com/packit/ogr/issues/25 + id: 416164397 labels: - - color: a2eeef + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/25/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MTYxNjQzOTc= + number: 25 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.1.0 release + updated_at: '2019-03-01T16:19:00Z' + url: https://api.github.com/repos/packit/ogr/issues/25 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* add RPM spec file\n* [release-conf.yaml]\ + \ remove deprecated python_versions\n* Remove dataclasses\n* Use strings\ + \ for type annotations\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.0.3-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2019-02-28T11:45:58Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/24/comments + created_at: '2019-02-28T10:42:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/24/events + html_url: https://github.com/packit/ogr/pull/24 + id: 415557542 + labels: + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/33/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/24/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjEwMzAxMTY= - number: 33 + node_id: MDExOlB1bGxSZXF1ZXN0MjU3MDE3MDgz + number: 24 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/24.diff + html_url: https://github.com/packit/ogr/pull/24 + patch_url: https://github.com/packit/ogr/pull/24.patch + url: https://api.github.com/repos/packit/ogr/pulls/24 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Unify external command invocation - updated_at: '2019-07-09T09:29:53Z' - url: https://api.github.com/repos/packit/ogr/issues/33 + title: 0.0.3 release + updated_at: '2019-02-28T12:07:04Z' + url: https://api.github.com/repos/packit/ogr/issues/24 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Add method for creating projects from url.\r\n- Get project from\ - \ url.\r\n\r\n\r\nTODO:\r\n\r\n- [x] add a way to use existing service\ - \ classes\r\n- [x] add a way to update mapping by user\r\n- [ ] consider\ - \ implementing API checks if we cannot find a match in mapping\r\n-\ - \ [x] tests\r\n - [x] make the `github_repo` lazy for easier testing\r\ - \n - [x] tests for geting project/service class from url\r\n -\ - \ [x] tests for parsing\r\n\r\n----\r\n\r\nHow to test?\r\n\r\n```python\r\ - \nfrom ogr import get_service_class\r\n\r\nget_service_class(url=\"\ - github.com/packit-service/ogr\")\r\nget_service_class(url=\"src.fedoraproject.org/rpms/python-ogr\"\ - )\r\n```\r\n```python\r\nfrom ogr import get_project\r\nfrom ogr import\ - \ GithubService, PagureService\r\n\r\nget_project(\r\n url=\"src.fedoraproject.org/rpms/python-ogr\"\ - ,\r\n custom_instances=[\r\n GithubService(token=\"asda\"\ - ),\r\n PagureService(instance_url=\"pagure.io\", token=\"qwe\"\ - ),\r\n PagureService(instance_url=\"src.fedoraproject.org\",\ - \ token=\"asdaasda\"),\r\n ],\r\n)\r\n\r\n```" - closed_at: '2019-07-03T13:12:23Z' - comments: 13 - comments_url: https://api.github.com/repos/packit/ogr/issues/95/comments - created_at: '2019-06-28T08:30:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/95/events - html_url: https://github.com/packit/ogr/pull/95 - id: 461920354 + body: Release bot, please! + closed_at: '2019-02-28T10:42:18Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/23/comments + created_at: '2019-02-28T10:39:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/23/events + html_url: https://github.com/packit/ogr/issues/23 + id: 415556376 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db + - color: ededed default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/95/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/23/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyNzM4MzEx - number: 95 + node_id: MDU6SXNzdWU0MTU1NTYzNzY= + number: 23 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/95.diff - html_url: https://github.com/packit/ogr/pull/95 - patch_url: https://github.com/packit/ogr/pull/95.patch - url: https://api.github.com/repos/packit/ogr/pulls/95 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Methods for creating projects from url - updated_at: '2019-07-03T13:20:09Z' - url: https://api.github.com/repos/packit/ogr/issues/95 + title: 0.0.3 release + updated_at: '2019-02-28T10:42:18Z' + url: https://api.github.com/repos/packit/ogr/issues/23 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -73198,86 +97327,154 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Related to #80\r\n\r\nThis PR contains functionality for Pagure\ - \ issues except for tagging issues. I had some problems with tagging,\ - \ therefore, I'll create separated PR for it.\r\n\r\nIf I am right I\ - \ have to set Pagure token for creating yaml test-files. We can manage\ - \ that in private chat, then I'll add tests." - closed_at: '2019-07-02T11:56:47Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/99/comments - created_at: '2019-06-30T21:39:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/99/events - html_url: https://github.com/packit/ogr/pull/99 - id: 462449449 + author_association: CONTRIBUTOR + body: "# how to test\r\n```\r\ngit checkout 0.0.2\r\npython3 ./setup.py\ + \ sdist\r\nmv ./dist/ogr-0.0.2.tar.gz .\r\nrpmbuild ./*.spec --define\ + \ \"_sourcedir ${PWD}\" --define \"_specdir ${PWD}\" --define \"_builddir\ + \ ${PWD}\" --define \"_srcrpmdir ${PWD}\" --define \"_rpmdir ${PWD}\"\ + \ -bs\r\nfedora-review -n python-ogr -m fedora-29-x86_64\r\n```\r\n\r\ + \nOnce merged, I'll open a Fedora review for ogr. Franta could do it\ + \ so he can get the pkgr perms." + closed_at: '2019-02-27T11:38:20Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/22/comments + created_at: '2019-02-26T17:11:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/22/events + html_url: https://github.com/packit/ogr/pull/22 + id: 414722729 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/99/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/22/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkzMTM0Mjcw - number: 99 + node_id: MDExOlB1bGxSZXF1ZXN0MjU2MzcxNDM2 + number: 22 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/99.diff - html_url: https://github.com/packit/ogr/pull/99 - patch_url: https://github.com/packit/ogr/pull/99.patch - url: https://api.github.com/repos/packit/ogr/pulls/99 + diff_url: https://github.com/packit/ogr/pull/22.diff + html_url: https://github.com/packit/ogr/pull/22 + patch_url: https://github.com/packit/ogr/pull/22.patch + url: https://api.github.com/repos/packit/ogr/pulls/22 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: creating/closing/commenting Pagure Issues - updated_at: '2019-07-02T11:56:47Z' - url: https://api.github.com/repos/packit/ogr/issues/99 + title: add RPM spec file + updated_at: '2019-02-27T11:38:24Z' + url: https://api.github.com/repos/packit/ogr/issues/22 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/TomasTomecek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n138 Bytecompiling .py files below /builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6\ + \ using /usr/bin/python3.6\r\n139 *** Error compiling '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/abstract.py'...\r\ + \n140 File \"/usr/lib/python3.6/abstract.py\", line 1\r\n141 SyntaxError:\ + \ future feature annotations is not defined\r\n142 *** Error compiling\ + \ '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/services/github.py'...\r\ + \n143 File \"/usr/lib/python3.6/github.py\", line 1\r\n144 SyntaxError:\ + \ future feature annotations is not defined\r\n145 *** Error compiling\ + \ '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/services/pagure.py'...\r\ + \n146 File \"/usr/lib/python3.6/pagure.py\", line 1\r\n147 SyntaxError:\ + \ future feature annotations is not defined\r\n```\r\n" + closed_at: '2019-02-27T08:38:17Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/21/comments + created_at: '2019-02-26T17:08:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/21/events + html_url: https://github.com/packit/ogr/issues/21 + id: 414721039 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/21/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MTQ3MjEwMzk= + number: 21 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: ogr doesn't work with python3.6 + updated_at: '2019-02-27T08:38:17Z' + url: https://api.github.com/repos/packit/ogr/issues/21 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER body: '' - closed_at: '2019-06-11T15:21:02Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/78/comments - created_at: '2019-06-11T14:33:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/78/events - html_url: https://github.com/packit/ogr/pull/78 - id: 454727768 + closed_at: '2019-02-26T10:21:46Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/20/comments + created_at: '2019-02-26T08:21:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/20/events + html_url: https://github.com/packit/ogr/pull/20 + id: 414485102 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/78/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/20/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjg3MTIwMTYy - number: 78 + node_id: MDExOlB1bGxSZXF1ZXN0MjU2MTgzNjIz + number: 20 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/78.diff - html_url: https://github.com/packit/ogr/pull/78 - patch_url: https://github.com/packit/ogr/pull/78.patch - url: https://api.github.com/repos/packit/ogr/pulls/78 + diff_url: https://github.com/packit/ogr/pull/20.diff + html_url: https://github.com/packit/ogr/pull/20 + patch_url: https://github.com/packit/ogr/pull/20.patch + url: https://api.github.com/repos/packit/ogr/pulls/20 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[spec] bump to 0.4.0' - updated_at: '2019-07-01T13:06:37Z' - url: https://api.github.com/repos/packit/ogr/issues/78 + title: '[release-conf.yaml] remove deprecated python_versions' + updated_at: '2019-02-26T10:21:48Z' + url: https://api.github.com/repos/packit/ogr/issues/20 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -73299,36 +97496,34 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "- Fix formating for __str__ methods.\r\n- Changes requested to_str_method\ - \ of classes. @shreyanshrs44\r\n- Added instantiation-like syntax. @shreyanshrs44\r\ - \n- Added __str__ method to classes. @shreyanshrs44\r\n- Added __str__\ - \ method to classes. @shreyanshrs44\r\n\r\nFixed version of #93 " - closed_at: '2019-06-28T13:26:06Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/98/comments - created_at: '2019-06-28T12:20:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/98/events - html_url: https://github.com/packit/ogr/pull/98 - id: 462007848 + body: "- Remove future import for annotations => python3.6 compatibility.\r\ + \n\r\nResolves #13 " + closed_at: '2019-02-19T14:31:38Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/18/comments + created_at: '2019-02-19T07:24:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/18/events + html_url: https://github.com/packit/ogr/pull/18 + id: 411781030 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/98/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/18/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyODA5MjI0 - number: 98 + node_id: MDExOlB1bGxSZXF1ZXN0MjU0MTQyMzQ0 + number: 18 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/98.diff - html_url: https://github.com/packit/ogr/pull/98 - patch_url: https://github.com/packit/ogr/pull/98.patch - url: https://api.github.com/repos/packit/ogr/pulls/98 + diff_url: https://github.com/packit/ogr/pull/18.diff + html_url: https://github.com/packit/ogr/pull/18 + patch_url: https://github.com/packit/ogr/pull/18.patch + url: https://api.github.com/repos/packit/ogr/pulls/18 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Added __str__ method to classes. (new) - updated_at: '2019-06-28T13:26:15Z' - url: https://api.github.com/repos/packit/ogr/issues/98 + title: Use strings for type annotations + updated_at: '2019-02-19T14:35:24Z' + url: https://api.github.com/repos/packit/ogr/issues/18 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -73349,83 +97544,80 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: "I have added __str__ method to classes in /ogr/services/github.py\ - \ , /ogr/services/gitlab.py, /ogr/services/pagure.py.\r\nPlease have\ - \ a look and give feedback on necessary changes.\r\nI have not touched\ - \ the classes inside /ogr/abstract.py as it containes __str__ method\ - \ for most of classes in it. " - closed_at: '2019-06-28T12:23:38Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/93/comments - created_at: '2019-06-27T12:17:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/93/events - html_url: https://github.com/packit/ogr/pull/93 - id: 461495461 + author_association: CONTRIBUTOR + body: "after installing `ogr` via ``pip3 install .``\r\nI wanted to run\ + \ make check ``PYTHONPATH=`pwd` pytest-3 -v ./tests/``\r\n\r\nit leads\ + \ to errors like:\r\n```\r\nE File \"/home/jscotka/git/userspace-containerization/ogr/ogr/abstract.py\"\ + , line 1\r\nE from __future__ import annotations\r\nE \ + \ ^\r\nE SyntaxError: future feature\ + \ annotations is not defined\r\n```\r\n\r\nseems that annotations module\ + \ is not accessible in ``python3-3.6.8-1.fc28.x86_64`` by default\r\n" + closed_at: '2019-02-19T14:31:38Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/13/comments + created_at: '2019-02-15T12:46:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/13/events + html_url: https://github.com/packit/ogr/issues/13 + id: 410754451 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/93/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/13/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyNDA3Mjc3 - number: 93 + node_id: MDU6SXNzdWU0MTA3NTQ0NTE= + number: 13 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/93.diff - html_url: https://github.com/packit/ogr/pull/93 - patch_url: https://github.com/packit/ogr/pull/93.patch - url: https://api.github.com/repos/packit/ogr/pulls/93 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Added __str__ method to classes. - updated_at: '2019-06-28T12:23:38Z' - url: https://api.github.com/repos/packit/ogr/issues/93 + title: missing annotations library for testing + updated_at: '2019-02-19T14:31:38Z' + url: https://api.github.com/repos/packit/ogr/issues/13 user: - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/shreyanshrs44 + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Add response file for\ - \ test_update_pr_info for github\n* Skip the update_pr for pagure, since\ - \ we have no token for generating response files\n* exceptions changed\n\ - * update_pr_info methods created, wip\n* Add MIT headers to code files\n\ - * Add tests for creating forks\n* Allow saving multiple responses\n\ - * Add get_projects/get_forks to user; add get_forks to project\n* [pagure]\ - \ Fix fork tests\n* [pagure] Fix user in fork part of url\n* Better\ - \ get_fork for pagure\n* Better get_fork for github\n* Fix formating\ - \ from the previous PR\n* [pagure] Use empty dict as a default header\n\ - * creating, closing, labeling Github Issues\n* get info and comment\ - \ Github Issues\n* Document the test generation\n* Add Makefile targets\ - \ for removing response files\n* Determine forcewrite mode from file\ - \ existance\n* Rename @readonly to @if_readonly\n* [spec] bump to 0.4.0\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.5.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-06-28T09:40:08Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/97/comments - created_at: '2019-06-28T08:43:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/97/events - html_url: https://github.com/packit/ogr/pull/97 - id: 461925608 + \ is the changelog I created:\n### Changes\n* 0.0.2 release\n* 0.0.2\ + \ release\n* 0.0.2 release\n* [README] Requirements\n* [make check]\ + \ colors & showlocals\n* Add release-conf.yaml\n* Add new url\n* Fix\ + \ the name meaning\n* Move 'packages' from setup.py to setup.cfg\n*\ + \ Rename confusing pagure parameter\n* Fix some styling\n* Correct get_file_content\n\ + * Correct Pagure tests\n* Add API for file content\n* Add tests for\ + \ github\n* Rework github implementation\n* Fix tests and cyclic imports\n\ + * Remove duplicated test\n* Add annotations\n* Do not use pagure instance\ + \ publically\n* Add change_token for Servise and Project classes\n*\ + \ Add unit tests for comment filter/search functions\n* Extract comment\ + \ filter/search methods\n* Add integration tests for pr-comments and\ + \ skip test_create_fork\n* Improve pr-comments API\n* Add method for\ + \ filtering comments in pr\n* Fix pr_info and pr_comment content\n\n\ + \nYou can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.0.2-release` branch before merging this PR.\nI didn't\ + \ find any files where `__version__` is set." + closed_at: '2019-02-19T04:56:59Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/16/comments + created_at: '2019-02-18T09:07:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/16/events + html_url: https://github.com/packit/ogr/pull/16 + id: 411369684 labels: - color: ededed default: false @@ -73441,24 +97633,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/97/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/16/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyNzQyNDQ2 - number: 97 + node_id: MDExOlB1bGxSZXF1ZXN0MjUzODMzNjM0 + number: 16 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/97.diff - html_url: https://github.com/packit/ogr/pull/97 - patch_url: https://github.com/packit/ogr/pull/97.patch - url: https://api.github.com/repos/packit/ogr/pulls/97 + diff_url: https://github.com/packit/ogr/pull/16.diff + html_url: https://github.com/packit/ogr/pull/16 + patch_url: https://github.com/packit/ogr/pull/16.patch + url: https://api.github.com/repos/packit/ogr/pulls/16 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.5.0 release - updated_at: '2019-06-28T09:45:09Z' - url: https://api.github.com/repos/packit/ogr/issues/97 + title: 0.0.2 release + updated_at: '2019-02-19T05:01:47Z' + url: https://api.github.com/repos/packit/ogr/issues/16 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -73480,15 +97672,14 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "ReleaseBot, we would like to release a new version.\r\n\r\nThanks\ - \ in advance!" - closed_at: '2019-06-28T08:43:29Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/96/comments - created_at: '2019-06-28T08:38:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/96/events - html_url: https://github.com/packit/ogr/issues/96 - id: 461923699 + body: Thank you in advance! + closed_at: '2019-02-18T09:07:33Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/15/comments + created_at: '2019-02-18T08:29:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/15/events + html_url: https://github.com/packit/ogr/issues/15 + id: 411355216 labels: - color: ededed default: false @@ -73504,19 +97695,19 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/96/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/15/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE5MjM2OTk= - number: 96 + node_id: MDU6SXNzdWU0MTEzNTUyMTY= + number: 15 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-06-28T08:43:29Z' - url: https://api.github.com/repos/packit/ogr/issues/96 + title: 0.0.2 release + updated_at: '2019-02-18T09:07:33Z' + url: https://api.github.com/repos/packit/ogr/issues/15 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -73538,143 +97729,129 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #87' - closed_at: '2019-06-28T06:51:21Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/92/comments - created_at: '2019-06-27T11:54:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/92/events - html_url: https://github.com/packit/ogr/pull/92 - id: 461485336 + body: '' + closed_at: '2019-02-15T16:54:17Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/12/comments + created_at: '2019-02-15T10:33:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/12/events + html_url: https://github.com/packit/ogr/pull/12 + id: 410703936 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/92/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/12/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyMzk4ODk2 - number: 92 + node_id: MDExOlB1bGxSZXF1ZXN0MjUzMzgwNjA0 + number: 12 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/92.diff - html_url: https://github.com/packit/ogr/pull/92 - patch_url: https://github.com/packit/ogr/pull/92.patch - url: https://api.github.com/repos/packit/ogr/pulls/92 + diff_url: https://github.com/packit/ogr/pull/12.diff + html_url: https://github.com/packit/ogr/pull/12 + patch_url: https://github.com/packit/ogr/pull/12.patch + url: https://api.github.com/repos/packit/ogr/pulls/12 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: update_pr_info methods created - updated_at: '2019-06-28T06:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/92 + title: Add release-conf.yaml + updated_at: '2019-02-15T17:12:14Z' + url: https://api.github.com/repos/packit/ogr/issues/12 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/jpopelka - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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} + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-02-15T16:55:04Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/14/comments + created_at: '2019-02-15T13:30:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/14/events + html_url: https://github.com/packit/ogr/pull/14 + id: 410770447 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/14/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjUzNDI5MTA2 + number: 14 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/14.diff + html_url: https://github.com/packit/ogr/pull/14 + patch_url: https://github.com/packit/ogr/pull/14.patch + url: https://api.github.com/repos/packit/ogr/pulls/14 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: README & Makefile + updated_at: '2019-02-15T17:12:10Z' + url: https://api.github.com/repos/packit/ogr/issues/14 + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/jpopelka + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "Add methods to `GithubProject`/`PagureProject` for editing title\ - \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ - \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ - \ information " - closed_at: '2019-06-28T06:51:21Z' + body: 'Resolves #4' + closed_at: '2019-02-14T13:28:27Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments - created_at: '2019-06-26T07:17:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/87/events - html_url: https://github.com/packit/ogr/issues/87 - id: 460802132 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/11/comments + created_at: '2019-02-14T13:11:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/11/events + html_url: https://github.com/packit/ogr/pull/11 + id: 410292447 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/11/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA4MDIxMzI= - number: 87 + node_id: MDExOlB1bGxSZXF1ZXN0MjUzMDY2MjY3 + number: 11 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/11.diff + html_url: https://github.com/packit/ogr/pull/11 + patch_url: https://github.com/packit/ogr/pull/11.patch + url: https://api.github.com/repos/packit/ogr/pulls/11 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ' Update pull-request information' - updated_at: '2019-06-28T06:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/87 + title: Fix the name meaning and prepare for the move to packit-service + updated_at: '2019-02-14T13:28:27Z' + url: https://api.github.com/repos/packit/ogr/issues/11 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -73696,33 +97873,87 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- Add MIT headers to code files.' - closed_at: '2019-06-27T13:51:08Z' + body: '' + closed_at: '2019-02-11T12:22:48Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/10/comments + created_at: '2019-02-11T11:44:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/10/events + html_url: https://github.com/packit/ogr/pull/10 + id: 408743900 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/10/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjUxODg0MTc2 + number: 10 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/10.diff + html_url: https://github.com/packit/ogr/pull/10 + patch_url: https://github.com/packit/ogr/pull/10.patch + url: https://api.github.com/repos/packit/ogr/pulls/10 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Move 'packages' from setup.py to setup.cfg + updated_at: '2019-02-11T13:08:26Z' + url: https://api.github.com/repos/packit/ogr/issues/10 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Rework github implementation. + + - Add tests for github. + + - Add API for file content. + + - Correct Pagure tests.' + closed_at: '2019-02-04T16:55:46Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/94/comments - created_at: '2019-06-27T13:15:24Z' - events_url: https://api.github.com/repos/packit/ogr/issues/94/events - html_url: https://github.com/packit/ogr/pull/94 - id: 461522977 + comments_url: https://api.github.com/repos/packit/ogr/issues/9/comments + created_at: '2019-02-04T13:48:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/9/events + html_url: https://github.com/packit/ogr/pull/9 + id: 406337577 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/94/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/9/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyNDI5NzM5 - number: 94 + node_id: MDExOlB1bGxSZXF1ZXN0MjUwMDU3NDI2 + number: 9 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/94.diff - html_url: https://github.com/packit/ogr/pull/94 - patch_url: https://github.com/packit/ogr/pull/94.patch - url: https://api.github.com/repos/packit/ogr/pulls/94 + diff_url: https://github.com/packit/ogr/pull/9.diff + html_url: https://github.com/packit/ogr/pull/9 + patch_url: https://github.com/packit/ogr/pull/9.patch + url: https://api.github.com/repos/packit/ogr/pulls/9 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add license headers - updated_at: '2019-06-27T13:51:12Z' - url: https://api.github.com/repos/packit/ogr/issues/94 + title: github support + updated_at: '2019-02-04T16:55:50Z' + url: https://api.github.com/repos/packit/ogr/issues/9 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -73744,159 +97975,134 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "```\r\nHi, see lines in: https://github.com/packit-service/ogr/blob/master/tests/integration/test_github.py#L20\r\ - \nSo for regenereation these files, you have to use syntax eg:\r\n``FORCE_WRITE=yes\ - \ GITHUB_TOKEN=yourtoken GITHUB_USER=yourname pytest3 tests/integration/test_github.py``\r\ - \nor this will also work ``FORCE_WRITE=yes GITHUB_TOKEN=yourtoken GITHUB_USER=yourname\ - \ make check`` with make check, you have to have set PAGURE_TOKEN and\ - \ USER env vars\r\n```\r\n\r\n_Originally posted by @jscotka in https://github.com/packit-service/ogr/issues/80#issuecomment-503991164_\r\ - \n" - closed_at: '2019-06-27T12:56:06Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/82/comments - created_at: '2019-06-21T09:12:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/82/events - html_url: https://github.com/packit/ogr/issues/82 - id: 459096186 + body: '- Remove duplicated test. + + - Add annotations.' + closed_at: '2019-01-30T10:16:18Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/7/comments + created_at: '2019-01-29T16:26:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/7/events + html_url: https://github.com/packit/ogr/pull/7 + id: 404374671 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/82/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/7/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTkwOTYxODY= - number: 82 + node_id: MDExOlB1bGxSZXF1ZXN0MjQ4NTcxNTc3 + number: 7 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/7.diff + html_url: https://github.com/packit/ogr/pull/7 + patch_url: https://github.com/packit/ogr/pull/7.patch + url: https://api.github.com/repos/packit/ogr/pulls/7 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Document how to save HTTP sessions for sake of testing - updated_at: '2019-06-27T12:56:06Z' - url: https://api.github.com/repos/packit/ogr/issues/82 + title: Add type annotations and fix create_pr + updated_at: '2019-01-30T10:32:30Z' + url: https://api.github.com/repos/packit/ogr/issues/7 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "I'm trying to implement ogr into [release-bot](https://github.com/user-cont/release-bot)\ - \ and it's a little bit painful without documentation from ogr. \r\n\ - \r\nI was playing with ogr on my Github projects and everything is working\ - \ fine. When I tried to reimplement [release-bot's](https://github.com/user-cont/release-bot)\ - \ functionalities which communicate with Github via GraphQL or rest\ - \ API I got stuck. \r\n\r\nOne of the examples could be comments. I\ - \ want to implement commenting on Github issues and PRs via ogr. \r\n\ - - In [release-bot](https://github.com/user-cont/release-bot) it works\ - \ via graphQL and sending some `node_id` inside query which recognizes\ - \ a PR or an Issue. \r\n- In ogr there is `pr_comment` function in ogr/services/github.py.\ - \ If am I right this is an alternative I'm looking for. However, I don't\ - \ fully understand the function's parameters since it needs something\ - \ else then API query.\r\n\r\nI understand that this could be a very\ - \ complex problem since ogr need to preserve compatibility with all\ - \ git forges. I'm just looking for some starting point on how to change\ - \ GraphQL/rest API with ogr. Maybe I just misunderstand some ogr's fundamentals.\r\ - \n" - closed_at: '2019-06-27T12:40:34Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/79/comments - created_at: '2019-06-17T22:01:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/79/events - html_url: https://github.com/packit/ogr/issues/79 - id: 457168292 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/79/labels{/name} + author_association: MEMBER + body: "- Add change_token for Servise and Project classes.\r\n- Do not\ + \ use pagure instance publically." + closed_at: '2019-01-25T14:25:58Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/6/comments + created_at: '2019-01-24T11:21:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/6/events + html_url: https://github.com/packit/ogr/pull/6 + id: 402660658 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/6/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTcxNjgyOTI= - number: 79 + node_id: MDExOlB1bGxSZXF1ZXN0MjQ3MjkxODEx + number: 6 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/6.diff + html_url: https://github.com/packit/ogr/pull/6 + patch_url: https://github.com/packit/ogr/pull/6.patch + url: https://api.github.com/repos/packit/ogr/pulls/6 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add compatibility with Github's GraphQL API v4 and rest API v3 - updated_at: '2019-06-27T12:40:34Z' - url: https://api.github.com/repos/packit/ogr/issues/79 + title: change_token methods + updated_at: '2019-01-28T10:53:41Z' + url: https://api.github.com/repos/packit/ogr/issues/6 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Better get_fork for pagure and github. (Fixes #58)\r\n\r\nTODO:\r\ - \n\r\n- [x] `get_forks` on project\r\n- [x] use `project.get_forks()`\ - \ in `project.get_fork`\r\n- [x] `get_forks` for user\r\n- [x] more\ - \ tests\r\n - [x] save sequence of responses\r\n - [x] tests for\ - \ creating fork" - closed_at: '2019-06-27T10:34:34Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/85/comments - created_at: '2019-06-25T11:05:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/85/events - html_url: https://github.com/packit/ogr/pull/85 - id: 460358105 + body: "- Add method for filtering comments in pr.\r\n- Fix pr_info and\ + \ pr_comment content.\r\n\r\n- TODO:\r\n - [x] searching in comments/description\r\ + \n - [x] unit tests\r\n - [x] integration tests" + closed_at: '2019-01-18T12:40:24Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/5/comments + created_at: '2019-01-17T10:52:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/5/events + html_url: https://github.com/packit/ogr/pull/5 + id: 400218175 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/85/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/5/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkxNTAyODU2 - number: 85 + node_id: MDExOlB1bGxSZXF1ZXN0MjQ1NDU1OTU0 + number: 5 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/85.diff - html_url: https://github.com/packit/ogr/pull/85 - patch_url: https://github.com/packit/ogr/pull/85.patch - url: https://api.github.com/repos/packit/ogr/pulls/85 + diff_url: https://github.com/packit/ogr/pull/5.diff + html_url: https://github.com/packit/ogr/pull/5 + patch_url: https://github.com/packit/ogr/pull/5.patch + url: https://api.github.com/repos/packit/ogr/pulls/5 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Better fork handling - updated_at: '2019-06-27T10:34:38Z' - url: https://api.github.com/repos/packit/ogr/issues/85 + title: Pr info and comments + updated_at: '2019-01-18T13:02:36Z' + url: https://api.github.com/repos/packit/ogr/issues/5 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -73915,8 +98121,40 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + assignee: null + assignees: [] + author_association: MEMBER + body: '- add MIT license + + - use setuptools-scm + + - add Makefile target for image and pypi-checking' + closed_at: '2019-01-11T14:15:26Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/3/comments + created_at: '2019-01-10T15:31:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/3/events + html_url: https://github.com/packit/ogr/pull/3 + id: 397883535 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/3/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjQzNzI4NTQ0 + number: 3 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/3.diff + html_url: https://github.com/packit/ogr/pull/3 + patch_url: https://github.com/packit/ogr/pull/3.patch + url: https://api.github.com/repos/packit/ogr/pulls/3 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Introduce packaging + updated_at: '2019-01-12T14:24:24Z' + url: https://api.github.com/repos/packit/ogr/issues/3 + 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} @@ -73934,8 +98172,39 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Add tests for Pagure and OurPagure. + + - Update the API and Pagure implementation.' + closed_at: '2019-01-10T13:50:20Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/2/comments + created_at: '2019-01-10T11:16:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/2/events + html_url: https://github.com/packit/ogr/pull/2 + id: 397783096 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/2/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjQzNjQ4ODM2 + number: 2 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/2.diff + html_url: https://github.com/packit/ogr/pull/2 + patch_url: https://github.com/packit/ogr/pull/2.patch + url: https://api.github.com/repos/packit/ogr/pulls/2 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Update API and Pagure + updated_at: '2019-01-10T13:52:06Z' + url: https://api.github.com/repos/packit/ogr/issues/2 + 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} @@ -73953,17 +98222,196 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + _next: null + elapsed: 0.287174 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:25 GMT + ETag: W/"7f53c314cd8b6c5f353e0920992a292b82fb03a809c6d20bf947d6b78e7b907d" + Link: ; + rel="prev", ; + rel="first" + 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: 85EE:7CFE:F7F6B7:191AA77:6075DC39 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4746' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '254' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=2: + - metadata: + latency: 0.484006404876709 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "FML!\r\n\r\nSo my fork of packit is named source-git, not packit.\r\ - \n\r\nWe should use an API call to obtain github forks, not a guess\ - \ work." - closed_at: '2019-06-27T10:34:34Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/58/comments - created_at: '2019-04-15T11:38:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/58/events - html_url: https://github.com/packit/ogr/issues/58 - id: 433234905 + body: "Signed-off-by: Hunor Csomort\xE1ni " + closed_at: '2021-03-03T14:32:55Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/547/comments + created_at: '2021-03-03T13:07:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/547/events + html_url: https://github.com/packit/ogr/pull/547 + id: 821093261 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/547/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTgzOTQzODE5 + number: 547 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/547.diff + html_url: https://github.com/packit/ogr/pull/547 + patch_url: https://github.com/packit/ogr/pull/547.patch + url: https://api.github.com/repos/packit/ogr/pulls/547 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Write a changelog entry for release 0.22.0 + updated_at: '2021-03-03T14:33:18Z' + url: https://api.github.com/repos/packit/ogr/issues/547 + 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 + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-03-02T08:45:39Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/546/comments + created_at: '2021-03-01T16:54:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/546/events + html_url: https://github.com/packit/ogr/pull/546 + id: 819059663 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/546/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTgyMjIyMDg1 + number: 546 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/546.diff + html_url: https://github.com/packit/ogr/pull/546 + patch_url: https://github.com/packit/ogr/pull/546.patch + url: https://api.github.com/repos/packit/ogr/pulls/546 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-03-02T08:45:41Z' + url: https://api.github.com/repos/packit/ogr/issues/546 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "https://github.com/packit-service/ogr/pull/415 implements `PagurePullRequest.patch`\ + \ property to get a patch from a pull request.\r\n`Gitlab` & `Github`\ + \ implementation are missing.\r\n\r\nUpdate by @lachmanfrantisek :\r\ + \n\r\nThe task is to implement `patch` property fo `GithubPullRequest`\ + \ and `GitlabPullRequest` that will return `patch` of the changes for\ + \ pull-request (not the URL of it).\r\n\r\n- Github:\r\n - URL of\ + \ patch: https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.patch_url\r\ + \n - The URL looks like this: https://patch-diff.githubusercontent.com/raw/packit/packit-service/pull/1003.patch\r\ + \n - But this one works as well: https://github.com/packit/ogr/issues/416.patch\r\ + \n- Gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ + \n - I am not sure if `diffs` will work.\r\n - The same approach\ + \ as in GitHub (adding `.patch` to the URL) works well: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/800.patch" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/416/comments + created_at: '2020-05-22T16:21:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/416/events + html_url: https://github.com/packit/ogr/issues/416 + id: 623324928 labels: - color: '000000' default: false @@ -73972,26 +98420,821 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/416/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjMzMjQ5Mjg= + number: 416 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Implement patch property in GitlabPullRequest and GithubPullRequest + updated_at: '2021-02-25T13:04:37Z' + url: https://api.github.com/repos/packit/ogr/issues/416 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "I believe this is a flake but wanna make sure it's not an actual\ + \ bug. The logs are coming from [a sandcastle CI run](https://github.com/packit/sandcastle/pull/104#issuecomment-784432707).\r\ + \n```\r\n2021-02-23 18:55:03.228152 | test-node | E sandcastle.exceptions.SandcastleCommandFailed:\ + \ Command failed (rc=2, reason={\"metadata\":{},\"status\":\"Failure\"\ + ,\"message\":\"command terminated with non-zero exit code: Error executing\ + \ in Docker Container: 2\",\"reason\":\"NonZeroExitCode\",\"details\"\ + :{\"causes\":[{\"reason\":\"ExitCode\",\"message\":\"2\"}]}})\r\n2021-02-23\ + \ 18:55:03.228239 | test-node | E 18:42:55.563 config.py DEBUG\ + \ Loading user config from directory: /home/sandcastle/.config\r\n\ + 2021-02-23 18:55:03.228250 | test-node | E 18:42:55.564 config.py \ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.yaml\r\ + \n2021-02-23 18:55:03.228256 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.yml\r\ + \n2021-02-23 18:55:03.228263 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.json\r\ + \n2021-02-23 18:55:03.228269 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.yaml\r\ + \n2021-02-23 18:55:03.228275 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.yml\r\ + \n2021-02-23 18:55:03.228281 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.json\r\ + \n2021-02-23 18:55:03.228310 | test-node | E 18:42:55.572 config.py\ + \ DEBUG Loaded config: Config(debug='False', fas_user='None',\ + \ keytab_path='None', upstream_git_remote='None', command_handler='RunCommandType.local',\ + \ command_handler_work_dir='/sandcastle', command_handler_pvc_env_var='SANDCASTLE_PVC',\ + \ command_handler_image_reference='docker.io/usercont/sandcastle', command_handler_k8s_namespace='myproject')\r\ + \n2021-02-23 18:55:03.228383 | test-node | E 18:42:55.572 logging.py\ + \ DEBUG Logging set to DEBUG\r\n2021-02-23 18:55:03.228398 |\ + \ test-node | E 18:42:55.574 packit_base.py DEBUG Packit 0.24.0\ + \ is being used.\r\n2021-02-23 18:55:03.228404 | test-node | E 18:42:55.574\ + \ types.py DEBUG Input is a directory: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902\r\ + \n2021-02-23 18:55:03.228420 | test-node | E 18:42:55.575 local_project.py\ + \ DEBUG Arguments received in the init method of the LocalProject\ + \ class:\r\n2021-02-23 18:55:03.228426 | test-node | E git_repo: None\r\ + \n2021-02-23 18:55:03.228433 | test-node | E working_dir: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902\r\ + \n2021-02-23 18:55:03.228439 | test-node | E ref: None\r\n2021-02-23\ + \ 18:55:03.228445 | test-node | E git_project: None\r\n2021-02-23 18:55:03.228451\ + \ | test-node | E git_service: None\r\n2021-02-23 18:55:03.228458 |\ + \ test-node | E git_url:\r\n2021-02-23 18:55:03.228464 | test-node\ + \ | E full_name:\r\n2021-02-23 18:55:03.228470 | test-node | E namespace:\r\ + \n2021-02-23 18:55:03.228476 | test-node | E repo_name:\r\n2021-02-23\ + \ 18:55:03.228482 | test-node | E offline: False\r\n2021-02-23 18:55:03.228488\ + \ | test-node | E refresh True\r\n2021-02-23 18:55:03.228494 | test-node\ + \ | E remote: None\r\n2021-02-23 18:55:03.228501 | test-node | E pr_id:\ + \ None\r\n2021-02-23 18:55:03.228507 | test-node | E\r\n2021-02-23 18:55:03.228559\ + \ | test-node | E 18:42:55.575 local_project.py DEBUG `working_dir`\ + \ is set and `git_repo` is not: let's discover...\r\n2021-02-23 18:55:03.228607\ + \ | test-node | E 18:42:55.575 local_project.py DEBUG It's a git\ + \ repo!\r\n2021-02-23 18:55:03.228615 | test-node | E 18:42:55.577\ + \ local_project.py DEBUG Parsed ref 'main' from the repo .\r\ + \n2021-02-23 18:55:03.228630 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed remote url 'https://github.com/packit/ogr.git' from\ + \ the repo .\r\ + \n2021-02-23 18:55:03.228651 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed namespace and repo name (packit, ogr) from url 'https://github.com/packit/ogr.git'.\r\ + \n2021-02-23 18:55:03.228660 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed full repo name 'packit/ogr'.\r\n2021-02-23 18:55:03.228666\ + \ | test-node | E 18:42:55.578 package_config.py DEBUG Local package\ + \ config found: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/.packit.yaml\r\ + \n2021-02-23 18:55:03.228673 | test-node | E 18:42:55.590 package_config.py\ + \ DEBUG Local spec files found: [PosixPath('fedora/python-ogr.spec')].\ + \ Taking: fedora/python-ogr.spec\r\n2021-02-23 18:55:03.228679 | test-node\ + \ | E 18:42:55.591 package_config.py DEBUG Package config:\r\n2021-02-23\ + \ 18:55:03.228685 | test-node | E {\r\n2021-02-23 18:55:03.228692 |\ + \ test-node | E \"specfile_path\": \"fedora/python-ogr.spec\",\r\ + \n2021-02-23 18:55:03.228698 | test-node | E \"synced_files\":\ + \ [\r\n2021-02-23 18:55:03.228720 | test-node | E \"fedora/changelog\"\ + \r\n2021-02-23 18:55:03.228728 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.228735 | test-node | E \"downstream_package_name\":\ + \ \"python-ogr\",\r\n2021-02-23 18:55:03.228741 | test-node | E \ + \ \"upstream_project_url\": \"https://github.com/packit/ogr\",\r\n\ + 2021-02-23 18:55:03.228747 | test-node | E \"upstream_package_name\"\ + : \"ogr\",\r\n2021-02-23 18:55:03.228754 | test-node | E \"copy_upstream_release_description\"\ + : true,\r\n2021-02-23 18:55:03.228760 | test-node | E \"actions\"\ + : {\r\n2021-02-23 18:55:03.228766 | test-node | E \"create-archive\"\ + : [\r\n2021-02-23 18:55:03.228772 | test-node | E \"python3\ + \ setup.py sdist --dist-dir ./fedora/\",\r\n2021-02-23 18:55:03.228786\ + \ | test-node | E \"bash -c \\\"ls -1t ./fedora/*.tar.gz\ + \ | head -n 1\\\"\"\r\n2021-02-23 18:55:03.228793 | test-node | E \ + \ ],\r\n2021-02-23 18:55:03.228799 | test-node | E \"\ + get-current-version\": \"python3 setup.py --version\"\r\n2021-02-23\ + \ 18:55:03.228805 | test-node | E },\r\n2021-02-23 18:55:03.228811\ + \ | test-node | E \"jobs\": [\r\n2021-02-23 18:55:03.228818 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.228824 | test-node | E \ + \ \"job\": \"sync_from_downstream\",\r\n2021-02-23 18:55:03.228967\ + \ | test-node | E \"trigger\": \"commit\"\r\n2021-02-23\ + \ 18:55:03.229025 | test-node | E },\r\n2021-02-23 18:55:03.229032\ + \ | test-node | E {\r\n2021-02-23 18:55:03.229039 | test-node\ + \ | E \"job\": \"propose_downstream\",\r\n2021-02-23 18:55:03.229045\ + \ | test-node | E \"trigger\": \"release\",\r\n2021-02-23\ + \ 18:55:03.229051 | test-node | E \"metadata\": {\r\n2021-02-23\ + \ 18:55:03.229058 | test-node | E \"dist_git_branches\"\ + : [\r\n2021-02-23 18:55:03.229064 | test-node | E \ + \ \"fedora-all\",\r\n2021-02-23 18:55:03.229070 | test-node | E \ + \ \"epel-8\"\r\n2021-02-23 18:55:03.229076 | test-node\ + \ | E ]\r\n2021-02-23 18:55:03.229082 | test-node |\ + \ E }\r\n2021-02-23 18:55:03.229089 | test-node | E \ + \ },\r\n2021-02-23 18:55:03.229095 | test-node | E {\r\ + \n2021-02-23 18:55:03.229101 | test-node | E \"job\": \"\ + copr_build\",\r\n2021-02-23 18:55:03.229107 | test-node | E \ + \ \"trigger\": \"pull_request\",\r\n2021-02-23 18:55:03.229114\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229120\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229126\ + \ | test-node | E \"fedora-all\",\r\n2021-02-23\ + \ 18:55:03.229132 | test-node | E \"epel-8\"\r\n\ + 2021-02-23 18:55:03.229138 | test-node | E ]\r\n2021-02-23\ + \ 18:55:03.229147 | test-node | E }\r\n2021-02-23 18:55:03.229185\ + \ | test-node | E },\r\n2021-02-23 18:55:03.229207 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.229217 | test-node | E \ + \ \"job\": \"tests\",\r\n2021-02-23 18:55:03.229237 | test-node\ + \ | E \"trigger\": \"pull_request\",\r\n2021-02-23 18:55:03.229245\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229252\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229258\ + \ | test-node | E \"fedora-all\",\r\n2021-02-23\ + \ 18:55:03.229264 | test-node | E \"epel-8\"\r\n\ + 2021-02-23 18:55:03.229270 | test-node | E ]\r\n2021-02-23\ + \ 18:55:03.229276 | test-node | E }\r\n2021-02-23 18:55:03.229282\ + \ | test-node | E },\r\n2021-02-23 18:55:03.229289 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.229303 | test-node | E \ + \ \"job\": \"production_build\",\r\n2021-02-23 18:55:03.229310\ + \ | test-node | E \"trigger\": \"pull_request\",\r\n2021-02-23\ + \ 18:55:03.229316 | test-node | E \"metadata\": {\r\n2021-02-23\ + \ 18:55:03.229322 | test-node | E \"scratch\": true,\r\ + \n2021-02-23 18:55:03.229328 | test-node | E \"targets\"\ + : [\r\n2021-02-23 18:55:03.229334 | test-node | E \ + \ \"fedora-development\"\r\n2021-02-23 18:55:03.229349 | test-node\ + \ | E ]\r\n2021-02-23 18:55:03.229355 | test-node |\ + \ E }\r\n2021-02-23 18:55:03.229362 | test-node | E \ + \ },\r\n2021-02-23 18:55:03.229368 | test-node | E {\r\ + \n2021-02-23 18:55:03.229374 | test-node | E \"job\": \"\ + copr_build\",\r\n2021-02-23 18:55:03.229380 | test-node | E \ + \ \"trigger\": \"commit\",\r\n2021-02-23 18:55:03.229386 | test-node\ + \ | E \"metadata\": {\r\n2021-02-23 18:55:03.229392 | test-node\ + \ | E \"branch\": \"master\",\r\n2021-02-23 18:55:03.229399\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229405\ + \ | test-node | E \"fedora-stable\"\r\n2021-02-23\ + \ 18:55:03.229411 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.229417 | test-node | E \"project\": \"packit-master\"\ + ,\r\n2021-02-23 18:55:03.229423 | test-node | E \"\ + list_on_homepage\": true,\r\n2021-02-23 18:55:03.229430 | test-node\ + \ | E \"preserve_project\": true\r\n2021-02-23 18:55:03.229436\ + \ | test-node | E }\r\n2021-02-23 18:55:03.229442 | test-node\ + \ | E },\r\n2021-02-23 18:55:03.229448 | test-node | E \ + \ {\r\n2021-02-23 18:55:03.229454 | test-node | E \ + \ \"job\": \"copr_build\",\r\n2021-02-23 18:55:03.229461 | test-node\ + \ | E \"trigger\": \"release\",\r\n2021-02-23 18:55:03.229467\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229473\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229479\ + \ | test-node | E \"fedora-stable\"\r\n2021-02-23\ + \ 18:55:03.229485 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.229518 | test-node | E \"project\": \"packit-releases\"\ + ,\r\n2021-02-23 18:55:03.229556 | test-node | E \"\ + list_on_homepage\": true,\r\n2021-02-23 18:55:03.229567 | test-node\ + \ | E \"preserve_project\": true\r\n2021-02-23 18:55:03.229601\ + \ | test-node | E }\r\n2021-02-23 18:55:03.229608 | test-node\ + \ | E }\r\n2021-02-23 18:55:03.229614 | test-node | E \ + \ ]\r\n2021-02-23 18:55:03.229620 | test-node | E }\r\n2021-02-23 18:55:03.230131\ + \ | test-node | E 18:42:55.594 package_config.py DEBUG PackageConfig(config_file_path='.packit.yaml',\ + \ specfile_path='fedora/python-ogr.spec', synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', jobs='[JobConfig(job=JobType.sync_from_downstream,\ + \ trigger=JobConfigTriggerType.commit, meta=JobMetadataConfig(targets=set(),\ + \ timeout=7200, owner=None, project=None, dist_git_branches=set(), branch=None,\ + \ scratch=False, list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.propose_downstream, trigger=JobConfigTriggerType.release,\ + \ meta=JobMetadataConfig(targets=set(), timeout=7200, owner=None, project=None,\ + \ dist_git_branches={'epel-8', 'fedora-all'}, branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'epel-8', 'fedora-all'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.tests, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'epel-8', 'fedora-all'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.production_build, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'fedora-development'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=True,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.commit,\ + \ meta=JobMetadataConfig(targets={'fedora-stable'}, timeout=7200, owner=None,\ + \ project=packit-master, dist_git_branches=set(), branch=master, scratch=False,\ + \ list_on_homepage=True, preserve_project=True, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.release,\ + \ meta=JobMetadataConfig(targets={'fedora-stable'}, timeout=7200, owner=None,\ + \ project=packit-releases, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=True, preserve_project=True, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True')]',\ + \ dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', archive_root_dir_template={upstream_pkg_name}-{version}',\ + \ patch_generation_ignore_paths='[]', copy_upstream_release_description='True')\r\ + \n2021-02-23 18:55:03.230260 | test-node | E 18:42:55.604 utils.py\ + \ DEBUG Input directory is an upstream repository.\r\n2021-02-23\ + \ 18:55:03.230290 | test-node | E 18:42:55.604 base_git.py DEBUG\ + \ Running ActionName.post_upstream_clone hook.\r\n2021-02-23 18:55:03.230298\ + \ | test-node | E 18:42:55.604 base_git.py DEBUG Running ActionName.post_upstream_clone.\r\ + \n2021-02-23 18:55:03.230305 | test-node | E 18:42:55.605 base_git.py\ + \ DEBUG Running default implementation for ActionName.post_upstream_clone.\r\ + \n2021-02-23 18:55:03.230312 | test-node | E Using user-defined script\ + \ for ActionName.get_current_version: [['python3', 'setup.py', '--version']]\r\ + \n2021-02-23 18:55:03.230318 | test-node | E 18:42:55.605 base_git.py\ + \ DEBUG Command handler: RunCommandType.local\r\n2021-02-23 18:55:03.230383\ + \ | test-node | E 18:42:55.605 commands.py DEBUG Command: python3\ + \ setup.py --version\r\n2021-02-23 18:55:03.230439 | test-node | E \ + \ WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None,\ + \ status=None)) after connection broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230479 | test-node | E WARNING: Retrying (Retry(total=3,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230504 | test-node | E WARNING: Retrying (Retry(total=2,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230515 | test-node | E WARNING: Retrying (Retry(total=1,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230525 | test-node | E WARNING: Retrying (Retry(total=0,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230597 | test-node | E ERROR: Exception:\r\n\ + 2021-02-23 18:55:03.230624 | test-node | E Traceback (most recent call\ + \ last):\r\n2021-02-23 18:55:03.230637 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 381, in _make_request\r\n2021-02-23 18:55:03.230655 | test-node\ + \ | E self._validate_conn(conn)\r\n2021-02-23 18:55:03.230665 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 976, in _validate_conn\r\n2021-02-23 18:55:03.230684 | test-node\ + \ | E conn.connect()\r\n2021-02-23 18:55:03.230711 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py\"\ + , line 361, in connect\r\n2021-02-23 18:55:03.230724 | test-node | E\ + \ self.sock = ssl_wrap_socket(\r\n2021-02-23 18:55:03.230733 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py\"\ + , line 377, in ssl_wrap_socket\r\n2021-02-23 18:55:03.230743 | test-node\ + \ | E return context.wrap_socket(sock, server_hostname=server_hostname)\r\ + \n2021-02-23 18:55:03.230752 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 500, in wrap_socket\r\n2021-02-23 18:55:03.230761 | test-node\ + \ | E return self.sslsocket_class._create(\r\n2021-02-23 18:55:03.230789\ + \ | test-node | E File \"/usr/lib64/python3.9/ssl.py\", line 1040,\ + \ in _create\r\n2021-02-23 18:55:03.230808 | test-node | E self.do_handshake()\r\ + \n2021-02-23 18:55:03.230831 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 1309, in do_handshake\r\n2021-02-23 18:55:03.230841 | test-node\ + \ | E self._sslobj.do_handshake()\r\n2021-02-23 18:55:03.230851\ + \ | test-node | E socket.timeout: _ssl.c:1106: The handshake operation\ + \ timed out\r\n2021-02-23 18:55:03.230879 | test-node | E\r\n2021-02-23\ + \ 18:55:03.230899 | test-node | E During handling of the above exception,\ + \ another exception occurred:\r\n2021-02-23 18:55:03.230909 | test-node\ + \ | E\r\n2021-02-23 18:55:03.230919 | test-node | E Traceback (most\ + \ recent call last):\r\n2021-02-23 18:55:03.230928 | test-node | E \ + \ File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 670, in urlopen\r\n2021-02-23 18:55:03.230937 | test-node | E\ + \ httplib_response = self._make_request(\r\n2021-02-23 18:55:03.230957\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 384, in _make_request\r\n2021-02-23 18:55:03.230983 | test-node\ + \ | E self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)\r\ + \n2021-02-23 18:55:03.230994 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 335, in _raise_timeout\r\n2021-02-23 18:55:03.231004 | test-node\ + \ | E raise ReadTimeoutError(\r\n2021-02-23 18:55:03.231031 | test-node\ + \ | E pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\r\n2021-02-23 18:55:03.231060\ + \ | test-node | E\r\n2021-02-23 18:55:03.231081 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.231090 | test-node | E\r\n2021-02-23 18:55:03.231100 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.231109\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 439, in send\r\n2021-02-23 18:55:03.231118 | test-node | E \ + \ resp = conn.urlopen(\r\n2021-02-23 18:55:03.231138 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231166 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231224 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231261 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231272 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231289 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231318 | test-node\ + \ | E [Previous line repeated 2 more times]\r\n2021-02-23 18:55:03.231347\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 724, in urlopen\r\n2021-02-23 18:55:03.231389 | test-node | E\ + \ retries = retries.increment(\r\n2021-02-23 18:55:03.231409 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py\"\ + , line 439, in increment\r\n2021-02-23 18:55:03.231418 | test-node |\ + \ E raise MaxRetryError(_pool, url, error or ResponseError(cause))\r\ + \n2021-02-23 18:55:03.231425 | test-node | E pip._vendor.urllib3.exceptions.MaxRetryError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.231432\ + \ | test-node | E\r\n2021-02-23 18:55:03.231438 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.231445 | test-node | E\r\n2021-02-23 18:55:03.231452 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.231458\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/base_command.py\"\ + , line 216, in _main\r\n2021-02-23 18:55:03.231465 | test-node | E \ + \ status = self.run(options, args)\r\n2021-02-23 18:55:03.231471\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/req_command.py\"\ + , line 182, in wrapper\r\n2021-02-23 18:55:03.231477 | test-node | E\ + \ return func(self, options, args)\r\n2021-02-23 18:55:03.231514\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/commands/wheel.py\"\ + , line 155, in run\r\n2021-02-23 18:55:03.231566 | test-node | E \ + \ requirement_set = resolver.resolve(\r\n2021-02-23 18:55:03.231604\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 184, in resolve\r\n2021-02-23 18:55:03.231611 | test-node | E\ + \ discovered_reqs.extend(self._resolve_one(requirement_set, req))\r\ + \n2021-02-23 18:55:03.231618 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 391, in _resolve_one\r\n2021-02-23 18:55:03.231624 | test-node\ + \ | E abstract_dist = self._get_abstract_dist_for(req_to_install)\r\ + \n2021-02-23 18:55:03.231631 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 343, in _get_abstract_dist_for\r\n2021-02-23 18:55:03.231656\ + \ | test-node | E abstract_dist = self.preparer.prepare_linked_requirement(req)\r\ + \n2021-02-23 18:55:03.231668 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 467, in prepare_linked_requirement\r\n2021-02-23 18:55:03.231675\ + \ | test-node | E local_file = unpack_url(\r\n2021-02-23 18:55:03.231681\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 255, in unpack_url\r\n2021-02-23 18:55:03.231688 | test-node\ + \ | E file = get_http_url(\r\n2021-02-23 18:55:03.231695 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 129, in get_http_url\r\n2021-02-23 18:55:03.231710 | test-node\ + \ | E from_path, content_type = _download_http_url(\r\n2021-02-23\ + \ 18:55:03.231716 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 278, in _download_http_url\r\n2021-02-23 18:55:03.231723 | test-node\ + \ | E download = downloader(link)\r\n2021-02-23 18:55:03.231730\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 170, in __call__\r\n2021-02-23 18:55:03.231736 | test-node |\ + \ E resp = _http_get_download(self._session, link)\r\n2021-02-23\ + \ 18:55:03.231743 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 139, in _http_get_download\r\n2021-02-23 18:55:03.231749 | test-node\ + \ | E resp = session.get(target_url, headers=HEADERS, stream=True)\r\ + \n2021-02-23 18:55:03.231756 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 543, in get\r\n2021-02-23 18:55:03.231763 | test-node | E \ + \ return self.request('GET', url, **kwargs)\r\n2021-02-23 18:55:03.231769\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/session.py\"\ + , line 421, in request\r\n2021-02-23 18:55:03.231775 | test-node | E\ + \ return super(PipSession, self).request(method, url, *args, **kwargs)\r\ + \n2021-02-23 18:55:03.231807 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 530, in request\r\n2021-02-23 18:55:03.231816 | test-node | E\ + \ resp = self.send(prep, **send_kwargs)\r\n2021-02-23 18:55:03.231823\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 643, in send\r\n2021-02-23 18:55:03.231829 | test-node | E \ + \ r = adapter.send(request, **kwargs)\r\n2021-02-23 18:55:03.231836\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py\"\ + , line 53, in send\r\n2021-02-23 18:55:03.231843 | test-node | E \ + \ resp = super(CacheControlAdapter, self).send(request, **kw)\r\n\ + 2021-02-23 18:55:03.231849 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 516, in send\r\n2021-02-23 18:55:03.231856 | test-node | E \ + \ raise ConnectionError(e, request=request)\r\n2021-02-23 18:55:03.231879\ + \ | test-node | E pip._vendor.requests.exceptions.ConnectionError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.231891\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.231898 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 128, in fetch_build_egg\r\n2021-02-23 18:55:03.231904 | test-node\ + \ | E subprocess.check_call(cmd)\r\n2021-02-23 18:55:03.231924\ + \ | test-node | E File \"/usr/lib64/python3.9/subprocess.py\", line\ + \ 373, in check_call\r\n2021-02-23 18:55:03.231936 | test-node | E \ + \ raise CalledProcessError(retcode, cmd)\r\n2021-02-23 18:55:03.231943\ + \ | test-node | E subprocess.CalledProcessError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.231970 | test-node\ + \ | E\r\n2021-02-23 18:55:03.231979 | test-node | E The above exception\ + \ was the direct cause of the following exception:\r\n2021-02-23 18:55:03.231991\ + \ | test-node | E\r\n2021-02-23 18:55:03.231998 | test-node | E Traceback\ + \ (most recent call last):\r\n2021-02-23 18:55:03.232005 | test-node\ + \ | E File \"/sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/setup.py\"\ + , line 5, in \r\n2021-02-23 18:55:03.232011 | test-node | E\ + \ setup(use_scm_version=True)\r\n2021-02-23 18:55:03.232018 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 164, in setup\r\n2021-02-23 18:55:03.232025 | test-node | E \ + \ _install_setup_requires(attrs)\r\n2021-02-23 18:55:03.232031 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 159, in _install_setup_requires\r\n2021-02-23 18:55:03.232039\ + \ | test-node | E dist.fetch_build_eggs(dist.setup_requires)\r\n\ + 2021-02-23 18:55:03.232052 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 699, in fetch_build_eggs\r\n2021-02-23 18:55:03.232084 | test-node\ + \ | E resolved_dists = pkg_resources.working_set.resolve(\r\n2021-02-23\ + \ 18:55:03.232102 | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 779, in resolve\r\n2021-02-23 18:55:03.232111 | test-node | E\ + \ dist = best[req.key] = env.best_match(\r\n2021-02-23 18:55:03.232121\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1064, in best_match\r\n2021-02-23 18:55:03.232130 | test-node\ + \ | E return self.obtain(req, installer)\r\n2021-02-23 18:55:03.232140\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1076, in obtain\r\n2021-02-23 18:55:03.232168 | test-node | E\ + \ return installer(requirement)\r\n2021-02-23 18:55:03.232217 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 758, in fetch_build_egg\r\n2021-02-23 18:55:03.232262 | test-node\ + \ | E return fetch_build_egg(self, req)\r\n2021-02-23 18:55:03.232274\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 130, in fetch_build_egg\r\n2021-02-23 18:55:03.232284 | test-node\ + \ | E raise DistutilsError(str(e)) from e\r\n2021-02-23 18:55:03.232312\ + \ | test-node | E distutils.errors.DistutilsError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.232333 | test-node\ + \ | E ERROR Command 'python3 setup.py --version' failed.\r\n2021-02-23\ + \ 18:55:03.232343 | test-node | E 18:44:34.521 commands.py DEBUG\ + \ Command stderr: WARNING: Retrying (Retry(total=4, connect=None,\ + \ read=None, redirect=None, status=None)) after connection broken by\ + \ 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232355 | test-node | E WARNING: Retrying (Retry(total=3,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232366 | test-node | E WARNING: Retrying (Retry(total=2,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232427 | test-node | E WARNING: Retrying (Retry(total=1,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232464 | test-node | E WARNING: Retrying (Retry(total=0,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232474 | test-node | E ERROR: Exception:\r\n\ + 2021-02-23 18:55:03.232481 | test-node | E Traceback (most recent call\ + \ last):\r\n2021-02-23 18:55:03.232487 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 381, in _make_request\r\n2021-02-23 18:55:03.232494 | test-node\ + \ | E self._validate_conn(conn)\r\n2021-02-23 18:55:03.232501 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 976, in _validate_conn\r\n2021-02-23 18:55:03.232508 | test-node\ + \ | E conn.connect()\r\n2021-02-23 18:55:03.232515 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py\"\ + , line 361, in connect\r\n2021-02-23 18:55:03.232522 | test-node | E\ + \ self.sock = ssl_wrap_socket(\r\n2021-02-23 18:55:03.232553 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py\"\ + , line 377, in ssl_wrap_socket\r\n2021-02-23 18:55:03.232566 | test-node\ + \ | E return context.wrap_socket(sock, server_hostname=server_hostname)\r\ + \n2021-02-23 18:55:03.232597 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 500, in wrap_socket\r\n2021-02-23 18:55:03.232605 | test-node\ + \ | E return self.sslsocket_class._create(\r\n2021-02-23 18:55:03.232612\ + \ | test-node | E File \"/usr/lib64/python3.9/ssl.py\", line 1040,\ + \ in _create\r\n2021-02-23 18:55:03.232619 | test-node | E self.do_handshake()\r\ + \n2021-02-23 18:55:03.232625 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 1309, in do_handshake\r\n2021-02-23 18:55:03.232632 | test-node\ + \ | E self._sslobj.do_handshake()\r\n2021-02-23 18:55:03.232638\ + \ | test-node | E socket.timeout: _ssl.c:1106: The handshake operation\ + \ timed out\r\n2021-02-23 18:55:03.232645 | test-node | E\r\n2021-02-23\ + \ 18:55:03.232651 | test-node | E During handling of the above exception,\ + \ another exception occurred:\r\n2021-02-23 18:55:03.232658 | test-node\ + \ | E\r\n2021-02-23 18:55:03.232678 | test-node | E Traceback (most\ + \ recent call last):\r\n2021-02-23 18:55:03.232689 | test-node | E \ + \ File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 670, in urlopen\r\n2021-02-23 18:55:03.232696 | test-node | E\ + \ httplib_response = self._make_request(\r\n2021-02-23 18:55:03.232702\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 384, in _make_request\r\n2021-02-23 18:55:03.232709 | test-node\ + \ | E self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)\r\ + \n2021-02-23 18:55:03.232716 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 335, in _raise_timeout\r\n2021-02-23 18:55:03.232742 | test-node\ + \ | E raise ReadTimeoutError(\r\n2021-02-23 18:55:03.232752 | test-node\ + \ | E pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\r\n2021-02-23 18:55:03.232758\ + \ | test-node | E\r\n2021-02-23 18:55:03.232765 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.232772 | test-node | E\r\n2021-02-23 18:55:03.232778 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.232785\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 439, in send\r\n2021-02-23 18:55:03.232791 | test-node | E \ + \ resp = conn.urlopen(\r\n2021-02-23 18:55:03.232798 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232804 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232811 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232832 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232844 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232850 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232857 | test-node\ + \ | E [Previous line repeated 2 more times]\r\n2021-02-23 18:55:03.232863\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 724, in urlopen\r\n2021-02-23 18:55:03.232870 | test-node | E\ + \ retries = retries.increment(\r\n2021-02-23 18:55:03.232876 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py\"\ + , line 439, in increment\r\n2021-02-23 18:55:03.232883 | test-node |\ + \ E raise MaxRetryError(_pool, url, error or ResponseError(cause))\r\ + \n2021-02-23 18:55:03.232890 | test-node | E pip._vendor.urllib3.exceptions.MaxRetryError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.232918\ + \ | test-node | E\r\n2021-02-23 18:55:03.232927 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.232934 | test-node | E\r\n2021-02-23 18:55:03.232940 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.232947\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/base_command.py\"\ + , line 216, in _main\r\n2021-02-23 18:55:03.232954 | test-node | E \ + \ status = self.run(options, args)\r\n2021-02-23 18:55:03.232960\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/req_command.py\"\ + , line 182, in wrapper\r\n2021-02-23 18:55:03.232967 | test-node | E\ + \ return func(self, options, args)\r\n2021-02-23 18:55:03.232974\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/commands/wheel.py\"\ + , line 155, in run\r\n2021-02-23 18:55:03.232980 | test-node | E \ + \ requirement_set = resolver.resolve(\r\n2021-02-23 18:55:03.232987\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 184, in resolve\r\n2021-02-23 18:55:03.233000 | test-node | E\ + \ discovered_reqs.extend(self._resolve_one(requirement_set, req))\r\ + \n2021-02-23 18:55:03.233007 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 391, in _resolve_one\r\n2021-02-23 18:55:03.233014 | test-node\ + \ | E abstract_dist = self._get_abstract_dist_for(req_to_install)\r\ + \n2021-02-23 18:55:03.233020 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 343, in _get_abstract_dist_for\r\n2021-02-23 18:55:03.233027\ + \ | test-node | E abstract_dist = self.preparer.prepare_linked_requirement(req)\r\ + \n2021-02-23 18:55:03.233035 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 467, in prepare_linked_requirement\r\n2021-02-23 18:55:03.233041\ + \ | test-node | E local_file = unpack_url(\r\n2021-02-23 18:55:03.233048\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 255, in unpack_url\r\n2021-02-23 18:55:03.233054 | test-node\ + \ | E file = get_http_url(\r\n2021-02-23 18:55:03.233061 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 129, in get_http_url\r\n2021-02-23 18:55:03.233068 | test-node\ + \ | E from_path, content_type = _download_http_url(\r\n2021-02-23\ + \ 18:55:03.233074 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 278, in _download_http_url\r\n2021-02-23 18:55:03.233081 | test-node\ + \ | E download = downloader(link)\r\n2021-02-23 18:55:03.233087\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 170, in __call__\r\n2021-02-23 18:55:03.233094 | test-node |\ + \ E resp = _http_get_download(self._session, link)\r\n2021-02-23\ + \ 18:55:03.233100 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 139, in _http_get_download\r\n2021-02-23 18:55:03.233107 | test-node\ + \ | E resp = session.get(target_url, headers=HEADERS, stream=True)\r\ + \n2021-02-23 18:55:03.233127 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 543, in get\r\n2021-02-23 18:55:03.233139 | test-node | E \ + \ return self.request('GET', url, **kwargs)\r\n2021-02-23 18:55:03.233148\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/session.py\"\ + , line 421, in request\r\n2021-02-23 18:55:03.233190 | test-node | E\ + \ return super(PipSession, self).request(method, url, *args, **kwargs)\r\ + \n2021-02-23 18:55:03.233213 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 530, in request\r\n2021-02-23 18:55:03.233220 | test-node | E\ + \ resp = self.send(prep, **send_kwargs)\r\n2021-02-23 18:55:03.233227\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 643, in send\r\n2021-02-23 18:55:03.233233 | test-node | E \ + \ r = adapter.send(request, **kwargs)\r\n2021-02-23 18:55:03.233240\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py\"\ + , line 53, in send\r\n2021-02-23 18:55:03.233246 | test-node | E \ + \ resp = super(CacheControlAdapter, self).send(request, **kw)\r\n\ + 2021-02-23 18:55:03.233253 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 516, in send\r\n2021-02-23 18:55:03.233259 | test-node | E \ + \ raise ConnectionError(e, request=request)\r\n2021-02-23 18:55:03.233274\ + \ | test-node | E pip._vendor.requests.exceptions.ConnectionError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.233308\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233318 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 128, in fetch_build_egg\r\n2021-02-23 18:55:03.233359 | test-node\ + \ | E subprocess.check_call(cmd)\r\n2021-02-23 18:55:03.233396\ + \ | test-node | E File \"/usr/lib64/python3.9/subprocess.py\", line\ + \ 373, in check_call\r\n2021-02-23 18:55:03.233405 | test-node | E \ + \ raise CalledProcessError(retcode, cmd)\r\n2021-02-23 18:55:03.233412\ + \ | test-node | E subprocess.CalledProcessError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.233420 | test-node\ + \ | E\r\n2021-02-23 18:55:03.233427 | test-node | E The above exception\ + \ was the direct cause of the following exception:\r\n2021-02-23 18:55:03.233433\ + \ | test-node | E\r\n2021-02-23 18:55:03.233440 | test-node | E Traceback\ + \ (most recent call last):\r\n2021-02-23 18:55:03.233446 | test-node\ + \ | E File \"/sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/setup.py\"\ + , line 5, in \r\n2021-02-23 18:55:03.233452 | test-node | E\ + \ setup(use_scm_version=True)\r\n2021-02-23 18:55:03.233458 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 164, in setup\r\n2021-02-23 18:55:03.233465 | test-node | E \ + \ _install_setup_requires(attrs)\r\n2021-02-23 18:55:03.233472 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 159, in _install_setup_requires\r\n2021-02-23 18:55:03.233478\ + \ | test-node | E dist.fetch_build_eggs(dist.setup_requires)\r\n\ + 2021-02-23 18:55:03.233484 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 699, in fetch_build_eggs\r\n2021-02-23 18:55:03.233491 | test-node\ + \ | E resolved_dists = pkg_resources.working_set.resolve(\r\n2021-02-23\ + \ 18:55:03.233497 | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 779, in resolve\r\n2021-02-23 18:55:03.233504 | test-node | E\ + \ dist = best[req.key] = env.best_match(\r\n2021-02-23 18:55:03.233510\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1064, in best_match\r\n2021-02-23 18:55:03.233517 | test-node\ + \ | E return self.obtain(req, installer)\r\n2021-02-23 18:55:03.233523\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1076, in obtain\r\n2021-02-23 18:55:03.233551 | test-node | E\ + \ return installer(requirement)\r\n2021-02-23 18:55:03.233565 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 758, in fetch_build_egg\r\n2021-02-23 18:55:03.233624 | test-node\ + \ | E return fetch_build_egg(self, req)\r\n2021-02-23 18:55:03.233636\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 130, in fetch_build_egg\r\n2021-02-23 18:55:03.233643 | test-node\ + \ | E raise DistutilsError(str(e)) from e\r\n2021-02-23 18:55:03.233649\ + \ | test-node | E distutils.errors.DistutilsError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.233665 | test-node\ + \ | E\r\n2021-02-23 18:55:03.233672 | test-node | E 18:44:34.522 commands.py\ + \ DEBUG Command stdout:\r\n2021-02-23 18:55:03.233678 | test-node\ + \ | E ERROR Preparing of the upstream to the SRPM build failed:\ + \ Command 'python3 setup.py --version' failed.\r\n2021-02-23 18:55:03.233685\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233691 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/api.py\"\ + , line 510, in create_srpm\r\n2021-02-23 18:55:03.233698 | test-node\ + \ | E self.up.prepare_upstream_for_srpm_creation(upstream_ref=upstream_ref)\r\ + \n2021-02-23 18:55:03.233704 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/upstream.py\"\ + , line 673, in prepare_upstream_for_srpm_creation\r\n2021-02-23 18:55:03.233711\ + \ | test-node | E current_git_describe_version = self.get_current_version()\r\ + \n2021-02-23 18:55:03.233717 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/upstream.py\"\ + , line 276, in get_current_version\r\n2021-02-23 18:55:03.233736 | test-node\ + \ | E action_output = self.get_output_from_action(\r\n2021-02-23\ + \ 18:55:03.233754 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/base_git.py\"\ + , line 314, in get_output_from_action\r\n2021-02-23 18:55:03.233761\ + \ | test-node | E self.command_handler.run_command(\r\n2021-02-23\ + \ 18:55:03.233768 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/command_handler.py\"\ + , line 100, in run_command\r\n2021-02-23 18:55:03.233774 | test-node\ + \ | E return commands.run_command(\r\n2021-02-23 18:55:03.233797\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/packit/utils/commands.py\"\ + , line 97, in run_command\r\n2021-02-23 18:55:03.233810 | test-node\ + \ | E raise PackitCommandFailedError(\r\n2021-02-23 18:55:03.233816\ + \ | test-node | E packit.exceptions.PackitCommandFailedError: Command\ + \ 'python3 setup.py --version' failed.\r\n2021-02-23 18:55:03.233823\ + \ | test-node | E\r\n2021-02-23 18:55:03.233829 | test-node | E The\ + \ above exception was the direct cause of the following exception:\r\ + \n2021-02-23 18:55:03.233836 | test-node | E\r\n2021-02-23 18:55:03.233843\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233849 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/cli/utils.py\"\ + , line 64, in covered_func\r\n2021-02-23 18:55:03.233856 | test-node\ + \ | E func(config=config, *args, **kwargs)\r\n2021-02-23 18:55:03.233862\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/packit/cli/srpm.py\"\ + , line 66, in srpm\r\n2021-02-23 18:55:03.233869 | test-node | E \ + \ srpm_path = api.create_srpm(output_file=output, upstream_ref=upstream_ref)\r\ + \n2021-02-23 18:55:03.233875 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/api.py\"\ + , line 512, in create_srpm\r\n2021-02-23 18:55:03.233882 | test-node\ + \ | E raise PackitSRPMException(\r\n2021-02-23 18:55:03.233889\ + \ | test-node | E packit.exceptions.PackitSRPMException: Preparing\ + \ of the upstream to the SRPM build failed: Command 'python3 setup.py\ + \ --version' failed.\r\n```\r\nMy assumption is this was a network flake\ + \ with files.pythonhosted.org but since the new retry mechanism can\ + \ be seen in play here, I wanna confirm this behaviour is expected.\r\ + \n" + closed_at: '2021-02-24T09:16:06Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/545/comments + created_at: '2021-02-24T08:26:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/545/events + html_url: https://github.com/packit/ogr/issues/545 + id: 815243822 + labels: + - color: 008672 default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/58/labels{/name} + description: Extra attention is needed + id: 1160311265 + name: help wanted + node_id: MDU6TGFiZWwxMTYwMzExMjY1 + url: https://api.github.com/repos/packit/ogr/labels/help%20wanted + labels_url: https://api.github.com/repos/packit/ogr/issues/545/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzMyMzQ5MDU= - number: 58 + node_id: MDU6SXNzdWU4MTUyNDM4MjI= + number: 545 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github: fork repository name may not match the upstream repo name' - updated_at: '2019-06-27T10:34:34Z' - url: https://api.github.com/repos/packit/ogr/issues/58 + title: Max retries exceeded with url files.pythonhosted.org + updated_at: '2021-02-24T12:53:54Z' + url: https://api.github.com/repos/packit/ogr/issues/545 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -74012,412 +99255,514 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- [pagure] Use empty dict as a default header.' - closed_at: '2019-06-26T13:30:50Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/89/comments - created_at: '2019-06-26T12:51:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/89/events - html_url: https://github.com/packit/ogr/pull/89 - id: 460952659 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/89/labels{/name} + author_association: CONTRIBUTOR + body: "This update implements retry mechanism for Github requests.\r\n\ + \r\nNumber of retry attempts can be set in `GithubService()` and instances\ + \ dictionary (used by `get_instances_from_dict()`), eg:\r\n```\r\n{\ + \ \ + \ \r\n \"github.com\": { \ + \ \r\n \"token\": \"abcd\", \ + \ \r\n \"max_retries\"\ + : \"3\", \r\n } \r\n} \r\n```\ + \ \r\nThis allows to enable request retries in packit/packit-service\ + \ by adding key `max_retries` to configuration (`authentication ->\ + \ github -> max_retries`). I'm not sure If this is an acceptable solution,\ + \ as far as it may be a bit confusing to set number of request retries\ + \ not necessarily related to authentication in authentication section\ + \ of config.\r\n\r\n\r\n" + closed_at: '2021-02-23T14:59:25Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/537/comments + created_at: '2021-02-09T23:05:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/537/events + html_url: https://github.com/packit/ogr/pull/537 + id: 804999188 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/537/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkxOTc0MzU1 - number: 89 + node_id: MDExOlB1bGxSZXF1ZXN0NTcwNjc3MzIx + number: 537 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/89.diff - html_url: https://github.com/packit/ogr/pull/89 - patch_url: https://github.com/packit/ogr/pull/89.patch - url: https://api.github.com/repos/packit/ogr/pulls/89 + diff_url: https://github.com/packit/ogr/pull/537.diff + html_url: https://github.com/packit/ogr/pull/537 + patch_url: https://github.com/packit/ogr/pull/537.patch + url: https://api.github.com/repos/packit/ogr/pulls/537 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix pagure header without token - updated_at: '2019-06-26T13:30:53Z' - url: https://api.github.com/repos/packit/ogr/issues/89 + title: Implement retry mechanism for Github + updated_at: '2021-02-23T14:59:25Z' + url: https://api.github.com/repos/packit/ogr/issues/537 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/8876312?v=4 + events_url: https://api.github.com/users/mmuzila/events{/privacy} + followers_url: https://api.github.com/users/mmuzila/followers + following_url: https://api.github.com/users/mmuzila/following{/other_user} + gists_url: https://api.github.com/users/mmuzila/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mmuzila + id: 8876312 + login: mmuzila + node_id: MDQ6VXNlcjg4NzYzMTI= + organizations_url: https://api.github.com/users/mmuzila/orgs + received_events_url: https://api.github.com/users/mmuzila/received_events + repos_url: https://api.github.com/users/mmuzila/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/mmuzila/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mmuzila/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/mmuzila - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Related to #80 \r\n\r\nI provided functionality for Github Issues\ - \ including `get_issue_info`, `get_issue_list`, `get_issue_comments`,\ - \ `issue_comment`. \r\n\r\nHowever, two tests for my new functionality\ - \ are failing. I cannot create .yaml files for them on path tests/integration/test-data.\ - \ When we solve this, I can finish functionality for labeling and closing\ - \ issues.\r\n\r\nthis PR also solves #79 - I assign pull-request number\ - \ into `PullRequest.id` in ogr/abstract.py. Before it was assigning\ - \ some \"global Github pull-request id\" instead \"pull-request number\"\ - \ which was incorrect. " - closed_at: '2019-06-26T11:37:09Z' - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/81/comments - created_at: '2019-06-20T13:59:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/81/events - html_url: https://github.com/packit/ogr/pull/81 - id: 458676227 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/81/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-02-22T17:25:21Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/544/comments + created_at: '2021-02-22T17:05:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/544/events + html_url: https://github.com/packit/ogr/pull/544 + id: 813687966 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/544/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkwMjMwMDk0 - number: 81 + node_id: MDExOlB1bGxSZXF1ZXN0NTc3Nzk0ODQ2 + number: 544 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/81.diff - html_url: https://github.com/packit/ogr/pull/81 - patch_url: https://github.com/packit/ogr/pull/81.patch - url: https://api.github.com/repos/packit/ogr/pulls/81 + diff_url: https://github.com/packit/ogr/pull/544.diff + html_url: https://github.com/packit/ogr/pull/544 + patch_url: https://github.com/packit/ogr/pull/544.patch + url: https://api.github.com/repos/packit/ogr/pulls/544 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get info and comment Github Issues - updated_at: '2019-06-26T11:37:09Z' - url: https://api.github.com/repos/packit/ogr/issues/81 + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-02-22T17:25:24Z' + url: https://api.github.com/repos/packit/ogr/issues/544 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "as integration tests needs regeneration stored yaml API communication.\r\ - \nWould be nice to add there target to be able to regenerate these files" - closed_at: '2019-06-25T14:47:44Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/61/comments - created_at: '2019-04-26T07:35:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/61/events - html_url: https://github.com/packit/ogr/issues/61 - id: 437538907 + body: "In case there is no existing release, instead of failing with an\ + \ exception\r\nreturn `None`.\r\n\r\nFixes #540\r\n\r\nSigned-off-by:\ + \ Matej Focko " + closed_at: '2021-02-22T10:07:04Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/542/comments + created_at: '2021-02-18T14:35:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/542/events + html_url: https://github.com/packit/ogr/pull/542 + id: 811155673 labels: - - color: 7057ff + - color: 0e8a16 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/61/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/542/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Mzc1Mzg5MDc= - number: 61 + node_id: MDExOlB1bGxSZXF1ZXN0NTc1NzI5NDQ3 + number: 542 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/542.diff + html_url: https://github.com/packit/ogr/pull/542 + patch_url: https://github.com/packit/ogr/pull/542.patch + url: https://api.github.com/repos/packit/ogr/pulls/542 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: create target for makefile for regeneration testing yaml files - updated_at: '2019-06-25T14:47:44Z' - url: https://api.github.com/repos/packit/ogr/issues/61 + title: Fix getting latest release + updated_at: '2021-02-22T10:07:04Z' + url: https://api.github.com/repos/packit/ogr/issues/542 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Hi,\r\nit is unbale to get or install ``ansible-bender`` for ``make\ - \ build`` target.\r\n\r\nIt is not part of Fedora-29.\r\n\r\nI've found\ - \ that @TomasTomecek done this: https://github.com/TomasTomecek/ansible-bender\r\ - \nbut it still failed:\r\n```\r\n12:43 $ sudo pip3 install ansible-bender\r\ - \nWARNING: Running pip install with root privileges is generally not\ - \ a good idea. Try `pip3 install --user` instead.\r\nCollecting ansible-bender\r\ - \n Downloading https://files.pythonhosted.org/packages/fa/5c/04c822b3ee6e2ff41eed372f15d954cccf164d0340341fbd0270d500bb83/ansible_bender-0.4.0-py2.py3-none-any.whl\r\ - \nRequirement already satisfied: PyYAML in /usr/lib64/python3.7/site-packages\ - \ (from ansible-bender) (4.2b4)\r\nCollecting tabulate (from ansible-bender)\r\ - \n Downloading https://files.pythonhosted.org/packages/c2/fd/202954b3f0eb896c53b7b6f07390851b1fd2ca84aa95880d7ae4f434c4ac/tabulate-0.8.3.tar.gz\ - \ (46kB)\r\n 100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ - \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ - \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ - | 51kB 2.0MB/s \r\nInstalling collected packages: tabulate, ansible-bender\r\ - \n Running setup.py install for tabulate ... done\r\nSuccessfully installed\ - \ ansible-bender-0.4.0 tabulate-0.8.3\r\n\u2714 ~/git/userspace-containerization/ogr\ - \ [tests1 L|\u202638] \r\n12:44 $ sudo make build \r\nsudo ansible-bender\ - \ build --build-volumes /home/jscotka/git/userspace-containerization/ogr:/src:Z\ - \ -- ./recipe.yaml registry.fedoraproject.org/fedora:29 ogr\r\nThere\ - \ was an error during execution: buildah command doesn't seem to be\ - \ available on your system. Please follow the upstream instructions\ - \ available at https://github.com/projectatomic/buildah/blob/master/install.md\r\ - \nmake: *** [Makefile:7: build] Error 2\r\n```\r\n\r\nafter installing:\ - \ ``sudo dnf install buildah `` it finally works." - closed_at: '2019-06-25T09:00:15Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/17/comments - created_at: '2019-02-18T11:46:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/17/events - html_url: https://github.com/packit/ogr/issues/17 - id: 411437302 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/17/labels{/name} + body: "```py\r\n def get_latest_release(self) -> Release:\r\n```\r\n\ + \r\nIn case that no release exists, I'd expect to get `None` instead\ + \ of being smacked in face with exception.\r\n\r\n- GitHub throws 404\ + \ Exception\r\n- GitLab throws IndexError\r\n\r\nAction items:\r\n-\ + \ [ ] Switch return type from `Release` to `Optional[Release]`\r\n-\ + \ [ ] Update implementation to check for such situation\r\n\r\nCould\ + \ be used in refactor for packit/packit-service#985, currently is a\ + \ blocker, since we need to check non-existing release there." + closed_at: '2021-02-22T10:07:03Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/540/comments + created_at: '2021-02-18T11:00:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/540/events + html_url: https://github.com/packit/ogr/issues/540 + id: 810992567 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/540/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTE0MzczMDI= - number: 17 + node_id: MDU6SXNzdWU4MTA5OTI1Njc= + number: 540 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: missing ansible-bender dep for building - updated_at: '2019-06-25T09:00:15Z' - url: https://api.github.com/repos/packit/ogr/issues/17 + title: '`get_latest_release` when no release exists' + updated_at: '2021-02-22T10:07:03Z' + url: https://api.github.com/repos/packit/ogr/issues/540 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "* [x] don't fail when PAGURE_{TOKEN,USER} are not specified\r\n\ - * [x] mock remote API and write complete unit tests using those data\ - \ (or even have a single test suite and enable it to run against live\ - \ instance and mocked data)\r\n* [x] [tox](https://developer.fedoraproject.org/tech/languages/python/multiple-pythons.html)-ify\ - \ it (#27)" - closed_at: '2019-06-25T08:59:43Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/8/comments - created_at: '2019-01-30T10:19:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/8/events - html_url: https://github.com/packit/ogr/issues/8 - id: 404698352 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/8/labels{/name} + body: 'Signed-off-by: Matej Focko ' + closed_at: '2021-02-19T15:51:07Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/543/comments + created_at: '2021-02-19T12:30:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/543/events + html_url: https://github.com/packit/ogr/pull/543 + id: 811985098 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/543/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MDQ2OTgzNTI= - number: 8 + node_id: MDExOlB1bGxSZXF1ZXN0NTc2NDI2MDQw + number: 543 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/543.diff + html_url: https://github.com/packit/ogr/pull/543 + patch_url: https://github.com/packit/ogr/pull/543.patch + url: https://api.github.com/repos/packit/ogr/pulls/543 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve testing - updated_at: '2019-06-25T08:59:43Z' - url: https://api.github.com/repos/packit/ogr/issues/8 + title: Release 0.21.0 + updated_at: '2021-02-19T15:51:07Z' + url: https://api.github.com/repos/packit/ogr/issues/543 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "we need this in packit this sprint when we start building in copr\r\ - \n\r\nthis should be implemented soonish and land in next release\r\n\ - \r\nrelevant code for github:\r\nhttps://github.com/packit-service/packit/blob/04793f16d5ced27b5e7fec7d963d650b065a4276/packit/watcher.py#L94" - closed_at: '2019-06-25T07:31:05Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/54/comments - created_at: '2019-04-04T14:24:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/54/events - html_url: https://github.com/packit/ogr/issues/54 - id: 429309114 + body: "- current convention is to store fmf files in `plans/`\r\n- `shell`\ + \ execute method has been deprecated, `how:` defaults to `tmt`\r\n-\ + \ added `summary:`\r\n- added `README.md`" + closed_at: '2021-02-19T13:12:37Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/541/comments + created_at: '2021-02-18T14:28:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/541/events + html_url: https://github.com/packit/ogr/pull/541 + id: 811150489 labels: - - color: a2eeef + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/54/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/541/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjkzMDkxMTQ= - number: 54 + node_id: MDExOlB1bGxSZXF1ZXN0NTc1NzI1MTA4 + number: 541 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/541.diff + html_url: https://github.com/packit/ogr/pull/541 + patch_url: https://github.com/packit/ogr/pull/541.patch + url: https://api.github.com/repos/packit/ogr/pulls/541 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add a way to set check results for a commit - updated_at: '2019-06-25T07:31:05Z' - url: https://api.github.com/repos/packit/ogr/issues/54 + title: Split ci.fmf into plans/*.fmf + updated_at: '2021-02-19T13:52:42Z' + url: https://api.github.com/repos/packit/ogr/issues/541 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Add Makefile targets for removing response files.\r\n- Determine\ - \ forcewrite mode from file existance.\r\n\r\n\r\nWhy?\r\n- less magic\r\ - \n- easier for newcomers:\r\n - When adding a new test, you need\ - \ to rerun the tests to generate the response files.\r\n - To update\ - \ a response file, you need to remove the file and rerun the tests.\r\ - \n\r\n\r\nTODO:\r\n\r\n- [x] describe the testing in the contribution\ - \ guide" - closed_at: '2019-06-24T14:55:24Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/84/comments - created_at: '2019-06-24T12:33:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/84/events - html_url: https://github.com/packit/ogr/pull/84 - id: 459865460 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/84/labels{/name} + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* https://github.com/packit-service\ + \ -> https://github.com/packit\n* Add Jupyter examples\n* fix create\ + \ issue in Github and add test\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.13.1-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-08-20T07:58:30Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/455/comments + created_at: '2020-08-19T11:07:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/455/events + html_url: https://github.com/packit/ogr/pull/455 + id: 681753984 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/455/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkxMTExNTU4 - number: 84 + node_id: MDExOlB1bGxSZXF1ZXN0NDcwMDkyNTEx + number: 455 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/84.diff - html_url: https://github.com/packit/ogr/pull/84 - patch_url: https://github.com/packit/ogr/pull/84.patch - url: https://api.github.com/repos/packit/ogr/pulls/84 + diff_url: https://github.com/packit/ogr/pull/455.diff + html_url: https://github.com/packit/ogr/pull/455 + patch_url: https://github.com/packit/ogr/pull/455.patch + url: https://api.github.com/repos/packit/ogr/pulls/455 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Forcewrite mode from file existance - updated_at: '2019-06-24T14:55:57Z' - url: https://api.github.com/repos/packit/ogr/issues/84 + title: 0.13.1 release + updated_at: '2021-02-19T12:31:31Z' + url: https://api.github.com/repos/packit/ogr/issues/455 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Rename @readonly to @if_readonly. - - - - Fixes #56' - closed_at: '2019-06-24T14:46:14Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/83/comments - created_at: '2019-06-24T11:34:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/83/events - html_url: https://github.com/packit/ogr/pull/83 - id: 459840373 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/83/labels{/name} + body: '- Be able to run tests via tmt also locally.' + closed_at: '2021-02-18T18:31:30Z' + comments: 20 + comments_url: https://api.github.com/repos/packit/ogr/issues/358/comments + created_at: '2020-03-19T08:50:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/358/events + html_url: https://github.com/packit/ogr/pull/358 + id: 584255021 + labels: + - color: dd5f74 + default: false + description: Work in progress. + id: 1432779248 + name: do-not-merge + node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 + url: https://api.github.com/repos/packit/ogr/labels/do-not-merge + labels_url: https://api.github.com/repos/packit/ogr/issues/358/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkxMDkxNDg4 - number: 83 + node_id: MDExOlB1bGxSZXF1ZXN0MzkwODczODYy + number: 358 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/83.diff - html_url: https://github.com/packit/ogr/pull/83 - patch_url: https://github.com/packit/ogr/pull/83.patch - url: https://api.github.com/repos/packit/ogr/pulls/83 + diff_url: https://github.com/packit/ogr/pull/358.diff + html_url: https://github.com/packit/ogr/pull/358 + patch_url: https://github.com/packit/ogr/pull/358.patch + url: https://api.github.com/repos/packit/ogr/pulls/358 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Rename readonly decorator - updated_at: '2019-06-24T14:46:47Z' - url: https://api.github.com/repos/packit/ogr/issues/83 + title: 'WIP: Tmt local run' + updated_at: '2021-02-19T10:30:11Z' + url: https://api.github.com/repos/packit/ogr/issues/358 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -74439,530 +99784,527 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "The `@readonly` decorator should be renamed as it can confuse newcomers\ - \ that the method itself is \"readonly\". The fact is that it has the\ - \ opposite meaning of the read-only.\r\n\r\nFeel free to add your ideas\ - \ as a single comment so we can easily vote.\r\n\r\n-----\r\n\r\nFollow-up\ - \ from #48" - closed_at: '2019-06-24T14:46:14Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/56/comments - created_at: '2019-04-09T08:17:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/56/events - html_url: https://github.com/packit/ogr/issues/56 - id: 430829968 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/56/labels{/name} + body: "Fixes #310\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2021-02-15T20:48:43Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/539/comments + created_at: '2021-02-12T13:43:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/539/events + html_url: https://github.com/packit/ogr/pull/539 + id: 807247111 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/539/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzA4Mjk5Njg= - number: 56 + node_id: MDExOlB1bGxSZXF1ZXN0NTcyNTI4NDEy + number: 539 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/539.diff + html_url: https://github.com/packit/ogr/pull/539 + patch_url: https://github.com/packit/ogr/pull/539.patch + url: https://api.github.com/repos/packit/ogr/pulls/539 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'better name for @readonly decorator ' - updated_at: '2019-06-24T14:46:14Z' - url: https://api.github.com/repos/packit/ogr/issues/56 + title: Implement get_files for Pagure + updated_at: '2021-02-15T20:55:37Z' + url: https://api.github.com/repos/packit/ogr/issues/539 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=14: - - metadata: - latency: 0.6013643741607666 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* enable calling dump()\ - \ after store()\n* packit.yaml: add a link to docs\n* packit: sync from\ - \ downstream & build in copr\n* Fix mypy errors\n* Dump RequestResponse\ - \ on our own\n* Fix old imports\n* Remove old Pagure tests\n* Fix tests\ - \ and regenerate test responses, do not save headers\n* Use custom response\ - \ class for Pagure\n* Add missing readonly decorator\n* Use self.get_raw_request\ - \ on cal_api\n* Add docstring for Pagure methods\n* Fix creation of\ - \ pr comments\n* Improve the request/response handling and fix authentication\ - \ header\n* Apply suggestions by @jpopelka from code review\n* Fix commit\ - \ flags/statuses\n* Remove libpagure from recipe\n* Methods for commit\ - \ statuses/flags and comments\n* Add methods for tags\n* Fix __str__\ - \ for PRComment and PullRequest\n* Remove libpagure from requirements\n\ - * Fix forking\n* Better response handling for Pagure API\n* Remove OurPagure\n\ - * Implement forking logic and PR methods\n* First part of implementing\ - \ the Pagure classes without libpagure\n* Add string representation\ - \ for PRComment and PullRequest\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.4.0-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2019-06-11T14:05:10Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/77/comments - created_at: '2019-06-11T13:18:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/77/events - html_url: https://github.com/packit/ogr/pull/77 - id: 454686226 + author_association: CONTRIBUTOR + body: "Implement `get_files()` method in Pagure.\r\n\r\n- Structure can\ + \ be seen in the docstring of the code that implements that: https://pagure.io/pagure/blob/dd207ee/f/pagure/api/project.py#_709\r\ + \n- Example: https://pagure.io/api/0/pagure/tree\r\n" + closed_at: '2021-02-15T20:48:43Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/310/comments + created_at: '2020-01-21T12:50:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/310/events + html_url: https://github.com/packit/ogr/issues/310 + id: 552856957 labels: - - color: ededed + - color: be8fd8 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/77/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/310/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjg3MDg2Mzg1 - number: 77 + node_id: MDU6SXNzdWU1NTI4NTY5NTc= + number: 310 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/77.diff - html_url: https://github.com/packit/ogr/pull/77 - patch_url: https://github.com/packit/ogr/pull/77.patch - url: https://api.github.com/repos/packit/ogr/pulls/77 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.4.0 release - updated_at: '2019-06-11T14:10:26Z' - url: https://api.github.com/repos/packit/ogr/issues/77 - user: - avatar_url: https://avatars1.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} + title: Support get_files() in Pagure + updated_at: '2021-02-15T20:48:43Z' + url: https://api.github.com/repos/packit/ogr/issues/310 + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-06-11T13:19:01Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/76/comments - created_at: '2019-06-11T13:18:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/76/events - html_url: https://github.com/packit/ogr/issues/76 - id: 454685925 + author_association: NONE + body: "Sentry Issue: [RED-HAT-0P-2PA](https://sentry.io/organizations/red-hat-0p/issues/1785839618/?referrer=github_integration)\n\ + \n```\nRemoteDisconnected: Remote end closed connection without response\n\ + (2 additional frame(s) were not displayed)\n...\n File \"\"\ + , line 3, in raise_from\n # Permission is hereby granted, free of\ + \ charge, to any person obtaining a copy\n File \"urllib3/connectionpool.py\"\ + , line 416, in _make_request\n httplib_response = conn.getresponse()\n\ + \ File \"http/client.py\", line 1369, in getresponse\n response.begin()\n\ + \ File \"http/client.py\", line 310, in begin\n version, status,\ + \ reason = self._read_status()\n File \"http/client.py\", line 279,\ + \ in _read_status\n raise RemoteDisconnected(\"Remote end closed\ + \ connection without\"\n\nProtocolError: ('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))\n(6 additional frame(s)\ + \ were not displayed)\n...\n File \"\", line 3, in raise_from\n\ + \ # Permission is hereby granted, free of charge, to any person obtaining\ + \ a copy\n File \"urllib3/connectionpool.py\", line 416, in _make_request\n\ + \ httplib_response = conn.getresponse()\n File \"http/client.py\"\ + , line 1369, in getresponse\n response.begin()\n File \"http/client.py\"\ + , line 310, in begin\n version, status, reason = self._read_status()\n\ + \ File \"http/client.py\", line 279, in _read_status\n raise RemoteDisconnected(\"\ + Remote end closed connection without\"\n\nConnectionError: ('Connection\ + \ aborted.', RemoteDisconnected('Remote end closed connection without\ + \ response'))\n File \"ogr/services/pagure/service.py\", line 168,\ + \ in call_api_raw\n method=method, url=url, params=params, data=data\n\ + \ File \"ogr/services/pagure/service.py\", line 186, in get_raw_request\n\ + \ verify=not self.insecure,\n File \"requests/sessions.py\", line\ + \ 533, in request\n resp = self.send(prep, **send_kwargs)\n File\ + \ \"requests/sessions.py\", line 646, in send\n r = adapter.send(request,\ + \ **kwargs)\n File \"requests/adapters.py\", line 498, in send\n \ + \ raise ConnectionError(err, request=request)\n\nPagureAPIException:\ + \ (\"Cannot connect to url: 'https://git.stg.centos.org/api/0/source-git/acl/c/48d4feb54ebcb47cb593ab3c304ec36b755e8769/flag'.\"\ + , ConnectionError(ProtocolError('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))))\n(11 additional frame(s)\ + \ were not displayed)\n...\n File \"ogr/services/pagure/project.py\"\ + , line 464, in set_commit_status\n uid=uid,\n File \"ogr/services/pagure/flag.py\"\ + , line 88, in set\n \"c\", commit, \"flag\", method=\"POST\", data=data\n\ + \ File \"ogr/services/pagure/project.py\", line 129, in _call_project_api\n\ + \ url=request_url, method=method, params=params, data=data\n File\ + \ \"ogr/services/pagure/service.py\", line 128, in call_api\n response\ + \ = self.call_api_raw(url=url, method=method, params=params, data=data)\n\ + \ File \"ogr/services/pagure/service.py\", line 173, in call_api_raw\n\ + \ raise PagureAPIException(f\"Cannot connect to url: '{url}'.\",\ + \ er)\n```" + closed_at: '2021-02-12T12:22:11Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/464/comments + created_at: '2020-09-16T07:25:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/464/events + html_url: https://github.com/packit/ogr/issues/464 + id: 702525467 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 1d76db default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/76/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + labels_url: https://api.github.com/repos/packit/ogr/issues/464/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTQ2ODU5MjU= - number: 76 + node_id: MDU6SXNzdWU3MDI1MjU0Njc= + number: 464 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-06-11T13:19:01Z' - url: https://api.github.com/repos/packit/ogr/issues/76 + title: '[Pagure] ProtocolError: (''Connection aborted.'', RemoteDisconnected(''Remote + end closed connection without response''))' + updated_at: '2021-02-12T12:22:11Z' + url: https://api.github.com/repos/packit/ogr/issues/464 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 + events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers + following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/apps/sentry-io + id: 39604003 + login: sentry-io[bot] + node_id: MDM6Qm90Mzk2MDQwMDM= + organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events + repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/sentry-io%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '\+ packit.yaml: add a link to docs' - closed_at: '2019-05-29T14:23:24Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/72/comments - created_at: '2019-05-22T14:36:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/72/events - html_url: https://github.com/packit/ogr/pull/72 - id: 447175169 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `[Errno 2] No such file or directory: ''/tmp/packit-dist-gitl5r40_6q/sources''` + | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-02-12T12:21:06Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/530/comments + created_at: '2021-02-05T09:26:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/530/events + html_url: https://github.com/packit/ogr/issues/530 + id: 802000731 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/72/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/530/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjgxMjI1MTU2 - number: 72 + node_id: MDU6SXNzdWU4MDIwMDA3MzE= + number: 530 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/72.diff - html_url: https://github.com/packit/ogr/pull/72 - patch_url: https://github.com/packit/ogr/pull/72.patch - url: https://api.github.com/repos/packit/ogr/pulls/72 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: dump() when store() is called - updated_at: '2019-05-29T14:23:28Z' - url: https://api.github.com/repos/packit/ogr/issues/72 + title: '[packit] Propose downstream failed for release 0.20.0' + updated_at: '2021-02-12T12:21:06Z' + url: https://api.github.com/repos/packit/ogr/issues/530 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Remove OurPagure.\r\n- Implement forking logic and PR methods.\r\ - \n- First part of implementing the Pagure classes without libpagure.\r\ - \n- Add string representation for PRComment and PullRequest.\r\n\r\n\ - Fix #64\r\nFix #67\r\n\r\n---\r\n\r\nTODO:\r\n\r\n- [x] readonly mode\r\ - \n- [x] tests\r\n\r\n\r\n---\r\n\r\n## How to test?\r\n\r\n```python\r\ - \nfrom ogr.services.pagure import PagureService\r\nfrom ogr.abstract\ - \ import PRStatus\r\n\r\n\r\nservice = PagureService(token=\"???_PAGURE_TOKEN_???\"\ - )\r\n\r\n# Play with the API\r\n\r\nprint(service.user.get_username())\r\ - \nproject = service.get_project(repo=\"colin\", namespace=\"rpms\")\r\ - \nprint(project.get_commit_statuses(\"339a19b0bbc766d0c6cdbbc2ef5a32c0de9f7551\"\ - )[0])\r\nprint(project.get_tags())\r\n\r\nfork = project.get_fork()\r\ - \nprint(fork.exists())\r\n\r\nproject.fork_create()\r\n\r\nfor pr in\ - \ project.get_pr_list(status=PRStatus.all):\r\n print(pr)\r\n\r\n\ - pr = project.get_pr_info(3)\r\nprint(pr)\r\nfor c in project.get_pr_comments(3):\r\ - \n print(c)\r\n\r\nprint(fork.is_fork)\r\nprint(fork.is_forked())\r\ - \n```" - closed_at: '2019-05-29T07:46:28Z' - comments: 17 - comments_url: https://api.github.com/repos/packit/ogr/issues/71/comments - created_at: '2019-05-20T10:11:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/71/events - html_url: https://github.com/packit/ogr/pull/71 - id: 446033070 + body: "# TODO\r\n\r\n- [ ] decide between `pdoc` and `pdoc3` (they seem\ + \ to be separate packages)\r\n oh, there's the tea https://github.com/mitmproxy/pdoc#pdoc-vs-pdoc3\r\ + \n- [ ] we currently use Sphinx markup that doesn't really work well\ + \ with either of `pdoc`s\r\n- [ ] since we use `__all__` it seems to\ + \ be harder to navigate the docs\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2021-02-09T11:16:41Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/531/comments + created_at: '2021-02-05T10:53:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/531/events + html_url: https://github.com/packit/ogr/pull/531 + id: 802064566 labels: - - color: 1d76db + - color: 0e8a16 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - labels_url: https://api.github.com/repos/packit/ogr/issues/71/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/531/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjgwMzI0Njgx - number: 71 + node_id: MDExOlB1bGxSZXF1ZXN0NTY4MjcwNTA2 + number: 531 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/71.diff - html_url: https://github.com/packit/ogr/pull/71 - patch_url: https://github.com/packit/ogr/pull/71.patch - url: https://api.github.com/repos/packit/ogr/pulls/71 + diff_url: https://github.com/packit/ogr/pull/531.diff + html_url: https://github.com/packit/ogr/pull/531 + patch_url: https://github.com/packit/ogr/pull/531.patch + url: https://api.github.com/repos/packit/ogr/pulls/531 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove libpagure - updated_at: '2019-05-29T11:00:10Z' - url: https://api.github.com/repos/packit/ogr/issues/71 + title: Add autogeneration of docs + updated_at: '2021-02-12T11:43:27Z' + url: https://api.github.com/repos/packit/ogr/issues/531 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-05-29T08:31:09Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/75/comments - created_at: '2019-05-29T07:41:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/75/events - html_url: https://github.com/packit/ogr/pull/75 - id: 449647079 + author_association: FIRST_TIME_CONTRIBUTOR + body: "Implemented list projects for GitServices (#485 )\r\n\r\n@lachmanfrantisek " + closed_at: '2021-02-12T08:01:33Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/522/comments + created_at: '2021-01-24T03:23:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/522/events + html_url: https://github.com/packit/ogr/pull/522 + id: 792711474 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/75/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/522/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjgzMTMxNzY3 - number: 75 + node_id: MDExOlB1bGxSZXF1ZXN0NTYwNTM3ODc2 + number: 522 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/75.diff - html_url: https://github.com/packit/ogr/pull/75 - patch_url: https://github.com/packit/ogr/pull/75.patch - url: https://api.github.com/repos/packit/ogr/pulls/75 + diff_url: https://github.com/packit/ogr/pull/522.diff + html_url: https://github.com/packit/ogr/pull/522 + patch_url: https://github.com/packit/ogr/pull/522.patch + url: https://api.github.com/repos/packit/ogr/pulls/522 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'packit: sync from downstream & build in copr' - updated_at: '2019-05-29T08:31:13Z' - url: https://api.github.com/repos/packit/ogr/issues/75 + title: Implemented list projects for GitServices (#485) + updated_at: '2021-02-12T08:05:16Z' + url: https://api.github.com/repos/packit/ogr/issues/522 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/abkosar - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ - \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ - \nhas to be adapted, currenly I've added dependency on lower version\ - \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ - \nto avoid this issue." - closed_at: '2019-05-29T07:46:28Z' + body: "Tools that we use for autogeneration of documentation support mainly\ + \ markdown (also optionally numpy or google style of docstrings). We\ + \ should transition from our current sphinx-style of comments to one\ + \ of those.\r\n\r\n- [ ] decide between markdown, numpy or google style\r\ + \n - [ ] update GitHub action for generating of documentation if necessary\r\ + \n- [ ] update docstrings to adhere to the chosen style/format\r\n\r\ + \nFollow-up of #531 " + closed_at: null comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments - created_at: '2019-04-29T14:41:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/64/events - html_url: https://github.com/packit/ogr/issues/64 - id: 438351136 + comments_url: https://api.github.com/repos/packit/ogr/issues/532/comments + created_at: '2021-02-09T13:57:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/532/events + html_url: https://github.com/packit/ogr/issues/532 + id: 804575574 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a + - color: c5def5 default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/532/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzgzNTExMzY= - number: 64 + node_id: MDU6SXNzdWU4MDQ1NzU1NzQ= + number: 532 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'libpagure has changed ' - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/64 + state: open + title: Docstrings' format + updated_at: '2021-02-11T14:47:10Z' + url: https://api.github.com/repos/packit/ogr/issues/532 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "While debugging https://github.com/packit-service/packit/issues/305\ - \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ - \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ - \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ attribute has a value `rpm/packit`, while libpagure probably expects\ - \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ - \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ - \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ - \ expects `/` in `self.repo`, which is probably not what `libpagure`\ - \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ - \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ - \ even more recently." - closed_at: '2019-05-29T07:46:28Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments - created_at: '2019-05-10T11:09:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/67/events - html_url: https://github.com/packit/ogr/issues/67 - id: 442664622 + body: This was amended in cf86074e to be compatible with both old/new + TF, but can be removed completely now since the old TF no longer exists. + closed_at: '2021-02-10T08:12:03Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/536/comments + created_at: '2021-02-09T14:51:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/536/events + html_url: https://github.com/packit/ogr/pull/536 + id: 804622682 labels: - - color: 1d76db + - color: 0e8a16 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/536/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDI2NjQ2MjI= - number: 67 + node_id: MDExOlB1bGxSZXF1ZXN0NTcwMzU4OTIx + number: 536 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/536.diff + html_url: https://github.com/packit/ogr/pull/536 + patch_url: https://github.com/packit/ogr/pull/536.patch + url: https://api.github.com/repos/packit/ogr/pulls/536 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: libpagure.Pagure expects '/' not in repo attribute - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/67 + title: '[ci.fmf] remove old TF specific code' + updated_at: '2021-02-10T08:56:36Z' + url: https://api.github.com/repos/packit/ogr/issues/536 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -74980,828 +100322,1355 @@ requests.sessions: subscriptions_url: https://api.github.com/users/jpopelka/subscriptions type: User url: https://api.github.com/users/jpopelka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "There is no documentation on how to use the library, currently.\ + \ A documentation will help people on how to use ogr, and showcase it's\ + \ features and functions.\r\n\r\nThis can be done by adding the wiki\ + \ pages (on Github), since the documentation might be quite long and\ + \ the Wiki will help in segregating several topics (for instance, how\ + \ to use ogr for GitHub, GitLab and Pagure).\r\n\r\n" + closed_at: '2021-02-09T14:13:50Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/53/comments + created_at: '2019-04-04T13:30:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/53/events + html_url: https://github.com/packit/ogr/issues/53 + id: 429280678 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: bf6b0b + default: false + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/53/labels{/name} + locked: false + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0MjkyODA2Nzg= + number: 53 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add a documentation for API + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/issues/53 + user: + avatar_url: https://avatars.githubusercontent.com/u/31067398?v=4 + events_url: https://api.github.com/users/Aniket-Pradhan/events{/privacy} + followers_url: https://api.github.com/users/Aniket-Pradhan/followers + following_url: https://api.github.com/users/Aniket-Pradhan/following{/other_user} + gists_url: https://api.github.com/users/Aniket-Pradhan/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Aniket-Pradhan + id: 31067398 + login: Aniket-Pradhan + node_id: MDQ6VXNlcjMxMDY3Mzk4 + organizations_url: https://api.github.com/users/Aniket-Pradhan/orgs + received_events_url: https://api.github.com/users/Aniket-Pradhan/received_events + repos_url: https://api.github.com/users/Aniket-Pradhan/repos + site_admin: false + starred_url: https://api.github.com/users/Aniket-Pradhan/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Aniket-Pradhan/subscriptions + type: User + url: https://api.github.com/users/Aniket-Pradhan - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-05-14T14:52:49Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/70/comments - created_at: '2019-05-14T14:49:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/70/events - html_url: https://github.com/packit/ogr/pull/70 - id: 443960153 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/70/labels{/name} + body: "Currently we use [pdoc3](https://pypi.org/project/pdoc3/) to generate\ + \ our documentation, it would be in our interest to switch to original\ + \ project [pdoc](https://pypi.org/project/pdoc/), since it provides\ + \ built-in search feature and cleaner UI.\r\n\r\nCurrently can't be\ + \ used since there is a failure while parsing our source files.\r\n\r\ + \nFollow-up of #531" + closed_at: null + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/535/comments + created_at: '2021-02-09T14:12:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/535/events + html_url: https://github.com/packit/ogr/issues/535 + id: 804588067 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/535/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjc4NzE5MTU5 - number: 70 + node_id: MDU6SXNzdWU4MDQ1ODgwNjc= + number: 535 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/70.diff - html_url: https://github.com/packit/ogr/pull/70 - patch_url: https://github.com/packit/ogr/pull/70.patch - url: https://api.github.com/repos/packit/ogr/pulls/70 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.3.1 release - updated_at: '2019-05-14T14:55:27Z' - url: https://api.github.com/repos/packit/ogr/issues/70 + state: open + title: Transition to pdoc from pdoc3 + updated_at: '2021-02-09T14:12:22Z' + url: https://api.github.com/repos/packit/ogr/issues/535 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* add comment why there\ - \ is little bit confusing assigment\n* improve mock pf persistent objects\n\ - * use generic exception, to not fail when regenerating\n* raise filenotfound\ - \ exception in pagure method get_file_content\n* enable readonly tests\n\ - * enable some tests what were disabled when debugging various issues\n\ - * check write mode in dump function not in desctructor\n* do not flush\ - \ within desctructor, in case read mode\n* avoid to use default flow\ - \ style for yaml files\n* mock pagure classes\n* commit status\n* Regenerate\ - \ github test data\n* Implement adding PR comments\n* commit_comment:\ - \ Fix typo in docs\n* Implement adding commit comments\n* method GithubProject().get_sha_from_tag\ - \ in\n* rename github in mock to another name to fix the pypy test\n\ - * fix integration test for github by skipping\n* add yaml dependency\ - \ to requirements\n* add there class attribute to be possible to use\ - \ ogr mocking in pagure\n* fixed using of open in destructor\n* fixed\ - \ using of open in destructor\n* rename write_mode to is_write_mode\ - \ to be more explicit that there is expected boolean primarily\n* add\ - \ doc strings and adapt PR review comments\n* pagure/get_urls: fill\ - \ in {username}\n* use internal keys also in github to be clearer\n\ - * mocking also pagure in simplier way\n* raise special exception in\ - \ case key is not in storage file\n* move storage class to mock_core\n\ - * mock via persistent storage: run integration tests with persistent\ - \ storage\n* adapt jpopelka suggestions from PR\n* adapt jpopelka suggestion\ - \ from PR\n* add read only helper and option to github and pagure classes\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.3.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-05-14T10:16:08Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/69/comments - created_at: '2019-05-13T12:52:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/69/events - html_url: https://github.com/packit/ogr/pull/69 - id: 443381757 + body: "pdoc(3) supports inheriting of docstrings, there is no need to\ + \ have multiple identical docstrings and also try to rethink exporting\ + \ of the classes/modules through `__all__`, since it makes the documentation\ + \ harder to navigate\r\n\r\n- [ ] remove duplicit docstrings\r\n -\ + \ [ ] add specific docstrings where the interface deviates\r\n- [ ]\ + \ try to think about better structure of exports for `__all__` (shouldn't\ + \ be a problem in specific services, just clean it up at the top-level)\r\ + \n\r\nFollow-up of #531" + closed_at: null + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/533/comments + created_at: '2021-02-09T14:01:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/533/events + html_url: https://github.com/packit/ogr/issues/533 + id: 804579179 labels: - - color: ededed + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: c2ef58 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/69/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/533/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjc4MjYwMzM4 - number: 69 + node_id: MDU6SXNzdWU4MDQ1NzkxNzk= + number: 533 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/69.diff - html_url: https://github.com/packit/ogr/pull/69 - patch_url: https://github.com/packit/ogr/pull/69.patch - url: https://api.github.com/repos/packit/ogr/pulls/69 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.3.0 release - updated_at: '2019-05-14T10:20:51Z' - url: https://api.github.com/repos/packit/ogr/issues/69 + state: open + title: Remove duplicit docstrings + make documentation easier to navigate + updated_at: '2021-02-09T14:01:52Z' + url: https://api.github.com/repos/packit/ogr/issues/533 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-05-13T12:52:45Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/68/comments - created_at: '2019-05-13T12:50:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/68/events - html_url: https://github.com/packit/ogr/issues/68 - id: 443380561 + body: "Pipelines are specific to the GitLab but there were some requests\ + \ (ping @thrix ) to support them in OGR as well.\r\n\r\n- It's going\ + \ against the purpose of OGR to have one API for multiple forges. :-1:\ + \ \r\n- Users can access `python-gitlab` to do that instead. :-1: \r\ + \n - But it's not a good UX. `python-gitlab` is our implementation\ + \ detail. We should not force users to access that. :+1: \r\n- Technically\ + \ it will be easy to implement. :+1: (No big changes needed, just add\ + \ some GitLab specific classes and methods.)\r\n- It will be useful\ + \ for packit-service GitLab implementation :+1: (ping @shreyaspapi ..;-)\r\ + \n\r\nAC:\r\n- [ ] Provide a class abstraction on top of the objects\ + \ related to that.\r\n - Make here a proposal before coding.\r\n- [\ + \ ] Implement useful methods and classes.\r\n- [ ] Create new issues\ + \ for anything that can be implemented later." + closed_at: null + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/420/comments + created_at: '2020-05-26T14:37:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/420/events + html_url: https://github.com/packit/ogr/issues/420 + id: 624934468 labels: - - color: ededed + - color: d93f0b default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/68/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/420/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDMzODA1NjE= - number: 68 + node_id: MDU6SXNzdWU2MjQ5MzQ0Njg= + number: 420 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: new minor release - updated_at: '2019-05-13T12:52:45Z' - url: https://api.github.com/repos/packit/ogr/issues/68 + state: open + title: Support for GitLab pipelines + updated_at: '2021-02-09T08:43:48Z' + url: https://api.github.com/repos/packit/ogr/issues/420 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Improve mocking, to be easily able mock `packit` via passing `persistent_storage` - class variable - closed_at: '2019-05-02T12:42:40Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/66/comments - created_at: '2019-05-02T11:19:16Z' - events_url: https://api.github.com/repos/packit/ogr/issues/66/events - html_url: https://github.com/packit/ogr/pull/66 - id: 439539983 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/66/labels{/name} + author_association: CONTRIBUTOR + body: "and ideally link it with pull request and git project\r\n\r\nThe\ + \ expectation here is that when ogr returns name of a branch, it would\ + \ return a GitBranch instance instead.\r\n\r\nThe class should contain\ + \ at minimum:\r\n* name\r\n* be linked to a repository\r\n* commit SHA\ + \ of the HEAD\r\n\r\nWould be nice if:\r\n* there was a connection to\ + \ a PR if there is one\r\n* datetime it was created\r\n* datetime of\ + \ last change" + closed_at: null + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/359/comments + created_at: '2020-03-23T12:36:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/359/events + html_url: https://github.com/packit/ogr/issues/359 + id: 586176845 + labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/359/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjc1MzIyNTg2 - number: 66 + node_id: MDU6SXNzdWU1ODYxNzY4NDU= + number: 359 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/66.diff - html_url: https://github.com/packit/ogr/pull/66 - patch_url: https://github.com/packit/ogr/pull/66.patch - url: https://api.github.com/repos/packit/ogr/pulls/66 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: improve mock of persistent objects - updated_at: '2019-05-02T12:42:41Z' - url: https://api.github.com/repos/packit/ogr/issues/66 + state: open + title: introduce a class for a git branch + updated_at: '2021-02-09T08:39:32Z' + url: https://api.github.com/repos/packit/ogr/issues/359 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "now each integration test class contains right one file with stored\ - \ API data.\r\nWe could reconsider it, and maybe have file for each\ - \ test, to avoid to regenerate big file and have big commits.\r\nWe\ - \ have to solve several issues:\r\n * How to handle it per test, now\ - \ there is right one service pytest fixture function what contains it\r\ - \n * How to regenerate just relevant part \r\n * maybe remove some\ - \ timestamps, UIDs and similar objects what can change on every request\r\ - \n * or manually(semiautomatically) call just affected tests - ie:\ - \ run tests, find failures (key errors) and then try to just regenerate\ - \ files for failed tests" - closed_at: '2019-04-30T19:32:17Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/62/comments - created_at: '2019-04-26T13:21:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/62/events - html_url: https://github.com/packit/ogr/issues/62 - id: 437670314 + body: "After the Packit organisation rename, I had to regenerate the test\ + \ data for GitHub. This proved to be a considerable effort, with roughly\ + \ the following steps:\r\n\r\n- create a Python virtualenv and install\ + \ test dependencies - this needed several attempts, to get it right.\r\ + \n- clean up test data for GitHub\r\n- set my GitHub API token\r\n-\ + \ run the tests with `make check` only to realise that the `GITHUB_APP_ID`\ + \ and the `GITHUB_APP_PRIVATE_KEY_PATH` env vars were not set. Ask by\ + \ the team how what values to set these (stage is fine) and run the\ + \ tests again.\r\n- Start following comments left in individul tests,\ + \ to manually bring the repos, PRs, issues in the state the state expected\ + \ them to be. For this I had to run the tests over and over again, see\ + \ a test fail, inspect the failure to figure out the reason, fix the\ + \ pre-conditions and run the tests again to check that the fix worked.\r\ + \n\r\nThe above is extremely tedious and frustrating.\r\n\r\nRegenerating\ + \ test data should be trivial, for example:\r\n\r\n- if credentials\ + \ are needed, the contribution guide should explicitly call those out\ + \ with clear indication what their values/credentials should be.\r\n\ + - they should be checked to be set even before starting any test run.\r\ + \n- pre-conditions for tests should be checked, and preferably automatically\ + \ set up given the credentials above, without requiring any manual action.\r\ + \n- if it's still required to set pre-conditions manually, these steps\ + \ should be clearly called out with detailed instructions in the contribution\ + \ guide. " + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/445/comments + created_at: '2020-08-03T13:50:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/445/events + html_url: https://github.com/packit/ogr/issues/445 + id: 672091016 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/62/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/445/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Mzc2NzAzMTQ= - number: 62 + node_id: MDU6SXNzdWU2NzIwOTEwMTY= + number: 445 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'testing: split yaml files with data for each test to avoid regeneration - big file and big commits' - updated_at: '2019-04-30T19:32:17Z' - url: https://api.github.com/repos/packit/ogr/issues/62 + state: open + title: Regenerating the test data for the integration tests should be + trivial + updated_at: '2021-02-08T08:27:43Z' + url: https://api.github.com/repos/packit/ogr/issues/445 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-04-30T13:49:40Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/63/comments - created_at: '2019-04-26T13:21:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/63/events - html_url: https://github.com/packit/ogr/pull/63 - id: 437670526 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/63/labels{/name} + body: "Fixes #413\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2021-01-22T13:24:40Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/498/comments + created_at: '2020-11-27T09:47:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/498/events + html_url: https://github.com/packit/ogr/pull/498 + id: 752121082 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/498/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjczODk1Njc5 - number: 63 + node_id: MDExOlB1bGxSZXF1ZXN0NTI4NTA2MjI4 + number: 498 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/63.diff - html_url: https://github.com/packit/ogr/pull/63 - patch_url: https://github.com/packit/ogr/pull/63.patch - url: https://api.github.com/repos/packit/ogr/pulls/63 + diff_url: https://github.com/packit/ogr/pull/498.diff + html_url: https://github.com/packit/ogr/pull/498 + patch_url: https://github.com/packit/ogr/pull/498.patch + url: https://api.github.com/repos/packit/ogr/pulls/498 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: mock pagure classes - updated_at: '2019-04-30T13:49:40Z' - url: https://api.github.com/repos/packit/ogr/issues/63 + title: Change exception for edited on GitLab's commit flag + updated_at: '2021-02-05T11:56:48Z' + url: https://api.github.com/repos/packit/ogr/issues/498 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-04-30T10:41:00Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/65/comments - created_at: '2019-04-30T08:16:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/65/events - html_url: https://github.com/packit/ogr/pull/65 - id: 438653697 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/65/labels{/name} + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Also fix other `__str__`s and reformat them\r\n\r\nSigned-off-by:\ + \ Matej Focko " + closed_at: '2020-12-09T12:38:35Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/505/comments + created_at: '2020-12-09T12:18:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/505/events + html_url: https://github.com/packit/ogr/pull/505 + id: 760280757 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/505/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjc0NjM1NjI0 - number: 65 + node_id: MDExOlB1bGxSZXF1ZXN0NTM1MTM5MDYz + number: 505 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/65.diff - html_url: https://github.com/packit/ogr/pull/65 - patch_url: https://github.com/packit/ogr/pull/65.patch - url: https://api.github.com/repos/packit/ogr/pulls/65 + diff_url: https://github.com/packit/ogr/pull/505.diff + html_url: https://github.com/packit/ogr/pull/505 + patch_url: https://github.com/packit/ogr/pull/505.patch + url: https://api.github.com/repos/packit/ogr/pulls/505 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: commit status - updated_at: '2019-04-30T10:41:00Z' - url: https://api.github.com/repos/packit/ogr/issues/65 + title: Add missing `__str__`s used in tests and format them + updated_at: '2021-02-05T11:56:45Z' + url: https://api.github.com/repos/packit/ogr/issues/505 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-04-27T11:06:49Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/60/comments - created_at: '2019-04-24T13:58:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/60/events - html_url: https://github.com/packit/ogr/pull/60 - id: 436713552 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/60/labels{/name} + body: "Will fix #496\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2020-12-01T11:46:18Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/497/comments + created_at: '2020-11-27T09:13:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/497/events + html_url: https://github.com/packit/ogr/pull/497 + id: 752099361 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/497/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjczMTQ0MTgw - number: 60 + node_id: MDExOlB1bGxSZXF1ZXN0NTI4NDg5MDYw + number: 497 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/60.diff - html_url: https://github.com/packit/ogr/pull/60 - patch_url: https://github.com/packit/ogr/pull/60.patch - url: https://api.github.com/repos/packit/ogr/pulls/60 + diff_url: https://github.com/packit/ogr/pull/497.diff + html_url: https://github.com/packit/ogr/pull/497 + patch_url: https://github.com/packit/ogr/pull/497.patch + url: https://api.github.com/repos/packit/ogr/pulls/497 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add method for creating comments on commits - updated_at: '2019-04-27T11:06:50Z' - url: https://api.github.com/repos/packit/ogr/issues/60 + title: Add more tests to parsing and improve parsing + updated_at: '2021-02-05T11:56:43Z' + url: https://api.github.com/repos/packit/ogr/issues/497 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Exsmple: https://github.com/dhodovsk/rsyslog/pull/1' - closed_at: '2019-04-27T11:05:13Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/59/comments - created_at: '2019-04-24T08:28:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/59/events - html_url: https://github.com/packit/ogr/pull/59 - id: 436563500 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/59/labels{/name} + body: "- Add an abstract class with `__repr__` definition\r\n - Enhances\ + \ debugging\r\n\r\nFixes #365\r\n\r\nSigned-off-by: Matej Focko \r\ + \n\r\n*Edit tt: added Fixes line*" + closed_at: '2020-12-09T11:20:42Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/504/comments + created_at: '2020-12-09T08:41:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/504/events + html_url: https://github.com/packit/ogr/pull/504 + id: 760127932 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/504/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjczMDI1OTcw - number: 59 + node_id: MDExOlB1bGxSZXF1ZXN0NTM1MDExNjA2 + number: 504 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/59.diff - html_url: https://github.com/packit/ogr/pull/59 - patch_url: https://github.com/packit/ogr/pull/59.patch - url: https://api.github.com/repos/packit/ogr/pulls/59 + diff_url: https://github.com/packit/ogr/pull/504.diff + html_url: https://github.com/packit/ogr/pull/504 + patch_url: https://github.com/packit/ogr/pull/504.patch + url: https://api.github.com/repos/packit/ogr/pulls/504 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement adding PR comments - updated_at: '2019-04-27T11:05:13Z' - url: https://api.github.com/repos/packit/ogr/issues/59 + title: Add an abstract class with binding of repr to str + updated_at: '2021-02-05T11:56:41Z' + url: https://api.github.com/repos/packit/ogr/issues/504 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.482396 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:39 GMT + ETag: W/"79e9ecb076e8eda5c52201786c66c230b9257b3398e65e34b5a49ab4357b428c" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7D3E2:191734A:6075DC0B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4964' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '36' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=3: + - metadata: + latency: 0.38976049423217773 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-04-25T09:08:30Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/55/comments - created_at: '2019-04-08T13:30:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/55/events - html_url: https://github.com/packit/ogr/pull/55 - id: 430453106 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/55/labels{/name} + body: "Fixes #212\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2021-02-03T19:24:22Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/527/comments + created_at: '2021-02-03T15:09:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/527/events + html_url: https://github.com/packit/ogr/pull/527 + id: 800420217 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/527/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY4MzM3Mjk1 - number: 55 + node_id: MDExOlB1bGxSZXF1ZXN0NTY2OTA4NDAw + number: 527 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/55.diff - html_url: https://github.com/packit/ogr/pull/55 - patch_url: https://github.com/packit/ogr/pull/55.patch - url: https://api.github.com/repos/packit/ogr/pulls/55 + diff_url: https://github.com/packit/ogr/pull/527.diff + html_url: https://github.com/packit/ogr/pull/527 + patch_url: https://github.com/packit/ogr/pull/527.patch + url: https://api.github.com/repos/packit/ogr/pulls/527 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: persistent storage for github class for testing ogr and packit - updated_at: '2019-04-25T09:09:03Z' - url: https://api.github.com/repos/packit/ogr/issues/55 + title: Implement commits_url for pull requests + updated_at: '2021-02-05T11:56:32Z' + url: https://api.github.com/repos/packit/ogr/issues/527 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'https://pagure.io/pagure/issue/4427 - - - ``` - - $ pytest-3 -k test_fork + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: - === test session starts === - platform linux -- Python 3.7.3, pytest-3.6.4, py-1.5.4, pluggy-0.6.0 + | dist-git branch | error | - rootdir: /home/tt/g/user-cont/ogr, inifile: + | --------------- | ----- | - plugins: cov-2.5.1 + | `epel8` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | - collected 76 items / 72 deselected + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + | `f33` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | - tests/integration/test_github.py s [ 25%] + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | - tests/integration/test_pagure.py .. [ 75%] + | `main` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | - tests/unit/test_pagure.py . [100%] - ==== 3 passed, 1 skipped, 72 deselected in 8.83 seconds === + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. - ```' - closed_at: '2019-04-15T14:09:04Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/57/comments - created_at: '2019-04-15T10:47:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/57/events - html_url: https://github.com/packit/ogr/pull/57 - id: 433214625 + ' + closed_at: '2021-02-05T09:28:13Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/529/comments + created_at: '2021-02-05T09:07:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/529/events + html_url: https://github.com/packit/ogr/issues/529 + id: 801987621 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/57/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/529/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjcwNDYzNzQ2 - number: 57 + node_id: MDU6SXNzdWU4MDE5ODc2MjE= + number: 529 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/57.diff - html_url: https://github.com/packit/ogr/pull/57 - patch_url: https://github.com/packit/ogr/pull/57.patch - url: https://api.github.com/repos/packit/ogr/pulls/57 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'pagure/get_urls: fill in {username}' - updated_at: '2019-04-15T14:09:10Z' - url: https://api.github.com/repos/packit/ogr/issues/57 + title: '[packit] Propose downstream failed for release 0.20.0' + updated_at: '2021-02-05T09:28:13Z' + url: https://api.github.com/repos/packit/ogr/issues/529 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: Figure out how to handle releases in Pagure. + closed_at: null + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/112/comments + created_at: '2019-07-11T08:51:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/112/events + html_url: https://github.com/packit/ogr/issues/112 + id: 466754779 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/112/labels{/name} + locked: false + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0NjY3NTQ3Nzk= + number: 112 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Support releases in Pagure + updated_at: '2021-02-05T08:49:37Z' + url: https://api.github.com/repos/packit/ogr/issues/112 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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/TomasTomecek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-04-09T07:38:57Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/48/comments - created_at: '2019-03-26T14:15:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/48/events - html_url: https://github.com/packit/ogr/pull/48 - id: 425444570 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/48/labels{/name} + body: "Currently, we can instantiate objects (i.e. GitProject), that does\ + \ not exist.\r\n\r\nWe probably need to agree on the common understanding\ + \ of this approach:\r\n\r\n1. allow creating non-existing objects\r\n\ + \ - add `exists() -> Bool` method\r\n - add `create() -> ????`\ + \ methods\r\n - we do not need to connect to servers on each instantiation\r\ + \n - due to laziness it can fail at not-predictable places\r\n2.\ + \ raise an exception in methods like `get_project`\r\n - easier implementation\r\ + \n - we need to connect to the remote service even when it is not\ + \ needed" + closed_at: '2020-10-30T23:47:21Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/214/comments + created_at: '2019-09-19T19:30:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/214/events + html_url: https://github.com/packit/ogr/issues/214 + id: 495986265 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: ff9990 + default: false + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/214/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTU5ODYyNjU= + number: 214 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[question] Allow objects representing nonexisting objects' + updated_at: '2021-02-05T08:34:05Z' + url: https://api.github.com/repos/packit/ogr/issues/214 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR + body: "AFAIK at the moment it is not possible to get the info about whether\ + \ the repository is private or not in pagure. Now we depend on the info\ + \ that in src.fedoraproject.org and pagure.io, the private repositories\ + \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" + closed_at: null + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments + created_at: '2020-02-18T12:39:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/330/events + html_url: https://github.com/packit/ogr/issues/330 + id: 566865331 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/330/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0NTM4MDgx - number: 48 + node_id: MDU6SXNzdWU1NjY4NjUzMzE= + number: 330 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/48.diff - html_url: https://github.com/packit/ogr/pull/48 - patch_url: https://github.com/packit/ogr/pull/48.patch - url: https://api.github.com/repos/packit/ogr/pulls/48 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Ogr Read only mode support with simple test - updated_at: '2019-04-09T07:58:35Z' - url: https://api.github.com/repos/packit/ogr/issues/48 + state: open + title: better is_private method for pagure projects + updated_at: '2021-02-05T08:31:21Z' + url: https://api.github.com/repos/packit/ogr/issues/330 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/jscotka + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-04-01T12:20:57Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/40/comments - created_at: '2019-03-20T14:58:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/40/events - html_url: https://github.com/packit/ogr/pull/40 - id: 423299795 + body: 'Signed-off-by: Matej Focko ' + closed_at: '2021-02-05T08:15:27Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/528/comments + created_at: '2021-02-04T15:33:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/528/events + html_url: https://github.com/packit/ogr/pull/528 + id: 801393596 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/40/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/528/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyOTAyNzA3 - number: 40 + node_id: MDExOlB1bGxSZXF1ZXN0NTY3NzE2ODUx + number: 528 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/40.diff - html_url: https://github.com/packit/ogr/pull/40 - patch_url: https://github.com/packit/ogr/pull/40.patch - url: https://api.github.com/repos/packit/ogr/pulls/40 + diff_url: https://github.com/packit/ogr/pull/528.diff + html_url: https://github.com/packit/ogr/pull/528 + patch_url: https://github.com/packit/ogr/pull/528.patch + url: https://api.github.com/repos/packit/ogr/pulls/528 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'WIP: Simulation' - updated_at: '2019-04-01T12:20:57Z' - url: https://api.github.com/repos/packit/ogr/issues/40 + title: Release 0.20.0 + updated_at: '2021-02-05T08:15:31Z' + url: https://api.github.com/repos/packit/ogr/issues/528 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* [packit] sync from downstream\ - \ branch 'master'\n* tests,is_forked: comment why and test for return\ - \ type\n* Update ogr/services/github.py\n* forges may allow forks of\ - \ forks\n* is_forked to return bool again\n* gh: use HTML URL instead\ - \ of API URL\n* pagure/fork_create to return PagureProject\n* Jirka\ - \ can't live w/o pre-commit\n* _release_from_github_object: nicer docstring\n\ - * implement forking interface for github\n* upgrade fork API\n* [tox.ini]\ - \ code coverage\n* [Jenkinsfile] parallel tasks vol. 2\n* [Jenkinsfile]\ - \ Run tests & linters/checkers in parallel\n* [Jenkinsfile] run pre-commit\n\ - * utilize kwargs.setdefault\n* Jirka <3 pre-commit\n* add parent prop\ - \ into api\n* Apply suggestions from code review\n* CONTRIBUTING.md\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.2.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-03-28T09:20:22Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/51/comments - created_at: '2019-03-27T09:03:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/51/events - html_url: https://github.com/packit/ogr/pull/51 - id: 425837436 + author_association: CONTRIBUTOR + body: 'Related: https://github.com/packit-service/ogr/pull/436' + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/437/comments + created_at: '2020-07-16T12:54:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/437/events + html_url: https://github.com/packit/ogr/issues/437 + id: 658172107 labels: - - color: ededed + - color: '000000' default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/51/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/437/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0ODMyODQw - number: 51 + node_id: MDU6SXNzdWU2NTgxNzIxMDc= + number: 437 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/51.diff - html_url: https://github.com/packit/ogr/pull/51 - patch_url: https://github.com/packit/ogr/pull/51.patch - url: https://api.github.com/repos/packit/ogr/pulls/51 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.2.0 release - updated_at: '2019-03-28T09:22:01Z' - url: https://api.github.com/repos/packit/ogr/issues/51 + state: open + title: Support adding group permission for Gitlab and Github projects + updated_at: '2021-02-04T19:58:55Z' + url: https://api.github.com/repos/packit/ogr/issues/437 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos 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 + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-03-27T09:03:50Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/50/comments - created_at: '2019-03-27T08:58:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/50/events - html_url: https://github.com/packit/ogr/issues/50 - id: 425835263 + author_association: CONTRIBUTOR + body: "and ideally link it with pull request, branch, author and git project\r\ + \n\r\nThe expectation here is that when ogr returns a commit has, it\ + \ would return a GitCommit instance instead.\r\n\r\nThe class should\ + \ contain at minimum:\r\n* sha\r\n* be linked to a repository\r\n* author\r\ + \n* datetime it was created\r\n* subject\r\n* body\r\n* branch it's\ + \ on\r\n\r\n@lachmanfrantisek added links to the documentation:\r\n\ + - Github:\r\n - https://pygithub.readthedocs.io/en/latest/examples/Commit.html\r\ + \n - https://pygithub.readthedocs.io/en/latest/github_objects/Commit.html\r\ + \n - https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.get_commits\r\ + \n - https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.merge_commit_sha\ + \ (?)\r\n- Gitlab:\r\n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html\r\ + \n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\ + \ -> `List commits of a MR:`\r\n- Pagure:\r\n - https://src.fedoraproject.org/api/0/\ + \ -> `Pull-request information`" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/360/comments + created_at: '2020-03-23T12:38:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/360/events + html_url: https://github.com/packit/ogr/issues/360 + id: 586178020 labels: - - color: ededed + - color: be8fd8 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: a2eeef default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/50/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/360/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjU4MzUyNjM= - number: 50 + node_id: MDU6SXNzdWU1ODYxNzgwMjA= + number: 360 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.2.0 release - updated_at: '2019-03-27T09:03:50Z' - url: https://api.github.com/repos/packit/ogr/issues/50 + state: open + title: introduce a new class for GitCommit + updated_at: '2021-02-04T19:58:47Z' + url: https://api.github.com/repos/packit/ogr/issues/360 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -75822,775 +101691,995 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '* implement forking interface for github + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: - * upgrade fork API + | dist-git branch | error | - Fixes #31' - closed_at: '2019-03-26T16:18:24Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/44/comments - created_at: '2019-03-25T14:39:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/44/events - html_url: https://github.com/packit/ogr/pull/44 - id: 424938659 + | --------------- | ----- | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + + + You can retrigger the update by adding a comment (`/packit propose-update`) + into this issue. + + ' + closed_at: '2021-02-04T19:34:57Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/512/comments + created_at: '2020-12-10T11:18:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/512/events + html_url: https://github.com/packit/ogr/issues/512 + id: 761150482 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/44/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/512/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0MTQ4NTky - number: 44 + node_id: MDU6SXNzdWU3NjExNTA0ODI= + number: 512 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/44.diff - html_url: https://github.com/packit/ogr/pull/44 - patch_url: https://github.com/packit/ogr/pull/44.patch - url: https://api.github.com/repos/packit/ogr/pulls/44 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: m0ar forking - updated_at: '2019-03-27T08:37:30Z' - url: https://api.github.com/repos/packit/ogr/issues/44 + title: '[packit] Propose update failed for release 0.18.1' + updated_at: '2021-02-04T19:34:57Z' + url: https://api.github.com/repos/packit/ogr/issues/512 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "- [x] Forward some object to the issue/pr/... instances to allow\ + \ connection to the service. (Classes are not only data-holders.)\r\n\ + - [x] All ogr classes to have properties with setters allowing to update\ + \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ + - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ + \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ + \ \r\n" + closed_at: null + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments + created_at: '2019-06-25T13:15:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/86/events + html_url: https://github.com/packit/ogr/issues/86 + id: 460418171 + labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + locked: false + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0NjA0MTgxNzE= + number: 86 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: object-specific methods bound to ogr classes + updated_at: '2021-02-04T19:34:29Z' + url: https://api.github.com/repos/packit/ogr/issues/86 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Downstream commit: 48f9c4254f4eb328740129f902c9836105cdc86c - - ' - closed_at: '2019-03-26T16:38:43Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/46/comments - created_at: '2019-03-25T22:24:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/46/events - html_url: https://github.com/packit/ogr/pull/46 - id: 425142588 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/46/labels{/name} + body: '' + closed_at: '2021-02-04T19:33:53Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/492/comments + created_at: '2020-10-27T12:41:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/492/events + html_url: https://github.com/packit/ogr/issues/492 + id: 730415953 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/492/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0MzA5NDgy - number: 46 + node_id: MDU6SXNzdWU3MzA0MTU5NTM= + number: 492 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/46.diff - html_url: https://github.com/packit/ogr/pull/46 - patch_url: https://github.com/packit/ogr/pull/46.patch - url: https://api.github.com/repos/packit/ogr/pulls/46 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update from downstream branch 'master' - updated_at: '2019-03-27T08:36:53Z' - url: https://api.github.com/repos/packit/ogr/issues/46 + title: New minor release + updated_at: '2021-02-04T19:33:53Z' + url: https://api.github.com/repos/packit/ogr/issues/492 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - author_association: MEMBER - body: "```\r\n if req.status_code != 200:\r\n LOG.error(output)\r\ - \n if 'error_code' in output:\r\n> raise APIError(output['error'])\r\ - \nE libpagure.exceptions.APIError: Repo \"forks/ttomecek/sen\"\ - \ already exists \r\n```\r\n\r\n```\r\n/home/tt/.local/lib/python3.7/site-packages/ogr/services/pagure.py:151:\ - \ in fork_create\r\n self._pagure.create_fork()\r\n/home/tt/.local/lib/python3.7/site-packages/ogr/services/our_pagure.py:254:\ - \ in create_fork \ - \ \r\n data={\"repo\": self.repo_name,\ - \ \"namespace\": self.namespace, \"wait\": True},\r\n```\r\n\r\nWDYT?" - closed_at: '2019-03-26T16:18:24Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/31/comments - created_at: '2019-03-07T09:18:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/31/events - html_url: https://github.com/packit/ogr/issues/31 - id: 418203993 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/31/labels{/name} + - avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu + author_association: MEMBER + body: "We already have `exists` method implemented for Pagure and the\ + \ #479 adds the support for GitLab. GitHub is the last one missing.\r\ + \n\r\n- [ ] Look at the other implementations and add `exists` method\ + \ to the `GithubProject` class." + closed_at: '2021-02-04T19:32:54Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/480/comments + created_at: '2020-10-14T08:39:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/480/events + html_url: https://github.com/packit/ogr/issues/480 + id: 721260961 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/480/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTgyMDM5OTM= - number: 31 + node_id: MDU6SXNzdWU3MjEyNjA5NjE= + number: 480 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: create_fork should not fail if the fork already exists - updated_at: '2019-03-26T16:18:24Z' - url: https://api.github.com/repos/packit/ogr/issues/31 + title: Implement project.exists for GitHub + updated_at: '2021-02-04T19:32:54Z' + url: https://api.github.com/repos/packit/ogr/issues/480 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-03-26T08:51:03Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/47/comments - created_at: '2019-03-26T06:53:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/47/events - html_url: https://github.com/packit/ogr/pull/47 - id: 425253987 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/47/labels{/name} + body: "- [ ] Check tests and create them if necessary\r\n- [ ] Implement\ + \ creating diff comments for GitLab (already implemented for GitHub\ + \ and Pagure)\r\n- [ ] Create and implement interface for properties\ + \ of diff comments (`is_diff_comment`, `commit`, `path`, `position`;\ + \ consider new/old or only one)\r\n- [ ] Implement functions for acquiring\ + \ diff comments on pull requests, e.g. `get_diff_comments`" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/424/comments + created_at: '2020-05-29T09:01:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/424/events + html_url: https://github.com/packit/ogr/issues/424 + id: 627115330 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/424/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0Mzk0MTk2 - number: 47 + node_id: MDU6SXNzdWU2MjcxMTUzMzA= + number: 424 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/47.diff - html_url: https://github.com/packit/ogr/pull/47 - patch_url: https://github.com/packit/ogr/pull/47.patch - url: https://api.github.com/repos/packit/ogr/pulls/47 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[tox.ini] code coverage' - updated_at: '2019-03-26T08:51:06Z' - url: https://api.github.com/repos/packit/ogr/issues/47 + state: open + title: Diff/review comments on pull requests + updated_at: '2021-02-04T12:01:57Z' + url: https://api.github.com/repos/packit/ogr/issues/424 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-03-26T06:42:32Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/45/comments - created_at: '2019-03-25T17:06:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/45/events - html_url: https://github.com/packit/ogr/pull/45 - id: 425016622 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/45/labels{/name} + body: "When working with PRs, there are also URLs linking directly to\ + \ commit list tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the\ + \ `url_commits` and implement it.\r\n - Use API if possible, otherwise\ + \ \"guess\" the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\n\ + Examples:\r\n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/commits\r\ + \n- https://github.com/packit-service/ogr/pull/1/commits\r\n- https://pagure.io/ogr-tests/pull-request/7#commit_list\r\ + \n" + closed_at: '2021-02-03T19:24:22Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/212/comments + created_at: '2019-09-19T18:48:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/212/events + html_url: https://github.com/packit/ogr/issues/212 + id: 495968279 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/212/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0MjEwMTc2 - number: 45 + node_id: MDU6SXNzdWU0OTU5NjgyNzk= + number: 212 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/45.diff - html_url: https://github.com/packit/ogr/pull/45 - patch_url: https://github.com/packit/ogr/pull/45.patch - url: https://api.github.com/repos/packit/ogr/pulls/45 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[Jenkinsfile] run pre-commit' - updated_at: '2019-03-26T06:42:35Z' - url: https://api.github.com/repos/packit/ogr/issues/45 + title: Add commits url to PullRequest class + updated_at: '2021-02-03T19:24:22Z' + url: https://api.github.com/repos/packit/ogr/issues/212 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: and implement it for github and pagure - closed_at: '2019-03-25T13:52:31Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/43/comments - created_at: '2019-03-23T20:58:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/43/events - html_url: https://github.com/packit/ogr/pull/43 - id: 424544327 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/43/labels{/name} + author_association: CONTRIBUTOR + body: "Implemented project.exists for GitHub. #480\r\n\r\n@lachmanfrantisek\ + \ Please review." + closed_at: '2021-02-03T12:07:09Z' + comments: 13 + comments_url: https://api.github.com/repos/packit/ogr/issues/521/comments + created_at: '2021-01-21T07:37:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/521/events + html_url: https://github.com/packit/ogr/pull/521 + id: 790781809 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/521/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYzODYxMDc4 - number: 43 + node_id: MDExOlB1bGxSZXF1ZXN0NTU4OTM5ODMx + number: 521 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/43.diff - html_url: https://github.com/packit/ogr/pull/43 - patch_url: https://github.com/packit/ogr/pull/43.patch - url: https://api.github.com/repos/packit/ogr/pulls/43 + diff_url: https://github.com/packit/ogr/pull/521.diff + html_url: https://github.com/packit/ogr/pull/521 + patch_url: https://github.com/packit/ogr/pull/521.patch + url: https://api.github.com/repos/packit/ogr/pulls/521 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add parent prop into api - updated_at: '2019-03-25T13:52:57Z' - url: https://api.github.com/repos/packit/ogr/issues/43 + title: Implemented project.exists for GitHub (#480) + updated_at: '2021-02-03T12:07:09Z' + url: https://api.github.com/repos/packit/ogr/issues/521 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/path2himanshu - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2019-03-21T15:21:49Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/41/comments - created_at: '2019-03-21T14:47:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/41/events - html_url: https://github.com/packit/ogr/pull/41 - id: 423768837 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/41/labels{/name} + closed_at: '2021-02-01T17:50:58Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/526/comments + created_at: '2021-02-01T16:51:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/526/events + html_url: https://github.com/packit/ogr/pull/526 + id: 798530734 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/526/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYzMjY2NDE3 - number: 41 + node_id: MDExOlB1bGxSZXF1ZXN0NTY1MzMxNzkz + number: 526 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/41.diff - html_url: https://github.com/packit/ogr/pull/41 - patch_url: https://github.com/packit/ogr/pull/41.patch - url: https://api.github.com/repos/packit/ogr/pulls/41 + diff_url: https://github.com/packit/ogr/pull/526.diff + html_url: https://github.com/packit/ogr/pull/526 + patch_url: https://github.com/packit/ogr/pull/526.patch + url: https://api.github.com/repos/packit/ogr/pulls/526 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: bump spec to 0.1.0 - updated_at: '2019-03-23T20:14:13Z' - url: https://api.github.com/repos/packit/ogr/issues/41 + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-02-01T17:51:01Z' + url: https://api.github.com/repos/packit/ogr/issues/526 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-03-22T14:08:51Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/42/comments - created_at: '2019-03-21T16:38:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/42/events - html_url: https://github.com/packit/ogr/pull/42 - id: 423829259 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/42/labels{/name} + body: "Signed-off-by: Hunor Csomort\xE1ni " + closed_at: '2021-01-29T07:29:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/524/comments + created_at: '2021-01-28T17:13:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/524/events + html_url: https://github.com/packit/ogr/pull/524 + id: 796195674 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/524/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYzMzE0NzEw - number: 42 + node_id: MDExOlB1bGxSZXF1ZXN0NTYzNDE0MjM0 + number: 524 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/42.diff - html_url: https://github.com/packit/ogr/pull/42 - patch_url: https://github.com/packit/ogr/pull/42.patch - url: https://api.github.com/repos/packit/ogr/pulls/42 + diff_url: https://github.com/packit/ogr/pull/524.diff + html_url: https://github.com/packit/ogr/pull/524 + patch_url: https://github.com/packit/ogr/pull/524.patch + url: https://api.github.com/repos/packit/ogr/pulls/524 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: CONTRIBUTING.md - updated_at: '2019-03-22T14:08:54Z' - url: https://api.github.com/repos/packit/ogr/issues/42 + title: Remove 'master' from task name + updated_at: '2021-01-29T07:30:00Z' + url: https://api.github.com/repos/packit/ogr/issues/524 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=15: - - metadata: - latency: 0.4985935688018799 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: With these changes, `packit srpm` should *just work*. - closed_at: '2019-03-18T14:00:44Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/35/comments - created_at: '2019-03-18T13:17:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/35/events - html_url: https://github.com/packit/ogr/pull/35 - id: 422212338 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/35/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-01-26T09:20:19Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/523/comments + created_at: '2021-01-25T16:42:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/523/events + html_url: https://github.com/packit/ogr/pull/523 + id: 793540044 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/523/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyMDUxMjgx - number: 35 + node_id: MDExOlB1bGxSZXF1ZXN0NTYxMjEwOTE4 + number: 523 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/35.diff - html_url: https://github.com/packit/ogr/pull/35 - patch_url: https://github.com/packit/ogr/pull/35.patch - url: https://api.github.com/repos/packit/ogr/pulls/35 + diff_url: https://github.com/packit/ogr/pull/523.diff + html_url: https://github.com/packit/ogr/pull/523 + patch_url: https://github.com/packit/ogr/pull/523.patch + url: https://api.github.com/repos/packit/ogr/pulls/523 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: update packit.yaml to reflect packit==0.2.0 - updated_at: '2019-03-18T18:34:17Z' - url: https://api.github.com/repos/packit/ogr/issues/35 + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-01-26T09:20:21Z' + url: https://api.github.com/repos/packit/ogr/issues/523 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n\n### Other\n\n* Utilize\ - \ gitchangelog feature of r-bot. [Tomas Tomecek]\n\n* Merge pull request\ - \ #35 from TomasTomecek/update-packit-yaml. [Tomas Tomecek]\n\n update\ - \ packit.yaml to reflect packit==0.2.0\n\n* Update packit.yaml to reflect\ - \ packit==0.2.0. [Tomas Tomecek]\n\n* Merge pull request #34 from jpopelka/no-dimensions.\ - \ [Jiri Popelka]\n\n pre-commit config & black/Flake8/mypy fixes\n\n\ - * Black & Flake8 & mypy fixes. [Jiri Popelka]\n\n* .pre-commit-config.yaml.\ - \ [Jiri Popelka]\n\n* Merge pull request #32 from packit-service/releases.\ - \ [Jiri Popelka]\n\n Releases\n\n* Add test and docs for GitHub releases.\ - \ [Radoslav Pitonak]\n\n* Add releases for github. [Frantisek Lachman]\n\ - \n* Merge pull request #27 from jpopelka/ci. [Jiri Popelka]\n\n Tox\ - \ & Jenkinsfile\n\n* Jenkinsfile. [Jiri Popelka]\n\n* Tox. [Jiri Popelka]\n\ - \n* [Makefile] no sudo. [Jiri Popelka]\n\n* Enum -> IntEnum. [Jiri Popelka]\n\ - \n* Merge pull request #30 from jscotka/test_integration_skip. [Jiri\ - \ Popelka]\n\n [integration tests] skip whole module if not all env.\ - \ variables set\n\n* Move skip_tests() to conftest.py. [Jiri Popelka]\n\ - \n* Create better function to skip tests. [Jan Scotka]\n\n* Add skip\ - \ decorators to skip whole module in case of integration tests in case\ - \ env vars are not typed. [Jan Scotka]\n\n* Merge pull request #28 from\ - \ TomasTomecek/add-packit. [Tomas Tomecek]\n\n add packit config\n\n\ - * Add packit config. [Tomas Tomecek]\n\n\n\n\nYou can change it by editing\ - \ `CHANGELOG.md` in the root of this repository and pushing to `0.1.0-release`\ - \ branch before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2019-03-18T17:58:28Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/39/comments - created_at: '2019-03-18T17:45:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/39/events - html_url: https://github.com/packit/ogr/pull/39 - id: 422351830 + body: "https://bugzilla.redhat.com/show_bug.cgi?id=1905223\r\n\r\nRequires\ + \ all the dependencies to be in epel-8 as well.\r\n\r\nSigned-off-by:\ + \ Frantisek Lachman " + closed_at: '2021-01-22T14:07:43Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/503/comments + created_at: '2020-12-08T08:10:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/503/events + html_url: https://github.com/packit/ogr/pull/503 + id: 759203132 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/39/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/503/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTYxMjI4 - number: 39 + node_id: MDExOlB1bGxSZXF1ZXN0NTM0MjQzOTM0 + number: 503 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/39.diff - html_url: https://github.com/packit/ogr/pull/39 - patch_url: https://github.com/packit/ogr/pull/39.patch - url: https://api.github.com/repos/packit/ogr/pulls/39 + diff_url: https://github.com/packit/ogr/pull/503.diff + html_url: https://github.com/packit/ogr/pull/503 + patch_url: https://github.com/packit/ogr/pull/503.patch + url: https://api.github.com/repos/packit/ogr/pulls/503 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-18T18:00:48Z' - url: https://api.github.com/repos/packit/ogr/issues/39 + title: Enable build and test for epel-8 + updated_at: '2021-01-22T14:24:31Z' + url: https://api.github.com/repos/packit/ogr/issues/503 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-03-18T17:45:29Z' + body: "Follow-up of #344 (PR: #374)\r\n\r\nAPI docs (https://docs.gitlab.com/ee/api/commits.html#post-the-build-status-to-a-commit):\r\ + \n> Adds or updates a build status of a commit.\r\n\r\nGitlab API suggests\ + \ that setting commit flag can update existing one, which could mean\ + \ this issue is blocked by API.\r\n\r\nUpdating could also mean:\r\n\ + 1. adding new commit flag that replaces old one\r\n2. adding new commit\ + \ flag, but keeping the old one\r\n\r\nExample output from docs doesn't\ + \ contain commit flag with same name." + closed_at: '2021-01-22T13:24:39Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/36/comments - created_at: '2019-03-18T16:53:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/36/events - html_url: https://github.com/packit/ogr/issues/36 - id: 422327353 + comments_url: https://api.github.com/repos/packit/ogr/issues/413/comments + created_at: '2020-05-20T21:27:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/413/events + html_url: https://github.com/packit/ogr/issues/413 + id: 622095374 labels: - - color: ededed + - color: d93f0b default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: fef2c0 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/36/labels{/name} + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/413/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjIzMjczNTM= - number: 36 + node_id: MDU6SXNzdWU2MjIwOTUzNzQ= + number: 413 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-03-18T17:45:29Z' - url: https://api.github.com/repos/packit/ogr/issues/36 + title: edited on Gitlab's commit flag + updated_at: '2021-01-22T13:24:39Z' + url: https://api.github.com/repos/packit/ogr/issues/413 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\nNo changelog provided\n\n\ - You can change it by editing `CHANGELOG.md` in the root of this repository\ - \ and pushing to `0.1.0-release` branch before merging this PR.\nI didn't\ - \ find any files where `__version__` is set." - closed_at: '2019-03-18T17:44:20Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `f34` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-01-07T12:55:21Z' comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/38/comments - created_at: '2019-03-18T17:28:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/38/events - html_url: https://github.com/packit/ogr/pull/38 - id: 422343992 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/38/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/520/comments + created_at: '2021-01-07T12:07:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/520/events + html_url: https://github.com/packit/ogr/issues/520 + id: 781266150 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/520/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTU1MTM0 - number: 38 + node_id: MDU6SXNzdWU3ODEyNjYxNTA= + number: 520 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/38.diff - html_url: https://github.com/packit/ogr/pull/38 - patch_url: https://github.com/packit/ogr/pull/38.patch - url: https://api.github.com/repos/packit/ogr/pulls/38 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-18T17:44:28Z' - url: https://api.github.com/repos/packit/ogr/issues/38 + title: '[packit] Propose downstream failed for release 0.19.0' + updated_at: '2021-01-07T12:55:21Z' + url: https://api.github.com/repos/packit/ogr/issues/520 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* update packit.yaml to\ - \ reflect packit==0.2.0\n* black & Flake8 & mypy fixes\n* .pre-commit-config.yaml\n\ - * add test and docs for GitHub releases\n* Add releases for github\n\ - * Jenkinsfile\n* Tox\n* [Makefile] no sudo\n* Enum -> IntEnum\n* Move\ - \ skip_tests() to conftest.py\n* create better function to skip tests.\n\ - * add skip decorators to skip whole module in case of integration tests\ - \ in case env vars are not typed\n* add packit config\n\n\nYou can change\ - \ it by editing `CHANGELOG.md` in the root of this repository and pushing\ - \ to `0.1.0-release` branch before merging this PR.\nI didn't find any\ - \ files where `__version__` is set." - closed_at: '2019-03-18T16:58:25Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/37/comments - created_at: '2019-03-18T16:54:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/37/events - html_url: https://github.com/packit/ogr/pull/37 - id: 422328099 + \ is the changelog I created:\n### Changes\n* [pre-commit.ci] pre-commit\ + \ autoupdate\n* [pre-commit.ci] pre-commit autoupdate\n* Regenerate\ + \ requre data\n* Add and implement GitProject.default_branch property\n\ + * [Makefile] fix remove-response-files-* targets\n* PagureService: Make\ + \ retries parametrizable\n* [pre-commit.ci] pre-commit autoupdate\n\ + * [.packit.yaml] Set copy_upstream_release_description to true\n\n\n\ + You can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.19.0-release` branch before merging this PR.\nI\ + \ didn't find any files where `__version__` is set." + closed_at: '2021-01-07T11:59:47Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/518/comments + created_at: '2021-01-07T09:25:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/518/events + html_url: https://github.com/packit/ogr/pull/518 + id: 781163841 labels: - color: ededed default: false @@ -76599,6 +102688,13 @@ requests.sessions: name: bot node_id: MDU6TGFiZWwxMjM3NzA0MjUw url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit - color: ededed default: false description: null @@ -76606,169 +102702,193 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/37/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/518/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTQyNjc3 - number: 37 + node_id: MDExOlB1bGxSZXF1ZXN0NTUwOTM0MTc5 + number: 518 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/37.diff - html_url: https://github.com/packit/ogr/pull/37 - patch_url: https://github.com/packit/ogr/pull/37.patch - url: https://api.github.com/repos/packit/ogr/pulls/37 + diff_url: https://github.com/packit/ogr/pull/518.diff + html_url: https://github.com/packit/ogr/pull/518 + patch_url: https://github.com/packit/ogr/pull/518.patch + url: https://api.github.com/repos/packit/ogr/pulls/518 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-18T17:26:48Z' - url: https://api.github.com/repos/packit/ogr/issues/37 + title: 0.19.0 release + updated_at: '2021-01-07T12:04:13Z' + url: https://api.github.com/repos/packit/ogr/issues/518 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2019-03-15T13:51:22Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/34/comments - created_at: '2019-03-15T11:27:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/34/events - html_url: https://github.com/packit/ogr/pull/34 - id: 421473951 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/34/labels{/name} + closed_at: '2020-12-29T11:39:20Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/517/comments + created_at: '2020-12-28T16:36:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/517/events + html_url: https://github.com/packit/ogr/pull/517 + id: 775485168 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/517/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYxNTE1NjA5 - number: 34 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/34.diff - html_url: https://github.com/packit/ogr/pull/34 - patch_url: https://github.com/packit/ogr/pull/34.patch - url: https://api.github.com/repos/packit/ogr/pulls/34 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: pre-commit config & black/Flake8/mypy fixes - updated_at: '2019-03-15T13:51:25Z' - url: https://api.github.com/repos/packit/ogr/issues/34 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + node_id: MDExOlB1bGxSZXF1ZXN0NTQ2MTU3ODg5 + number: 517 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/517.diff + html_url: https://github.com/packit/ogr/pull/517 + patch_url: https://github.com/packit/ogr/pull/517.patch + url: https://api.github.com/repos/packit/ogr/pulls/517 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2020-12-29T11:39:22Z' + url: https://api.github.com/repos/packit/ogr/issues/517 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Added object representation for GitHub releases.\r\n- What about\ - \ pagure? Is there anything that can be used?" - closed_at: '2019-03-15T09:41:59Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/32/comments - created_at: '2019-03-12T13:35:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/32/events - html_url: https://github.com/packit/ogr/pull/32 - id: 419989710 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/32/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-21T20:51:00Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/516/comments + created_at: '2020-12-21T16:46:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/516/events + html_url: https://github.com/packit/ogr/pull/516 + id: 772306910 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/516/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYwMzY1NTk1 - number: 32 + node_id: MDExOlB1bGxSZXF1ZXN0NTQzNTk0NTEz + number: 516 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/32.diff - html_url: https://github.com/packit/ogr/pull/32 - patch_url: https://github.com/packit/ogr/pull/32.patch - url: https://api.github.com/repos/packit/ogr/pulls/32 + diff_url: https://github.com/packit/ogr/pull/516.diff + html_url: https://github.com/packit/ogr/pull/516 + patch_url: https://github.com/packit/ogr/pull/516.patch + url: https://api.github.com/repos/packit/ogr/pulls/516 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Releases - updated_at: '2019-03-15T09:42:04Z' - url: https://api.github.com/repos/packit/ogr/issues/32 + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2020-12-21T20:51:04Z' + url: https://api.github.com/repos/packit/ogr/issues/516 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-03-05T17:01:01Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/27/comments - created_at: '2019-03-01T16:03:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/27/events - html_url: https://github.com/packit/ogr/pull/27 - id: 416169456 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/27/labels{/name} + body: "All git forges support changing of a default branch of a repo/project.\r\ + \nAll newly created Github projects have had 'main' as a default branch\ + \ instead of 'master' since Oct 2020.\r\n\r\n- https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/changing-the-default-branch\r\ + \n- https://docs.gitlab.com/ee/user/project/repository/branches/#default-branch\r\ + \n- https://pagure.io/api/0/#projects-tab (List git branches)" + closed_at: '2020-12-18T12:01:05Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/515/comments + created_at: '2020-12-18T10:57:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/515/events + html_url: https://github.com/packit/ogr/pull/515 + id: 770791051 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/515/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3NDk2Mjcz - number: 27 + node_id: MDExOlB1bGxSZXF1ZXN0NTQyNDY4ODM4 + number: 515 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/27.diff - html_url: https://github.com/packit/ogr/pull/27 - patch_url: https://github.com/packit/ogr/pull/27.patch - url: https://api.github.com/repos/packit/ogr/pulls/27 + diff_url: https://github.com/packit/ogr/pull/515.diff + html_url: https://github.com/packit/ogr/pull/515 + patch_url: https://github.com/packit/ogr/pull/515.patch + url: https://api.github.com/repos/packit/ogr/pulls/515 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Tox & Jenkinsfile - updated_at: '2019-03-05T17:01:04Z' - url: https://api.github.com/repos/packit/ogr/issues/27 + title: ' Add and implement GitProject.default_branch property' + updated_at: '2020-12-18T12:13:07Z' + url: https://api.github.com/repos/packit/ogr/issues/515 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -76790,241 +102910,363 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-03-05T15:25:00Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/30/comments - created_at: '2019-03-04T14:02:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/30/events - html_url: https://github.com/packit/ogr/pull/30 - id: 416815413 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/30/labels{/name} + body: "This way users of a PagureService object can control how failures\ + \ of API\r\ncalls are retried.\r\n\r\nSigned-off-by: Hunor Csomort\xE1\ + ni " + closed_at: '2020-12-15T09:03:00Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/514/comments + created_at: '2020-12-15T08:31:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/514/events + html_url: https://github.com/packit/ogr/pull/514 + id: 767320871 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/514/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3OTUzMjI1 - number: 30 + node_id: MDExOlB1bGxSZXF1ZXN0NTQwMDcyOTIw + number: 514 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/30.diff - html_url: https://github.com/packit/ogr/pull/30 - patch_url: https://github.com/packit/ogr/pull/30.patch - url: https://api.github.com/repos/packit/ogr/pulls/30 + diff_url: https://github.com/packit/ogr/pull/514.diff + html_url: https://github.com/packit/ogr/pull/514 + patch_url: https://github.com/packit/ogr/pull/514.patch + url: https://api.github.com/repos/packit/ogr/pulls/514 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[integration tests] skip whole module if not all env. variables - set' - updated_at: '2019-03-05T15:25:01Z' - url: https://api.github.com/repos/packit/ogr/issues/30 + title: 'PagureService: Make retries parametrizable' + updated_at: '2020-12-15T10:09:39Z' + url: https://api.github.com/repos/packit/ogr/issues/514 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2019-03-01T17:19:12Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/28/comments - created_at: '2019-03-01T16:44:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/28/events - html_url: https://github.com/packit/ogr/pull/28 - id: 416187270 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/28/labels{/name} + closed_at: '2020-12-14T19:31:39Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/513/comments + created_at: '2020-12-14T16:39:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/513/events + html_url: https://github.com/packit/ogr/pull/513 + id: 766702566 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/513/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3NTEwNDk4 - number: 28 + node_id: MDExOlB1bGxSZXF1ZXN0NTM5NjUyMzUy + number: 513 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/28.diff - html_url: https://github.com/packit/ogr/pull/28 - patch_url: https://github.com/packit/ogr/pull/28.patch - url: https://api.github.com/repos/packit/ogr/pulls/28 + diff_url: https://github.com/packit/ogr/pull/513.diff + html_url: https://github.com/packit/ogr/pull/513 + patch_url: https://github.com/packit/ogr/pull/513.patch + url: https://api.github.com/repos/packit/ogr/pulls/513 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add packit config - updated_at: '2019-03-01T17:19:16Z' - url: https://api.github.com/repos/packit/ogr/issues/28 + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2020-12-14T19:31:42Z' + url: https://api.github.com/repos/packit/ogr/issues/513 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\nNo changelog provided\n\n\ - You can change it by editing `CHANGELOG.md` in the root of this repository\ - \ and pushing to `0.1.0-release` branch before merging this PR.\nI didn't\ - \ find any files where `__version__` is set." - closed_at: '2019-03-01T16:41:07Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/26/comments - created_at: '2019-03-01T15:56:24Z' - events_url: https://api.github.com/repos/packit/ogr/issues/26/events - html_url: https://github.com/packit/ogr/pull/26 - id: 416166108 + author_association: CONTRIBUTOR + body: Discussed in packit/packit-service#890 + closed_at: '2020-12-11T09:28:47Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/510/comments + created_at: '2020-12-10T11:04:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/510/events + html_url: https://github.com/packit/ogr/pull/510 + id: 761139932 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/26/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/510/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3NDkzNTkx - number: 26 + node_id: MDExOlB1bGxSZXF1ZXN0NTM1ODUyMjY5 + number: 510 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/26.diff - html_url: https://github.com/packit/ogr/pull/26 - patch_url: https://github.com/packit/ogr/pull/26.patch - url: https://api.github.com/repos/packit/ogr/pulls/26 + diff_url: https://github.com/packit/ogr/pull/510.diff + html_url: https://github.com/packit/ogr/pull/510 + patch_url: https://github.com/packit/ogr/pull/510.patch + url: https://api.github.com/repos/packit/ogr/pulls/510 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-01T16:49:43Z' - url: https://api.github.com/repos/packit/ogr/issues/26 + title: '[.packit.yaml] Set copy_upstream_release_description to true' + updated_at: '2020-12-11T09:28:47Z' + url: https://api.github.com/repos/packit/ogr/issues/510 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "we need this b/c 0.0.2 doesn't have specfile\r\n\r\nand I want\ - \ to use packit to bring the release to fedora" - closed_at: '2019-03-01T15:56:25Z' + body: "Similar to how `get_tags()` return `GitTag` objects which also\ + \ store the commit sha, would be nice if `get_branches()` would return\ + \ `GitBranch` objects with a `head` attribute storing the commit sha\ + \ of the HEAD of the branch.\r\n\r\nMost probably related to #359." + closed_at: '2020-12-11T09:19:03Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/25/comments - created_at: '2019-03-01T15:52:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/25/events - html_url: https://github.com/packit/ogr/issues/25 - id: 416164397 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/25/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/509/comments + created_at: '2020-12-09T14:16:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/509/events + html_url: https://github.com/packit/ogr/issues/509 + id: 760368277 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/509/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTYxNjQzOTc= - number: 25 + node_id: MDU6SXNzdWU3NjAzNjgyNzc= + number: 509 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-01T16:19:00Z' - url: https://api.github.com/repos/packit/ogr/issues/25 + title: '`project.get_branches()` should also return the HEAD commits for + each branch' + updated_at: '2020-12-11T09:19:03Z' + url: https://api.github.com/repos/packit/ogr/issues/509 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* add RPM spec file\n* [release-conf.yaml]\ - \ remove deprecated python_versions\n* Remove dataclasses\n* Use strings\ - \ for type annotations\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.0.3-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2019-02-28T11:45:58Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `f34` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can retrigger the update by adding a comment (`/packit propose-update`) + into this issue. + + ' + closed_at: '2020-12-11T09:14:01Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/24/comments - created_at: '2019-02-28T10:42:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/24/events - html_url: https://github.com/packit/ogr/pull/24 - id: 415557542 + comments_url: https://api.github.com/repos/packit/ogr/issues/511/comments + created_at: '2020-12-10T11:17:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/511/events + html_url: https://github.com/packit/ogr/issues/511 + id: 761149749 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/511/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3NjExNDk3NDk= + number: 511 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.18.1' + updated_at: '2020-12-11T09:14:01Z' + url: https://api.github.com/repos/packit/ogr/issues/511 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + _next: null + elapsed: 0.384138 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:42 GMT + ETag: W/"aa522026a7e103d20cb1da7d3521e150bccc2acb8a6b778e275177770cb3a851" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7D60A:1917696:6075DC0E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4950' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '50' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=4: + - metadata: + latency: 0.4368612766265869 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add str for GitProject\ + \ (used in mocking tests)\n* Fix str representation of GitlabCommitFlag\n\ + * Add __str__ for CommitComment\n* Add an abstract class with binding\ + \ of repr to str\n* Trigger scratch koji build for fedora-devel on PRs\n\ + * [ci.fmf] there's no git-source/ in 'new' Testing Farm\n* Do not pass\ + \ username to the PagureProject if not fork\n* Fix parsing of ssh urls\ + \ and default to https protocol\n* Update parsing tests\n* Add more\ + \ tests to parsing\n* [pre-commit.ci] pre-commit autoupdate\n* Turn\ + \ off requre in pre-commit CI and move rebase to pre-push\n* Do not\ + \ skip bug and security issues by stalebot\n\n\nYou can change it by\ + \ editing `CHANGELOG.md` in the root of this repository and pushing\ + \ to `0.18.1-release` branch before merging this PR.\nI didn't find\ + \ any files where `__version__` is set." + closed_at: '2020-12-10T11:11:16Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/508/comments + created_at: '2020-12-09T13:27:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/508/events + html_url: https://github.com/packit/ogr/pull/508 + id: 760329639 labels: - color: ededed default: false @@ -77033,6 +103275,13 @@ requests.sessions: name: bot node_id: MDU6TGFiZWwxMjM3NzA0MjUw url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit - color: ededed default: false description: null @@ -77040,24 +103289,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/24/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/508/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3MDE3MDgz - number: 24 + node_id: MDExOlB1bGxSZXF1ZXN0NTM1MTc5NTEy + number: 508 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/24.diff - html_url: https://github.com/packit/ogr/pull/24 - patch_url: https://github.com/packit/ogr/pull/24.patch - url: https://api.github.com/repos/packit/ogr/pulls/24 + diff_url: https://github.com/packit/ogr/pull/508.diff + html_url: https://github.com/packit/ogr/pull/508 + patch_url: https://github.com/packit/ogr/pull/508.patch + url: https://api.github.com/repos/packit/ogr/pulls/508 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.0.3 release - updated_at: '2019-02-28T12:07:04Z' - url: https://api.github.com/repos/packit/ogr/issues/24 + title: 0.18.1 release + updated_at: '2020-12-10T11:15:28Z' + url: https://api.github.com/repos/packit/ogr/issues/508 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -77078,15 +103327,15 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Release bot, please! - closed_at: '2019-02-28T10:42:18Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-09T13:27:43Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/23/comments - created_at: '2019-02-28T10:39:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/23/events - html_url: https://github.com/packit/ogr/issues/23 - id: 415556376 + comments_url: https://api.github.com/repos/packit/ogr/issues/507/comments + created_at: '2020-12-09T13:27:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/507/events + html_url: https://github.com/packit/ogr/issues/507 + id: 760329156 labels: - color: ededed default: false @@ -77102,73 +103351,81 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/23/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/507/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTU1NTYzNzY= - number: 23 + node_id: MDU6SXNzdWU3NjAzMjkxNTY= + number: 507 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.0.3 release - updated_at: '2019-02-28T10:42:18Z' - url: https://api.github.com/repos/packit/ogr/issues/23 + title: New patch release + updated_at: '2020-12-09T13:27:43Z' + url: https://api.github.com/repos/packit/ogr/issues/507 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "# how to test\r\n```\r\ngit checkout 0.0.2\r\npython3 ./setup.py\ - \ sdist\r\nmv ./dist/ogr-0.0.2.tar.gz .\r\nrpmbuild ./*.spec --define\ - \ \"_sourcedir ${PWD}\" --define \"_specdir ${PWD}\" --define \"_builddir\ - \ ${PWD}\" --define \"_srcrpmdir ${PWD}\" --define \"_rpmdir ${PWD}\"\ - \ -bs\r\nfedora-review -n python-ogr -m fedora-29-x86_64\r\n```\r\n\r\ - \nOnce merged, I'll open a Fedora review for ogr. Franta could do it\ - \ so he can get the pkgr perms." - closed_at: '2019-02-27T11:38:20Z' + author_association: CONTRIBUTOR + body: "```\r\n2020-12-09 12:32:08.652548 | container | /usr/local/lib/python3.8/site-packages/ogr/abstract.py:47:\ + \ in __repr__\r\n2020-12-09 12:32:08.652556 | container | return\ + \ f\"<{str(self)}>\"\r\n2020-12-09 12:32:08.652565 | container | \ + \ self = <[RecursionError('maximum recursion depth exceeded')\ + \ raised in repr()] GitProject object at 0x7f8380a9ca90>\r\n2020-12-09\ + \ 12:32:08.652574 | container | /usr/local/lib/python3.8/site-packages/ogr/abstract.py:47:\ + \ in __repr__\r\n2020-12-09 12:32:08.652582 | container | return\ + \ f\"<{str(self)}>\"\r\n2020-12-09 12:32:08.652591 | container | E \ + \ RecursionError: maximum recursion depth exceeded\r\n2020-12-09 12:32:08.652599\ + \ | container | self = <[RecursionError('maximum recursion\ + \ depth exceeded') raised in repr()] GitProject object at 0x7f8380a9ca90>\r\ + \n2020-12-09 12:32:08.652608 | container | !!! Recursion detected (same\ + \ locals & position)\r\n```\r\n\r\nhttps://softwarefactory-project.io/logs/70/970/b8e3aa6794ccc0999106539acb1829d5ea08d03b/check/reverse-dep-packit-service-tests/bc1e055/job-output.txt.gz" + closed_at: '2020-12-09T13:21:57Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/22/comments - created_at: '2019-02-26T17:11:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/22/events - html_url: https://github.com/packit/ogr/pull/22 - id: 414722729 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/22/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/506/comments + created_at: '2020-12-09T13:19:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/506/events + html_url: https://github.com/packit/ogr/issues/506 + id: 760323336 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/506/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU2MzcxNDM2 - number: 22 + node_id: MDU6SXNzdWU3NjAzMjMzMzY= + number: 506 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/22.diff - html_url: https://github.com/packit/ogr/pull/22 - patch_url: https://github.com/packit/ogr/pull/22.patch - url: https://api.github.com/repos/packit/ogr/pulls/22 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add RPM spec file - updated_at: '2019-02-27T11:38:24Z' - url: https://api.github.com/repos/packit/ogr/issues/22 + title: python doesn't like the new __repr__ + updated_at: '2020-12-09T13:21:57Z' + url: https://api.github.com/repos/packit/ogr/issues/506 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -77189,32 +103446,31 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\n138 Bytecompiling .py files below /builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6\ - \ using /usr/bin/python3.6\r\n139 *** Error compiling '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/abstract.py'...\r\ - \n140 File \"/usr/lib/python3.6/abstract.py\", line 1\r\n141 SyntaxError:\ - \ future feature annotations is not defined\r\n142 *** Error compiling\ - \ '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/services/github.py'...\r\ - \n143 File \"/usr/lib/python3.6/github.py\", line 1\r\n144 SyntaxError:\ - \ future feature annotations is not defined\r\n145 *** Error compiling\ - \ '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/services/pagure.py'...\r\ - \n146 File \"/usr/lib/python3.6/pagure.py\", line 1\r\n147 SyntaxError:\ - \ future feature annotations is not defined\r\n```\r\n" - closed_at: '2019-02-27T08:38:17Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/21/comments - created_at: '2019-02-26T17:08:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/21/events - html_url: https://github.com/packit/ogr/issues/21 - id: 414721039 + author_association: CONTRIBUTOR + body: "* [ ] Project\r\n* [ ] Service (**don't** include secrets)\r\n\ + * [ ] Release\r\n* [ ] PR\r\n* [ ] Issue" + closed_at: '2020-12-09T11:20:42Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/365/comments + created_at: '2020-03-25T13:23:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/365/events + html_url: https://github.com/packit/ogr/issues/365 + id: 587692896 labels: - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -77222,19 +103478,33 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/21/labels{/name} + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/365/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTQ3MjEwMzk= - number: 21 + node_id: MDU6SXNzdWU1ODc2OTI4OTY= + number: 365 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ogr doesn't work with python3.6 - updated_at: '2019-02-27T08:38:17Z' - url: https://api.github.com/repos/packit/ogr/issues/21 + title: add __repr__ to classes + updated_at: '2020-12-09T11:20:42Z' + url: https://api.github.com/repos/packit/ogr/issues/365 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -77252,37 +103522,100 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "This is partly a dog-fooding of packit.\r\n\r\nSigned-off-by: Frantisek\ + \ Lachman " + closed_at: '2020-12-04T15:49:58Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/502/comments + created_at: '2020-12-04T08:04:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/502/events + html_url: https://github.com/packit/ogr/pull/502 + id: 756894507 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/502/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTMyMzYzOTMx + number: 502 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/502.diff + html_url: https://github.com/packit/ogr/pull/502 + patch_url: https://github.com/packit/ogr/pull/502.patch + url: https://api.github.com/repos/packit/ogr/pulls/502 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Trigger scratch koji build for fedora-devel on PRs + updated_at: '2020-12-07T07:16:31Z' + url: https://api.github.com/repos/packit/ogr/issues/502 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER body: '' - closed_at: '2019-02-26T10:21:46Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/20/comments - created_at: '2019-02-26T08:21:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/20/events - html_url: https://github.com/packit/ogr/pull/20 - id: 414485102 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/20/labels{/name} + closed_at: '2020-12-03T17:40:16Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/501/comments + created_at: '2020-12-03T14:29:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/501/events + html_url: https://github.com/packit/ogr/pull/501 + id: 756245027 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/501/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU2MTgzNjIz - number: 20 + node_id: MDExOlB1bGxSZXF1ZXN0NTMxODIwNTc1 + number: 501 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/20.diff - html_url: https://github.com/packit/ogr/pull/20 - patch_url: https://github.com/packit/ogr/pull/20.patch - url: https://api.github.com/repos/packit/ogr/pulls/20 + diff_url: https://github.com/packit/ogr/pull/501.diff + html_url: https://github.com/packit/ogr/pull/501 + patch_url: https://github.com/packit/ogr/pull/501.patch + url: https://api.github.com/repos/packit/ogr/pulls/501 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[release-conf.yaml] remove deprecated python_versions' - updated_at: '2019-02-26T10:21:48Z' - url: https://api.github.com/repos/packit/ogr/issues/20 + title: '[ci.fmf] there''s no git-source/ in ''new'' Testing Farm' + updated_at: '2020-12-04T08:50:31Z' + url: https://api.github.com/repos/packit/ogr/issues/501 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -77303,219 +103636,274 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Remove future import for annotations => python3.6 compatibility.\r\ - \n\r\nResolves #13 " - closed_at: '2019-02-19T14:31:38Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/18/comments - created_at: '2019-02-19T07:24:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/18/events - html_url: https://github.com/packit/ogr/pull/18 - id: 411781030 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/18/labels{/name} + author_association: CONTRIBUTOR + body: "```\r\nIn [1]: from ogr.parsing import parse_git_repo \r\n\r\n\ + In [2]: parse_git_repo(\"git@gitlab.com:packit-service/src/libvirt.git\"\ + ) \r\n\r\nIn [3]: :( \r\n ...: \r\n```" + closed_at: '2020-12-01T11:46:18Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/496/comments + created_at: '2020-11-26T14:01:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/496/events + html_url: https://github.com/packit/ogr/issues/496 + id: 751614853 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/496/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU0MTQyMzQ0 - number: 18 + node_id: MDU6SXNzdWU3NTE2MTQ4NTM= + number: 496 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/18.diff - html_url: https://github.com/packit/ogr/pull/18 - patch_url: https://github.com/packit/ogr/pull/18.patch - url: https://api.github.com/repos/packit/ogr/pulls/18 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Use strings for type annotations - updated_at: '2019-02-19T14:35:24Z' - url: https://api.github.com/repos/packit/ogr/issues/18 + title: ogr can't parse a subnamespace in gitlab's URL + updated_at: '2020-12-03T12:08:10Z' + url: https://api.github.com/repos/packit/ogr/issues/496 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "after installing `ogr` via ``pip3 install .``\r\nI wanted to run\ - \ make check ``PYTHONPATH=`pwd` pytest-3 -v ./tests/``\r\n\r\nit leads\ - \ to errors like:\r\n```\r\nE File \"/home/jscotka/git/userspace-containerization/ogr/ogr/abstract.py\"\ - , line 1\r\nE from __future__ import annotations\r\nE \ - \ ^\r\nE SyntaxError: future feature\ - \ annotations is not defined\r\n```\r\n\r\nseems that annotations module\ - \ is not accessible in ``python3-3.6.8-1.fc28.x86_64`` by default\r\n" - closed_at: '2019-02-19T14:31:38Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-01T08:33:48Z' comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/13/comments - created_at: '2019-02-15T12:46:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/13/events - html_url: https://github.com/packit/ogr/issues/13 - id: 410754451 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/13/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/500/comments + created_at: '2020-11-30T16:31:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/500/events + html_url: https://github.com/packit/ogr/pull/500 + id: 753623648 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/500/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTA3NTQ0NTE= - number: 13 + node_id: MDExOlB1bGxSZXF1ZXN0NTI5NjY1Njgx + number: 500 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/500.diff + html_url: https://github.com/packit/ogr/pull/500 + patch_url: https://github.com/packit/ogr/pull/500.patch + url: https://api.github.com/repos/packit/ogr/pulls/500 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: missing annotations library for testing - updated_at: '2019-02-19T14:31:38Z' - url: https://api.github.com/repos/packit/ogr/issues/13 + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2020-12-01T08:33:52Z' + url: https://api.github.com/repos/packit/ogr/issues/500 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* 0.0.2 release\n* 0.0.2\ - \ release\n* 0.0.2 release\n* [README] Requirements\n* [make check]\ - \ colors & showlocals\n* Add release-conf.yaml\n* Add new url\n* Fix\ - \ the name meaning\n* Move 'packages' from setup.py to setup.cfg\n*\ - \ Rename confusing pagure parameter\n* Fix some styling\n* Correct get_file_content\n\ - * Correct Pagure tests\n* Add API for file content\n* Add tests for\ - \ github\n* Rework github implementation\n* Fix tests and cyclic imports\n\ - * Remove duplicated test\n* Add annotations\n* Do not use pagure instance\ - \ publically\n* Add change_token for Servise and Project classes\n*\ - \ Add unit tests for comment filter/search functions\n* Extract comment\ - \ filter/search methods\n* Add integration tests for pr-comments and\ - \ skip test_create_fork\n* Improve pr-comments API\n* Add method for\ - \ filtering comments in pr\n* Fix pr_info and pr_comment content\n\n\ - \nYou can change it by editing `CHANGELOG.md` in the root of this repository\ - \ and pushing to `0.0.2-release` branch before merging this PR.\nI didn't\ - \ find any files where `__version__` is set." - closed_at: '2019-02-19T04:56:59Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/16/comments - created_at: '2019-02-18T09:07:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/16/events - html_url: https://github.com/packit/ogr/pull/16 - id: 411369684 + body: "Turn off requre clean up in pre-commit CI since it times out.\r\ + \n\r\nSigned-off-by: Matej Focko \r\n\r\nnot sure\ + \ how much it changes running locally, I run manually and had to use\ + \ `pre-commit run --hook-stage manual --all`\r\n\r\n- [x] Check if is\ + \ not skipped in zuul; gotta add `--hook-stage manual` to zuul too\r\ + \n- [x] What's wrong with the rebase??? (no network)\r\n There\ + \ are no remotes in pre-commit CI?" + closed_at: '2020-11-30T13:45:59Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/499/comments + created_at: '2020-11-27T10:31:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/499/events + html_url: https://github.com/packit/ogr/pull/499 + id: 752149999 labels: - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 7cf4be default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/16/labels{/name} + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/499/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUzODMzNjM0 - number: 16 + node_id: MDExOlB1bGxSZXF1ZXN0NTI4NTI5NDY4 + number: 499 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/16.diff - html_url: https://github.com/packit/ogr/pull/16 - patch_url: https://github.com/packit/ogr/pull/16.patch - url: https://api.github.com/repos/packit/ogr/pulls/16 + diff_url: https://github.com/packit/ogr/pull/499.diff + html_url: https://github.com/packit/ogr/pull/499 + patch_url: https://github.com/packit/ogr/pull/499.patch + url: https://api.github.com/repos/packit/ogr/pulls/499 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.0.2 release - updated_at: '2019-02-19T05:01:47Z' - url: https://api.github.com/repos/packit/ogr/issues/16 + title: Turn off requre in pre-commit CI + updated_at: '2020-11-30T14:31:49Z' + url: https://api.github.com/repos/packit/ogr/issues/499 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: Thank you in advance! - closed_at: '2019-02-18T09:07:33Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/15/comments - created_at: '2019-02-18T08:29:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/15/events - html_url: https://github.com/packit/ogr/issues/15 - id: 411355216 + body: "Introduced in #452 \r\n\r\nThere's a missing response for GitLab\ + \ (F31 version of python-gitlab) tests" + closed_at: '2020-11-30T08:37:14Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/472/comments + created_at: '2020-09-24T19:38:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/472/events + html_url: https://github.com/packit/ogr/issues/472 + id: 708425597 labels: - - color: ededed + - color: d93f0b default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: f9d0c4 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/15/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/472/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTEzNTUyMTY= - number: 15 + node_id: MDU6SXNzdWU3MDg0MjU1OTc= + number: 472 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.0.2 release - updated_at: '2019-02-18T09:07:33Z' - url: https://api.github.com/repos/packit/ogr/issues/15 + title: Missing response for F31 + updated_at: '2020-11-30T08:37:14Z' + url: https://api.github.com/repos/packit/ogr/issues/472 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Signed-off-by: Frantisek Lachman ' + closed_at: '2020-11-12T16:10:20Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/495/comments + created_at: '2020-11-12T14:51:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/495/events + html_url: https://github.com/packit/ogr/pull/495 + id: 741664481 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/495/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTE5OTM3ODcy + number: 495 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/495.diff + html_url: https://github.com/packit/ogr/pull/495 + patch_url: https://github.com/packit/ogr/pull/495.patch + url: https://api.github.com/repos/packit/ogr/pulls/495 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Do not skip bug and security issues by stalebot + updated_at: '2020-11-12T17:17:56Z' + url: https://api.github.com/repos/packit/ogr/issues/495 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -77536,232 +103924,403 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-02-15T16:54:17Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/12/comments - created_at: '2019-02-15T10:33:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/12/events - html_url: https://github.com/packit/ogr/pull/12 - id: 410703936 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-29T10:19:07Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/494/comments + created_at: '2020-10-29T09:59:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/494/events + html_url: https://github.com/packit/ogr/issues/494 + id: 732170676 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/12/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/494/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUzMzgwNjA0 - number: 12 + node_id: MDU6SXNzdWU3MzIxNzA2NzY= + number: 494 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/12.diff - html_url: https://github.com/packit/ogr/pull/12 - patch_url: https://github.com/packit/ogr/pull/12.patch - url: https://api.github.com/repos/packit/ogr/pulls/12 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add release-conf.yaml - updated_at: '2019-02-15T17:12:14Z' - url: https://api.github.com/repos/packit/ogr/issues/12 + title: '[packit] Propose update failed for release 0.18.0' + updated_at: '2020-10-29T10:19:07Z' + url: https://api.github.com/repos/packit/ogr/issues/494 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Fix anonymous GitlabService\n\ + * Adding delete project functionality\n* Update pre-commit configuration\ + \ for prettier\n* Add assignees argument while creating issue\n\n\n\ + You can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.18.0-release` branch before merging this PR.\nI\ + \ didn't find any files where `__version__` is set." + closed_at: '2020-10-29T09:54:07Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/493/comments + created_at: '2020-10-27T12:42:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/493/events + html_url: https://github.com/packit/ogr/pull/493 + id: 730416075 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/493/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTEwNzI0Mjkx + number: 493 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/493.diff + html_url: https://github.com/packit/ogr/pull/493 + patch_url: https://github.com/packit/ogr/pull/493.patch + url: https://api.github.com/repos/packit/ogr/pulls/493 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.18.0 release + updated_at: '2020-10-29T09:57:53Z' + url: https://api.github.com/repos/packit/ogr/issues/493 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-02-15T16:55:04Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/14/comments - created_at: '2019-02-15T13:30:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/14/events - html_url: https://github.com/packit/ogr/pull/14 - id: 410770447 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/14/labels{/name} + body: "- Allows no-auth read-only access to GitLab\r\n - authenticates\ + \ only if provided token\r\n\r\nFixes #481\r\n\r\nSigned-off-by: Matej\ + \ Focko " + closed_at: '2020-10-21T12:44:59Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/488/comments + created_at: '2020-10-20T09:42:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/488/events + html_url: https://github.com/packit/ogr/pull/488 + id: 725402916 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/488/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUzNDI5MTA2 - number: 14 + node_id: MDExOlB1bGxSZXF1ZXN0NTA2NjQxMTc1 + number: 488 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/14.diff - html_url: https://github.com/packit/ogr/pull/14 - patch_url: https://github.com/packit/ogr/pull/14.patch - url: https://api.github.com/repos/packit/ogr/pulls/14 + diff_url: https://github.com/packit/ogr/pull/488.diff + html_url: https://github.com/packit/ogr/pull/488 + patch_url: https://github.com/packit/ogr/pull/488.patch + url: https://api.github.com/repos/packit/ogr/pulls/488 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: README & Makefile - updated_at: '2019-02-15T17:12:10Z' - url: https://api.github.com/repos/packit/ogr/issues/14 + title: Fix anonymous GitlabService + updated_at: '2020-10-21T15:42:48Z' + url: https://api.github.com/repos/packit/ogr/issues/488 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Resolves #4' - closed_at: '2019-02-14T13:28:27Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/11/comments - created_at: '2019-02-14T13:11:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/11/events - html_url: https://github.com/packit/ogr/pull/11 - id: 410292447 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/11/labels{/name} + body: "ogr allows creating GitHub service instances without any authentication\ + \ (provides read-only access)\r\n\r\nBased on testing for #479 it's\ + \ been found out that we cannot create GitLab instance without providing\ + \ token (as we can with GitHub) *even though* it is supported by `python-gitlab`\ + \ (https://python-gitlab.readthedocs.io/en/stable/api-usage.html#gitlab-gitlab-class)" + closed_at: '2020-10-21T12:44:59Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/481/comments + created_at: '2020-10-14T10:27:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/481/events + html_url: https://github.com/packit/ogr/issues/481 + id: 721337045 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/481/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUzMDY2MjY3 - number: 11 + node_id: MDU6SXNzdWU3MjEzMzcwNDU= + number: 481 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/11.diff - html_url: https://github.com/packit/ogr/pull/11 - patch_url: https://github.com/packit/ogr/pull/11.patch - url: https://api.github.com/repos/packit/ogr/pulls/11 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix the name meaning and prepare for the move to packit-service - updated_at: '2019-02-14T13:28:27Z' - url: https://api.github.com/repos/packit/ogr/issues/11 + title: GitLab service cannot be created without providing auth + updated_at: '2020-10-21T12:44:59Z' + url: https://api.github.com/repos/packit/ogr/issues/481 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-02-11T12:22:48Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/10/comments - created_at: '2019-02-11T11:44:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/10/events - html_url: https://github.com/packit/ogr/pull/10 - id: 408743900 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/10/labels{/name} + author_association: CONTRIBUTOR + body: "fixes #215 \r\n\r\n- [x] Added tests" + closed_at: '2020-10-21T11:18:40Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/489/comments + created_at: '2020-10-21T03:36:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/489/events + html_url: https://github.com/packit/ogr/pull/489 + id: 726103440 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/489/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUxODg0MTc2 - number: 10 + node_id: MDExOlB1bGxSZXF1ZXN0NTA3MjI1MTM2 + number: 489 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/10.diff - html_url: https://github.com/packit/ogr/pull/10 - patch_url: https://github.com/packit/ogr/pull/10.patch - url: https://api.github.com/repos/packit/ogr/pulls/10 + diff_url: https://github.com/packit/ogr/pull/489.diff + html_url: https://github.com/packit/ogr/pull/489 + patch_url: https://github.com/packit/ogr/pull/489.patch + url: https://api.github.com/repos/packit/ogr/pulls/489 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Move 'packages' from setup.py to setup.cfg - updated_at: '2019-02-11T13:08:26Z' - url: https://api.github.com/repos/packit/ogr/issues/10 + title: Adding delete project functionality + updated_at: '2020-10-21T11:18:40Z' + url: https://api.github.com/repos/packit/ogr/issues/489 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Rework github implementation. - - - Add tests for github. - - - Add API for file content. - - - Correct Pagure tests.' - closed_at: '2019-02-04T16:55:46Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/9/comments - created_at: '2019-02-04T13:48:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/9/events - html_url: https://github.com/packit/ogr/pull/9 - id: 406337577 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/9/labels{/name} + body: "Add method to project classes to delete a project.\r\n\r\nAC:\r\ + \n- [ ] In each implementation, add the `delete` method to project class\ + \ and implement it.\r\n - If possible/supported. (Document that if\ + \ it is not possible and raise an exception with a good message.)\r\n\ + - [ ] Add tests for that.\r\n\r\nLinks:\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ + \n- https://pagure.io/api/0/ (not found the possible API call for that\ + \ on the first look)" + closed_at: '2020-10-21T11:18:39Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/215/comments + created_at: '2019-09-20T05:36:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/215/events + html_url: https://github.com/packit/ogr/issues/215 + id: 496154927 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/215/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUwMDU3NDI2 - number: 9 + node_id: MDU6SXNzdWU0OTYxNTQ5Mjc= + number: 215 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/9.diff - html_url: https://github.com/packit/ogr/pull/9 - patch_url: https://github.com/packit/ogr/pull/9.patch - url: https://api.github.com/repos/packit/ogr/pulls/9 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: github support - updated_at: '2019-02-04T16:55:50Z' - url: https://api.github.com/repos/packit/ogr/issues/9 + title: Implement GitProject.delete() + updated_at: '2020-10-21T11:18:40Z' + url: https://api.github.com/repos/packit/ogr/issues/215 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -77783,391 +104342,476 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- Remove duplicated test. - - - Add annotations.' - closed_at: '2019-01-30T10:16:18Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/7/comments - created_at: '2019-01-29T16:26:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/7/events - html_url: https://github.com/packit/ogr/pull/7 - id: 404374671 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/7/labels{/name} + body: "Related to https://github.com/prettier/prettier/issues/9459\r\n\ + \r\nSigned-off-by: Matej Focko " + closed_at: '2020-10-21T10:11:54Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/491/comments + created_at: '2020-10-21T09:50:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/491/events + html_url: https://github.com/packit/ogr/pull/491 + id: 726321387 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/491/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQ4NTcxNTc3 - number: 7 + node_id: MDExOlB1bGxSZXF1ZXN0NTA3NDA0NDY3 + number: 491 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/7.diff - html_url: https://github.com/packit/ogr/pull/7 - patch_url: https://github.com/packit/ogr/pull/7.patch - url: https://api.github.com/repos/packit/ogr/pulls/7 + diff_url: https://github.com/packit/ogr/pull/491.diff + html_url: https://github.com/packit/ogr/pull/491 + patch_url: https://github.com/packit/ogr/pull/491.patch + url: https://api.github.com/repos/packit/ogr/pulls/491 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add type annotations and fix create_pr - updated_at: '2019-01-30T10:32:30Z' - url: https://api.github.com/repos/packit/ogr/issues/7 + title: Update pre-commit configuration for prettier + updated_at: '2020-10-21T10:15:27Z' + url: https://api.github.com/repos/packit/ogr/issues/491 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Add change_token for Servise and Project classes.\r\n- Do not\ - \ use pagure instance publically." - closed_at: '2019-01-25T14:25:58Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/6/comments - created_at: '2019-01-24T11:21:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/6/events - html_url: https://github.com/packit/ogr/pull/6 - id: 402660658 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/6/labels{/name} + author_association: CONTRIBUTOR + body: "fixes #329 \r\n\r\n- [x] tests" + closed_at: '2020-10-20T14:41:14Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/487/comments + created_at: '2020-10-17T14:29:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/487/events + html_url: https://github.com/packit/ogr/pull/487 + id: 723770962 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/487/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTA1MjkxMDUy + number: 487 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/487.diff + html_url: https://github.com/packit/ogr/pull/487 + patch_url: https://github.com/packit/ogr/pull/487.patch + url: https://api.github.com/repos/packit/ogr/pulls/487 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add assignees argument while creating issue + updated_at: '2020-10-20T14:41:14Z' + url: https://api.github.com/repos/packit/ogr/issues/487 + user: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + author_association: CONTRIBUTOR + body: "Is it possible to assign Issues to particular user-names using\ + \ the issue object by any chance?\r\n\r\n#### Github\r\n- github-api:\ + \ https://developer.github.com/v3/issues/assignees/#add-assignees-to-an-issue\r\ + \n- pygithub: https://pygithub.readthedocs.io/en/latest/github_objects/Issue.html\r\ + \n\r\n#### Gitlab\r\n- gitlab-api: https://docs.gitlab.com/ee/api/issues.html#edit-issue\r\ + \n- python-gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ + \n- example of the code: https://gitlab.fi.muni.cz/xlachma1/figitool/blob/master/figitool/figitool.py#L576\r\ + \n```python\r\n user_id = gitlab_instance.users.list(username=login)[0].id\r\ + \n gitlab_mr.assignee_id = user_id\r\n gitlab_mr.save()\r\ + \n```\r\n\r\n#### Pagure:\r\n- https://src.fedoraproject.org/api/0/#issues\r\ + \n - -> Create a new issue\r\n - -> Assign an issue\r\n\r\n### TODO:\r\ + \n\r\n- [ ] add `assignee` argument to methods for creating the issue\r\ + \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ + \ tests for it\r\n- [ ] add the get/set property for the Issue classes\r\ + \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ + \ tests for it\r\n\r\n\r\nupdated by @lachmanfrantisek " + closed_at: '2020-10-20T14:41:14Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/329/comments + created_at: '2020-02-17T15:16:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/329/events + html_url: https://github.com/packit/ogr/issues/329 + id: 566364748 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/329/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQ3MjkxODEx - number: 6 + node_id: MDU6SXNzdWU1NjYzNjQ3NDg= + number: 329 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/6.diff - html_url: https://github.com/packit/ogr/pull/6 - patch_url: https://github.com/packit/ogr/pull/6.patch - url: https://api.github.com/repos/packit/ogr/pulls/6 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: change_token methods - updated_at: '2019-01-28T10:53:41Z' - url: https://api.github.com/repos/packit/ogr/issues/6 + title: Assigning Issues to based on usernames. + updated_at: '2020-10-20T14:41:14Z' + url: https://api.github.com/repos/packit/ogr/issues/329 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 + events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} + followers_url: https://api.github.com/users/saisankargochhayat/followers + following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} + gists_url: https://api.github.com/users/saisankargochhayat/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/saisankargochhayat + id: 9396452 + login: saisankargochhayat + node_id: MDQ6VXNlcjkzOTY0NTI= + organizations_url: https://api.github.com/users/saisankargochhayat/orgs + received_events_url: https://api.github.com/users/saisankargochhayat/received_events + repos_url: https://api.github.com/users/saisankargochhayat/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/saisankargochhayat - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Add method for filtering comments in pr.\r\n- Fix pr_info and\ - \ pr_comment content.\r\n\r\n- TODO:\r\n - [x] searching in comments/description\r\ - \n - [x] unit tests\r\n - [x] integration tests" - closed_at: '2019-01-18T12:40:24Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-19T07:46:55Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/5/comments - created_at: '2019-01-17T10:52:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/5/events - html_url: https://github.com/packit/ogr/pull/5 - id: 400218175 + comments_url: https://api.github.com/repos/packit/ogr/issues/486/comments + created_at: '2020-10-15T15:36:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/486/events + html_url: https://github.com/packit/ogr/issues/486 + id: 722446903 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/5/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/486/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQ1NDU1OTU0 - number: 5 + node_id: MDU6SXNzdWU3MjI0NDY5MDM= + number: 486 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/5.diff - html_url: https://github.com/packit/ogr/pull/5 - patch_url: https://github.com/packit/ogr/pull/5.patch - url: https://api.github.com/repos/packit/ogr/pulls/5 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pr info and comments - updated_at: '2019-01-18T13:02:36Z' - url: https://api.github.com/repos/packit/ogr/issues/5 + title: '[packit] Propose update failed for release 0.17.0' + updated_at: '2020-10-19T07:46:55Z' + url: https://api.github.com/repos/packit/ogr/issues/486 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- add MIT license + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: - - use setuptools-scm - - add Makefile target for image and pypi-checking' - closed_at: '2019-01-11T14:15:26Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/3/comments - created_at: '2019-01-10T15:31:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/3/events - html_url: https://github.com/packit/ogr/pull/3 - id: 397883535 + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `The distgit repository /tmp/packit-dist-gitbut5ttez is dirty.This + is not supported.` | + + | `f32` | `Cmd(''git'') failed due to: exit code(128) cmdline: git + reset --hard remotes/origin/0.17.0-f32-update stderr: ''fatal: ambiguous + argument ''remotes/origin/0.17.0-f32-update'': unknown revision or path + not in the working tree. Use ''--'' to separate paths from revisions, + like this: ''git [...] -- [...]''''` | + + | `f33` | `The distgit repository /tmp/packit-dist-gitbut5ttez is dirty.This + is not supported.` | + + | `master` | `The distgit repository /tmp/packit-dist-gitbut5ttez is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-15T07:28:47Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/484/comments + created_at: '2020-10-15T06:05:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/484/events + html_url: https://github.com/packit/ogr/issues/484 + id: 722023608 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/3/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/484/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQzNzI4NTQ0 - number: 3 + node_id: MDU6SXNzdWU3MjIwMjM2MDg= + number: 484 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/3.diff - html_url: https://github.com/packit/ogr/pull/3 - patch_url: https://github.com/packit/ogr/pull/3.patch - url: https://api.github.com/repos/packit/ogr/pulls/3 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Introduce packaging - updated_at: '2019-01-12T14:24:24Z' - url: https://api.github.com/repos/packit/ogr/issues/3 + title: '[packit] Propose update failed for release 0.17.0' + updated_at: '2020-10-15T15:38:59Z' + url: https://api.github.com/repos/packit/ogr/issues/484 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=16: - - metadata: - latency: 0.29196810722351074 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Add tests for Pagure and OurPagure. - - - Update the API and Pagure implementation.' - closed_at: '2019-01-10T13:50:20Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/2/comments - created_at: '2019-01-10T11:16:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/2/events - html_url: https://github.com/packit/ogr/pull/2 - id: 397783096 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/2/labels{/name} + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Implement project.exists\ + \ for GitLab\n* Raise better exception for user's email in Pagure\n\ + * Add description argument to all project_create methods\n\n\nYou can\ + \ change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.17.0-release` branch before merging this PR.\nI\ + \ didn't find any files where `__version__` is set." + closed_at: '2020-10-15T06:01:36Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/483/comments + created_at: '2020-10-14T15:44:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/483/events + html_url: https://github.com/packit/ogr/pull/483 + id: 721573177 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/483/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQzNjQ4ODM2 - number: 2 + node_id: MDExOlB1bGxSZXF1ZXN0NTAzNDY4NzQ4 + number: 483 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/2.diff - html_url: https://github.com/packit/ogr/pull/2 - patch_url: https://github.com/packit/ogr/pull/2.patch - url: https://api.github.com/repos/packit/ogr/pulls/2 + diff_url: https://github.com/packit/ogr/pull/483.diff + html_url: https://github.com/packit/ogr/pull/483 + patch_url: https://github.com/packit/ogr/pull/483.patch + url: https://api.github.com/repos/packit/ogr/pulls/483 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update API and Pagure - updated_at: '2019-01-10T13:52:06Z' - url: https://api.github.com/repos/packit/ogr/issues/2 + title: 0.17.0 release + updated_at: '2020-10-15T06:06:31Z' + url: https://api.github.com/repos/packit/ogr/issues/483 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=2: - - metadata: - latency: 0.7825789451599121 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: 'Depends-on: https://github.com/packit/packit/pull/920' - closed_at: '2020-08-04T06:21:47Z' - comments: 20 - comments_url: https://api.github.com/repos/packit/ogr/issues/443/comments - created_at: '2020-08-03T09:07:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/443/events - html_url: https://github.com/packit/ogr/pull/443 - id: 671923353 + author_association: MEMBER + body: '`project_dir` has been [set by zuul base job](https://github.com/packit/packit-service-zuul/blob/master/zuul.d/jobs.yaml#L13).' + closed_at: '2020-10-14T16:46:10Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/482/comments + created_at: '2020-10-14T14:20:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/482/events + html_url: https://github.com/packit/ogr/pull/482 + id: 721504247 labels: - color: 0e8a16 default: false @@ -78176,131 +104820,110 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/443/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/482/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDYyMDUwMTY5 - number: 443 + node_id: MDExOlB1bGxSZXF1ZXN0NTAzNDExNDE2 + number: 482 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/443.diff - html_url: https://github.com/packit/ogr/pull/443 - patch_url: https://github.com/packit/ogr/pull/443.patch - url: https://api.github.com/repos/packit/ogr/pulls/443 + diff_url: https://github.com/packit/ogr/pull/482.diff + html_url: https://github.com/packit/ogr/pull/482 + patch_url: https://github.com/packit/ogr/pull/482.patch + url: https://api.github.com/repos/packit/ogr/pulls/482 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'zuul: org rename' - updated_at: '2020-08-04T06:21:47Z' - url: https://api.github.com/repos/packit/ogr/issues/443 + title: Remove files/tasks/zuul-project-setup.yaml + updated_at: '2020-10-14T17:10:37Z' + url: https://api.github.com/repos/packit/ogr/issues/482 user: - avatar_url: https://avatars2.githubusercontent.com/u/84583?v=4 - events_url: https://api.github.com/users/morucci/events{/privacy} - followers_url: https://api.github.com/users/morucci/followers - following_url: https://api.github.com/users/morucci/following{/other_user} - gists_url: https://api.github.com/users/morucci/gists{/gist_id} + 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/morucci - id: 84583 - login: morucci - node_id: MDQ6VXNlcjg0NTgz - organizations_url: https://api.github.com/users/morucci/orgs - received_events_url: https://api.github.com/users/morucci/received_events - repos_url: https://api.github.com/users/morucci/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/morucci/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/morucci/subscriptions + 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/morucci + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "After the Packit organisation rename, I had to regenerate the test\ - \ data for GitHub. This proved to be a considerable effort, with roughly\ - \ the following steps:\r\n\r\n- create a Python virtualenv and install\ - \ test dependencies - this needed several attempts, to get it right.\r\ - \n- clean up test data for GitHub\r\n- set my GitHub API token\r\n-\ - \ run the tests with `make check` only to realise that the `GITHUB_APP_ID`\ - \ and the `GITHUB_APP_PRIVATE_KEY_PATH` env vars were not set. Ask by\ - \ the team how what values to set these (stage is fine) and run the\ - \ tests again.\r\n- Start following comments left in individul tests,\ - \ to manually bring the repos, PRs, issues in the state the state expected\ - \ them to be. For this I had to run the tests over and over again, see\ - \ a test fail, inspect the failure to figure out the reason, fix the\ - \ pre-conditions and run the tests again to check that the fix worked.\r\ - \n\r\nThe above is extremely tedious and frustrating.\r\n\r\nRegenerating\ - \ test data should be trivial, for example:\r\n\r\n- if credentials\ - \ are needed, the contribution guide should explicitly call those out\ - \ with clear indication what their values/credentials should be.\r\n\ - - they should be checked to be set even before starting any test run.\r\ - \n- pre-conditions for tests should be checked, and preferably automatically\ - \ set up given the credentials above, without requiring any manual action.\r\ - \n- if it's still required to set pre-conditions manually, these steps\ - \ should be clearly called out with detailed instructions in the contribution\ - \ guide. " - closed_at: null - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/445/comments - created_at: '2020-08-03T13:50:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/445/events - html_url: https://github.com/packit/ogr/issues/445 - id: 672091016 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/445/labels{/name} + body: '' + closed_at: '2020-10-14T15:44:17Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/473/comments + created_at: '2020-09-30T09:36:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/473/events + html_url: https://github.com/packit/ogr/issues/473 + id: 711792673 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/473/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NzIwOTEwMTY= - number: 445 + node_id: MDU6SXNzdWU3MTE3OTI2NzM= + number: 473 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Regenerating the test data for the integration tests should be - trivial - updated_at: '2020-08-03T13:50:00Z' - url: https://api.github.com/repos/packit/ogr/issues/445 + state: closed + title: New minor release + updated_at: '2020-10-14T15:44:17Z' + url: https://api.github.com/repos/packit/ogr/issues/473 user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Pipelines are specific to the GitLab but there were some requests\ - \ (ping @thrix ) to support them in OGR as well.\r\n\r\n- It's going\ - \ against the purpose of OGR to have one API for multiple forges. :-1:\ - \ \r\n- Users can access `python-gitlab` to do that instead. :-1: \r\ - \n - But it's not a good UX. `python-gitlab` is our implementation\ - \ detail. We should not force users to access that. :+1: \r\n- Technically\ - \ it will be easy to implement. :+1: (No big changes needed, just add\ - \ some GitLab specific classes and methods.)\r\n- It will be useful\ - \ for packit-service GitLab implementation :+1: (ping @shreyaspapi ..;-)\r\ - \n\r\nAC:\r\n- [ ] Provide a class abstraction on top of the objects\ - \ related to that.\r\n - Make here a proposal before coding.\r\n- [\ - \ ] Implement useful methods and classes.\r\n- [ ] Create new issues\ - \ for anything that can be implemented later." - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/420/comments - created_at: '2020-05-26T14:37:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/420/events - html_url: https://github.com/packit/ogr/issues/420 - id: 624934468 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Signed-off-by: Frantisek Lachman ' + closed_at: '2020-10-14T10:43:09Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/479/comments + created_at: '2020-10-14T08:34:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/479/events + html_url: https://github.com/packit/ogr/pull/479 + id: 721258049 labels: - color: d93f0b default: false @@ -78309,26 +104932,31 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/420/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/479/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjQ5MzQ0Njg= - number: 420 + node_id: MDExOlB1bGxSZXF1ZXN0NTAzMjA2NzU3 + number: 479 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/479.diff + html_url: https://github.com/packit/ogr/pull/479 + patch_url: https://github.com/packit/ogr/pull/479.patch + url: https://api.github.com/repos/packit/ogr/pulls/479 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Support for GitLab pipelines - updated_at: '2020-08-03T07:28:07Z' - url: https://api.github.com/repos/packit/ogr/issues/420 + state: closed + title: Implement project.exists for GitLab + updated_at: '2020-10-14T10:50:55Z' + url: https://api.github.com/repos/packit/ogr/issues/479 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -78350,113 +104978,16 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-07-31T16:40:37Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/355/comments - created_at: '2020-03-17T12:39:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/355/events - html_url: https://github.com/packit/ogr/pull/355 - id: 582983115 - labels: - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/355/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg5ODExMzc3 - number: 355 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/355.diff - html_url: https://github.com/packit/ogr/pull/355 - patch_url: https://github.com/packit/ogr/pull/355.patch - url: https://api.github.com/repos/packit/ogr/pulls/355 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'WIP: packit - make release work on stage' - updated_at: '2020-07-31T16:40:37Z' - url: https://api.github.com/repos/packit/ogr/issues/355 - user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos - site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions - type: User - url: https://api.github.com/users/dhodovsk - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: Example of Issue description - closed_at: '2020-07-30T21:15:08Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/442/comments - created_at: '2020-07-30T21:14:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/442/events - html_url: https://github.com/packit/ogr/issues/442 - id: 669202849 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/442/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2NjkyMDI4NDk= - number: 442 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: This is an issue - updated_at: '2020-07-31T12:43:32Z' - url: https://api.github.com/repos/packit/ogr/issues/442 - user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos - site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions - type: User - url: https://api.github.com/users/shreyaspapi - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "Request project access - using it here (https://github.com/packit-service/packit-service/pull/740)\r\ - \n\r\n[Request access docs](https://python-gitlab.readthedocs.io/en/stable/gl_objects/access_requests.html)" - closed_at: '2020-07-31T11:19:06Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/439/comments - created_at: '2020-07-26T19:59:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/439/events - html_url: https://github.com/packit/ogr/pull/439 - id: 665849470 + body: "Chosen as a better resolution to unsupported API (previously raised\ + \ an exception).\r\n\r\nSigned-off-by: Matej Focko \r\ + \n\r\nCloses #126" + closed_at: '2020-10-12T12:16:21Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/477/comments + created_at: '2020-10-08T19:30:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/477/events + html_url: https://github.com/packit/ogr/pull/477 + id: 717605937 labels: - color: 0e8a16 default: false @@ -78465,50 +104996,93 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/439/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/477/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDU2Nzk3ODcw - number: 439 + node_id: MDExOlB1bGxSZXF1ZXN0NTAwMTM5MzYx + number: 477 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/439.diff - html_url: https://github.com/packit/ogr/pull/439 - patch_url: https://github.com/packit/ogr/pull/439.patch - url: https://api.github.com/repos/packit/ogr/pulls/439 + diff_url: https://github.com/packit/ogr/pull/477.diff + html_url: https://github.com/packit/ogr/pull/477 + patch_url: https://github.com/packit/ogr/pull/477.patch + url: https://api.github.com/repos/packit/ogr/pulls/477 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Requesting project access - updated_at: '2020-07-31T11:19:06Z' - url: https://api.github.com/repos/packit/ogr/issues/439 + title: Return `None` for user's email in Pagure + updated_at: '2020-10-12T12:23:41Z' + url: https://api.github.com/repos/packit/ogr/issues/477 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: COLLABORATOR body: "We have `get_username` method in GitUser class. At the moment we\ - \ are missing method `get_email` for both Github and Pagure services.\r\ + \ are missing method `get_email` for both ~~Github~~ and Pagure services.\r\ \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" - closed_at: null - comments: 6 + closed_at: '2020-10-12T12:16:21Z' + comments: 11 comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments created_at: '2019-07-18T07:56:31Z' events_url: https://api.github.com/repos/packit/ogr/issues/126/events @@ -78550,12 +105124,12 @@ requests.sessions: number: 126 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: get_email for GitUser - updated_at: '2020-07-31T10:43:43Z' + updated_at: '2020-10-12T12:16:21Z' url: https://api.github.com/repos/packit/ogr/issues/126 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -78577,40 +105151,47 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- Be able to run tests via tmt also locally.' - closed_at: null - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/358/comments - created_at: '2020-03-19T08:50:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/358/events - html_url: https://github.com/packit/ogr/pull/358 - id: 584255021 + body: '- Add description argument to all `project_create` methods.' + closed_at: '2020-10-12T08:13:58Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/476/comments + created_at: '2020-10-07T14:28:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/476/events + html_url: https://github.com/packit/ogr/pull/476 + id: 716582560 labels: - - color: dd5f74 + - color: 0e8a16 default: false - description: Work in progress. - id: 1432779248 - name: do-not-merge - node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 - url: https://api.github.com/repos/packit/ogr/labels/do-not-merge - labels_url: https://api.github.com/repos/packit/ogr/issues/358/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/476/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzkwODczODYy - number: 358 + node_id: MDExOlB1bGxSZXF1ZXN0NDk5MjkzOTk4 + number: 476 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/358.diff - html_url: https://github.com/packit/ogr/pull/358 - patch_url: https://github.com/packit/ogr/pull/358.patch - url: https://api.github.com/repos/packit/ogr/pulls/358 + diff_url: https://github.com/packit/ogr/pull/476.diff + html_url: https://github.com/packit/ogr/pull/476 + patch_url: https://github.com/packit/ogr/pull/476.patch + url: https://api.github.com/repos/packit/ogr/pulls/476 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: 'WIP: Tmt local run' - updated_at: '2020-07-28T12:13:04Z' - url: https://api.github.com/repos/packit/ogr/issues/358 + state: closed + title: Unify project_create method + updated_at: '2020-10-12T08:47:46Z' + url: https://api.github.com/repos/packit/ogr/issues/476 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -78631,294 +105212,1167 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "AFAIK at the moment it is not possible to get the info about whether\ - \ the repository is private or not in pagure. Now we depend on the info\ - \ that in src.fedoraproject.org and pagure.io, the private repositories\ - \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments - created_at: '2020-02-18T12:39:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/330/events - html_url: https://github.com/packit/ogr/issues/330 - id: 566865331 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `The distgit repository /tmp/packit-dist-git9pvi9zgh is dirty.This + is not supported.` | + + | `f32` | `The distgit repository /tmp/packit-dist-git9pvi9zgh is dirty.This + is not supported.` | + + | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.13.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-06T12:06:10Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/448/comments + created_at: '2020-08-07T09:12:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/448/events + html_url: https://github.com/packit/ogr/issues/448 + id: 674879684 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 42e529 + - color: '000000' default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/330/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/448/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NjY4NjUzMzE= - number: 330 + node_id: MDU6SXNzdWU2NzQ4Nzk2ODQ= + number: 448 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: better is_private method for pagure projects - updated_at: '2020-07-28T11:32:52Z' - url: https://api.github.com/repos/packit/ogr/issues/330 + state: closed + title: '[packit] Propose update failed for release 0.13.0' + updated_at: '2020-10-06T12:06:10Z' + url: https://api.github.com/repos/packit/ogr/issues/448 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions - type: User - url: https://api.github.com/users/dhodovsk + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + _next: null + elapsed: 0.436401 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:45 GMT + ETag: W/"363ce9f879f2ad27239190406a5ec264598c45445031fa4abca54fa1a88e36c9" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7D788:191790A:6075DC10 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4933' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '67' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=5: + - metadata: + latency: 0.4389767646789551 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-07-28T07:54:55Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/436/comments - created_at: '2020-07-16T12:52:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/436/events - html_url: https://github.com/packit/ogr/pull/436 - id: 658170942 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/436/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-01T08:40:05Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/475/comments + created_at: '2020-09-30T19:27:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/475/events + html_url: https://github.com/packit/ogr/issues/475 + id: 712218395 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/475/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDUwMTcyMDA5 - number: 436 + node_id: MDU6SXNzdWU3MTIyMTgzOTU= + number: 475 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/436.diff - html_url: https://github.com/packit/ogr/pull/436 - patch_url: https://github.com/packit/ogr/pull/436.patch - url: https://api.github.com/repos/packit/ogr/pulls/436 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Support add group for pagure - updated_at: '2020-07-28T08:12:10Z' - url: https://api.github.com/repos/packit/ogr/issues/436 + title: '[packit] Propose update failed for release 0.16.0' + updated_at: '2020-10-01T08:40:06Z' + url: https://api.github.com/repos/packit/ogr/issues/475 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions - type: User - url: https://api.github.com/users/dhodovsk + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Since we [now](https://github.com/packit-service/ogr/pull/150)\ - \ support GitLab, we need to update our README to show it.\r\n\r\n+\ - \ [ ] and provide brief docs how to use it (@TomasTomecek had to google\ - \ a bit)" - closed_at: '2020-07-17T13:52:03Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/157/comments - created_at: '2019-08-15T15:27:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/157/events - html_url: https://github.com/packit/ogr/issues/157 - id: 481205806 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Update contribution guide\n\ + * Refactor Pagure and factory tests\n* Refactor GitLab tests\n* Refactor\ + \ GitHub tests\n* this is first draft how new tests could look like\n\ + * Add badge for pre-commit and black to README\n* Refactor `parse_git_repo`\n\ + * Use parenthesis for lru_cache decorator\n* Add hostname property to\ + \ service class\n* Fix inheritance of GitlabService from BaseGitService\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.16.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-09-30T19:24:44Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/474/comments + created_at: '2020-09-30T09:37:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/474/events + html_url: https://github.com/packit/ogr/pull/474 + id: 711793587 labels: - - color: d93f0b + - color: ededed default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: 7057ff + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: '000000' + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/157/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/474/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODEyMDU4MDY= - number: 157 + node_id: MDExOlB1bGxSZXF1ZXN0NDk1MzgxMTcx + number: 474 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/474.diff + html_url: https://github.com/packit/ogr/pull/474 + patch_url: https://github.com/packit/ogr/pull/474.patch + url: https://api.github.com/repos/packit/ogr/pulls/474 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Mention GitLab support in README - updated_at: '2020-07-28T07:07:52Z' - url: https://api.github.com/repos/packit/ogr/issues/157 + title: 0.16.0 release + updated_at: '2020-09-30T19:26:46Z' + url: https://api.github.com/repos/packit/ogr/issues/474 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "https://github.com/packit-service/ogr/pull/415 implements `PagurePullRequest.patch`\ - \ property to get a patch from a pull request.\r\n`Gitlab` & `Github`\ - \ implementation are missing." - closed_at: null - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/416/comments - created_at: '2020-05-22T16:21:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/416/events - html_url: https://github.com/packit/ogr/issues/416 - id: 623324928 + author_association: CONTRIBUTOR + body: "Shoudn't be this working?\r\n\r\nconfig:\r\n```\r\nauthentication:\r\ + \n git.stg.centos.org:\r\n instance_url: https://git.stg.centos.org\r\ + \n token: ---token---\r\n type: pagure\r\n```\r\nerror:\r\n```\r\ + \nAuthentication for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ + \ is missing in the config.\r\nTraceback (most recent call last):\r\n\ + \ File \"/home/sakalosj/projects/packit/packit/config/config.py\",\ + \ line 203, in _get_project\r\n url=url, custom_instances=self.services,\ + \ **get_project_kwargs\r\n File \"/home/sakalosj/projects/ogr/ogr/factory.py\"\ + , line 83, in get_project\r\n kls = get_service_class(url=url, service_mapping_update=service_mapping_update)\r\ + \n File \"/home/sakalosj/projects/ogr/ogr/factory.py\", line 144, in\ + \ get_service_class\r\n raise OgrException(\"No matching service\ + \ was found.\")\r\nogr.exceptions.OgrException: No matching service\ + \ was found.\r\n\r\nDuring handling of the above exception, another\ + \ exception occurred:\r\n\r\nTraceback (most recent call last):\r\n\ + \ File \"/home/sakalosj/projects/packit-service/tmp_local/runner.py\"\ + , line 63, in \r\n process_new_pr()\r\n File \"/home/sakalosj/projects/packit-service/tmp_local/runner.py\"\ + , line 22, in process_new_pr\r\n SteveJobs().process_message(event=new_pr,\ + \ source=\"centosmsg\")\r\n File \"/home/sakalosj/projects/packit-service/packit_service/worker/jobs.py\"\ + , line 320, in process_message\r\n if project:\r\n File \"/home/sakalosj/projects/packit/packit/config/config.py\"\ + , line 208, in _get_project\r\n raise PackitConfigException(msg,\ + \ ex)\r\npackit.exceptions.PackitConfigException: (\"Authentication\ + \ for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ + \ is missing in the config.\", OgrException('No matching service was\ + \ found.'))\r\n```" + closed_at: '2020-09-30T15:25:59Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/383/comments + created_at: '2020-04-15T21:50:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/383/events + html_url: https://github.com/packit/ogr/issues/383 + id: 600609280 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: fef2c0 + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 42e529 default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/416/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/383/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjMzMjQ5Mjg= - number: 416 + node_id: MDU6SXNzdWU2MDA2MDkyODA= + number: 383 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Implement patch property in GitlabPullRequest and GithubPullRequest - updated_at: '2020-07-23T11:20:56Z' - url: https://api.github.com/repos/packit/ogr/issues/416 + state: closed + title: Initializing service via get_instances_from_dict() not working + as expected + updated_at: '2020-09-30T15:25:59Z' + url: https://api.github.com/repos/packit/ogr/issues/383 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "It would be nice to add the following parts to CONTRIBUTING.md\r\ - \n\r\n- What is `git rebase` and how to rebase a pull-request.\r\n \ - \ - We want to have a git tree like this: \r\n![Sn\xEDmek z 2019-09-19\ - \ 11-43-15](https://user-images.githubusercontent.com/20214043/65233459-2712aa00-dad3-11e9-8849-6bb5babf75fe.png)\r\ - \n - not this: \r\n![Sn\xEDmek z 2019-09-19 11-43-51](https://user-images.githubusercontent.com/20214043/65233488-309c1200-dad3-11e9-93a9-b2b15e8a0f39.png)\r\ - \n\r\n- links to documentation we are using when implementing the code\ - \ for github, gitlab, pagure\r\n - https://src.fedoraproject.org/api/0/\r\ - \n - https://pagure.io/api/0/\r\n - https://pygithub.readthedocs.io/\r\ - \n - https://python-gitlab.readthedocs.io/\r\n - ...\r\n \r\n\ - - How to write a good git commit messages:\r\n - https://chris.beams.io/posts/git-commit/" + body: "There are many warnings and errors when running `mypy` in a strict\ + \ mode. Each error can mean potentially problematic part of the code.\ + \ (The goal is to make the code better, not only to silence the mypy.)\ + \ \r\n\r\nIt would be nice to reduce the number of errors/warnings.\r\ + \n\r\nWhat you can do:\r\n- Run the mypy on the code:\r\n ```sh\r\n\ + \ mypy ogr --strict\r\n ```\r\n- pick an error/warning\r\n- try to\ + \ fix the problem which can mean\r\n - adding a type annotation\r\n\ + \ - changing the type annotation\r\n - adding some test for the input\ + \ and raising a propper exception\r\n - something else\r\n- send a\ + \ PR with the fix or raise an issue if you found some problem, that\ + \ cannot be easily fixed\r\n\r\nThis does not need to be done in one\ + \ PR. Also, one fixed error can be useful to us.\r\n\r\n
\r\n\ + 'mypy ogr --strict' output\r\n\r\n```\r\n$ mypy ogr\ + \ --strict\r\nogr/deprecation.py:23: error: Cannot find implementation\ + \ or library stub for module named 'deprecated'\r\nogr/deprecation.py:26:\ + \ error: Function is missing a type annotation\r\nogr/services/github/auth_providers/abstract.py:6:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/auth_providers/abstract.py:6: note:\ + \ See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports\r\ + \nogr/services/github/auth_providers/abstract.py:32: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/parsing.py:99:\ + \ error: Function is missing a return type annotation\r\nogr/parsing.py:155:\ + \ error: Argument 1 to \"RepoUrl\" has incompatible type \"None\"; expected\ + \ \"str\"\r\nogr/services/github/auth_providers/token.py:6: error: Cannot\ + \ find implementation or library stub for module named 'github'\r\n\ + ogr/services/github/auth_providers/token.py:12: error: Function is missing\ + \ a type annotation for one or more arguments\r\nogr/services/github/auth_providers/token.py:35:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/auth_providers/token.py:35: error: Incompatible\ + \ default for argument \"token\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:7:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/auth_providers/github_app.py:26: error:\ + \ Returning Any from function declared to return \"bool\"\r\nogr/services/github/auth_providers/github_app.py:61:\ + \ error: Incompatible return value type (got \"None\", expected \"str\"\ + )\r\nogr/services/github/auth_providers/github_app.py:76: error: Incompatible\ + \ return value type (got \"None\", expected \"str\")\r\nogr/services/github/auth_providers/github_app.py:87:\ + \ error: unused 'type: ignore' comment\r\nogr/services/github/auth_providers/github_app.py:94:\ + \ error: unused 'type: ignore' comment\r\nogr/services/github/auth_providers/github_app.py:95:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/auth_providers/github_app.py:98: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/github/auth_providers/github_app.py:99:\ + \ error: Incompatible default for argument \"github_app_id\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:100:\ + \ error: Incompatible default for argument \"github_app_private_key\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:101:\ + \ error: Incompatible default for argument \"github_app_private_key_path\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/abstract.py:34:\ + \ error: Module 'functools' has no attribute 'cached_property'\r\nogr/abstract.py:82:\ + \ error: Function is missing a return type annotation\r\nogr/abstract.py:103:\ + \ error: Incompatible return value type (got \"Optional[datetime]\"\ + , expected \"datetime\")\r\nogr/abstract.py:107: error: Incompatible\ + \ return value type (got \"Optional[datetime]\", expected \"datetime\"\ + )\r\nogr/abstract.py:113: error: Incompatible return value type (got\ + \ \"Optional[Any]\", expected \"Issue\")\r\nogr/abstract.py:122: error:\ + \ Incompatible return value type (got \"Optional[Any]\", expected \"\ + PullRequest\")\r\nogr/abstract.py:172: error: Missing type parameters\ + \ for generic type \"List\"\r\nogr/abstract.py:244: error: Incompatible\ + \ default for argument \"filter_regex\" (default has type \"None\",\ + \ argument has type \"str\")\r\nogr/abstract.py:244: error: Incompatible\ + \ default for argument \"author\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/abstract.py:299: error: Call to untyped function\ + \ \"deprecate_and_set_removal\" in typed context\r\nogr/abstract.py:299:\ + \ error: Untyped decorator makes function \"__init__\" untyped\r\nogr/abstract.py:420:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:751:\ + \ error: Untyped decorator makes function \"hostname\" untyped\r\nogr/abstract.py:1204:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:1224:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:1373:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/read_only.py:52:\ + \ error: Missing type parameters for generic type \"Callable\"\r\nogr/read_only.py:66:\ + \ error: Function is missing a type annotation\r\nogr/read_only.py:68:\ + \ error: Function is missing a type annotation\r\nogr/read_only.py:165:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/read_only.py:165: error: Untyped decorator makes function\ + \ \"pr_create\" untyped\r\nogr/read_only.py:177: error: Incompatible\ + \ default for argument \"fork_username\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/read_only.py:195: error: Incompatible\ + \ default for argument \"fork_username\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/read_only.py:215: error: Incompatible\ + \ default for argument \"commit\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/read_only.py:216: error: Incompatible default\ + \ for argument \"filename\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/read_only.py:217: error: Incompatible default\ + \ for argument \"row\" (default has type \"None\", argument has type\ + \ \"int\")\r\nogr/read_only.py:233: error: Returning Any from function\ + \ declared to return \"PullRequest\"\r\nogr/read_only.py:239: error:\ + \ Returning Any from function declared to return \"PullRequest\"\r\n\ + ogr/read_only.py:257: error: Returning Any from function declared to\ + \ return \"GitProject\"\r\nogr/factory.py:33: error: Function is missing\ + \ a return type annotation\r\nogr/factory.py:33: error: Function is\ + \ missing a type annotation for one or more arguments\r\nogr/factory.py:57:\ + \ error: Function is missing a type annotation\r\nogr/factory.py:59:\ + \ error: Function is missing a return type annotation\r\nogr/factory.py:65:\ + \ error: Call to untyped function \"decorator_cover\" in typed context\r\ + \nogr/factory.py:68: error: Function is missing a type annotation for\ + \ one or more arguments\r\nogr/factory.py:70: error: Incompatible default\ + \ for argument \"service_mapping_update\" (default has type \"None\"\ + , argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:71:\ + \ error: Incompatible default for argument \"custom_instances\" (default\ + \ has type \"None\", argument has type \"Iterable[GitService]\")\r\n\ + ogr/factory.py:86: error: Invalid index type \"Optional[str]\" for \"\ + Dict[str, Type[GitService]]\"; expected type \"str\"\r\nogr/factory.py:95:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + hostname\"\r\nogr/factory.py:105: error: Item \"None\" of \"Optional[RepoUrl]\"\ + \ has no attribute \"get_instance_url\"\r\nogr/factory.py:110: error:\ + \ Incompatible default for argument \"service_mapping_update\" (default\ + \ has type \"None\", argument has type \"Dict[str, Type[GitService]]\"\ + )\r\nogr/factory.py:132: error: Incompatible default for argument \"\ + service_mapping_update\" (default has type \"None\", argument has type\ + \ \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:149: error: Implicit\ + \ generic \"Any\". Use \"typing.Dict\" and specify generic parameters\r\ + \nogr/services/gitlab/comments.py:26: error: Cannot find implementation\ + \ or library stub for module named 'gitlab.v4.objects'\r\nogr/services/gitlab/comments.py:41:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/comments.py:50: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/comments.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.IssueComment'\r\nogr/services/github/comments.py:27: error:\ + \ Cannot find implementation or library stub for module named 'github.PullRequestComment'\r\ + \nogr/services/github/comments.py:42: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/comments.py:50:\ + \ error: Returning Any from function declared to return \"datetime\"\ + \r\nogr/services/github/auth_providers/tokman.py:7: error: Cannot find\ + \ implementation or library stub for module named 'github'\r\nogr/services/github/auth_providers/tokman.py:39:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/auth_providers/tokman.py:42: error: Function is\ + \ missing a type annotation for one or more arguments\r\nogr/services/github/auth_providers/tokman.py:42:\ + \ error: Incompatible default for argument \"tokman_instance_url\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:46:\ + \ error: Module 'functools' has no attribute 'cached_property'\r\nogr/services/base.py:55:\ + \ error: Untyped decorator makes function \"hostname\" untyped\r\nogr/services/base.py:60:\ + \ error: Argument \"potential_url\" to \"parse_git_repo\" has incompatible\ + \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/base.py:81:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:81: error: Untyped decorator makes\ + \ function \"get_pr_comments\" untyped\r\nogr/services/base.py:86: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/base.py:87: error: Incompatible default for argument \"\ + filter_regex\" (default has type \"None\", argument has type \"str\"\ + )\r\nogr/services/base.py:87: error: Incompatible default for argument\ + \ \"author\" (default has type \"None\", argument has type \"str\")\r\ + \nogr/services/base.py:100: error: Call to untyped function \"deprecate_and_set_removal\"\ + \ in typed context\r\nogr/services/base.py:100: error: Untyped decorator\ + \ makes function \"search_in_pr\" untyped\r\nogr/services/base.py:123:\ + \ error: Untyped decorator makes function \"pr_close\" untyped\r\nogr/services/base.py:124:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:124: error: Untyped decorator makes\ + \ function \"pr_close\" untyped\r\nogr/services/base.py:132: error:\ + \ Untyped decorator makes function \"pr_merge\" untyped\r\nogr/services/base.py:133:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:133: error: Untyped decorator makes\ + \ function \"pr_merge\" untyped\r\nogr/services/base.py:141: error:\ + \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:141: error: Untyped decorator makes function\ + \ \"get_pr_labels\" untyped\r\nogr/services/base.py:149: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:149: error: Untyped decorator makes function\ + \ \"add_pr_labels\" untyped\r\nogr/services/base.py:157: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:157: error: Untyped decorator makes function\ + \ \"get_pr_info\" untyped\r\nogr/services/base.py:165: error: Call to\ + \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ + ogr/services/base.py:165: error: Untyped decorator makes function \"\ + update_pr_info\" untyped\r\nogr/services/base.py:175: error: Call to\ + \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ + ogr/services/base.py:175: error: Untyped decorator makes function \"\ + get_all_pr_commits\" untyped\r\nogr/services/base.py:183: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:183: error: Untyped decorator makes function\ + \ \"_get_all_pr_comments\" untyped\r\nogr/services/base.py:191: error:\ + \ Untyped decorator makes function \"pr_comment\" untyped\r\nogr/services/base.py:195:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:195: error: Untyped decorator makes\ + \ function \"pr_comment\" untyped\r\nogr/services/base.py:204: error:\ + \ Incompatible default for argument \"commit\" (default has type \"\ + None\", argument has type \"str\")\r\nogr/services/base.py:205: error:\ + \ Incompatible default for argument \"filename\" (default has type \"\ + None\", argument has type \"str\")\r\nogr/services/base.py:206: error:\ + \ Incompatible default for argument \"row\" (default has type \"None\"\ + , argument has type \"int\")\r\nogr/services/base.py:210: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:210: error: Untyped decorator makes function\ + \ \"get_issue_comments\" untyped\r\nogr/services/base.py:215: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/base.py:218: error: Incompatible default for argument \"\ + filter_regex\" (default has type \"None\", argument has type \"str\"\ + )\r\nogr/services/base.py:220: error: Incompatible default for argument\ + \ \"author\" (default has type \"None\", argument has type \"str\")\r\ + \nogr/services/base.py:224: error: Call to untyped function \"deprecate_and_set_removal\"\ + \ in typed context\r\nogr/services/base.py:224: error: Untyped decorator\ + \ makes function \"pr_create\" untyped\r\nogr/services/base.py:235:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:245:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:245: error: Untyped decorator makes\ + \ function \"can_close_issue\" untyped\r\nogr/services/base.py:253:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:253: error: Untyped decorator makes\ + \ function \"get_issue_info\" untyped\r\nogr/services/base.py:261: error:\ + \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:261: error: Untyped decorator makes function\ + \ \"_get_all_issue_comments\" untyped\r\nogr/services/base.py:269: error:\ + \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:269: error: Untyped decorator makes function\ + \ \"issue_comment\" untyped\r\nogr/services/base.py:277: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:277: error: Untyped decorator makes function\ + \ \"issue_close\" untyped\r\nogr/services/base.py:285: error: Call to\ + \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ + ogr/services/base.py:285: error: Untyped decorator makes function \"\ + get_issue_labels\" untyped\r\nogr/services/base.py:293: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:293: error: Untyped decorator makes function\ + \ \"add_issue_labels\" untyped\r\nogr/services/base.py:367: error: Function\ + \ is missing a return type annotation\r\nogr/services/base.py:367: error:\ + \ Argument 1 of \"get_comments\" is incompatible with supertype \"PullRequest\"\ + ; supertype defines the argument type as \"Optional[str]\"\r\nogr/services/base.py:367:\ + \ error: Argument 3 of \"get_comments\" is incompatible with supertype\ + \ \"PullRequest\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/base.py:368: error: Incompatible default for argument\ + \ \"filter_regex\" (default has type \"None\", argument has type \"\ + str\")\r\nogr/services/base.py:368: error: Incompatible default for\ + \ argument \"author\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/base.py:373: error: Function is missing a\ + \ return type annotation\r\nogr/services/base.py:397: error: Incompatible\ + \ default for argument \"filter_regex\" (default has type \"None\",\ + \ argument has type \"str\")\r\nogr/services/base.py:397: error: Incompatible\ + \ default for argument \"author\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/pagure/release.py:28: error: Name\ + \ 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:37:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:42:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/release.py:46:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:38:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:39:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:41:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/pull_request.py:45:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:45:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/pull_request.py:52:\ + \ error: Call to untyped function \"__update\" in typed context\r\n\ + ogr/services/pagure/pull_request.py:53: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:61:\ + \ error: Returning Any from function declared to return \"int\"\r\n\ + ogr/services/pagure/pull_request.py:65: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:72:\ + \ error: List item 0 has incompatible type \"Optional[str]\"; expected\ + \ \"str\"\r\nogr/services/pagure/pull_request.py:81: error: Call to\ + \ untyped function \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:82:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/pull_request.py:90: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:94:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/pull_request.py:98: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:117:\ + \ error: Returning Any from function declared to return \"bytes\"\r\n\ + ogr/services/pagure/pull_request.py:121: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:124:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:145:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/pull_request.py:145: error: Implicit generic \"\ + Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/pull_request.py:146:\ + \ error: Returning Any from function declared to return \"Dict[Any,\ + \ Any]\"\r\nogr/services/pagure/pull_request.py:152: error: Name 'ogr_pagure.PagureProject'\ + \ is not defined\r\nogr/services/pagure/pull_request.py:157: error:\ + \ Incompatible default for argument \"fork_username\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/pull_request.py:178:\ + \ error: Returning Any from function declared to return \"PullRequest\"\ + \r\nogr/services/pagure/pull_request.py:178: error: Call to untyped\ + \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:181:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:183:\ + \ error: Returning Any from function declared to return \"PullRequest\"\ + \r\nogr/services/pagure/pull_request.py:183: error: Call to untyped\ + \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:186:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/pull_request.py:187: error: Name 'ogr_pagure.PagureProject'\ + \ is not defined\r\nogr/services/pagure/pull_request.py:199: error:\ + \ Call to untyped function \"PagurePullRequest\" in typed context\r\n\ + ogr/services/pagure/pull_request.py:219: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:266:\ + \ error: Call to untyped function \"__update\" in typed context\r\n\ + ogr/services/pagure/pull_request.py:277: error: Implicit generic \"\ + Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/issue.py:34:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:36:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/issue.py:40:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/issue.py:40:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/issue.py:47:\ + \ error: Call to untyped function \"__update\" in typed context\r\n\ + ogr/services/pagure/issue.py:48: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/issue.py:56: error:\ + \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:57:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/pagure/issue.py:61: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/pagure/issue.py:65: error:\ + \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:70:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/issue.py:76: error: Call to untyped function \"\ + __update\" in typed context\r\nogr/services/pagure/issue.py:77: error:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/pagure/issue.py:85:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/issue.py:93: error: Returning Any from function\ + \ declared to return \"List[str]\"\r\nogr/services/pagure/issue.py:118:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:132:\ + \ error: Returning Any from function declared to return \"Issue\"\r\n\ + ogr/services/pagure/issue.py:132: error: Call to untyped function \"\ + PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:135:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:137:\ + \ error: Returning Any from function declared to return \"Issue\"\r\n\ + ogr/services/pagure/issue.py:137: error: Call to untyped function \"\ + PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:141:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:168:\ + \ error: Call to untyped function \"PagureIssue\" in typed context\r\ + \nogr/services/pagure/issue.py:171: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/flag.py:44: error:\ + \ Function is missing a return type annotation\r\nogr/services/pagure/flag.py:44:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/flag.py:45:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:46:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:47:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:48:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:49:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:52:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:61:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:67:\ + \ error: Incompatible default for argument \"percent\" (default has\ + \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/flag.py:69:\ + \ error: Incompatible default for argument \"uid\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/flag.py:97:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:103:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/project.py:58:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:64:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:65:\ + \ error: Incompatible default for argument \"username\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:68:\ + \ error: Argument 3 to \"__init__\" of \"GitProject\" has incompatible\ + \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/pagure/project.py:75:\ + \ error: Incompatible types in assignment (expression has type \"Optional[str]\"\ + , variable has type \"str\")\r\nogr/services/pagure/project.py:102:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/project.py:107: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/project.py:108: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/project.py:108:\ + \ error: Incompatible default for argument \"params\" (default has type\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:109:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/project.py:109: error: Incompatible\ + \ default for argument \"data\" (default has type \"None\", argument\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:110:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/project.py:122: error: Call to untyped\ + \ function \"_get_project_url\" in typed context\r\nogr/services/pagure/project.py:128:\ + \ error: Returning Any from function declared to return \"Dict[Any,\ + \ Any]\"\r\nogr/services/pagure/project.py:132: error: Function is missing\ + \ a type annotation for one or more arguments\r\nogr/services/pagure/project.py:137:\ + \ error: Incompatible default for argument \"method\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:138:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/project.py:138: error: Incompatible\ + \ default for argument \"params\" (default has type \"None\", argument\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:139:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/project.py:139: error: Incompatible\ + \ default for argument \"data\" (default has type \"None\", argument\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:152:\ + \ error: Call to untyped function \"_get_project_url\" in typed context\r\ + \nogr/services/pagure/project.py:158: error: Returning Any from function\ + \ declared to return \"RequestResponse\"\r\nogr/services/pagure/project.py:162:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/project.py:163:\ + \ error: Need type annotation for 'additional_parts' (hint: \"additional_parts:\ + \ List[] = ...\")\r\nogr/services/pagure/project.py:174: error:\ + \ Function is missing a return type annotation\r\nogr/services/pagure/project.py:179:\ + \ error: Returning Any from function declared to return \"List[str]\"\ + \r\nogr/services/pagure/project.py:182: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/project.py:182:\ + \ error: Call to untyped function \"get_project_info\" in typed context\r\ + \nogr/services/pagure/project.py:185: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:186:\ + \ error: Returning Any from function declared to return \"List[str]\"\ + \r\nogr/services/pagure/project.py:190: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:199:\ + \ error: Call to untyped function \"get_project_info\" in typed context\r\ + \nogr/services/pagure/project.py:205: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/project.py:208:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/project.py:208:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/project.py:236:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/project.py:246: error: Untyped decorator makes\ + \ function \"create_pr\" untyped\r\nogr/services/pagure/project.py:253:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:263:\ + \ error: Untyped decorator makes function \"fork_create\" untyped\r\n\ + ogr/services/pagure/project.py:295: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:301:\ + \ error: Returning Any from function declared to return \"Optional[PagureProject]\"\ + \r\nogr/services/pagure/project.py:310: error: Function is missing a\ + \ return type annotation\r\nogr/services/pagure/project.py:342: error:\ + \ Call to untyped function \"exists\" in typed context\r\nogr/services/pagure/project.py:342:\ + \ error: Item \"None\" of \"Optional[PagureProject]\" has no attribute\ + \ \"exists\"\r\nogr/services/pagure/project.py:345: error: Call to untyped\ + \ function \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:359:\ + \ error: Call to untyped function \"get_project_info\" in typed context\r\ + \nogr/services/pagure/project.py:366: error: Returning Any from function\ + \ declared to return \"Dict[str, str]\"\r\nogr/services/pagure/project.py:378:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/project.py:388:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/project.py:420: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/project.py:438:\ + \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ + \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/pagure/project.py:438: error: Argument 4 of \"commit_comment\"\ + \ is incompatible with supertype \"GitProject\"; supertype defines the\ + \ argument type as \"Optional[int]\"\r\nogr/services/pagure/project.py:439:\ + \ error: Incompatible default for argument \"filename\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:439:\ + \ error: Incompatible default for argument \"row\" (default has type\ + \ \"None\", argument has type \"int\")\r\nogr/services/pagure/project.py:443:\ + \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ + \nogr/services/pagure/project.py:451: error: Incompatible default for\ + \ argument \"percent\" (default has type \"None\", argument has type\ + \ \"int\")\r\nogr/services/pagure/project.py:452: error: Incompatible\ + \ default for argument \"uid\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/pagure/project.py:520: error: Call\ + \ to untyped function \"get_project_info\" in typed context\r\nogr/services/pagure/user.py:31:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/user.py:33:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/user.py:43:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/service.py:44: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/service.py:46:\ + \ error: Incompatible default for argument \"token\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/service.py:88:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/pagure/service.py:99: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/service.py:110:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + repo\"\r\nogr/services/pagure/service.py:111: error: Item \"None\" of\ + \ \"Optional[RepoUrl]\" has no attribute \"namespace\"\r\nogr/services/pagure/service.py:112:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + is_fork\"\r\nogr/services/pagure/service.py:113: error: Item \"None\"\ + \ of \"Optional[RepoUrl]\" has no attribute \"username\"\r\nogr/services/pagure/service.py:121:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/service.py:122: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/service.py:122: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:122:\ + \ error: Incompatible default for argument \"params\" (default has type\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:123:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/service.py:160: error: Returning\ + \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/service.py:162:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:162:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/service.py:163: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/service.py:163: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:163:\ + \ error: Incompatible default for argument \"params\" (default has type\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:176:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/service.py:204: error: Function is missing a return\ + \ type annotation\r\nogr/services/pagure/service.py:207: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:220:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/service.py:230: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/service.py:232:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:241:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:283:\ + \ error: Argument 2 to \"__handle_project_create_fail\" of \"PagureService\"\ + \ has incompatible type \"Optional[str]\"; expected \"str\"\r\nogr/services/gitlab/user.py:28:\ + \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:30:\ + \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:37:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/user.py:41:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/user.py:44: error: Returning Any from function declared\ + \ to return \"str\"\r\nogr/services/gitlab/release.py:30: error: Name\ + \ 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/release.py:32:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/gitlab/release.py:39: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/release.py:46: error: Function\ + \ is missing a return type annotation\r\nogr/services/gitlab/release.py:50:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/pull_request.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab.v4.objects'\r\nogr/services/gitlab/pull_request.py:37: error:\ + \ Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:38:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:42:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/pull_request.py:51: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/gitlab/pull_request.py:63:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/pull_request.py:67: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:76:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/pull_request.py:80: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:84:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/pull_request.py:88: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/gitlab/pull_request.py:92:\ + \ error: Returning Any from function declared to return \"List[str]\"\ + \r\nogr/services/gitlab/pull_request.py:100: error: Returning Any from\ + \ function declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:103:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:117:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:122:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/pull_request.py:169:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:170:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:190:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:196:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/issue.py:27: error: Cannot find implementation\ + \ or library stub for module named 'gitlab.v4.objects'\r\nogr/services/gitlab/issue.py:41:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/issue.py:50: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/gitlab/issue.py:54: error:\ + \ Returning Any from function declared to return \"bool\"\r\nogr/services/gitlab/issue.py:66:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/issue.py:70: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/issue.py:79: error:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/gitlab/issue.py:83:\ + \ error: Returning Any from function declared to return \"datetime\"\ + \r\nogr/services/gitlab/issue.py:86: error: Missing type parameters\ + \ for generic type \"List\"\r\nogr/services/gitlab/issue.py:87: error:\ + \ Returning Any from function declared to return \"List[Any]\"\r\nogr/services/gitlab/issue.py:94:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:107:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:115:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/flag.py:27:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/flag.py:53: error: Function is missing\ + \ a return type annotation\r\nogr/services/gitlab/flag.py:53: note:\ + \ Use \"-> None\" if function does not return a value\r\nogr/services/gitlab/flag.py:54:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"sha\"\ + \r\nogr/services/gitlab/flag.py:55: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"status\"\r\nogr/services/gitlab/flag.py:56: error:\ + \ Item \"None\" of \"Optional[Any]\" has no attribute \"name\"\r\nogr/services/gitlab/flag.py:57:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ + \r\nogr/services/gitlab/flag.py:58: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"id\"\r\nogr/services/gitlab/flag.py:59: error:\ + \ Item \"None\" of \"Optional[Any]\" has no attribute \"target_url\"\ + \r\nogr/services/gitlab/flag.py:62: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/flag.py:77: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/flag.py:108: error: Item \"\ + None\" of \"Optional[Any]\" has no attribute \"created_at\"\r\nogr/services/gitlab/project.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/project.py:27: error: Cannot find\ + \ implementation or library stub for module named 'gitlab.v4.objects'\r\ + \nogr/services/gitlab/project.py:54: error: Name 'ogr_gitlab.GitlabService'\ + \ is not defined\r\nogr/services/gitlab/project.py:56: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/gitlab/project.py:59:\ + \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/project.py:129:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/gitlab/project.py:135: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:190:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/gitlab/project.py:256: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:267:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:278:\ + \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ + \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/gitlab/project.py:278: error: Argument 4 of \"commit_comment\"\ + \ is incompatible with supertype \"GitProject\"; supertype defines the\ + \ argument type as \"Optional[int]\"\r\nogr/services/gitlab/project.py:279:\ + \ error: Incompatible default for argument \"filename\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:279:\ + \ error: Incompatible default for argument \"row\" (default has type\ + \ \"None\", argument has type \"int\")\r\nogr/services/gitlab/project.py:364:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:370:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/gitlab/project.py:373: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:378:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:449:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/gitlab/project.py:455: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:473:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:505:\ + \ error: Function is missing a type annotation\r\nogr/services/gitlab/project.py:517:\ + \ error: Call to untyped function \"_normalize_label_color\" in typed\ + \ context\r\nogr/services/gitlab/project.py:530: error: Function is\ + \ missing a type annotation\r\nogr/services/gitlab/project.py:536: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/gitlab/project.py:541: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:560:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/service.py:23: error: Cannot find implementation\ + \ or library stub for module named 'gitlab'\r\nogr/services/gitlab/service.py:37:\ + \ error: Function is missing a type annotation\r\nogr/services/gitlab/service.py:75:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/gitlab/service.py:84: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/service.py:104:\ + \ error: Argument 2 of \"project_create\" is incompatible with supertype\ + \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/gitlab/service.py:104: error: Incompatible default\ + \ for argument \"namespace\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/services/github/release.py:23: error: Cannot\ + \ find implementation or library stub for module named 'github.GitRelease'\r\ + \nogr/services/github/release.py:30: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/release.py:39: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/release.py:46: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/release.py:50:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/pull_request.py:27:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/pull_request.py:28: error: Cannot\ + \ find implementation or library stub for module named 'github.Label'\r\ + \nogr/services/github/pull_request.py:29: error: Cannot find implementation\ + \ or library stub for module named 'github.PullRequest'\r\nogr/services/github/pull_request.py:30:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.Repository'\r\nogr/services/github/pull_request.py:31: error:\ + \ Cannot find implementation or library stub for module named 'github.IssueComment'\r\ + \nogr/services/github/pull_request.py:32: error: Cannot find implementation\ + \ or library stub for module named 'github.PullRequestComment'\r\nogr/services/github/pull_request.py:45:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:46:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:50:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:58: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/github/pull_request.py:70:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:74: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/pull_request.py:82:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:86: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/pull_request.py:90:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:94: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/pull_request.py:106:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:109: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/pull_request.py:124: error:\ + \ Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:129:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/pull_request.py:166:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:172:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/issue.py:27: error: Cannot find implementation\ + \ or library stub for module named 'github.Issue'\r\nogr/services/github/issue.py:40:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:51:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/issue.py:59: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/github/issue.py:67: error:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/github/issue.py:71:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/issue.py:79: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/issue.py:83: error:\ + \ Returning Any from function declared to return \"datetime\"\r\nogr/services/github/issue.py:86:\ + \ error: Missing type parameters for generic type \"List\"\r\nogr/services/github/issue.py:94:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:106:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:112:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/flag.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/flag.py:44: error: Function is missing\ + \ a return type annotation\r\nogr/services/github/flag.py:44: note:\ + \ Use \"-> None\" if function does not return a value\r\nogr/services/github/flag.py:45:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"state\"\ + \r\nogr/services/github/flag.py:46: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"context\"\r\nogr/services/github/flag.py:47: error:\ + \ Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ + \r\nogr/services/github/flag.py:48: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"target_url\"\r\nogr/services/github/flag.py:49:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"id\"\r\ + \nogr/services/github/flag.py:52: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/flag.py:67: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/flag.py:87: error: Returning\ + \ Any from function declared to return \"datetime\"\r\nogr/services/github/flag.py:87:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"created_at\"\ + \r\nogr/services/github/flag.py:91: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/flag.py:91:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"updated_at\"\ + \r\nogr/services/github/project.py:26: error: Cannot find implementation\ + \ or library stub for module named 'github'\r\nogr/services/github/project.py:28:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.Repository'\r\nogr/services/github/project.py:29: error: Cannot\ + \ find implementation or library stub for module named 'github.CommitComment'\r\ + \nogr/services/github/project.py:30: error: Cannot find implementation\ + \ or library stub for module named 'github.GitRelease'\r\nogr/services/github/project.py:58:\ + \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/project.py:62:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/project.py:65: error: Name 'ogr_github.GithubService'\ + \ is not defined\r\nogr/services/github/project.py:82: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/project.py:91:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:133:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/github/project.py:150: error: Returning Any from function\ + \ declared to return \"bool\"\r\nogr/services/github/project.py:167:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/project.py:194: error: Function is missing a return\ + \ type annotation\r\nogr/services/github/project.py:194: note: Use \"\ + -> None\" if function does not return a value\r\nogr/services/github/project.py:213:\ + \ error: Returning Any from function declared to return \"Optional[GithubProject]\"\ + \r\nogr/services/github/project.py:248: error: Function is missing a\ + \ type annotation for one or more arguments\r\nogr/services/github/project.py:254:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/github/project.py:302: error: Returning\ + \ Any from function declared to return \"str\"\r\nogr/services/github/project.py:312:\ + \ error: Untyped decorator makes function \"create_pr\" untyped\r\n\ + ogr/services/github/project.py:319: error: Incompatible default for\ + \ argument \"fork_username\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/services/github/project.py:330: error: Untyped\ + \ decorator makes function \"commit_comment\" untyped\r\nogr/services/github/project.py:335:\ + \ error: Incompatible default for argument \"filename\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:335:\ + \ error: Incompatible default for argument \"row\" (default has type\ + \ \"None\", argument has type \"int\")\r\nogr/services/github/project.py:355:\ + \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ + \nogr/services/github/project.py:359: error: Function is missing a return\ + \ type annotation\r\nogr/services/github/project.py:402: error: Untyped\ + \ decorator makes function \"fork_create\" untyped\r\nogr/services/github/project.py:411:\ + \ error: Returning Any from function declared to return \"GithubProject\"\ + \r\nogr/services/github/project.py:415: error: Function is missing a\ + \ return type annotation\r\nogr/services/github/project.py:418: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/project.py:420: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/project.py:427:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:498:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:505:\ + \ error: Function is missing a type annotation\r\nogr/services/github/project.py:516:\ + \ error: Call to untyped function \"_normalize_label_color\" in typed\ + \ context\r\nogr/services/github/project.py:525: error: Function is\ + \ missing a type annotation\r\nogr/services/github/project.py:530: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/project.py:534: error: Returning Any from function\ + \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:537:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/project.py:541: error: Returning Any from function\ + \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:544:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/project.py:553: error: Argument \"git_tag\" to\ + \ \"_release_from_github_object\" of \"GithubProject\" has incompatible\ + \ type \"Optional[GitTag]\"; expected \"GitTag\"\r\nogr/services/github/project.py:559:\ + \ error: Argument \"git_tag\" to \"_release_from_github_object\" of\ + \ \"GithubProject\" has incompatible type \"Optional[GitTag]\"; expected\ + \ \"GitTag\"\r\nogr/services/github/project.py:567: error: Argument\ + \ \"git_tag\" to \"_release_from_github_object\" of \"GithubProject\"\ + \ has incompatible type \"Optional[GitTag]\"; expected \"GitTag\"\r\n\ + ogr/services/github/project.py:596: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/user.py:31: error:\ + \ Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:33:\ + \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:40:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/user.py:44:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/user.py:46: error: Return type \"Optional[str]\"\ + \ of \"get_email\" incompatible with return type \"str\" in supertype\ + \ \"GitUser\"\r\nogr/services/github/user.py:49: error: Returning Any\ + \ from function declared to return \"Optional[str]\"\r\nogr/services/github/user.py:58:\ + \ error: Returning Any from function declared to return \"Optional[str]\"\ + \r\nogr/services/github/user.py:61: error: Returning Any from function\ + \ declared to return \"Optional[str]\"\r\nogr/services/github/user.py:63:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/user.py:75:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/service.py:25:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/service.py:37: error: Module 'ogr.services.github.auth_providers'\ + \ has no attribute 'GithubAuthentication'\r\nogr/services/github/service.py:37:\ + \ error: Module 'ogr.services.github.auth_providers' has no attribute\ + \ 'TokenAuthentication'\r\nogr/services/github/service.py:37: error:\ + \ Module 'ogr.services.github.auth_providers' has no attribute 'GithubApp'\r\ + \nogr/services/github/service.py:37: error: Module 'ogr.services.github.auth_providers'\ + \ has no attribute 'Tokman'\r\nogr/services/github/service.py:52: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/service.py:56: error: Incompatible default for argument\ + \ \"github_app_id\" (default has type \"None\", argument has type \"\ + str\")\r\nogr/services/github/service.py:57: error: Incompatible default\ + \ for argument \"github_app_private_key\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/services/github/service.py:58: error:\ + \ Incompatible default for argument \"github_app_private_key_path\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:59:\ + \ error: Incompatible default for argument \"tokman_instance_url\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:74:\ + \ error: Call to untyped function \"__set_authentication\" in typed\ + \ context\r\nogr/services/github/service.py:82: error: Function is missing\ + \ a type annotation\r\nogr/services/github/service.py:96: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/service.py:113:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/github/service.py:121: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/github/service.py:152:\ + \ error: Argument 2 of \"project_create\" is incompatible with supertype\ + \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/github/service.py:152: error: Incompatible default\ + \ for argument \"namespace\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/__init__.py:35: error: Module 'ogr.services.github'\ + \ has no attribute 'GithubService'\r\nogr/__init__.py:36: error: Module\ + \ 'ogr.services.gitlab' has no attribute 'GitlabService'\r\nogr/__init__.py:37:\ + \ error: Module 'ogr.services.pagure' has no attribute 'PagureService'\r\ + \nFound 512 errors in 34 files (checked 43 source files)\r\n```\r\n\ +
" closed_at: null - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/209/comments - created_at: '2019-09-19T09:51:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/209/events - html_url: https://github.com/packit/ogr/issues/209 - id: 495693202 + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/251/comments + created_at: '2019-10-22T12:09:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/251/events + html_url: https://github.com/packit/ogr/issues/251 + id: 510612410 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 7057ff default: false description: Good for newcomers @@ -78926,19 +106380,26 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/209/labels{/name} + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/251/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU2OTMyMDI= - number: 209 + node_id: MDU6SXNzdWU1MTA2MTI0MTA= + number: 251 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: Add info about git workflow to contribution guide (and other suggestions) - updated_at: '2020-07-21T09:28:36Z' - url: https://api.github.com/repos/packit/ogr/issues/209 + title: Strict mypy + updated_at: '2020-09-30T15:07:16Z' + url: https://api.github.com/repos/packit/ogr/issues/251 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -78959,205 +106420,43 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Current API appears to be fully functional and sufficiently covered\ - \ by tests for GitHub and Pagure.\r\n\r\n## Services\r\n\r\n### GitHub\ - \ + GitLab\r\n\r\n- allows creating fork of forks\r\n- allows creating\ - \ PRs from one fork to another\r\n\r\n### Pagure\r\n\r\n- doesn't allow\ - \ creating fork of forks\r\n- allows creating PRs on a project (assuming\ - \ it's not a fork) or from fork to upstream\r\n\r\n## Current implementation\r\ - \n\r\n```python\r\ndef create_pr(\r\n self,\r\n title: str,\r\n body:\ - \ str,\r\n target_branch: str,\r\n source_branch: str,\r\n fork_username:\ - \ str = None,\r\n) -> \"PullRequest\":\r\n```\r\n\r\n## Example objects\ - \ used later\r\n\r\n```python\r\nupstream_project = service.get_project(namespace=\"\ - packit-service\", repo=\"ogr\")\r\nmy_fork = service.get_project(namespace=\"\ - mfocko\", repo=\"ogr\")\r\nfork_of_different_user = service.get_project(namespace=\"\ - lachmanfrantisek\", repo=\"ogr\")\r\n```" - closed_at: null - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/412/comments - created_at: '2020-05-19T20:57:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/412/events - html_url: https://github.com/packit/ogr/issues/412 - id: 621279784 - labels: - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/412/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MjEyNzk3ODQ= - number: 412 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Revisiting API for creating PRs - updated_at: '2020-07-21T09:28:30Z' - url: https://api.github.com/repos/packit/ogr/issues/412 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Follow-up of #344 (PR: #374)\r\n\r\nAPI docs (https://docs.gitlab.com/ee/api/commits.html#post-the-build-status-to-a-commit):\r\ - \n> Adds or updates a build status of a commit.\r\n\r\nGitlab API suggests\ - \ that setting commit flag can update existing one, which could mean\ - \ this issue is blocked by API.\r\n\r\nUpdating could also mean:\r\n\ - 1. adding new commit flag that replaces old one\r\n2. adding new commit\ - \ flag, but keeping the old one\r\n\r\nExample output from docs doesn't\ - \ contain commit flag with same name." - closed_at: null - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/413/comments - created_at: '2020-05-20T21:27:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/413/events - html_url: https://github.com/packit/ogr/issues/413 - id: 622095374 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/413/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MjIwOTUzNzQ= - number: 413 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: edited on Gitlab's commit flag - updated_at: '2020-07-21T09:27:54Z' - url: https://api.github.com/repos/packit/ogr/issues/413 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos - site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions - type: User - url: https://api.github.com/users/nasirhm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos - site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions - type: User - url: https://api.github.com/users/nasirhm - author_association: CONTRIBUTOR - body: "Is it possible to assign Issues to particular user-names using\ - \ the issue object by any chance?\r\n\r\n#### Github\r\n- github-api:\ - \ https://developer.github.com/v3/issues/assignees/#add-assignees-to-an-issue\r\ - \n- pygithub: https://pygithub.readthedocs.io/en/latest/github_objects/Issue.html\r\ - \n\r\n#### Gitlab\r\n- gitlab-api: https://docs.gitlab.com/ee/api/issues.html#edit-issue\r\ - \n- python-gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ - \n- example of the code: https://gitlab.fi.muni.cz/xlachma1/figitool/blob/master/figitool/figitool.py#L576\r\ - \n```python\r\n user_id = gitlab_instance.users.list(username=login)[0].id\r\ - \n gitlab_mr.assignee_id = user_id\r\n gitlab_mr.save()\r\ - \n```\r\n\r\n#### Pagure:\r\n- https://src.fedoraproject.org/api/0/#issues\r\ - \n - -> Create a new issue\r\n - -> Assign an issue\r\n\r\n### TODO:\r\ - \n\r\n- [ ] add `assignee` argument to methods for creating the issue\r\ - \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ - \ tests for it\r\n- [ ] add the get/set property for the Issue classes\r\ - \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ - \ tests for it\r\n\r\n\r\nupdated by @lachmanfrantisek " + author_association: COLLABORATOR + body: "*Updated by @lachmanfrantisek :*\r\n\r\nWe have a lot of methods\ + \ related to the permissions (e.g. who can merge/close,..)\r\n\r\nIt's\ + \ not consistent, let's clean that!\r\n\r\nFeel free to solve this in\ + \ smaller parts. Just write on what you are going to work...\r\n\r\n\ + AC:\r\n- [ ] Make sure, that we have all of the provided methods in\ + \ the `abstract.py`\r\n (raising the `NotImplementedError`)\r\n- [\ + \ ] Make sure, that we have all of these in all the implementations:\r\ + \n - [ ] GitLab\r\n - [ ] GitHub\r\n - [ ] Pagure\r\n- [ ] Deprecate\ + \ the project methods related to specific issue/pull-request.\r\n- [\ + \ ] Move helping methods to the base classes.\r\n - The only exception\ + \ is a more efficient solution in the code of the specific implementation.\r\ + \n - Example:\r\nhttps://github.com/packit-service/ogr/blob/89435655150b8dd79ef93209c3463585d0715e0d/ogr/services/github/project.py#L219-L220\r\ + \n\r\nThe progress is tracked in the following tables. (Any update in\ + \ the comments is appreciated.)\r\n\r\n| Project | `who_can_close_issue()\ + \ -> Set[str]` | `who_can_merge_pr() -> Set[str]` | `can_close_issue(username:\ + \ str) -> bool` | `can_merge_pr(username: str) -> bool` |\r\n| --- |\ + \ --- | --- | --- | --- |\r\n| abstract | :+1: | :+1: | :exclamation:\ + \ deprecate the `Issue` argument | \r\n| base | nothing | nothing |\ + \ implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\n\ + | GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |\r\n\r\n| Issue\ + \ | `who_can_close() -> Set[str]` | `can_close(username: str) -> bool`\ + \ |\r\n| --- | --- | --- |\r\n| abstract | ? | ? |\r\n| base | nothing\ + \ | implement here |\r\n| Github | ? | ? |\r\n| GitLab | ? | ? |\r\n\ + | Pagure | ? | ? |\r\n\r\n| PullRequest | `who_can_close() -> Set[str]`\ + \ | `who_can_merge() -> Set[str]` | `can_close(username: str) -> bool`\ + \ | `can_merge(username: str) -> bool` |\r\n| --- | --- | --- | ---\ + \ | --- |\r\n| abstract | ? | ? | ? | ? | \r\n| base | nothing | nothing\ + \ | implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\ + \n| GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |" closed_at: null - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/329/comments - created_at: '2020-02-17T15:16:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/329/events - html_url: https://github.com/packit/ogr/issues/329 - id: 566364748 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/100/comments + created_at: '2019-07-05T07:09:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/100/events + html_url: https://github.com/packit/ogr/issues/100 + id: 464495604 labels: - color: '000000' default: false @@ -79173,6 +106472,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -79194,6 +106500,20 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: bf6b0b + default: false + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor - color: 42e529 default: false description: This issue was already processed and well defined. @@ -79201,286 +106521,58 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/329/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1NjYzNjQ3NDg= - number: 329 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Assigning Issues to based on usernames. - updated_at: '2020-07-17T06:32:56Z' - url: https://api.github.com/repos/packit/ogr/issues/329 - user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 - events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} - followers_url: https://api.github.com/users/saisankargochhayat/followers - following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} - gists_url: https://api.github.com/users/saisankargochhayat/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/saisankargochhayat - id: 9396452 - login: saisankargochhayat - node_id: MDQ6VXNlcjkzOTY0NTI= - organizations_url: https://api.github.com/users/saisankargochhayat/orgs - received_events_url: https://api.github.com/users/saisankargochhayat/received_events - repos_url: https://api.github.com/users/saisankargochhayat/repos - site_admin: false - starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions - type: User - url: https://api.github.com/users/saisankargochhayat - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "This reverts commit 74d84893f16f5020e60d2a1ba35e13d768b514f0.\r\ - \n\r\nIn Centos 8 Python 3.6 is the default python3. Having Python 3.6\ - \ support\r\nwill make life easier there.\r\n\r\nSigned-off-by: Hunor\ - \ Csomort\xE1ni " - closed_at: '2020-07-16T15:27:34Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/438/comments - created_at: '2020-07-16T14:39:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/438/events - html_url: https://github.com/packit/ogr/pull/438 - id: 658262033 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/438/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDUwMjQ5NTU2 - number: 438 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/438.diff - html_url: https://github.com/packit/ogr/pull/438 - patch_url: https://github.com/packit/ogr/pull/438.patch - url: https://api.github.com/repos/packit/ogr/pulls/438 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Revert "Drop python 3.6" - updated_at: '2020-07-16T15:27:34Z' - url: https://api.github.com/repos/packit/ogr/issues/438 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Related: https://github.com/packit-service/ogr/pull/436' - closed_at: null - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/437/comments - created_at: '2020-07-16T12:54:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/437/events - html_url: https://github.com/packit/ogr/issues/437 - id: 658172107 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/437/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/100/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NTgxNzIxMDc= - number: 437 + node_id: MDU6SXNzdWU0NjQ0OTU2MDQ= + number: 100 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: Support adding group permission for Gitlab and Github projects - updated_at: '2020-07-16T13:21:03Z' - url: https://api.github.com/repos/packit/ogr/issues/437 + title: user's permissions on Issues/PRs + updated_at: '2020-09-30T15:00:39Z' + url: https://api.github.com/repos/packit/ogr/issues/100 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/dhodovsk + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Closes #414' - closed_at: '2020-06-25T10:41:12Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/419/comments - created_at: '2020-05-26T10:39:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/419/events - html_url: https://github.com/packit/ogr/pull/419 - id: 624783863 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/419/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDIzMTI1MDgx - number: 419 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/419.diff - html_url: https://github.com/packit/ogr/pull/419 - patch_url: https://github.com/packit/ogr/pull/419.patch - url: https://api.github.com/repos/packit/ogr/pulls/419 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Pull requests on Gitlab - updated_at: '2020-07-14T21:08:48Z' - url: https://api.github.com/repos/packit/ogr/issues/419 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos - site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions - type: User - url: https://api.github.com/users/dinolinjob - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos - site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions - type: User - url: https://api.github.com/users/dinolinjob - author_association: MEMBER - body: "Multiple times in the code (mostly in the `parsing.py`), we need\ - \ to parse the hostname of the instance.\r\n\r\n```python\r\nservice_repo_url\ - \ = parse_git_repo(repo_url.get_instance_url())\r\nservice_repo_url.hostname\r\ - \n```\r\n\r\nIt would be useful to have a `hostame` property in service\ - \ classes`.\r\n\r\nTODO:\r\n- [ ] add the (read-only) property to the\ - \ `abstract.py`\r\n- [ ] implement the common behaviour in the `base.py`\ - \ (see the example above)\r\n - services with multiple instances possible\r\ - \n- [ ] hardcode the value for static instances (GitHub)\r\n- [ ] use\ - \ that property in places, where we are getting hostname of the instance\r\ - \n- [ ] create some unit tests for that" + body: "It is sometimes hard to get the right problem when a user receives\ + \ a long traceback with some GitHub/GitLab exception at the end. Those\ + \ exceptions are not always clear or too general (`e.g. Object not found`).\r\ + \n\r\nWe can probably do better and raise our exceptions that will have\ + \ much clearer message since we usually know the context (e.g. `PR with\ + \ id={id} not found.`).\r\n\r\nAC:\r\n\r\n- [ ] Go through the code\ + \ and cover some parts of code in the try blocks and raise our exception\ + \ with good message:\r\n\r\n```python\r\n try:\r\n problematic_code()\r\ + \n except TheExternalException as ex:\r\n raise SomeOgrException(\"\ + Good reason\", ex)\r\n```\r\n- [ ] update/extend the tests\r\n" closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/338/comments - created_at: '2020-02-21T08:57:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/338/events - html_url: https://github.com/packit/ogr/issues/338 - id: 568821401 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/199/comments + created_at: '2019-09-13T08:04:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/199/events + html_url: https://github.com/packit/ogr/issues/199 + id: 493190190 labels: - - color: fbca04 - default: false - description: Reserved for the participants/applicants of the Google - Summer of Code. - id: 1867054141 - name: GSOC - node_id: MDU6TGFiZWwxODY3MDU0MTQx - url: https://api.github.com/repos/packit/ogr/labels/GSOC - color: '000000' default: false description: Related to GitHub implementation. @@ -79495,6 +106587,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -79509,33 +106608,33 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 + - color: bf6b0b default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: 8be567 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/338/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/199/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1Njg4MjE0MDE= - number: 338 + node_id: MDU6SXNzdWU0OTMxOTAxOTA= + number: 199 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: hostname property in the service classes - updated_at: '2020-07-14T06:47:13Z' - url: https://api.github.com/repos/packit/ogr/issues/338 + title: Do not let the external exception go to the user + updated_at: '2020-09-30T14:57:41Z' + url: https://api.github.com/repos/packit/ogr/issues/199 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -79557,16 +106656,14 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- Remove unused util functions. - - - Refactor using [sourcery](https://sourcery.ai/).' - closed_at: '2020-07-10T12:43:50Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/435/comments - created_at: '2020-07-10T11:46:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/435/events - html_url: https://github.com/packit/ogr/pull/435 - id: 654723717 + body: "Closes #209 \r\n\r\nmerge after packit/contributing#1" + closed_at: '2020-09-24T20:15:17Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/471/comments + created_at: '2020-09-21T21:09:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/471/events + html_url: https://github.com/packit/ogr/pull/471 + id: 705918401 labels: - color: 0e8a16 default: false @@ -79575,24 +106672,90 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/435/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/471/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQ3Mzk0MDIz - number: 435 + node_id: MDExOlB1bGxSZXF1ZXN0NDkwNTYxMzU3 + number: 471 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/435.diff - html_url: https://github.com/packit/ogr/pull/435 - patch_url: https://github.com/packit/ogr/pull/435.patch - url: https://api.github.com/repos/packit/ogr/pulls/435 + diff_url: https://github.com/packit/ogr/pull/471.diff + html_url: https://github.com/packit/ogr/pull/471 + patch_url: https://github.com/packit/ogr/pull/471.patch + url: https://api.github.com/repos/packit/ogr/pulls/471 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Sourcery refactor - updated_at: '2020-07-10T12:46:54Z' - url: https://api.github.com/repos/packit/ogr/issues/435 + title: Extend contribution guide + updated_at: '2020-09-24T20:21:33Z' + url: https://api.github.com/repos/packit/ogr/issues/471 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "It would be nice to add the following parts to CONTRIBUTING.md\r\ + \n\r\n- What is `git rebase` and how to rebase a pull-request.\r\n \ + \ - We want to have a git tree like this: \r\n![Sn\xEDmek z 2019-09-19\ + \ 11-43-15](https://user-images.githubusercontent.com/20214043/65233459-2712aa00-dad3-11e9-8849-6bb5babf75fe.png)\r\ + \n - not this: \r\n![Sn\xEDmek z 2019-09-19 11-43-51](https://user-images.githubusercontent.com/20214043/65233488-309c1200-dad3-11e9-93a9-b2b15e8a0f39.png)\r\ + \n\r\n- links to documentation we are using when implementing the code\ + \ for github, gitlab, pagure\r\n - https://src.fedoraproject.org/api/0/\r\ + \n - https://pagure.io/api/0/\r\n - https://pygithub.readthedocs.io/\r\ + \n - https://python-gitlab.readthedocs.io/\r\n - ...\r\n \r\n\ + - How to write a good git commit messages:\r\n - https://chris.beams.io/posts/git-commit/" + closed_at: '2020-09-24T20:15:17Z' + comments: 13 + comments_url: https://api.github.com/repos/packit/ogr/issues/209/comments + created_at: '2019-09-19T09:51:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/209/events + html_url: https://github.com/packit/ogr/issues/209 + id: 495693202 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/209/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTU2OTMyMDI= + number: 209 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add info about git workflow to contribution guide (and other suggestions) + updated_at: '2020-09-24T20:15:17Z' + url: https://api.github.com/repos/packit/ogr/issues/209 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -79613,96 +106776,138 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `Failed to init kerberos ticket:` | - - | `f32` | `Failed to init kerberos ticket:` | - - | `master` | `Failed to init kerberos ticket:` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-07-10T05:57:19Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/434/comments - created_at: '2020-07-09T11:03:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/434/events - html_url: https://github.com/packit/ogr/issues/434 - id: 653971970 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/434/labels{/name} + author_association: CONTRIBUTOR + body: there is just one issue, and it is that __init__.py has to be clear, + because now it causes confusion, and try sto store keys with various + depth -> raise error. + closed_at: '2020-09-24T19:43:18Z' + comments: 29 + comments_url: https://api.github.com/repos/packit/ogr/issues/452/comments + created_at: '2020-08-13T13:44:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/452/events + html_url: https://github.com/packit/ogr/pull/452 + id: 678448961 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/452/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NTM5NzE5NzA= - number: 434 + node_id: MDExOlB1bGxSZXF1ZXN0NDY3Mzk1MTgz + number: 452 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/452.diff + html_url: https://github.com/packit/ogr/pull/452 + patch_url: https://github.com/packit/ogr/pull/452.patch + url: https://api.github.com/repos/packit/ogr/pulls/452 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.12.2' - updated_at: '2020-07-10T09:36:14Z' - url: https://api.github.com/repos/packit/ogr/issues/434 + title: this is first draft how new tests could look like + updated_at: '2020-09-24T19:43:18Z' + url: https://api.github.com/repos/packit/ogr/issues/452 user: - avatar_url: https://avatars0.githubusercontent.com/in/29180?v=4 - events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service-stg - id: 49729116 - login: packit-as-a-service-stg[bot] - node_id: MDM6Qm90NDk3MjkxMTY= - organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Job metadata key 'dist_git_branch'\ - \ has been renamed to 'dist_git_branches'\n* Replace Python version\ - \ glob with macro\n* Fix get_file_content was returning byte format\n\ - * Build in copr for master commits and releases\n* Add usage to creating\ - \ PRs on GitLab\n* Fix GitLab pull requests\n* Add tests for creating\ - \ PRs on GitLab\n* [Zuul] Don't redefine base job\n* [Zuul] Use common\ - \ pre-commit job\n* Drop python 3.6\n* Update & run pre-commit\n* Improve\ - \ the message when marking issues as stale\n* Fix remarks from compatibility.md\ - \ review\n* Add compatibility table\n\n\nYou can change it by editing\ - \ `CHANGELOG.md` in the root of this repository and pushing to `0.12.2-release`\ - \ branch before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-07-09T10:57:56Z' + body: "Split tests into files like the implementations are.\r\n\r\nAs\ + \ @lachmanfrantisek suggested, it would be great to have both old tests\ + \ (checking that deprecated interfaces are still usable) and new ones,\ + \ but this would lead to keeping duplicates of test_data, since they\ + \ would check the same things, but each would need separate yaml for\ + \ responses.\r\n\r\nSo I suggest transition from old to new tests right\ + \ after 0.13.0 (or before 1.0.0, in case it will be released sooner)" + closed_at: '2020-09-24T19:43:18Z' comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/433/comments - created_at: '2020-07-09T07:36:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/433/events - html_url: https://github.com/packit/ogr/pull/433 - id: 653835899 + comments_url: https://api.github.com/repos/packit/ogr/issues/295/comments + created_at: '2019-12-05T10:40:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/295/events + html_url: https://github.com/packit/ogr/issues/295 + id: 533267519 labels: - - color: ededed + - color: c2ef58 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/295/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MzMyNjc1MTk= + number: 295 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Restructure tests + updated_at: '2020-09-24T19:43:18Z' + url: https://api.github.com/repos/packit/ogr/issues/295 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "[![black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\r\ + \n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)\r\ + \n\r\n- Add pre-commit and black badge.\r\n- README: https://github.com/packit/ogr/blob/8c3d9a3ddf2c69e211b5bbb44c3df08b70804a84/README.md" + closed_at: '2020-09-23T07:04:47Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/469/comments + created_at: '2020-09-18T12:18:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/469/events + html_url: https://github.com/packit/ogr/pull/469 + id: 704334311 + labels: - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -79710,117 +106915,116 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed + - color: 7cf4be default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/433/labels{/name} + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/469/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQ2Njc2Mjcz - number: 433 + node_id: MDExOlB1bGxSZXF1ZXN0NDg5Mjc5NjYw + number: 469 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/433.diff - html_url: https://github.com/packit/ogr/pull/433 - patch_url: https://github.com/packit/ogr/pull/433.patch - url: https://api.github.com/repos/packit/ogr/pulls/433 + diff_url: https://github.com/packit/ogr/pull/469.diff + html_url: https://github.com/packit/ogr/pull/469 + patch_url: https://github.com/packit/ogr/pull/469.patch + url: https://api.github.com/repos/packit/ogr/pulls/469 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.12.2 release - updated_at: '2020-07-09T11:01:07Z' - url: https://api.github.com/repos/packit/ogr/issues/433 + title: pre-commit and black badge + updated_at: '2020-09-23T07:13:06Z' + url: https://api.github.com/repos/packit/ogr/issues/469 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER body: '' - closed_at: '2020-07-09T07:36:32Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/432/comments - created_at: '2020-07-09T07:36:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/432/events - html_url: https://github.com/packit/ogr/issues/432 - id: 653835751 + closed_at: '2020-09-22T15:17:15Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/467/comments + created_at: '2020-09-17T09:45:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/467/events + html_url: https://github.com/packit/ogr/pull/467 + id: 703433869 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/432/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/467/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NTM4MzU3NTE= - number: 432 + node_id: MDExOlB1bGxSZXF1ZXN0NDg4NTQyNjcz + number: 467 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/467.diff + html_url: https://github.com/packit/ogr/pull/467 + patch_url: https://github.com/packit/ogr/pull/467.patch + url: https://api.github.com/repos/packit/ogr/pulls/467 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New patch release - updated_at: '2020-07-09T07:36:32Z' - url: https://api.github.com/repos/packit/ogr/issues/432 + title: Refactor `parse_git_repo` + updated_at: '2020-09-22T15:18:08Z' + url: https://api.github.com/repos/packit/ogr/issues/467 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: in https://github.com/packit-service/packit/pull/797 - closed_at: '2020-07-07T06:51:21Z' + body: "- Use parenthesis for `lru_cache` decorator for backwards compatibility.\r\ + \n- Fixes problem found in packit PR: https://github.com/packit/packit-service/pull/820" + closed_at: '2020-09-21T09:19:28Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/431/comments - created_at: '2020-07-03T14:49:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/431/events - html_url: https://github.com/packit/ogr/pull/431 - id: 650642351 + comments_url: https://api.github.com/repos/packit/ogr/issues/470/comments + created_at: '2020-09-21T08:01:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/470/events + html_url: https://github.com/packit/ogr/pull/470 + id: 705378424 labels: - color: 0e8a16 default: false @@ -79829,131 +107033,173 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/431/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/470/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQ0MDk0ODQx - number: 431 + node_id: MDExOlB1bGxSZXF1ZXN0NDkwMTE3MDk0 + number: 470 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/431.diff - html_url: https://github.com/packit/ogr/pull/431 - patch_url: https://github.com/packit/ogr/pull/431.patch - url: https://api.github.com/repos/packit/ogr/pulls/431 + diff_url: https://github.com/packit/ogr/pull/470.diff + html_url: https://github.com/packit/ogr/pull/470 + patch_url: https://github.com/packit/ogr/pull/470.patch + url: https://api.github.com/repos/packit/ogr/pulls/470 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Job metadata key 'dist_git_branch' was renamed to 'dist_git_branches' - updated_at: '2020-07-07T07:13:31Z' - url: https://api.github.com/repos/packit/ogr/issues/431 + title: Fix lru_cache decorator + updated_at: '2020-09-21T10:18:40Z' + url: https://api.github.com/repos/packit/ogr/issues/470 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: Implement get_files() method in Pagure. - closed_at: null - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/310/comments - created_at: '2020-01-21T12:50:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/310/events - html_url: https://github.com/packit/ogr/issues/310 - id: 552856957 + body: '- Add hostname property to service class. + + - Fix inheritance of `GitlabService` from `BaseGitService`. + + - Fixes: #338' + closed_at: '2020-09-18T14:55:56Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/468/comments + created_at: '2020-09-18T08:42:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/468/events + html_url: https://github.com/packit/ogr/pull/468 + id: 704201238 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: bc4812 - default: false - description: We are blocked! - id: 1432779229 - name: blocker - node_id: MDU6TGFiZWwxNDMyNzc5MjI5 - url: https://api.github.com/repos/packit/ogr/labels/blocker - - color: a2eeef + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 7cf4be default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/310/labels{/name} + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/468/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTI4NTY5NTc= - number: 310 + node_id: MDExOlB1bGxSZXF1ZXN0NDg5MTY4MTQy + number: 468 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/468.diff + html_url: https://github.com/packit/ogr/pull/468 + patch_url: https://github.com/packit/ogr/pull/468.patch + url: https://api.github.com/repos/packit/ogr/pulls/468 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Support get_files() in Pagure - updated_at: '2020-07-07T06:21:10Z' - url: https://api.github.com/repos/packit/ogr/issues/310 + state: closed + title: Implement hostname property + updated_at: '2020-09-21T07:10:59Z' + url: https://api.github.com/repos/packit/ogr/issues/468 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 author_association: MEMBER - body: "When working with PRs, there are also URLs linking directly to\ - \ commit list tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the\ - \ `url_commits` and implement it.\r\n - Use API if possible, otherwise\ - \ \"guess\" the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\n\ - Examples:\r\n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/commits\r\ - \n- https://github.com/packit-service/ogr/pull/1/commits\r\n- https://pagure.io/ogr-tests/pull-request/7#commit_list\r\ - \n" - closed_at: null + body: "Multiple times in the code (mostly in the `parsing.py`), we need\ + \ to parse the hostname of the instance.\r\n\r\n```python\r\nservice_repo_url\ + \ = parse_git_repo(repo_url.get_instance_url())\r\nservice_repo_url.hostname\r\ + \n```\r\n\r\nIt would be useful to have a `hostame` property in service\ + \ classes`.\r\n\r\nTODO:\r\n- [ ] add the (read-only) property to the\ + \ `abstract.py`\r\n- [ ] implement the common behaviour in the `base.py`\ + \ (see the example above)\r\n - services with multiple instances possible\r\ + \n- [ ] hardcode the value for static instances (GitHub)\r\n- [ ] use\ + \ that property in places, where we are getting hostname of the instance\r\ + \n- [ ] create some unit tests for that" + closed_at: '2020-09-18T14:55:56Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/212/comments - created_at: '2019-09-19T18:48:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/212/events - html_url: https://github.com/packit/ogr/issues/212 - id: 495968279 + comments_url: https://api.github.com/repos/packit/ogr/issues/338/comments + created_at: '2020-02-21T08:57:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/338/events + html_url: https://github.com/packit/ogr/issues/338 + id: 568821401 labels: + - color: fbca04 + default: false + description: Reserved for the participants/applicants of the Google + Summer of Code. + id: 1867054141 + name: GSOC + node_id: MDU6TGFiZWwxODY3MDU0MTQx + url: https://api.github.com/repos/packit/ogr/labels/GSOC - color: '000000' default: false description: Related to GitHub implementation. @@ -79975,13 +107221,6 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -79989,26 +107228,33 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 + - color: c2ef58 default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/212/labels{/name} + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/338/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU5NjgyNzk= - number: 212 + node_id: MDU6SXNzdWU1Njg4MjE0MDE= + number: 338 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Add commits url to PullRequest class - updated_at: '2020-07-03T14:18:58Z' - url: https://api.github.com/repos/packit/ogr/issues/212 + state: closed + title: hostname property in the service classes + updated_at: '2020-09-18T14:55:56Z' + url: https://api.github.com/repos/packit/ogr/issues/338 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -80029,87 +107275,93 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "This is needed for Python 3.10+.\r\n\r\nSee devel-list message\ - \ for details:\r\n\r\nhttps://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/PQIGCQCRNBYNXBX2ICWEM3PLDLNOG2ZT/\r\ - \n\r\nSigned-off-by: Hunor Csomort\xE1ni " - closed_at: '2020-06-30T07:33:05Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/430/comments - created_at: '2020-06-30T07:12:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/430/events - html_url: https://github.com/packit/ogr/pull/430 - id: 647926952 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/430/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-16T15:47:15Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/466/comments + created_at: '2020-09-16T15:33:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/466/events + html_url: https://github.com/packit/ogr/issues/466 + id: 702867074 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/466/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQxODMwMDgy - number: 430 + node_id: MDU6SXNzdWU3MDI4NjcwNzQ= + number: 466 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/430.diff - html_url: https://github.com/packit/ogr/pull/430 - patch_url: https://github.com/packit/ogr/pull/430.patch - url: https://api.github.com/repos/packit/ogr/pulls/430 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Replace Python version glob with macro - updated_at: '2020-06-30T07:33:06Z' - url: https://api.github.com/repos/packit/ogr/issues/430 + title: '[packit] Propose update failed for release 0.15.0' + updated_at: '2020-09-16T15:47:15Z' + url: https://api.github.com/repos/packit/ogr/issues/466 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "The object [gitlab.v4.objects.ProjectFile](https://python-gitlab.readthedocs.io/en/stable/api/gitlab.v4.html#gitlab.v4.objects.ProjectFile)\ - \ with the function [decode()](https://python-gitlab.readthedocs.io/en/stable/api/gitlab.v4.html#gitlab.v4.objects.ProjectFile.decode)\ - \ will return bytes -\r\n\r\n`b'---\\nspecfile_path: hello.spec\\nsynced_files:\\\ - n - hello.spec\\n# actions:\\n# post-upstream-clone: \"python3 setup.py\ - \ sdist --dist-dir .\"\\n# current_version_command: [\"python3\", \"\ - setup.py\", \"--version\"]\\n# create_tarball_command: [\"python3\"\ - , \"setup.py\", \"sdist\", \"--dist-dir\", \".\"]\\njobs:\\n- job: copr_build\\\ - n trigger: pull_request\\n metadata:\\n targets:\\n - fedora-30-x86_64'`\r\ - \n\r\nExpected string - \r\n\r\n```\r\n---\r\nspecfile_path: hello.spec\r\ - \nsynced_files:\r\n - hello.spec\r\n# actions:\r\n# post-upstream-clone:\ - \ \"python3 setup.py sdist --dist-dir .\"\r\n# current_version_command:\ - \ [\"python3\", \"setup.py\", \"--version\"]\r\n# create_tarball_command:\ - \ [\"python3\", \"setup.py\", \"sdist\", \"--dist-dir\", \".\"]\r\n\ - jobs:\r\n- job: copr_build\r\n trigger: pull_request\r\n metadata:\r\ - \n targets:\r\n - fedora-30-x86_64\r\n```\r\n" - closed_at: '2020-06-29T12:03:35Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/429/comments - created_at: '2020-06-28T21:32:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/429/events - html_url: https://github.com/packit/ogr/pull/429 - id: 647009475 + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Support multi-part namespaces\ + \ in parsing\n* Validate commit flag state before setting\n* Add type\ + \ ignore to GitHub App auth\n* Update pre-commit configuration and fix\ + \ mypy remarks\n\n\nYou can change it by editing `CHANGELOG.md` in the\ + \ root of this repository and pushing to `0.15.0-release` branch before\ + \ merging this PR.\nI didn't find any files where `__version__` is\ + \ set." + closed_at: '2020-09-16T15:05:17Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/465/comments + created_at: '2020-09-16T13:15:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/465/events + html_url: https://github.com/packit/ogr/pull/465 + id: 702756388 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -80117,191 +107369,187 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/429/labels{/name} + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/465/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQxMTE3MTUw - number: 429 + node_id: MDExOlB1bGxSZXF1ZXN0NDg3OTgxNzk4 + number: 465 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/429.diff - html_url: https://github.com/packit/ogr/pull/429 - patch_url: https://github.com/packit/ogr/pull/429.patch - url: https://api.github.com/repos/packit/ogr/pulls/429 + diff_url: https://github.com/packit/ogr/pull/465.diff + html_url: https://github.com/packit/ogr/pull/465 + patch_url: https://github.com/packit/ogr/pull/465.patch + url: https://api.github.com/repos/packit/ogr/pulls/465 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix get_file_content() returning bytes - updated_at: '2020-06-29T12:03:35Z' - url: https://api.github.com/repos/packit/ogr/issues/429 + title: 0.15.0 release + updated_at: '2020-09-16T15:08:48Z' + url: https://api.github.com/repos/packit/ogr/issues/465 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Would be nice to be able to manipulate labels on pagure issues.\ - \ i.e. `get_issue_labels()` `add_issue_labels()`, etc.. \r\n\r\n\r\n\ - *update by @lachmanfrantisek:*\r\n\r\nTODO: \r\n- [x] `labels` property\ - \ for `PagureIssue` class (https://github.com/packit-service/ogr/pull/321\ - \ by @cverna )\r\n- [x] `labels` argument for `PagureIssue.create` and\ - \ `PagureProject.create_issue` (https://github.com/packit-service/ogr/pull/321\ - \ by @cverna)\r\n- [ ] `labels` property for `PagurePullRequest` class\r\ - \n- [ ] `labels` argument for `PagurePullRequest.create` and `PagureProject.create_pr`\r\ - \n- [ ] `add_label` methods blocked by the PagureAPI (https://pagure.io/pagure/issue/2175)\r\ - \n- [ ] add tests for all of those\r\n\r\n" - closed_at: null - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/147/comments - created_at: '2019-08-09T22:23:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/147/events - html_url: https://github.com/packit/ogr/issues/147 - id: 479187441 + body: '' + closed_at: '2020-09-16T13:15:51Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/457/comments + created_at: '2020-09-01T13:57:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/457/events + html_url: https://github.com/packit/ogr/issues/457 + id: 690166541 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: bf6b0b + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - labels_url: https://api.github.com/repos/packit/ogr/issues/147/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/457/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzkxODc0NDE= - number: 147 + node_id: MDU6SXNzdWU2OTAxNjY1NDE= + number: 457 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: create label* functions for pagure backend - updated_at: '2020-06-29T06:46:49Z' - url: https://api.github.com/repos/packit/ogr/issues/147 + state: closed + title: New minor release + updated_at: '2020-09-16T13:15:51Z' + url: https://api.github.com/repos/packit/ogr/issues/457 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 - events_url: https://api.github.com/users/dustymabe/events{/privacy} - followers_url: https://api.github.com/users/dustymabe/followers - following_url: https://api.github.com/users/dustymabe/following{/other_user} - gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dustymabe - id: 4530030 - login: dustymabe - node_id: MDQ6VXNlcjQ1MzAwMzA= - organizations_url: https://api.github.com/users/dustymabe/orgs - received_events_url: https://api.github.com/users/dustymabe/received_events - repos_url: https://api.github.com/users/dustymabe/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/dustymabe - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=3: - - metadata: - latency: 0.6750459671020508 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Build in Copr for master commits and releases.\r\n- We are using\ - \ same copr projects as we do for packit.\r\n- Relates to https://github.com/packit-service/ogr/pull/428." - closed_at: '2020-06-26T12:08:08Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/428/comments - created_at: '2020-06-26T08:42:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/428/events - html_url: https://github.com/packit/ogr/pull/428 - id: 646108018 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-16T09:45:50Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/456/comments + created_at: '2020-08-20T08:09:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/456/events + html_url: https://github.com/packit/ogr/issues/456 + id: 682514734 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/456/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2ODI1MTQ3MzQ= + number: 456 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.13.1' + updated_at: '2020-09-16T09:45:50Z' + url: https://api.github.com/repos/packit/ogr/issues/456 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Support multi-part namespaces in parsing.' + closed_at: '2020-09-14T12:00:53Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/463/comments + created_at: '2020-09-14T10:25:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/463/events + html_url: https://github.com/packit/ogr/pull/463 + id: 700972195 labels: - color: 0e8a16 default: false @@ -80310,31 +107558,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 7cf4be - default: false - description: Weekend is coming! - id: 2162576221 - name: "\U0001F31E Friday \U0001F91F" - node_id: MDU6TGFiZWwyMTYyNTc2MjIx - url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F - labels_url: https://api.github.com/repos/packit/ogr/issues/428/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/463/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQwNDU5MTk2 - number: 428 + node_id: MDExOlB1bGxSZXF1ZXN0NDg2NTA2NTQw + number: 463 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/428.diff - html_url: https://github.com/packit/ogr/pull/428 - patch_url: https://github.com/packit/ogr/pull/428.patch - url: https://api.github.com/repos/packit/ogr/pulls/428 + diff_url: https://github.com/packit/ogr/pull/463.diff + html_url: https://github.com/packit/ogr/pull/463 + patch_url: https://github.com/packit/ogr/pull/463.patch + url: https://api.github.com/repos/packit/ogr/pulls/463 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Copr build for master and releases - updated_at: '2020-06-26T12:13:35Z' - url: https://api.github.com/repos/packit/ogr/issues/428 + title: Support multi part namespaces + updated_at: '2020-09-14T12:04:19Z' + url: https://api.github.com/repos/packit/ogr/issues/463 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -80356,53 +107597,40 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "By looking at the code I noticed there are no tests for creating\ - \ pull requests in different scenarios (like Github has) and also the\ - \ code doesn't seem to be compliant to the documentation of ogr.\r\n\ - \r\n- [ ] Add tests\r\n- [ ] Fix the implementation\r\n\r\nMay be\ - \ blocked by #412" - closed_at: '2020-06-25T10:41:12Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/414/comments - created_at: '2020-05-20T21:34:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/414/events - html_url: https://github.com/packit/ogr/issues/414 - id: 622098916 + body: '' + closed_at: '2020-09-09T13:45:38Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/462/comments + created_at: '2020-09-09T11:11:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/462/events + html_url: https://github.com/packit/ogr/pull/462 + id: 696721276 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/414/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/462/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjIwOTg5MTY= - number: 414 + node_id: MDExOlB1bGxSZXF1ZXN0NDgyNzY1NDAz + number: 462 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/462.diff + html_url: https://github.com/packit/ogr/pull/462 + patch_url: https://github.com/packit/ogr/pull/462.patch + url: https://api.github.com/repos/packit/ogr/pulls/462 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pull requests on Gitlab projects - updated_at: '2020-06-25T10:41:12Z' - url: https://api.github.com/repos/packit/ogr/issues/414 + title: Validate commit flag state before setting + updated_at: '2020-09-09T16:04:05Z' + url: https://api.github.com/repos/packit/ogr/issues/462 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -80424,14 +107652,15 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-06-23T15:27:42Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/427/comments - created_at: '2020-06-23T14:34:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/427/events - html_url: https://github.com/packit/ogr/pull/427 - id: 643894847 + body: "* Update pre-commit\r\n* Fix imports from PyGithub\r\n* Type-cast\ + \ `release.created_at` from datetime to string" + closed_at: '2020-09-03T09:09:02Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/460/comments + created_at: '2020-09-02T11:02:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/460/events + html_url: https://github.com/packit/ogr/pull/460 + id: 690926698 labels: - color: 0e8a16 default: false @@ -80440,161 +107669,425 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/427/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/460/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDM4NjEzNzgx - number: 427 + node_id: MDExOlB1bGxSZXF1ZXN0NDc3NzQxMTAx + number: 460 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/427.diff - html_url: https://github.com/packit/ogr/pull/427 - patch_url: https://github.com/packit/ogr/pull/427.patch - url: https://api.github.com/repos/packit/ogr/pulls/427 + diff_url: https://github.com/packit/ogr/pull/460.diff + html_url: https://github.com/packit/ogr/pull/460 + patch_url: https://github.com/packit/ogr/pull/460.patch + url: https://api.github.com/repos/packit/ogr/pulls/460 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Zuul & pre-commit related changes - updated_at: '2020-06-24T08:10:43Z' - url: https://api.github.com/repos/packit/ogr/issues/427 + title: Update pre-commit configuration and fix mypy remarks + updated_at: '2020-09-03T09:14:01Z' + url: https://api.github.com/repos/packit/ogr/issues/460 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "* We first to need to create an abstraction on top of all forges\r\ - \n* and then implement it for each\r\n\r\nThis is an example how pagure\ - \ does it:\r\n```python\r\nmod_acls = {\r\n 'user_type': 'group',\r\ - \n 'name': 'git-packit-team',\r\n 'acl': 'admin',\r\n\ - }\r\n\r\nreq = requests.post(\r\n url + 'source-git/%s/git/modifyacls'\ - \ % (project),\r\n headers=headers,\r\n verify=False,\r\ - \n data=mod_acls\r\n)\r\n```" - closed_at: '2020-06-22T13:36:26Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-02T08:18:37Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/459/comments + created_at: '2020-09-02T07:22:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/459/events + html_url: https://github.com/packit/ogr/issues/459 + id: 690786308 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/459/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2OTA3ODYzMDg= + number: 459 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.14.0' + updated_at: '2020-09-02T08:18:37Z' + url: https://api.github.com/repos/packit/ogr/issues/459 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add remarks from review\n\ + * Refactor authentication in `GithubService`\n* Add suggestions from\ + \ review for token managers\n* Check for multiple auth methods in `GithubService`\n\ + * Add unit tests for parsing `tokman_instance_url`\n* Implement TokmanGithubTokenManager\n\ + * Implement suggestions from review\n* Introduce token managers for\ + \ GitHub App\n* Move getting github_instance from project to service\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.14.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-09-02T07:19:22Z' comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/364/comments - created_at: '2020-03-25T12:55:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/364/events - html_url: https://github.com/packit/ogr/issues/364 - id: 587676376 + comments_url: https://api.github.com/repos/packit/ogr/issues/458/comments + created_at: '2020-09-01T13:58:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/458/events + html_url: https://github.com/packit/ogr/pull/458 + id: 690167196 labels: - - color: a2eeef + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: '000000' + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - - color: 42e529 + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/458/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDc3MTAxNzA0 + number: 458 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/458.diff + html_url: https://github.com/packit/ogr/pull/458 + patch_url: https://github.com/packit/ogr/pull/458.patch + url: https://api.github.com/repos/packit/ogr/pulls/458 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.14.0 release + updated_at: '2020-09-02T07:23:29Z' + url: https://api.github.com/repos/packit/ogr/issues/458 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: changed description + closed_at: '2018-12-13T14:24:08Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/1/comments + created_at: '2018-12-13T13:01:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/1/events + html_url: https://github.com/packit/ogr/pull/1 + id: 390668872 + labels: + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/364/labels{/name} + description: null + id: 1457192587 + name: test_lb1 + node_id: MDU6TGFiZWwxNDU3MTkyNTg3 + url: https://api.github.com/repos/packit/ogr/labels/test_lb1 + - color: ededed + default: false + description: null + id: 1457192593 + name: test_lb2 + node_id: MDU6TGFiZWwxNDU3MTkyNTkz + url: https://api.github.com/repos/packit/ogr/labels/test_lb2 + labels_url: https://api.github.com/repos/packit/ogr/issues/1/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODc2NzYzNzY= - number: 364 + node_id: MDExOlB1bGxSZXF1ZXN0MjM4MzgxNzIz + number: 1 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/1.diff + html_url: https://github.com/packit/ogr/pull/1 + patch_url: https://github.com/packit/ogr/pull/1.patch + url: https://api.github.com/repos/packit/ogr/pulls/1 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: provide a way to modify ACLs of repositories - updated_at: '2020-06-22T13:36:27Z' - url: https://api.github.com/repos/packit/ogr/issues/364 + title: 'WIP: API' + updated_at: '2020-08-26T11:58:33Z' + url: https://api.github.com/repos/packit/ogr/issues/1 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "It is sometimes hard to get the right problem when a user receives\ - \ a long traceback with some GitHub/GitLab exception at the end. Those\ - \ exceptions are not always clear or too general (`e.g. Object not found`).\r\ - \n\r\nWe can probably do better and raise our exceptions that will have\ - \ much clearer message since we usually know the context (e.g. `PR with\ - \ id={id} not found.`).\r\n\r\nAC:\r\n\r\n- [ ] Go through the code\ - \ and cover some parts of code in the try blocks and raise our exception\ - \ with good message:\r\n\r\n```python\r\n try:\r\n problematic_code()\r\ - \n except TheExternalException as ex:\r\n raise SomeOgrException(\"\ - Good reason\", ex)\r\n```\r\n- [ ] update/extend the tests\r\n" - closed_at: null - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/199/comments - created_at: '2019-09-13T08:04:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/199/events - html_url: https://github.com/packit/ogr/issues/199 - id: 493190190 + body: "The `ogr` is a nice, short name, but the 'meaning' should be changed.\r\ + \n\r\nFeel free to edit this comment.\r\n\r\n| O | G | R |\r\n| - |\ + \ - | - |\r\n| our | git | rule |\r\n| one | git-forge | revolution\ + \ |\r\n| open | | rebellion |\r\n| object | | realm |\r\n| only | |\ + \ route |\r\n| omnipotent | | rocket |\r\n| | | recipe |\r\n| | | rainbow\ + \ |\r\n| | | roadway |\r\n| | | reactor |\r\n| | | reunion |\r\n| |\ + \ | rebel |\r\n| | | ruler |\r\n\r\nPossible combinations (and votes):\r\ + \n- our-git-rebel @phracek \r\n- open-git-rainbow @phracek @TomasTomecek\ + \ \r\n- object-git-reactor @phracek \r\n- the [O]ne [G]it [R]uler @TomasTomecek\ + \ \r\n- [O]ne [G]it library to [R]ule @TomasTomecek @jpopelka\r\n- [O]mniponent\ + \ [G]it-forge [R]uler @jpopelka @lachmanfrantisek @TomasTomecek " + closed_at: '2019-02-14T13:28:27Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/4/comments + created_at: '2019-01-17T08:26:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/4/events + html_url: https://github.com/packit/ogr/issues/4 + id: 400160755 labels: - - color: '000000' + - color: ededed default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b + description: null + id: 1457192587 + name: test_lb1 + node_id: MDU6TGFiZWwxNDU3MTkyNTg3 + url: https://api.github.com/repos/packit/ogr/labels/test_lb1 + - color: ededed default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db + description: null + id: 1457192593 + name: test_lb2 + node_id: MDU6TGFiZWwxNDU3MTkyNTkz + url: https://api.github.com/repos/packit/ogr/labels/test_lb2 + labels_url: https://api.github.com/repos/packit/ogr/issues/4/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MDAxNjA3NTU= + number: 4 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Better name + updated_at: '2020-08-26T10:58:41Z' + url: https://api.github.com/repos/packit/ogr/issues/4 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- [x] Interface for token manager using github app\r\n- [x] Refactor\ + \ default solution\r\n- [x] Implement support for `tokman`" + closed_at: '2020-08-25T09:31:39Z' + comments: 18 + comments_url: https://api.github.com/repos/packit/ogr/issues/450/comments + created_at: '2020-08-11T09:16:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/450/events + html_url: https://github.com/packit/ogr/pull/450 + id: 676716034 + labels: + - color: 0e8a16 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/450/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDY1OTc3NzQ2 + number: 450 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/450.diff + html_url: https://github.com/packit/ogr/pull/450 + patch_url: https://github.com/packit/ogr/pull/450.patch + url: https://api.github.com/repos/packit/ogr/pulls/450 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Use tokman in ogr + updated_at: '2020-08-25T17:28:39Z' + url: https://api.github.com/repos/packit/ogr/issues/450 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR + body: "The current implementation of labels has no implementation of GitLabel\ + \ defined in the abstract classes, which would be consistent with what\ + \ is done for GitUser, GitProject etc. This is leading to inconsistent\ + \ typing in the library where we have the following function signatures\ + \ within the codebase:\r\n\r\nabstract.py\r\n`def get_issue_labels(self,\ + \ issue_id: int) -> List[Any]`\r\n\r\ngithub/project.py\r\n`def get_issue_labels(self,\ + \ issue_id: int) -> List[GithubLabel]`\r\n\r\ngitlab/project.py\r\n\ + `def get_issue_labels(self, issue_id: int) -> List[str]`\r\n\r\nWould\ + \ be good to make this consistent and inherit from a base class of GitLabel.\r\ + \n\r\n@lachmanfrantisek " + closed_at: null + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/263/comments + created_at: '2019-11-02T14:16:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/263/events + html_url: https://github.com/packit/ogr/issues/263 + id: 516607686 + labels: + - color: a2eeef default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: bf6b0b default: false description: '' @@ -80602,149 +108095,138 @@ requests.sessions: name: pinned node_id: MDU6TGFiZWwyMTAxODk4Njg3 url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: 8be567 + - color: c2ef58 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/199/labels{/name} + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/263/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTMxOTAxOTA= - number: 199 + node_id: MDU6SXNzdWU1MTY2MDc2ODY= + number: 263 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: Do not let the external exception go to the user - updated_at: '2020-06-16T12:56:15Z' - url: https://api.github.com/repos/packit/ogr/issues/199 + title: Improve class structure for Labels type + updated_at: '2020-08-24T06:40:40Z' + url: https://api.github.com/repos/packit/ogr/issues/263 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/svenharris - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "In #226 we found multiple problems with the offline x online handling.\r\ - \n\r\nWe need to:\r\n\r\n- [x] agree on the rules (e.g. properties cannot\ - \ touch the services)\r\n- [ ] document the rules\r\n- [x] fix the current\ - \ implementation(s) to satisfy the rules\r\n - use deprecations if\ - \ needed\r\n\r\nRelated to #214 " - closed_at: null - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/229/comments - created_at: '2019-10-01T07:47:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/229/events - html_url: https://github.com/packit/ogr/issues/229 - id: 500722982 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-08-19T11:07:53Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/454/comments + created_at: '2020-08-19T11:02:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/454/events + html_url: https://github.com/packit/ogr/issues/454 + id: 681751158 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: c2ef58 + - color: ededed default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 8be567 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/229/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/454/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDA3MjI5ODI= - number: 229 + node_id: MDU6SXNzdWU2ODE3NTExNTg= + number: 454 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Investigate online x offline handling - updated_at: '2020-06-15T08:46:36Z' - url: https://api.github.com/repos/packit/ogr/issues/229 + state: closed + title: New patch release + updated_at: '2020-08-19T11:07:53Z' + url: https://api.github.com/repos/packit/ogr/issues/454 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: Needed in https://github.com/packit-service/packit-service/pull/662 - closed_at: '2020-06-11T07:53:09Z' + body: '' + closed_at: '2020-08-17T08:56:28Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/425/comments - created_at: '2020-06-08T10:16:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/425/events - html_url: https://github.com/packit/ogr/pull/425 - id: 634481719 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/425/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/453/comments + created_at: '2020-08-13T16:21:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/453/events + html_url: https://github.com/packit/ogr/pull/453 + id: 678564351 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/453/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDMxMDI4NDEw - number: 425 + node_id: MDExOlB1bGxSZXF1ZXN0NDY3NDkwMTYz + number: 453 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/425.diff - html_url: https://github.com/packit/ogr/pull/425 - patch_url: https://github.com/packit/ogr/pull/425.patch - url: https://api.github.com/repos/packit/ogr/pulls/425 + diff_url: https://github.com/packit/ogr/pull/453.diff + html_url: https://github.com/packit/ogr/pull/453 + patch_url: https://github.com/packit/ogr/pull/453.patch + url: https://api.github.com/repos/packit/ogr/pulls/453 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement PagurePullRequest.get_flags() - updated_at: '2020-06-11T07:53:14Z' - url: https://api.github.com/repos/packit/ogr/issues/425 + title: https://github.com/packit-service -> https://github.com/packit + updated_at: '2020-08-17T09:27:06Z' + url: https://api.github.com/repos/packit/ogr/issues/453 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -80762,78 +108244,131 @@ requests.sessions: subscriptions_url: https://api.github.com/users/jpopelka/subscriptions type: User url: https://api.github.com/users/jpopelka + _next: null + elapsed: 0.420755 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:47 GMT + ETag: W/"4a5386d0372cf22f7fcaeb742ccb44b275554e678b8ba79fd8d4e5e511248f8a" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7D921:1917BC4:6075DC13 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4918' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '82' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=6: + - metadata: + latency: 0.5062532424926758 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Use literal style (|) in the YAML string, in order to keep new-lines\ - \ and\r\nhave a better formatting.\r\n\r\nBe explicit about the dates.\r\ - \n\r\nBe more English (hopefully).\r\n\r\nSigned-off-by: Hunor Csomort\xE1\ - ni " - closed_at: '2020-06-10T13:35:30Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/426/comments - created_at: '2020-06-10T06:41:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/426/events - html_url: https://github.com/packit/ogr/pull/426 - id: 635974319 + author_association: CONTRIBUTOR + body: "Add method where user can request access for a project.\r\n\r\n\ + - Gitlab - Implemented here - #439 \r\n- Github - After looking into\ + \ https://pygithub.readthedocs.io/en/latest/index.html (Seems its not\ + \ possible in Github to request for project access)\r\n- Pagure - Unsure\ + \ about the support (But unable to find anything here - https://pagure.io/api/0/#projects-tab)" + closed_at: '2020-08-17T00:45:05Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/440/comments + created_at: '2020-07-28T17:53:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/440/events + html_url: https://github.com/packit/ogr/issues/440 + id: 667259796 labels: - - color: 0e8a16 + - color: a2eeef default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/426/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/440/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDMyMjM2NzY4 - number: 426 + node_id: MDU6SXNzdWU2NjcyNTk3OTY= + number: 440 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/426.diff - html_url: https://github.com/packit/ogr/pull/426 - patch_url: https://github.com/packit/ogr/pull/426.patch - url: https://api.github.com/repos/packit/ogr/pulls/426 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve the message when marking issues as stale - updated_at: '2020-06-10T13:35:30Z' - url: https://api.github.com/repos/packit/ogr/issues/426 + title: Implement request_access for project + updated_at: '2020-08-17T00:45:05Z' + url: https://api.github.com/repos/packit/ogr/issues/440 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/csomh + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: "During pre-commit I'm getting the following issues (Trying to solve\ - \ #338 )\r\n```\r\nogr/abstract.py:731: error: Too many arguments\r\n\ - ogr/services/github/service.py:172: error: Too many arguments\r\n```" - closed_at: '2020-06-08T19:38:15Z' + author_association: CONTRIBUTOR + body: Added unit test for Pagure.PullRequest.head_commit + closed_at: '2020-08-15T10:15:27Z' comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/362/comments - created_at: '2020-03-24T15:41:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/362/events - html_url: https://github.com/packit/ogr/pull/362 - id: 587056910 + comments_url: https://api.github.com/repos/packit/ogr/issues/369/comments + created_at: '2020-03-27T14:53:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/369/events + html_url: https://github.com/packit/ogr/pull/369 + id: 589189620 labels: - color: '000000' default: false @@ -80842,53 +108377,126 @@ requests.sessions: name: stale node_id: MDU6TGFiZWwxNjcwMTMyNjE5 url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/362/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/369/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzkzMDcwNzg0 - number: 362 + node_id: MDExOlB1bGxSZXF1ZXN0Mzk0ODAwMjA0 + number: 369 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/362.diff - html_url: https://github.com/packit/ogr/pull/362 - patch_url: https://github.com/packit/ogr/pull/362.patch - url: https://api.github.com/repos/packit/ogr/pulls/362 + diff_url: https://github.com/packit/ogr/pull/369.diff + html_url: https://github.com/packit/ogr/pull/369 + patch_url: https://github.com/packit/ogr/pull/369.patch + url: https://api.github.com/repos/packit/ogr/pulls/369 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: adding hostname property - updated_at: '2020-06-08T19:38:15Z' - url: https://api.github.com/repos/packit/ogr/issues/362 + title: Added unit test for Pagure.PullRequest.head_commit + updated_at: '2020-08-15T10:15:27Z' + url: https://api.github.com/repos/packit/ogr/issues/369 user: - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/dinolinjob + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Fixes #406\r\n\r\n- [x] Fix unit tests" - closed_at: '2020-05-26T09:47:07Z' + body: "- [x] The contribution guide should be accessible from the README.md.\ + \ (#265 )\r\n- [ ] We need to be sure that the guide is current and\ + \ describes the testing approach well.\r\n- [ ] Document `/packit` command." + closed_at: '2020-08-14T09:27:22Z' comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/411/comments - created_at: '2020-05-15T09:31:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/411/events - html_url: https://github.com/packit/ogr/pull/411 - id: 618832407 + comments_url: https://api.github.com/repos/packit/ogr/issues/165/comments + created_at: '2019-09-05T13:37:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/165/events + html_url: https://github.com/packit/ogr/issues/165 + id: 489761258 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/165/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0ODk3NjEyNTg= + number: 165 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Update and link the contribution guide in README + updated_at: '2020-08-14T17:30:15Z' + url: https://api.github.com/repos/packit/ogr/issues/165 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Closes #196 ' + closed_at: '2020-08-13T10:28:26Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/444/comments + created_at: '2020-08-03T09:30:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/444/events + html_url: https://github.com/packit/ogr/pull/444 + id: 671937907 labels: - color: 0e8a16 default: false @@ -80897,24 +108505,44 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/411/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/444/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDE4NDgxODAx - number: 411 + node_id: MDExOlB1bGxSZXF1ZXN0NDYyMDYyMjUw + number: 444 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/411.diff - html_url: https://github.com/packit/ogr/pull/411 - patch_url: https://github.com/packit/ogr/pull/411.patch - url: https://api.github.com/repos/packit/ogr/pulls/411 + diff_url: https://github.com/packit/ogr/pull/444.diff + html_url: https://github.com/packit/ogr/pull/444 + patch_url: https://github.com/packit/ogr/pull/444.patch + url: https://api.github.com/repos/packit/ogr/pulls/444 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Creating PRs from `fork` to `other-fork` on Github - updated_at: '2020-06-07T18:05:12Z' - url: https://api.github.com/repos/packit/ogr/issues/411 + title: Jupyter examples + updated_at: '2020-08-13T10:29:44Z' + url: https://api.github.com/repos/packit/ogr/issues/444 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: + 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} @@ -80932,45 +108560,8 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- [ ] should be thoroughly checked (`Project`, `Service`, `User`, - `Release` should be fine)' - closed_at: '2020-06-05T15:20:24Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/311/comments - created_at: '2020-01-24T22:31:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/311/events - html_url: https://github.com/packit/ogr/pull/311 - id: 554985894 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/311/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY3MDQxOTA2 - number: 311 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/311.diff - html_url: https://github.com/packit/ogr/pull/311 - patch_url: https://github.com/packit/ogr/pull/311.patch - url: https://api.github.com/repos/packit/ogr/pulls/311 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add compatibility table - updated_at: '2020-06-05T15:36:55Z' - url: https://api.github.com/repos/packit/ogr/issues/311 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + assignees: + - 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} @@ -80988,75 +108579,43 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] - author_association: COLLABORATOR - body: "*Updated by @lachmanfrantisek :*\r\n\r\nWe have a lot of methods\ - \ related to the permissions (e.g. who can merge/close,..)\r\n\r\nIt's\ - \ not consistent, let's clean that!\r\n\r\nFeel free to solve this in\ - \ smaller parts. Just write on what you are going to work...\r\n\r\n\ - AC:\r\n- [ ] Make sure, that we have all of the provided methods in\ - \ the `abstract.py`\r\n (raising the `NotImplementedError`)\r\n- [\ - \ ] Make sure, that we have all of these in all the implementations:\r\ - \n - [ ] GitLab\r\n - [ ] GitHub\r\n - [ ] Pagure\r\n- [ ] Deprecate\ - \ the project methods related to specific issue/pull-request.\r\n- [\ - \ ] Move helping methods to the base classes.\r\n - The only exception\ - \ is a more efficient solution in the code of the specific implementation.\r\ - \n - Example:\r\nhttps://github.com/packit-service/ogr/blob/89435655150b8dd79ef93209c3463585d0715e0d/ogr/services/github/project.py#L219-L220\r\ - \n\r\nThe progress is tracked in the following tables. (Any update in\ - \ the comments is appreciated.)\r\n\r\n| Project | `who_can_close_issue()\ - \ -> Set[str]` | `who_can_merge_pr() -> Set[str]` | `can_close_issue(username:\ - \ str) -> bool` | `can_merge_pr(username: str) -> bool` |\r\n| --- |\ - \ --- | --- | --- | --- |\r\n| abstract | :+1: | :+1: | :exclamation:\ - \ deprecate the `Issue` argument | \r\n| base | nothing | nothing |\ - \ implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\n\ - | GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |\r\n\r\n| Issue\ - \ | `who_can_close() -> Set[str]` | `can_close(username: str) -> bool`\ - \ |\r\n| --- | --- | --- |\r\n| abstract | ? | ? |\r\n| base | nothing\ - \ | implement here |\r\n| Github | ? | ? |\r\n| GitLab | ? | ? |\r\n\ - | Pagure | ? | ? |\r\n\r\n| PullRequest | `who_can_close() -> Set[str]`\ - \ | `who_can_merge() -> Set[str]` | `can_close(username: str) -> bool`\ - \ | `can_merge(username: str) -> bool` |\r\n| --- | --- | --- | ---\ - \ | --- |\r\n| abstract | ? | ? | ? | ? | \r\n| base | nothing | nothing\ - \ | implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\ - \n| GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |" - closed_at: null + author_association: CONTRIBUTOR + body: "We have recently added a short usage section into the README.md\ + \ (#195).\r\n\r\nIt would be nice to create a new folder in the root\ + \ of this repository called `examples` and demonstrate various ogr functions.\r\ + \n\r\nFor me, the best way how to do it is to create a [Jupyter notebook](https://jupyter.org/)\ + \ as it is supported by GitHub and we can easily combine code snippets,\ + \ with outputs and comments in Markdown.\r\n\r\n*update by @lachmanfrantisek*\r\ + \n\r\nTODO:\r\n- [ ] Update the example in the README (something short).\r\ + \n- [ ] Create a folder `examples`.\r\n- [ ] Create some interesting\ + \ examples / usecases using [jupyter-notebook](https://jupyter.org/)\ + \ in that folder (github can display the `ipynb` files pretty well).\r\ + \n - Be sure, that you are not commiting your authentication tokens..;)\r\ + \n- [ ] Link the examples in the README or link the `examples/README.md`\ + \ where we can have more descriptive text for examples and links for\ + \ the specific `ipynb` files." + closed_at: '2020-08-13T10:28:26Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/100/comments - created_at: '2019-07-05T07:09:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/100/events - html_url: https://github.com/packit/ogr/issues/100 - id: 464495604 + comments_url: https://api.github.com/repos/packit/ogr/issues/196/comments + created_at: '2019-09-12T10:02:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/196/events + html_url: https://github.com/packit/ogr/issues/196 + id: 492708275 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef + - color: b60205 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation - color: 7057ff default: false description: Good for newcomers @@ -81071,210 +108630,268 @@ requests.sessions: name: pinned node_id: MDU6TGFiZWwyMTAxODk4Njg3 url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: c2ef58 + - color: 8be567 default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/196/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTI3MDgyNzU= + number: 196 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Examples for ogr usage using Jupyter notebook + updated_at: '2020-08-13T10:28:26Z' + url: https://api.github.com/repos/packit/ogr/issues/196 + user: + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 + events_url: https://api.github.com/users/rpitonak/events{/privacy} + followers_url: https://api.github.com/users/rpitonak/followers + following_url: https://api.github.com/users/rpitonak/following{/other_user} + gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/rpitonak + id: 26160778 + login: rpitonak + node_id: MDQ6VXNlcjI2MTYwNzc4 + organizations_url: https://api.github.com/users/rpitonak/orgs + received_events_url: https://api.github.com/users/rpitonak/received_events + repos_url: https://api.github.com/users/rpitonak/repos + site_admin: false + starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + type: User + url: https://api.github.com/users/rpitonak + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #449 ' + closed_at: '2020-08-13T07:00:04Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/451/comments + created_at: '2020-08-12T21:44:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/451/events + html_url: https://github.com/packit/ogr/pull/451 + id: 677997734 + labels: + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/100/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/451/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjQ0OTU2MDQ= - number: 100 + node_id: MDExOlB1bGxSZXF1ZXN0NDY3MDIzODIw + number: 451 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/451.diff + html_url: https://github.com/packit/ogr/pull/451 + patch_url: https://github.com/packit/ogr/pull/451.patch + url: https://api.github.com/repos/packit/ogr/pulls/451 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: user's permissions on Issues/PRs - updated_at: '2020-06-01T08:47:32Z' - url: https://api.github.com/repos/packit/ogr/issues/100 + state: closed + title: Create issue in Github without labels + updated_at: '2020-08-13T07:00:04Z' + url: https://api.github.com/repos/packit/ogr/issues/451 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/marusinm + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] author_association: NONE - body: "There is no documentation on how to use the library, currently.\ - \ A documentation will help people on how to use ogr, and showcase it's\ - \ features and functions.\r\n\r\nThis can be done by adding the wiki\ - \ pages (on Github), since the documentation might be quite long and\ - \ the Wiki will help in segregating several topics (for instance, how\ - \ to use ogr for GitHub, GitLab and Pagure).\r\n\r\n" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/53/comments - created_at: '2019-04-04T13:30:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/53/events - html_url: https://github.com/packit/ogr/issues/53 - id: 429280678 + body: "Sentry Issue: [RED-HAT-0P-2RX](https://sentry.io/organizations/red-hat-0p/issues/1828647684/?referrer=github_integration)\r\ + \n\r\n```\r\nTypeError: 'NoneType' object is not iterable\r\n(2 additional\ + \ frame(s) were not displayed)\r\n...\r\n File \"packit_service/worker/handlers/abstract.py\"\ + , line 152, in run_n_clean\r\n return self.run()\r\n File \"packit_service/worker/handlers/github_handlers.py\"\ + , line 213, in run\r\n body=body_msg,\r\n File \"ogr/services/github/project.py\"\ + , line 313, in create_issue\r\n return GithubIssue.create(project=self,\ + \ title=title, body=body, labels=labels)\r\n File \"ogr/services/github/issue.py\"\ + , line 101, in create\r\n title=title, body=body, labels=labels\r\ + \n File \"github/Repository.py\", line 1063, in create_issue\r\n \ + \ assert labels is github.GithubObject.NotSet or all(isinstance(element,\ + \ github.Label.Label) or isinstance(element, str) for element in labels),\ + \ labels\r\n```\r\n\r\nRecently we added `labels` parameters to `create_issue`\ + \ method and it defaults to None, but it should probably default to\ + \ [] so that it does not fail on the line with `assert`." + closed_at: '2020-08-13T07:00:04Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/449/comments + created_at: '2020-08-10T07:47:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/449/events + html_url: https://github.com/packit/ogr/issues/449 + id: 675938538 labels: - - color: c5def5 + - color: d73a4a default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: bf6b0b + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: 42e529 + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9e231 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/53/labels{/name} + description: High priority. + id: 1432779316 + name: high-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzE2 + url: https://api.github.com/repos/packit/ogr/labels/high-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/449/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjkyODA2Nzg= - number: 53 + node_id: MDU6SXNzdWU2NzU5Mzg1Mzg= + number: 449 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Add a documentation for API - updated_at: '2020-06-01T08:45:12Z' - url: https://api.github.com/repos/packit/ogr/issues/53 + state: closed + title: 'Creating issues in Github fails with TypeError: ''NoneType'' object + is not iterable' + updated_at: '2020-08-13T07:00:04Z' + url: https://api.github.com/repos/packit/ogr/issues/449 user: - avatar_url: https://avatars3.githubusercontent.com/u/31067398?v=4 - events_url: https://api.github.com/users/Aniket-Pradhan/events{/privacy} - followers_url: https://api.github.com/users/Aniket-Pradhan/followers - following_url: https://api.github.com/users/Aniket-Pradhan/following{/other_user} - gists_url: https://api.github.com/users/Aniket-Pradhan/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 + events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers + following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/Aniket-Pradhan - id: 31067398 - login: Aniket-Pradhan - node_id: MDQ6VXNlcjMxMDY3Mzk4 - organizations_url: https://api.github.com/users/Aniket-Pradhan/orgs - received_events_url: https://api.github.com/users/Aniket-Pradhan/received_events - repos_url: https://api.github.com/users/Aniket-Pradhan/repos + html_url: https://github.com/apps/sentry-io + id: 39604003 + login: sentry-io[bot] + node_id: MDM6Qm90Mzk2MDQwMDM= + organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events + repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/Aniket-Pradhan/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/Aniket-Pradhan/subscriptions - type: User - url: https://api.github.com/users/Aniket-Pradhan + starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/sentry-io%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Figure out how to handle releases in Pagure. - closed_at: null - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/112/comments - created_at: '2019-07-11T08:51:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/112/events - html_url: https://github.com/packit/ogr/issues/112 - id: 466754779 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `The distgit repository /tmp/packit-dist-gitwfi22npg is dirty.This + is not supported.` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.12.1.tar.gz. + Reason: ''Not Found''. ` | + + | `master` | `The distgit repository /tmp/packit-dist-gitwfi22npg is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-08-09T16:57:04Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/423/comments + created_at: '2020-05-27T13:46:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/423/events + html_url: https://github.com/packit/ogr/issues/423 + id: 625711319 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + - color: '000000' default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/112/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/423/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjY3NTQ3Nzk= - number: 112 + node_id: MDU6SXNzdWU2MjU3MTEzMTk= + number: 423 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Support releases in Pagure - updated_at: '2020-06-01T08:05:12Z' - url: https://api.github.com/repos/packit/ogr/issues/112 + state: closed + title: '[packit] Propose update failed for release 0.12.1' + updated_at: '2020-08-09T16:57:04Z' + url: https://api.github.com/repos/packit/ogr/issues/423 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Fix unit tests for Github\ - \ PRs\n* Implement creating PRs fork->other-fork on Github\n* Use custom_instances\ - \ to provide custom_mapping\n* Add PullRequest.patch property\n* GitHub:\ - \ query only one user when telling if a user can merge PRs\n* Adding\ - \ tests for add_user\n* Adding collaborators to projects - (Github,\ - \ Gitlab)\n\n\nYou can change it by editing `CHANGELOG.md` in the root\ - \ of this repository and pushing to `0.12.1-release` branch before merging\ - \ this PR.\nI didn't find any files where `__version__` is set." - closed_at: '2020-05-27T13:46:01Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/422/comments - created_at: '2020-05-26T15:00:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/422/events - html_url: https://github.com/packit/ogr/pull/422 - id: 624951772 + \ is the changelog I created:\n### Changes\n* Making create_issue uniform\ + \ by adding labels\n* Add support to create private issue\n* Fix getting\ + \ the installation ID after PyGithub 1.52\n* Org rename: fix integration\ + \ tests\n* zuul: org rename\n* request access to project on Gitlab\n\ + * Support add group for pagure\n* Revert \"Drop python 3.6\"\n* Update\ + \ ogr/utils.py\n* Remove unused util functions\n* Refactor using sourcery\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.13.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-08-07T09:09:02Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/447/comments + created_at: '2020-08-05T14:20:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/447/events + html_url: https://github.com/packit/ogr/pull/447 + id: 673578649 labels: - color: ededed default: false @@ -81283,6 +108900,13 @@ requests.sessions: name: bot node_id: MDU6TGFiZWwxMjM3NzA0MjUw url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit - color: ededed default: false description: null @@ -81290,24 +108914,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/422/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/447/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDIzMjYxMzM2 - number: 422 + node_id: MDExOlB1bGxSZXF1ZXN0NDYzNDE2MTE4 + number: 447 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/422.diff - html_url: https://github.com/packit/ogr/pull/422 - patch_url: https://github.com/packit/ogr/pull/422.patch - url: https://api.github.com/repos/packit/ogr/pulls/422 + diff_url: https://github.com/packit/ogr/pull/447.diff + html_url: https://github.com/packit/ogr/pull/447 + patch_url: https://github.com/packit/ogr/pull/447.patch + url: https://api.github.com/repos/packit/ogr/pulls/447 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.12.1 release - updated_at: '2020-05-27T13:47:20Z' - url: https://api.github.com/repos/packit/ogr/issues/422 + title: 0.13.0 release + updated_at: '2020-08-07T11:19:04Z' + url: https://api.github.com/repos/packit/ogr/issues/447 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -81328,15 +108952,15 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2020-05-26T15:00:38Z' + closed_at: '2020-08-05T14:20:46Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/421/comments - created_at: '2020-05-26T14:59:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/421/events - html_url: https://github.com/packit/ogr/issues/421 - id: 624950979 + comments_url: https://api.github.com/repos/packit/ogr/issues/446/comments + created_at: '2020-08-05T14:16:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/446/events + html_url: https://github.com/packit/ogr/issues/446 + id: 673575463 labels: - color: ededed default: false @@ -81352,74 +108976,527 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/421/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/446/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjQ5NTA5Nzk= - number: 421 + node_id: MDU6SXNzdWU2NzM1NzU0NjM= + number: 446 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New patch release - updated_at: '2020-05-26T15:00:38Z' - url: https://api.github.com/repos/packit/ogr/issues/421 + title: New minor release + updated_at: '2020-08-05T14:20:46Z' + url: https://api.github.com/repos/packit/ogr/issues/446 + user: + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos + site_admin: false + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + type: User + url: https://api.github.com/users/sakalosj + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "- [x] Gitlab - Private issues are known as confidential issues\r\ + \n- [x] Github - Does not support private/confidential issues. (raised\ + \ an error here)\r\n- [x] Pagure" + closed_at: '2020-08-05T10:19:34Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/441/comments + created_at: '2020-07-30T14:00:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/441/events + html_url: https://github.com/packit/ogr/pull/441 + id: 668760747 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/441/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDU5MjA4ODA5 + number: 441 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/441.diff + html_url: https://github.com/packit/ogr/pull/441 + patch_url: https://github.com/packit/ogr/pull/441.patch + url: https://api.github.com/repos/packit/ogr/pulls/441 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add support to create private issues. + updated_at: '2020-08-05T10:19:34Z' + url: https://api.github.com/repos/packit/ogr/issues/441 + user: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Depends-on: https://github.com/packit/packit/pull/920' + closed_at: '2020-08-04T06:21:47Z' + comments: 20 + comments_url: https://api.github.com/repos/packit/ogr/issues/443/comments + created_at: '2020-08-03T09:07:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/443/events + html_url: https://github.com/packit/ogr/pull/443 + id: 671923353 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/443/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDYyMDUwMTY5 + number: 443 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/443.diff + html_url: https://github.com/packit/ogr/pull/443 + patch_url: https://github.com/packit/ogr/pull/443.patch + url: https://api.github.com/repos/packit/ogr/pulls/443 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'zuul: org rename' + updated_at: '2020-08-04T06:21:47Z' + url: https://api.github.com/repos/packit/ogr/issues/443 + user: + avatar_url: https://avatars.githubusercontent.com/u/84583?v=4 + events_url: https://api.github.com/users/morucci/events{/privacy} + followers_url: https://api.github.com/users/morucci/followers + following_url: https://api.github.com/users/morucci/following{/other_user} + gists_url: https://api.github.com/users/morucci/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/morucci + id: 84583 + login: morucci + node_id: MDQ6VXNlcjg0NTgz + organizations_url: https://api.github.com/users/morucci/orgs + received_events_url: https://api.github.com/users/morucci/received_events + repos_url: https://api.github.com/users/morucci/repos + site_admin: false + starred_url: https://api.github.com/users/morucci/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/morucci/subscriptions + type: User + url: https://api.github.com/users/morucci + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-07-31T16:40:37Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/355/comments + created_at: '2020-03-17T12:39:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/355/events + html_url: https://github.com/packit/ogr/pull/355 + id: 582983115 + labels: + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/355/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzg5ODExMzc3 + number: 355 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/355.diff + html_url: https://github.com/packit/ogr/pull/355 + patch_url: https://github.com/packit/ogr/pull/355.patch + url: https://api.github.com/repos/packit/ogr/pulls/355 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'WIP: packit - make release work on stage' + updated_at: '2020-07-31T16:40:37Z' + url: https://api.github.com/repos/packit/ogr/issues/355 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: Example of Issue description + closed_at: '2020-07-30T21:15:08Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/442/comments + created_at: '2020-07-30T21:14:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/442/events + html_url: https://github.com/packit/ogr/issues/442 + id: 669202849 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/442/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2NjkyMDI4NDk= + number: 442 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: This is an issue + updated_at: '2020-07-31T12:43:32Z' + url: https://api.github.com/repos/packit/ogr/issues/442 + user: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Request project access - using it here (https://github.com/packit-service/packit-service/pull/740)\r\ + \n\r\n[Request access docs](https://python-gitlab.readthedocs.io/en/stable/gl_objects/access_requests.html)" + closed_at: '2020-07-31T11:19:06Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/439/comments + created_at: '2020-07-26T19:59:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/439/events + html_url: https://github.com/packit/ogr/pull/439 + id: 665849470 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/439/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDU2Nzk3ODcw + number: 439 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/439.diff + html_url: https://github.com/packit/ogr/pull/439 + patch_url: https://github.com/packit/ogr/pull/439.patch + url: https://api.github.com/repos/packit/ogr/pulls/439 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Requesting project access + updated_at: '2020-07-31T11:19:06Z' + url: https://api.github.com/repos/packit/ogr/issues/439 + user: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-07-28T07:54:55Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/436/comments + created_at: '2020-07-16T12:52:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/436/events + html_url: https://github.com/packit/ogr/pull/436 + id: 658170942 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/436/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDUwMTcyMDA5 + number: 436 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/436.diff + html_url: https://github.com/packit/ogr/pull/436 + patch_url: https://github.com/packit/ogr/pull/436.patch + url: https://api.github.com/repos/packit/ogr/pulls/436 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Support add group for pagure + updated_at: '2020-07-28T08:12:10Z' + url: https://api.github.com/repos/packit/ogr/issues/436 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Since we [now](https://github.com/packit-service/ogr/pull/150)\ + \ support GitLab, we need to update our README to show it.\r\n\r\n+\ + \ [ ] and provide brief docs how to use it (@TomasTomecek had to google\ + \ a bit)" + closed_at: '2020-07-17T13:52:03Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/157/comments + created_at: '2019-08-15T15:27:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/157/events + html_url: https://github.com/packit/ogr/issues/157 + id: 481205806 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/157/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0ODEyMDU4MDY= + number: 157 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Mention GitLab support in README + updated_at: '2020-07-28T07:07:52Z' + url: https://api.github.com/repos/packit/ogr/issues/157 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "This reverts commit 74d84893f16f5020e60d2a1ba35e13d768b514f0.\r\ + \n\r\nIn Centos 8 Python 3.6 is the default python3. Having Python 3.6\ + \ support\r\nwill make life easier there.\r\n\r\nSigned-off-by: Hunor\ + \ Csomort\xE1ni " + closed_at: '2020-07-16T15:27:34Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/438/comments + created_at: '2020-07-16T14:39:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/438/events + html_url: https://github.com/packit/ogr/pull/438 + id: 658262033 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/438/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDUwMjQ5NTU2 + number: 438 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/438.diff + html_url: https://github.com/packit/ogr/pull/438 + patch_url: https://github.com/packit/ogr/pull/438.patch + url: https://api.github.com/repos/packit/ogr/pulls/438 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Revert "Drop python 3.6" + updated_at: '2020-07-16T15:27:34Z' + url: https://api.github.com/repos/packit/ogr/issues/438 + 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 + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "After merging #404 there's no support only for creating PR from\ - \ one fork to different fork.\r\n\r\nPyGithub (GitHub API respectively)\ - \ doesn't allow creating pull requests on a repository we're \"merging\"\ - \ from.\r\n\r\n- [ ] implement getting other fork repository when creating\ - \ PR against it (internal Repository should be enough)\r\n - [ ]\ - \ handle non-existing fork" - closed_at: '2020-05-26T09:47:07Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/406/comments - created_at: '2020-05-05T10:19:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/406/events - html_url: https://github.com/packit/ogr/issues/406 - id: 612492491 + body: 'Closes #414' + closed_at: '2020-06-25T10:41:12Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/419/comments + created_at: '2020-05-26T10:39:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/419/events + html_url: https://github.com/packit/ogr/pull/419 + id: 624783863 labels: - - color: '000000' + - color: 0e8a16 default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - labels_url: https://api.github.com/repos/packit/ogr/issues/406/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/419/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MTI0OTI0OTE= - number: 406 + node_id: MDExOlB1bGxSZXF1ZXN0NDIzMTI1MDgx + number: 419 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/419.diff + html_url: https://github.com/packit/ogr/pull/419 + patch_url: https://github.com/packit/ogr/pull/419.patch + url: https://api.github.com/repos/packit/ogr/pulls/419 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Creating pull requests from fork to other fork - updated_at: '2020-05-26T09:47:07Z' - url: https://api.github.com/repos/packit/ogr/issues/406 + title: Pull requests on Gitlab + updated_at: '2020-07-14T21:08:48Z' + url: https://api.github.com/repos/packit/ogr/issues/419 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -81441,16 +109518,16 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- Update `custom_mapping` with the info provided in the `custom_instances`. + body: '- Remove unused util functions. - - Fixes: https://github.com/packit-service/ogr/issues/417' - closed_at: '2020-05-26T05:56:28Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/418/comments - created_at: '2020-05-25T09:11:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/418/events - html_url: https://github.com/packit/ogr/pull/418 - id: 624162285 + - Refactor using [sourcery](https://sourcery.ai/).' + closed_at: '2020-07-10T12:43:50Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/435/comments + created_at: '2020-07-10T11:46:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/435/events + html_url: https://github.com/packit/ogr/pull/435 + id: 654723717 labels: - color: 0e8a16 default: false @@ -81459,24 +109536,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/418/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/435/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDIyNjM4Mzc4 - number: 418 + node_id: MDExOlB1bGxSZXF1ZXN0NDQ3Mzk0MDIz + number: 435 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/418.diff - html_url: https://github.com/packit/ogr/pull/418 - patch_url: https://github.com/packit/ogr/pull/418.patch - url: https://api.github.com/repos/packit/ogr/pulls/418 + diff_url: https://github.com/packit/ogr/pull/435.diff + html_url: https://github.com/packit/ogr/pull/435 + patch_url: https://github.com/packit/ogr/pull/435.patch + url: https://api.github.com/repos/packit/ogr/pulls/435 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix factory.get_project - updated_at: '2020-05-26T05:57:27Z' - url: https://api.github.com/repos/packit/ogr/issues/418 + title: Sourcery refactor + updated_at: '2020-07-10T12:46:54Z' + url: https://api.github.com/repos/packit/ogr/issues/435 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -81498,190 +109575,95 @@ requests.sessions: assignee: null assignees: [] author_association: NONE - body: "I want to enhance the-new-hotness with the ability to file PRs\ - \ directly to dist-git projects instead of attaching patches to bugzilla.\ - \ I started to work on it in this PR [here](https://github.com/fedora-infra/the-new-hotness/pull/235).\ - \ All the packit related code could be find in https://github.com/fedora-infra/the-new-hotness/pull/235/files#diff-d74ad19fb2d5a66e5bdf8eec8555ca1d\r\ - \n\r\nI'm using only the dist-git module from the packit itself and\ - \ my use case should work like this:\r\n1. Create fork of the target\ - \ repository\r\n2. Update branch\r\n3. Create PR against the specific\ - \ branch in target repository\r\n\r\nWith my current code it needs kerberos\ - \ ticket and user must be in packager group. I tried to do the same\ - \ using dist-git web interface and only thing I need to execute the\ - \ above scenario is the FAS account. \r\nThis should be doable with\ - \ only the pagure token, which allows both forking and creating PR." - closed_at: '2020-05-26T05:56:28Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/417/comments - created_at: '2020-01-28T14:53:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/417/events - html_url: https://github.com/packit/ogr/issues/417 - id: 624162109 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/417/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MjQxNjIxMDk= - number: 417 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[use-case] the-new-hotness dist-git pull request creation' - updated_at: '2020-05-26T05:56:28Z' - url: https://api.github.com/repos/packit/ogr/issues/417 - user: - avatar_url: https://avatars3.githubusercontent.com/u/6943409?v=4 - events_url: https://api.github.com/users/Zlopez/events{/privacy} - followers_url: https://api.github.com/users/Zlopez/followers - following_url: https://api.github.com/users/Zlopez/following{/other_user} - gists_url: https://api.github.com/users/Zlopez/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/Zlopez - id: 6943409 - login: Zlopez - node_id: MDQ6VXNlcjY5NDM0MDk= - organizations_url: https://api.github.com/users/Zlopez/orgs - received_events_url: https://api.github.com/users/Zlopez/received_events - repos_url: https://api.github.com/users/Zlopez/repos - site_admin: false - starred_url: https://api.github.com/users/Zlopez/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/Zlopez/subscriptions - type: User - url: https://api.github.com/users/Zlopez - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.githubusercontent.com/u/20343475?v=4 - events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} - followers_url: https://api.github.com/users/RafayGhafoor/followers - following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} - gists_url: https://api.github.com/users/RafayGhafoor/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/RafayGhafoor - id: 20343475 - login: RafayGhafoor - node_id: MDQ6VXNlcjIwMzQzNDc1 - organizations_url: https://api.github.com/users/RafayGhafoor/orgs - received_events_url: https://api.github.com/users/RafayGhafoor/received_events - repos_url: https://api.github.com/users/RafayGhafoor/repos - site_admin: false - starred_url: https://api.github.com/users/RafayGhafoor/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/RafayGhafoor/subscriptions - type: User - url: https://api.github.com/users/RafayGhafoor - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/20343475?v=4 - events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} - followers_url: https://api.github.com/users/RafayGhafoor/followers - following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} - gists_url: https://api.github.com/users/RafayGhafoor/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/RafayGhafoor - id: 20343475 - login: RafayGhafoor - node_id: MDQ6VXNlcjIwMzQzNDc1 - organizations_url: https://api.github.com/users/RafayGhafoor/orgs - received_events_url: https://api.github.com/users/RafayGhafoor/received_events - repos_url: https://api.github.com/users/RafayGhafoor/repos - site_admin: false - starred_url: https://api.github.com/users/RafayGhafoor/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/RafayGhafoor/subscriptions - type: User - url: https://api.github.com/users/RafayGhafoor - author_association: MEMBER - body: "We have some URLs in the tests -- it would be nice to validate\ - \ them.\r\n\r\n*Originally reported by @jscotka :*\r\n> Maybe one note,\ - \ would be nice to test in tests that URLs are valid for github/gitlba/pagure,\ - \ eg. via urllib download the diff and check if there are few expected\ - \ lines." - closed_at: '2020-05-25T14:18:31Z' + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-07-10T05:57:19Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/342/comments - created_at: '2020-02-26T09:49:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/342/events - html_url: https://github.com/packit/ogr/issues/342 - id: 571202848 - labels: - - color: fbca04 - default: false - description: Reserved for the participants/applicants of the Google - Summer of Code. - id: 1867054141 - name: GSOC - node_id: MDU6TGFiZWwxODY3MDU0MTQx - url: https://api.github.com/repos/packit/ogr/labels/GSOC - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/342/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/434/comments + created_at: '2020-07-09T11:03:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/434/events + html_url: https://github.com/packit/ogr/issues/434 + id: 653971970 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/434/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NzEyMDI4NDg= - number: 342 + node_id: MDU6SXNzdWU2NTM5NzE5NzA= + number: 434 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Validate the urls - updated_at: '2020-05-25T14:18:31Z' - url: https://api.github.com/repos/packit/ogr/issues/342 + title: '[packit] Propose update failed for release 0.12.2' + updated_at: '2020-07-10T09:36:14Z' + url: https://api.github.com/repos/packit/ogr/issues/434 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Currently implemented only for PagurePullRequest.\r\n\r\nIt returns\ - \ bytes in case there's some binary blob in the patch.\r\n\r\nI'd like\ - \ to use this in https://github.com/packit-service/packit-service/pull/627" - closed_at: '2020-05-22T17:27:23Z' + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Job metadata key 'dist_git_branch'\ + \ has been renamed to 'dist_git_branches'\n* Replace Python version\ + \ glob with macro\n* Fix get_file_content was returning byte format\n\ + * Build in copr for master commits and releases\n* Add usage to creating\ + \ PRs on GitLab\n* Fix GitLab pull requests\n* Add tests for creating\ + \ PRs on GitLab\n* [Zuul] Don't redefine base job\n* [Zuul] Use common\ + \ pre-commit job\n* Drop python 3.6\n* Update & run pre-commit\n* Improve\ + \ the message when marking issues as stale\n* Fix remarks from compatibility.md\ + \ review\n* Add compatibility table\n\n\nYou can change it by editing\ + \ `CHANGELOG.md` in the root of this repository and pushing to `0.12.2-release`\ + \ branch before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-07-09T10:57:56Z' comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/415/comments - created_at: '2020-05-22T11:43:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/415/events - html_url: https://github.com/packit/ogr/pull/415 - id: 623151328 + comments_url: https://api.github.com/repos/packit/ogr/issues/433/comments + created_at: '2020-07-09T07:36:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/433/events + html_url: https://github.com/packit/ogr/pull/433 + id: 653835899 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -81689,343 +109671,174 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/415/labels{/name} + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/433/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDIxODc0NDAw - number: 415 + node_id: MDExOlB1bGxSZXF1ZXN0NDQ2Njc2Mjcz + number: 433 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/415.diff - html_url: https://github.com/packit/ogr/pull/415 - patch_url: https://github.com/packit/ogr/pull/415.patch - url: https://api.github.com/repos/packit/ogr/pulls/415 + diff_url: https://github.com/packit/ogr/pull/433.diff + html_url: https://github.com/packit/ogr/pull/433 + patch_url: https://github.com/packit/ogr/pull/433.patch + url: https://api.github.com/repos/packit/ogr/pulls/433 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add PullRequest.patch property - updated_at: '2020-05-25T09:38:26Z' - url: https://api.github.com/repos/packit/ogr/issues/415 + title: 0.12.2 release + updated_at: '2020-07-09T11:01:07Z' + url: https://api.github.com/repos/packit/ogr/issues/433 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f30` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is dirty.This - is not supported.` | - - | `f31` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.12.0.tar.gz. - Reason: ''Not Found''. ` | - - | `f32` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is dirty.This - is not supported.` | - - | `master` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is - dirty.This is not supported.` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-05-21T11:58:35Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/409/comments - created_at: '2020-05-06T15:57:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/409/events - html_url: https://github.com/packit/ogr/issues/409 - id: 613430701 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/409/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MTM0MzA3MDE= - number: 409 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[packit] Propose update failed for release 0.12.0' - updated_at: '2020-05-21T11:58:35Z' - url: https://api.github.com/repos/packit/ogr/issues/409 - user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Figure out how we can return data:\r\n- only when needed\r\n- only\ - \ a limited number of results at first\r\n\r\nAC:\r\n- Provide the same\ - \ API for users of all implementations (e.g. change lists to generators).\r\ - \n- Be transparent to user == download the additional data when the\ - \ user really needs them.\r\n - e.g. Use lazy properties where possible.\r\ - \n- Enable efficient filtering on the results / during the calls.\r\n" - closed_at: null + body: '' + closed_at: '2020-07-09T07:36:32Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/325/comments - created_at: '2020-02-13T18:52:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/325/events - html_url: https://github.com/packit/ogr/issues/325 - id: 564883774 - labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: ff9990 - default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - - color: 42e529 + comments_url: https://api.github.com/repos/packit/ogr/issues/432/comments + created_at: '2020-07-09T07:36:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/432/events + html_url: https://github.com/packit/ogr/issues/432 + id: 653835751 + labels: + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/325/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/432/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NjQ4ODM3NzQ= - number: 325 + node_id: MDU6SXNzdWU2NTM4MzU3NTE= + number: 432 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Laziness - updated_at: '2020-05-18T08:42:29Z' - url: https://api.github.com/repos/packit/ogr/issues/325 + state: closed + title: New patch release + updated_at: '2020-07-09T07:36:32Z' + url: https://api.github.com/repos/packit/ogr/issues/432 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 - events_url: https://api.github.com/users/TomasJani/events{/privacy} - followers_url: https://api.github.com/users/TomasJani/followers - following_url: https://api.github.com/users/TomasJani/following{/other_user} - gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/TomasJani - id: 21237576 - login: TomasJani - node_id: MDQ6VXNlcjIxMjM3NTc2 - organizations_url: https://api.github.com/users/TomasJani/orgs - received_events_url: https://api.github.com/users/TomasJani/received_events - repos_url: https://api.github.com/users/TomasJani/repos - site_admin: false - starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasJani/subscriptions - type: User - url: https://api.github.com/users/TomasJani - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 - events_url: https://api.github.com/users/TomasJani/events{/privacy} - followers_url: https://api.github.com/users/TomasJani/followers - following_url: https://api.github.com/users/TomasJani/following{/other_user} - gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/TomasJani - id: 21237576 - login: TomasJani - node_id: MDQ6VXNlcjIxMjM3NTc2 - organizations_url: https://api.github.com/users/TomasJani/orgs - received_events_url: https://api.github.com/users/TomasJani/received_events - repos_url: https://api.github.com/users/TomasJani/repos - site_admin: false - starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasJani/subscriptions - type: User - url: https://api.github.com/users/TomasJani + assignee: null + assignees: [] author_association: MEMBER - body: "- [x] add the `created` and `edited` properties to the commit flag\ - \ classes\r\n - [x] abstract class\r\n - [x] github:\r\n - https://pygithub.readthedocs.io/en/latest/github_objects/Commit.html#github.Commit.Commit.get_statuses\r\ - \n - [ ] gitlab:\r\n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status\r\ - \n - https://docs.gitlab.com/ce/api/commits.html\r\n - pagure:\r\ - \n - https://src.fedoraproject.org/api/0/ -> `Flags for a commit`\r\ - \n- [x] tests for all implementations" - closed_at: '2020-05-16T16:37:40Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/344/comments - created_at: '2020-03-02T11:25:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/344/events - html_url: https://github.com/packit/ogr/issues/344 - id: 573909124 + body: in https://github.com/packit-service/packit/pull/797 + closed_at: '2020-07-07T06:51:21Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/431/comments + created_at: '2020-07-03T14:49:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/431/events + html_url: https://github.com/packit/ogr/pull/431 + id: 650642351 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/344/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/431/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NzM5MDkxMjQ= - number: 344 + node_id: MDExOlB1bGxSZXF1ZXN0NDQ0MDk0ODQx + number: 431 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/431.diff + html_url: https://github.com/packit/ogr/pull/431 + patch_url: https://github.com/packit/ogr/pull/431.patch + url: https://api.github.com/repos/packit/ogr/pulls/431 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add datetime to commit flags - updated_at: '2020-05-18T08:05:17Z' - url: https://api.github.com/repos/packit/ogr/issues/344 + title: Job metadata key 'dist_git_branch' was renamed to 'dist_git_branches' + updated_at: '2020-07-07T07:13:31Z' + url: https://api.github.com/repos/packit/ogr/issues/431 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "When telling if a user can merge PRs in a GitHub repo, ask GitHub\ - \ for\r\nthe user's permission on the repo instead of checking if the\ - \ user is in\r\nthe list of collaborators.\r\n\r\nThis should lead to\ - \ fewer API calls in cases when the full list of\r\ncollaborators is\ - \ not needed, but it also returns better results: the\r\nlist of collaborators\ - \ does not seem to be always up to date when queries\r\nare done using\ - \ GitHub App tokens.\r\n\r\nRelates to packit-service/packit-service#612.\r\ + body: "This is needed for Python 3.10+.\r\n\r\nSee devel-list message\ + \ for details:\r\n\r\nhttps://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/PQIGCQCRNBYNXBX2ICWEM3PLDLNOG2ZT/\r\ \n\r\nSigned-off-by: Hunor Csomort\xE1ni " - closed_at: '2020-05-12T10:44:25Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/410/comments - created_at: '2020-05-11T13:29:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/410/events - html_url: https://github.com/packit/ogr/pull/410 - id: 615885823 + closed_at: '2020-06-30T07:33:05Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/430/comments + created_at: '2020-06-30T07:12:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/430/events + html_url: https://github.com/packit/ogr/pull/430 + id: 647926952 labels: - color: 0e8a16 default: false @@ -82034,24 +109847,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/410/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/430/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDE2MTA1NjQy - number: 410 + node_id: MDExOlB1bGxSZXF1ZXN0NDQxODMwMDgy + number: 430 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/410.diff - html_url: https://github.com/packit/ogr/pull/410 - patch_url: https://github.com/packit/ogr/pull/410.patch - url: https://api.github.com/repos/packit/ogr/pulls/410 + diff_url: https://github.com/packit/ogr/pull/430.diff + html_url: https://github.com/packit/ogr/pull/430 + patch_url: https://github.com/packit/ogr/pull/430.patch + url: https://api.github.com/repos/packit/ogr/pulls/430 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'GitHub: query only one user when telling if a user can merge PRs' - updated_at: '2020-05-12T10:44:25Z' - url: https://api.github.com/repos/packit/ogr/issues/410 + title: Replace Python version glob with macro + updated_at: '2020-06-30T07:33:06Z' + url: https://api.github.com/repos/packit/ogr/issues/430 user: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -82073,15 +109886,28 @@ requests.sessions: assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Fixes #216 \r\n\r\nAdded to Github and Gitlab, Pagure is still\ - \ left to do." - closed_at: '2020-05-11T19:45:01Z' - comments: 26 - comments_url: https://api.github.com/repos/packit/ogr/issues/376/comments - created_at: '2020-04-09T16:55:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/376/events - html_url: https://github.com/packit/ogr/pull/376 - id: 597420110 + body: "The object [gitlab.v4.objects.ProjectFile](https://python-gitlab.readthedocs.io/en/stable/api/gitlab.v4.html#gitlab.v4.objects.ProjectFile)\ + \ with the function [decode()](https://python-gitlab.readthedocs.io/en/stable/api/gitlab.v4.html#gitlab.v4.objects.ProjectFile.decode)\ + \ will return bytes -\r\n\r\n`b'---\\nspecfile_path: hello.spec\\nsynced_files:\\\ + n - hello.spec\\n# actions:\\n# post-upstream-clone: \"python3 setup.py\ + \ sdist --dist-dir .\"\\n# current_version_command: [\"python3\", \"\ + setup.py\", \"--version\"]\\n# create_tarball_command: [\"python3\"\ + , \"setup.py\", \"sdist\", \"--dist-dir\", \".\"]\\njobs:\\n- job: copr_build\\\ + n trigger: pull_request\\n metadata:\\n targets:\\n - fedora-30-x86_64'`\r\ + \n\r\nExpected string - \r\n\r\n```\r\n---\r\nspecfile_path: hello.spec\r\ + \nsynced_files:\r\n - hello.spec\r\n# actions:\r\n# post-upstream-clone:\ + \ \"python3 setup.py sdist --dist-dir .\"\r\n# current_version_command:\ + \ [\"python3\", \"setup.py\", \"--version\"]\r\n# create_tarball_command:\ + \ [\"python3\", \"setup.py\", \"sdist\", \"--dist-dir\", \".\"]\r\n\ + jobs:\r\n- job: copr_build\r\n trigger: pull_request\r\n metadata:\r\ + \n targets:\r\n - fedora-30-x86_64\r\n```\r\n" + closed_at: '2020-06-29T12:03:35Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/429/comments + created_at: '2020-06-28T21:32:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/429/events + html_url: https://github.com/packit/ogr/pull/429 + id: 647009475 labels: - color: 0e8a16 default: false @@ -82090,24 +109916,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/376/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/429/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAxNTM3MTMx - number: 376 + node_id: MDExOlB1bGxSZXF1ZXN0NDQxMTE3MTUw + number: 429 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/376.diff - html_url: https://github.com/packit/ogr/pull/376 - patch_url: https://github.com/packit/ogr/pull/376.patch - url: https://api.github.com/repos/packit/ogr/pulls/376 + diff_url: https://github.com/packit/ogr/pull/429.diff + html_url: https://github.com/packit/ogr/pull/429 + patch_url: https://github.com/packit/ogr/pull/429.patch + url: https://api.github.com/repos/packit/ogr/pulls/429 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Adding collaborators to projects - (Github, Gitlab, Pagure) - updated_at: '2020-05-11T19:45:01Z' - url: https://api.github.com/repos/packit/ogr/issues/376 + title: Fix get_file_content() returning bytes + updated_at: '2020-06-29T12:03:35Z' + url: https://api.github.com/repos/packit/ogr/issues/429 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -82126,73 +109952,27 @@ requests.sessions: type: User url: https://api.github.com/users/shreyaspapi - active_lock_reason: null - assignee: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos - site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions - type: User - url: https://api.github.com/users/shreyaspapi - assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos - site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions - type: User - url: https://api.github.com/users/shreyaspapi - author_association: MEMBER - body: "- [ ] Add the `add_to_collaborators` method to `abstract.GitProject`.\ - \ (And raise `NotImplementedError`.)\r\n- [ ] Implement the method for\ - \ all forges (GitHub, GitLab, Pagure).\r\n- [ ] Add tests for this method.\r\ - \n\r\nDocumentation:\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-members\r\ - \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ - \n- https://pagure.io/api/0/ ( > Modify ACLs on a project ?)\r\n" - closed_at: '2020-05-11T19:45:01Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/216/comments - created_at: '2019-09-20T05:52:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/216/events - html_url: https://github.com/packit/ogr/issues/216 - id: 496159491 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Would be nice to be able to manipulate labels on pagure issues.\ + \ i.e. `get_issue_labels()` `add_issue_labels()`, etc.. \r\n\r\n\r\n\ + *update by @lachmanfrantisek:*\r\n\r\nTODO: \r\n- [x] `labels` property\ + \ for `PagureIssue` class (https://github.com/packit-service/ogr/pull/321\ + \ by @cverna )\r\n- [x] `labels` argument for `PagureIssue.create` and\ + \ `PagureProject.create_issue` (https://github.com/packit-service/ogr/pull/321\ + \ by @cverna)\r\n- [ ] `labels` property for `PagurePullRequest` class\r\ + \n- [ ] `labels` argument for `PagurePullRequest.create` and `PagureProject.create_pr`\r\ + \n- [ ] `add_label` methods blocked by the PagureAPI (https://pagure.io/pagure/issue/2175)\r\ + \n- [ ] add tests for all of those\r\n\r\n" + closed_at: null + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/147/comments + created_at: '2019-08-09T22:23:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/147/events + html_url: https://github.com/packit/ogr/issues/147 + id: 479187441 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 1d76db default: false description: Related to Pagure implementation. @@ -82207,169 +109987,89 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/216/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0OTYxNTk0OTE= - number: 216 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Adding collaborators to projects - updated_at: '2020-05-11T19:45:01Z' - url: https://api.github.com/repos/packit/ogr/issues/216 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Declare repositories on\ - \ git.centos.org not private\n* Create PR works for Github and fixed\ - \ test\n* Refactor getting projects internally\n* Add tests for `source_project`\ - \ on PullRequest\n* Implement `source_project` on PullRequest\n* Add\ - \ source/target_project to PullRequest\n* Fix tests after requre update\n\ - * Implement `head_commit` for GitHub and GitLab\n* Make tests for `head_commit`\ - \ on PullRequest\n* spec: don't do python_provide on F33+\n\n\nYou can\ - \ change it by editing `CHANGELOG.md` in the root of this repository\ - \ and pushing to `0.12.0-release` branch before merging this PR.\nI\ - \ didn't find any files where `__version__` is set." - closed_at: '2020-05-06T15:53:24Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/408/comments - created_at: '2020-05-06T13:34:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/408/events - html_url: https://github.com/packit/ogr/pull/408 - id: 613324595 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed + - color: bf6b0b default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/408/labels{/name} + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + labels_url: https://api.github.com/repos/packit/ogr/issues/147/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDE0MTAwMTc4 - number: 408 + node_id: MDU6SXNzdWU0NzkxODc0NDE= + number: 147 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/408.diff - html_url: https://github.com/packit/ogr/pull/408 - patch_url: https://github.com/packit/ogr/pull/408.patch - url: https://api.github.com/repos/packit/ogr/pulls/408 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.12.0 release - updated_at: '2020-05-06T15:57:57Z' - url: https://api.github.com/repos/packit/ogr/issues/408 + state: open + title: create label* functions for pagure backend + updated_at: '2020-06-29T06:46:49Z' + url: https://api.github.com/repos/packit/ogr/issues/147 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 + events_url: https://api.github.com/users/dustymabe/events{/privacy} + followers_url: https://api.github.com/users/dustymabe/followers + following_url: https://api.github.com/users/dustymabe/following{/other_user} + gists_url: https://api.github.com/users/dustymabe/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/dustymabe + id: 4530030 + login: dustymabe + node_id: MDQ6VXNlcjQ1MzAwMzA= + organizations_url: https://api.github.com/users/dustymabe/orgs + received_events_url: https://api.github.com/users/dustymabe/received_events + repos_url: https://api.github.com/users/dustymabe/repos 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 + starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dustymabe/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/dustymabe - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: Let's create a new release! - closed_at: '2020-05-06T13:34:20Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/407/comments - created_at: '2020-05-06T13:32:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/407/events - html_url: https://github.com/packit/ogr/issues/407 - id: 613323657 + body: "- Build in Copr for master commits and releases.\r\n- We are using\ + \ same copr projects as we do for packit.\r\n- Relates to https://github.com/packit-service/ogr/pull/428." + closed_at: '2020-06-26T12:08:08Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/428/comments + created_at: '2020-06-26T08:42:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/428/events + html_url: https://github.com/packit/ogr/pull/428 + id: 646108018 labels: - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 7cf4be default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/407/labels{/name} + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/428/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MTMzMjM2NTc= - number: 407 + node_id: MDExOlB1bGxSZXF1ZXN0NDQwNDU5MTk2 + number: 428 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/428.diff + html_url: https://github.com/packit/ogr/pull/428 + patch_url: https://github.com/packit/ogr/pull/428.patch + url: https://api.github.com/repos/packit/ogr/pulls/428 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New minor release - updated_at: '2020-05-06T13:34:20Z' - url: https://api.github.com/repos/packit/ogr/issues/407 + title: Copr build for master and releases + updated_at: '2020-06-26T12:13:35Z' + url: https://api.github.com/repos/packit/ogr/issues/428 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -82390,17 +110090,83 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Related to #307 \r\nIf the fork_name arg is passed, PR is created\ - \ on the forked repo.\r\nIf the fork_name arg is not passed PR is made\ - \ to parent repo. \r\n\r\nTested for (fork-fork, fork-upstream, upstream-upstream)" - closed_at: '2020-05-05T07:34:36Z' - comments: 16 - comments_url: https://api.github.com/repos/packit/ogr/issues/404/comments - created_at: '2020-05-01T20:16:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/404/events - html_url: https://github.com/packit/ogr/pull/404 - id: 610947143 + author_association: MEMBER + body: "By looking at the code I noticed there are no tests for creating\ + \ pull requests in different scenarios (like Github has) and also the\ + \ code doesn't seem to be compliant to the documentation of ogr.\r\n\ + \r\n- [ ] Add tests\r\n- [ ] Fix the implementation\r\n\r\nMay be\ + \ blocked by #412" + closed_at: '2020-06-25T10:41:12Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/414/comments + created_at: '2020-05-20T21:34:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/414/events + html_url: https://github.com/packit/ogr/issues/414 + id: 622098916 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/414/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjIwOTg5MTY= + number: 414 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Pull requests on Gitlab projects + updated_at: '2020-06-25T10:41:12Z' + url: https://api.github.com/repos/packit/ogr/issues/414 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2020-06-23T15:27:42Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/427/comments + created_at: '2020-06-23T14:34:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/427/events + html_url: https://github.com/packit/ogr/pull/427 + id: 643894847 labels: - color: 0e8a16 default: false @@ -82409,89 +110175,84 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/404/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/427/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDEyMjg0MDE0 - number: 404 + node_id: MDExOlB1bGxSZXF1ZXN0NDM4NjEzNzgx + number: 427 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/404.diff - html_url: https://github.com/packit/ogr/pull/404 - patch_url: https://github.com/packit/ogr/pull/404.patch - url: https://api.github.com/repos/packit/ogr/pulls/404 + diff_url: https://github.com/packit/ogr/pull/427.diff + html_url: https://github.com/packit/ogr/pull/427 + patch_url: https://github.com/packit/ogr/pull/427.patch + url: https://api.github.com/repos/packit/ogr/pulls/427 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Create PR's to forked Repo fixed for Github - updated_at: '2020-05-05T12:36:03Z' - url: https://api.github.com/repos/packit/ogr/issues/404 + title: Zuul & pre-commit related changes + updated_at: '2020-06-24T08:10:43Z' + url: https://api.github.com/repos/packit/ogr/issues/427 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 - events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} - followers_url: https://api.github.com/users/saisankargochhayat/followers - following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} - gists_url: https://api.github.com/users/saisankargochhayat/gists{/gist_id} + 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/saisankargochhayat - id: 9396452 - login: saisankargochhayat - node_id: MDQ6VXNlcjkzOTY0NTI= - organizations_url: https://api.github.com/users/saisankargochhayat/orgs - received_events_url: https://api.github.com/users/saisankargochhayat/received_events - repos_url: https://api.github.com/users/saisankargochhayat/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions + 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/saisankargochhayat + url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.500885 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; + Date: Tue, 13 Apr 2021 17:59:50 GMT + ETag: W/"9f430c18023d2a5d5ce29920aeaeb75887843a97bec6b99077f47b795a489c13" + Link: ; + rel="prev", ; + rel="next", ; rel="last", ; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F7DB00:1917ED3:6075DC16 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4902' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '98' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=4: + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=7: - metadata: - latency: 0.6000852584838867 + latency: 0.5966589450836182 module_call_list: - unittest.case - requre.online_replacing @@ -82511,39 +110272,36 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "I am looking at this code:\r\n\r\nhttps://github.com/packit-service/ogr/blob/b7c5333c4df64ecdf854a5375c207a789ca51a01/ogr/services/github/pull_request.py#L111\r\ - \n\r\nwhat if I want to create a PR against my fork and not the upstream\ - \ project?" - closed_at: '2020-05-05T10:14:22Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/307/comments - created_at: '2020-01-14T11:20:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/307/events - html_url: https://github.com/packit/ogr/issues/307 - id: 549501262 + author_association: CONTRIBUTOR + body: "* We first to need to create an abstraction on top of all forges\r\ + \n* and then implement it for each\r\n\r\nThis is an example how pagure\ + \ does it:\r\n```python\r\nmod_acls = {\r\n 'user_type': 'group',\r\ + \n 'name': 'git-packit-team',\r\n 'acl': 'admin',\r\n\ + }\r\n\r\nreq = requests.post(\r\n url + 'source-git/%s/git/modifyacls'\ + \ % (project),\r\n headers=headers,\r\n verify=False,\r\ + \n data=mod_acls\r\n)\r\n```" + closed_at: '2020-06-22T13:36:26Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/364/comments + created_at: '2020-03-25T12:55:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/364/events + html_url: https://github.com/packit/ogr/issues/364 + id: 587676376 labels: - - color: '000000' + - color: a2eeef default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: '000000' default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale - color: 42e529 default: false description: This issue was already processed and well defined. @@ -82551,19 +110309,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/307/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/364/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDk1MDEyNjI= - number: 307 + node_id: MDU6SXNzdWU1ODc2NzYzNzY= + number: 364 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: how can I create a PR against my fork - updated_at: '2020-05-05T10:14:22Z' - url: https://api.github.com/repos/packit/ogr/issues/307 + title: provide a way to modify ACLs of repositories + updated_at: '2020-06-22T13:36:27Z' + url: https://api.github.com/repos/packit/ogr/issues/364 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -82585,231 +110343,60 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "The best solution though would be to make this list configurable.\ - \ But I'm in a hurry now :slightly_smiling_face: \r\n\r\nSigned-off-by:\ - \ Hunor Csomort\xE1ni " - closed_at: '2020-05-05T09:54:09Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/405/comments - created_at: '2020-05-05T09:34:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/405/events - html_url: https://github.com/packit/ogr/pull/405 - id: 612468201 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/405/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDEzNDA2MjI3 - number: 405 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/405.diff - html_url: https://github.com/packit/ogr/pull/405 - patch_url: https://github.com/packit/ogr/pull/405.patch - url: https://api.github.com/repos/packit/ogr/pulls/405 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Declare repositories on git.centos.org not private - updated_at: '2020-05-05T09:54:09Z' - url: https://api.github.com/repos/packit/ogr/issues/405 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Closes #400\r\n\r\n# TODO\r\n\r\n(copied from issue)\r\n\r\n- [x]\ - \ add `source_project` property (abstract and implementations) returning\ - \ the project with the source branch\r\n- [x] create tests:\r\n - [x]\ - \ basic PR from `fork` to `upstream`\r\n - [x] renamed `fork`\r\n \ - \ - [x] renamed `upstream`\r\n - [x] PR from `fork` to `fork`\r\n \ - \ - [x] PR from `upstream` to `upstream`\r\n- [x] ? `target_project`\ - \ property that will replace the current `project` one to make it clear\r\ - \n - [x] don't forget to support both and deprecate the old one\r\n\ - - [x] squash commits\r\n- [x] check getting projects by internal representation\ - \ (github: creating from github.Repository, gitlab: from project_id)\r\ - \n - [x] Github: project uses almost the same way of initializing\ - \ `GithubProject` in `L129, L172, L385, L564`\r\n\r\n# Discussion\r\n\ - \r\n- [x] deprecating `.project`\r\n - [x] provide `.project` as\ - \ a property?\r\n - [ ] if so, do we need setters for them outside\ - \ class?\r\n- [ ] consider having `GithubProject.from_github_repository`,\ - \ which would take just the github repo from PyGithub and return new\ - \ project\r\n- [ ] consider creating GitLab projects just from _project\ - \ id_ (python-gitlab doesn't offer any way to get to source project\ - \ than ID)" - closed_at: '2020-04-30T16:23:19Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/401/comments - created_at: '2020-04-27T20:33:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/401/events - html_url: https://github.com/packit/ogr/pull/401 - id: 607834495 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/401/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA5NzMxMzg3 - number: 401 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/401.diff - html_url: https://github.com/packit/ogr/pull/401 - patch_url: https://github.com/packit/ogr/pull/401.patch - url: https://api.github.com/repos/packit/ogr/pulls/401 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Enhance project references in pull requests - updated_at: '2020-04-30T16:34:07Z' - url: https://api.github.com/repos/packit/ogr/issues/401 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: MEMBER - body: "Now, we have only `project` property in the PR class, but it's\ - \ hard to get the source project. (It can be sometimes very tricky to\ - \ pick the right repo from the OGR's user perspective.)\r\n\r\n- [ ]\ - \ add `source_project` property (abstract and implementations) returning\ - \ the project with the source branch\r\n- [ ] create tests:\r\n - [\ - \ ] basic PR from `fork` to `upstream`\r\n - [ ] renamed `fork`\r\n\ - \ - [ ] renamed `upstream`\r\n - [ ] PR from `fork` to `fork`\r\n\ - \ - [ ] PR from `upstream` to `upstream`\r\n- [ ] ? `target_project`\ - \ property that will replace the current `project` one to make it clear\r\ - \n - [ ] don't forget to support both and deprecate the old one" - closed_at: '2020-04-30T16:23:19Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/400/comments - created_at: '2020-04-27T15:09:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/400/events - html_url: https://github.com/packit/ogr/issues/400 - id: 607627181 + body: "In #226 we found multiple problems with the offline x online handling.\r\ + \n\r\nWe need to:\r\n\r\n- [x] agree on the rules (e.g. properties cannot\ + \ touch the services)\r\n- [ ] document the rules\r\n- [x] fix the current\ + \ implementation(s) to satisfy the rules\r\n - use deprecations if\ + \ needed\r\n\r\nRelated to #214 " + closed_at: null + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/229/comments + created_at: '2019-10-01T07:47:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/229/events + html_url: https://github.com/packit/ogr/issues/229 + id: 500722982 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: bf6b0b default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: c2ef58 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/400/labels{/name} + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/229/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDc2MjcxODE= - number: 400 + node_id: MDU6SXNzdWU1MDA3MjI5ODI= + number: 229 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: source_project property for PR class - updated_at: '2020-04-30T16:23:19Z' - url: https://api.github.com/repos/packit/ogr/issues/400 + state: open + title: Investigate online x offline handling + updated_at: '2020-06-15T08:46:36Z' + url: https://api.github.com/repos/packit/ogr/issues/229 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -82831,201 +110418,65 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-04-30T15:29:45Z' + body: Needed in https://github.com/packit-service/packit-service/pull/662 + closed_at: '2020-06-11T07:53:09Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/403/comments - created_at: '2020-04-30T15:05:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/403/events - html_url: https://github.com/packit/ogr/pull/403 - id: 610115589 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/403/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDExNjA3OTEx - number: 403 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/403.diff - html_url: https://github.com/packit/ogr/pull/403 - patch_url: https://github.com/packit/ogr/pull/403.patch - url: https://api.github.com/repos/packit/ogr/pulls/403 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Fix tests after requre update - updated_at: '2020-04-30T15:36:23Z' - url: https://api.github.com/repos/packit/ogr/issues/403 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Closes #368\r\n\r\n- [x] Implements `head_commit` for Github and\ - \ Gitlab\r\n- [x] Integration tests for all implementations" - closed_at: '2020-04-30T13:57:52Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/402/comments - created_at: '2020-04-30T10:24:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/402/events - html_url: https://github.com/packit/ogr/pull/402 - id: 609796401 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/402/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/425/comments + created_at: '2020-06-08T10:16:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/425/events + html_url: https://github.com/packit/ogr/pull/425 + id: 634481719 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/425/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDExMzIzMDM3 - number: 402 + node_id: MDExOlB1bGxSZXF1ZXN0NDMxMDI4NDEw + number: 425 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/402.diff - html_url: https://github.com/packit/ogr/pull/402 - patch_url: https://github.com/packit/ogr/pull/402.patch - url: https://api.github.com/repos/packit/ogr/pulls/402 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Head commit on PRs - updated_at: '2020-04-30T14:06:58Z' - url: https://api.github.com/repos/packit/ogr/issues/402 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: Implement PullRequest.head_commit for github and gitlab - closed_at: '2020-04-30T13:57:51Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/368/comments - created_at: '2020-03-27T10:47:08Z' - events_url: https://api.github.com/repos/packit/ogr/issues/368/events - html_url: https://github.com/packit/ogr/issues/368 - id: 589045263 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/368/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1ODkwNDUyNjM= - number: 368 - performed_via_github_app: null + diff_url: https://github.com/packit/ogr/pull/425.diff + html_url: https://github.com/packit/ogr/pull/425 + patch_url: https://github.com/packit/ogr/pull/425.patch + url: https://api.github.com/repos/packit/ogr/pulls/425 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement PullRequest.head_commit for github and gitlab - updated_at: '2020-04-30T13:57:51Z' - url: https://api.github.com/repos/packit/ogr/issues/368 + title: Implement PagurePullRequest.get_flags() + updated_at: '2020-06-11T07:53:14Z' + url: https://api.github.com/repos/packit/ogr/issues/425 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'packaging guidelines say this is automatic since F33 and we should - - disable it - - - https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_provides' - closed_at: '2020-04-27T17:21:08Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/399/comments - created_at: '2020-04-27T10:25:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/399/events - html_url: https://github.com/packit/ogr/pull/399 - id: 607427901 + body: "Use literal style (|) in the YAML string, in order to keep new-lines\ + \ and\r\nhave a better formatting.\r\n\r\nBe explicit about the dates.\r\ + \n\r\nBe more English (hopefully).\r\n\r\nSigned-off-by: Hunor Csomort\xE1\ + ni " + closed_at: '2020-06-10T13:35:30Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/426/comments + created_at: '2020-06-10T06:41:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/426/events + html_url: https://github.com/packit/ogr/pull/426 + id: 635974319 labels: - color: 0e8a16 default: false @@ -83034,210 +110485,110 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/399/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/426/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA5NDAzNjI3 - number: 399 + node_id: MDExOlB1bGxSZXF1ZXN0NDMyMjM2NzY4 + number: 426 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/399.diff - html_url: https://github.com/packit/ogr/pull/399 - patch_url: https://github.com/packit/ogr/pull/399.patch - url: https://api.github.com/repos/packit/ogr/pulls/399 + diff_url: https://github.com/packit/ogr/pull/426.diff + html_url: https://github.com/packit/ogr/pull/426 + patch_url: https://github.com/packit/ogr/pull/426.patch + url: https://api.github.com/repos/packit/ogr/pulls/426 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'spec: don''t do python_provide on F33+' - updated_at: '2020-04-28T08:16:08Z' - url: https://api.github.com/repos/packit/ogr/issues/399 + title: Improve the message when marking issues as stale + updated_at: '2020-06-10T13:35:30Z' + url: https://api.github.com/repos/packit/ogr/issues/426 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f30` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.3.tar.gz. - Reason: ''Not Found''. ` | - - | `f31` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This - is not supported.` | - - | `f32` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This - is not supported.` | - - | `master` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is - dirty.This is not supported.` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-04-27T10:09:07Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/398/comments - created_at: '2020-04-27T09:59:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/398/events - html_url: https://github.com/packit/ogr/issues/398 - id: 607410636 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/398/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MDc0MTA2MzY= - number: 398 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[packit] Propose update failed for release 0.11.3' - updated_at: '2020-04-27T10:11:01Z' - url: https://api.github.com/repos/packit/ogr/issues/398 - user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Fix pagination in GitLab\ - \ and add tests\n* Fix pagination for GitlabCommitFlag\n* Add tests\ - \ for PagureIssue setters\n* Implement Issue setters for Pagure\n* revert\ - \ rpmautospec\n* spec: dont hardcode name/version, use macros instead\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.11.3-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2020-04-27T09:58:02Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/393/comments - created_at: '2020-04-24T07:15:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/393/events - html_url: https://github.com/packit/ogr/pull/393 - id: 606096113 + body: "During pre-commit I'm getting the following issues (Trying to solve\ + \ #338 )\r\n```\r\nogr/abstract.py:731: error: Too many arguments\r\n\ + ogr/services/github/service.py:172: error: Too many arguments\r\n```" + closed_at: '2020-06-08T19:38:15Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/362/comments + created_at: '2020-03-24T15:41:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/362/events + html_url: https://github.com/packit/ogr/pull/362 + id: 587056910 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - - color: ededed + - color: '000000' default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/393/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/362/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA4Mzc0MDEw - number: 393 + node_id: MDExOlB1bGxSZXF1ZXN0MzkzMDcwNzg0 + number: 362 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/393.diff - html_url: https://github.com/packit/ogr/pull/393 - patch_url: https://github.com/packit/ogr/pull/393.patch - url: https://api.github.com/repos/packit/ogr/pulls/393 + diff_url: https://github.com/packit/ogr/pull/362.diff + html_url: https://github.com/packit/ogr/pull/362 + patch_url: https://github.com/packit/ogr/pull/362.patch + url: https://api.github.com/repos/packit/ogr/pulls/362 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.11.3 release - updated_at: '2020-04-27T10:00:28Z' - url: https://api.github.com/repos/packit/ogr/issues/393 + title: adding hostname property + updated_at: '2020-06-08T19:38:15Z' + url: https://api.github.com/repos/packit/ogr/issues/362 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/36095091?v=4 + events_url: https://api.github.com/users/dinolinjob/events{/privacy} + followers_url: https://api.github.com/users/dinolinjob/followers + following_url: https://api.github.com/users/dinolinjob/following{/other_user} + gists_url: https://api.github.com/users/dinolinjob/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/dinolinjob + id: 36095091 + login: dinolinjob + node_id: MDQ6VXNlcjM2MDk1MDkx + organizations_url: https://api.github.com/users/dinolinjob/orgs + received_events_url: https://api.github.com/users/dinolinjob/received_events + repos_url: https://api.github.com/users/dinolinjob/repos 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 + starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/dinolinjob - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #396' - closed_at: '2020-04-26T19:23:07Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/397/comments - created_at: '2020-04-25T11:55:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/397/events - html_url: https://github.com/packit/ogr/pull/397 - id: 606754068 + body: "Fixes #406\r\n\r\n- [x] Fix unit tests" + closed_at: '2020-05-26T09:47:07Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/411/comments + created_at: '2020-05-15T09:31:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/411/events + html_url: https://github.com/packit/ogr/pull/411 + id: 618832407 labels: - color: 0e8a16 default: false @@ -83246,63 +110597,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/397/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/411/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA4ODk2ODgw - number: 397 + node_id: MDExOlB1bGxSZXF1ZXN0NDE4NDgxODAx + number: 411 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/397.diff - html_url: https://github.com/packit/ogr/pull/397 - patch_url: https://github.com/packit/ogr/pull/397.patch - url: https://api.github.com/repos/packit/ogr/pulls/397 + diff_url: https://github.com/packit/ogr/pull/411.diff + html_url: https://github.com/packit/ogr/pull/411 + patch_url: https://github.com/packit/ogr/pull/411.patch + url: https://api.github.com/repos/packit/ogr/pulls/411 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Switch backticks to apostrophes in Pagure errors - updated_at: '2020-04-27T09:06:09Z' - url: https://api.github.com/repos/packit/ogr/issues/397 + title: Creating PRs from `fork` to `other-fork` on Github + updated_at: '2020-06-07T18:05:12Z' + url: https://api.github.com/repos/packit/ogr/issues/411 user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -83320,62 +110632,19 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - author_association: MEMBER - body: "As can be seen in https://github.com/abrt/reportd/issues/10 both\ - \ [ogr](https://github.com/packit-service/ogr/blob/master/ogr/services/pagure/service.py#L150)\ - \ and [packit-service](https://github.com/packit-service/packit-service/blob/master/packit_service/worker/handlers/github_handlers.py#L179)\ - \ use backticks, which results in strange Github comments.\r\n\r\nCan\ - \ ogr use apostrophes instead?" - closed_at: '2020-04-26T19:23:07Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/396/comments - created_at: '2020-04-25T08:39:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/396/events - html_url: https://github.com/packit/ogr/issues/396 - id: 606721347 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/396/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MDY3MjEzNDc= - number: 396 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Use apostrophe rather than backtics in log messages. - updated_at: '2020-04-26T19:23:07Z' - url: https://api.github.com/repos/packit/ogr/issues/396 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-04-24T18:06:20Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/395/comments - created_at: '2020-04-24T12:55:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/395/events - html_url: https://github.com/packit/ogr/pull/395 - id: 606292445 + body: '- [ ] should be thoroughly checked (`Project`, `Service`, `User`, + `Release` should be fine)' + closed_at: '2020-06-05T15:20:24Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/311/comments + created_at: '2020-01-24T22:31:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/311/events + html_url: https://github.com/packit/ogr/pull/311 + id: 554985894 labels: - color: 0e8a16 default: false @@ -83384,24 +110653,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/395/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/311/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA4NTM0Mzk4 - number: 395 + node_id: MDExOlB1bGxSZXF1ZXN0MzY3MDQxOTA2 + number: 311 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/395.diff - html_url: https://github.com/packit/ogr/pull/395 - patch_url: https://github.com/packit/ogr/pull/395.patch - url: https://api.github.com/repos/packit/ogr/pulls/395 + diff_url: https://github.com/packit/ogr/pull/311.diff + html_url: https://github.com/packit/ogr/pull/311 + patch_url: https://github.com/packit/ogr/pull/311.patch + url: https://api.github.com/repos/packit/ogr/pulls/311 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add is_fork and username to PagureProject __str__ - updated_at: '2020-04-24T18:25:00Z' - url: https://api.github.com/repos/packit/ogr/issues/395 + title: Add compatibility table + updated_at: '2020-06-05T15:36:55Z' + url: https://api.github.com/repos/packit/ogr/issues/311 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -83422,70 +110691,85 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-04-24T13:31:09Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/394/comments - created_at: '2020-04-24T10:45:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/394/events - html_url: https://github.com/packit/ogr/pull/394 - id: 606221125 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Fix unit tests for Github\ + \ PRs\n* Implement creating PRs fork->other-fork on Github\n* Use custom_instances\ + \ to provide custom_mapping\n* Add PullRequest.patch property\n* GitHub:\ + \ query only one user when telling if a user can merge PRs\n* Adding\ + \ tests for add_user\n* Adding collaborators to projects - (Github,\ + \ Gitlab)\n\n\nYou can change it by editing `CHANGELOG.md` in the root\ + \ of this repository and pushing to `0.12.1-release` branch before merging\ + \ this PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-05-27T13:46:01Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/422/comments + created_at: '2020-05-26T15:00:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/422/events + html_url: https://github.com/packit/ogr/pull/422 + id: 624951772 labels: - - color: 0e8a16 + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/394/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/422/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA4NDc1OTAz - number: 394 + node_id: MDExOlB1bGxSZXF1ZXN0NDIzMjYxMzM2 + number: 422 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/394.diff - html_url: https://github.com/packit/ogr/pull/394 - patch_url: https://github.com/packit/ogr/pull/394.patch - url: https://api.github.com/repos/packit/ogr/pulls/394 + diff_url: https://github.com/packit/ogr/pull/422.diff + html_url: https://github.com/packit/ogr/pull/422 + patch_url: https://github.com/packit/ogr/pull/422.patch + url: https://api.github.com/repos/packit/ogr/pulls/422 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Zuul related refactoring changes - updated_at: '2020-04-24T13:33:17Z' - url: https://api.github.com/repos/packit/ogr/issues/394 + title: 0.12.1 release + updated_at: '2020-05-27T13:47:20Z' + url: https://api.github.com/repos/packit/ogr/issues/422 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Thanks in advance! - closed_at: '2020-04-24T07:15:34Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/385/comments - created_at: '2020-04-16T07:48:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/385/events - html_url: https://github.com/packit/ogr/issues/385 - id: 600821635 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-05-26T15:00:38Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/421/comments + created_at: '2020-05-26T14:59:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/421/events + html_url: https://github.com/packit/ogr/issues/421 + id: 624950979 labels: - color: ededed default: false @@ -83501,93 +110785,74 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/385/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/421/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDA4MjE2MzU= - number: 385 + node_id: MDU6SXNzdWU2MjQ5NTA5Nzk= + number: 421 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed title: New patch release - updated_at: '2020-04-24T07:15:34Z' - url: https://api.github.com/repos/packit/ogr/issues/385 + updated_at: '2020-05-26T15:00:38Z' + url: https://api.github.com/repos/packit/ogr/issues/421 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Create a class decorator that would iterate through members of\ - \ class and check if superclass has the same member with docstring,\ - \ if so, copy the docstring.\r\n\r\nReduces the unnecessary copy-pasting\ - \ of docstrings." - closed_at: '2020-04-23T11:37:34Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/271/comments - created_at: '2019-11-13T11:21:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/271/events - html_url: https://github.com/packit/ogr/issues/271 - id: 522140617 + body: "After merging #404 there's no support only for creating PR from\ + \ one fork to different fork.\r\n\r\nPyGithub (GitHub API respectively)\ + \ doesn't allow creating pull requests on a repository we're \"merging\"\ + \ from.\r\n\r\n- [ ] implement getting other fork repository when creating\ + \ PR against it (internal Repository should be enough)\r\n - [ ]\ + \ handle non-existing fork" + closed_at: '2020-05-26T09:47:07Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/406/comments + created_at: '2020-05-05T10:19:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/406/events + html_url: https://github.com/packit/ogr/issues/406 + id: 612492491 labels: - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 + - color: '000000' default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/271/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + labels_url: https://api.github.com/repos/packit/ogr/issues/406/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MjIxNDA2MTc= - number: 271 + node_id: MDU6SXNzdWU2MTI0OTI0OTE= + number: 406 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Inherit docstrings - updated_at: '2020-04-23T11:37:34Z' - url: https://api.github.com/repos/packit/ogr/issues/271 + title: Creating pull requests from fork to other fork + updated_at: '2020-05-26T09:47:07Z' + url: https://api.github.com/repos/packit/ogr/issues/406 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -83609,216 +110874,174 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Shoudn't be this working?\r\n\r\nconfig:\r\n```\r\nauthentication:\r\ - \n git.stg.centos.org:\r\n instance_url: https://git.stg.centos.org\r\ - \n token: ---token---\r\n type: pagure\r\n```\r\nerror:\r\n```\r\ - \nAuthentication for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ - \ is missing in the config.\r\nTraceback (most recent call last):\r\n\ - \ File \"/home/sakalosj/projects/packit/packit/config/config.py\",\ - \ line 203, in _get_project\r\n url=url, custom_instances=self.services,\ - \ **get_project_kwargs\r\n File \"/home/sakalosj/projects/ogr/ogr/factory.py\"\ - , line 83, in get_project\r\n kls = get_service_class(url=url, service_mapping_update=service_mapping_update)\r\ - \n File \"/home/sakalosj/projects/ogr/ogr/factory.py\", line 144, in\ - \ get_service_class\r\n raise OgrException(\"No matching service\ - \ was found.\")\r\nogr.exceptions.OgrException: No matching service\ - \ was found.\r\n\r\nDuring handling of the above exception, another\ - \ exception occurred:\r\n\r\nTraceback (most recent call last):\r\n\ - \ File \"/home/sakalosj/projects/packit-service/tmp_local/runner.py\"\ - , line 63, in \r\n process_new_pr()\r\n File \"/home/sakalosj/projects/packit-service/tmp_local/runner.py\"\ - , line 22, in process_new_pr\r\n SteveJobs().process_message(event=new_pr,\ - \ source=\"centosmsg\")\r\n File \"/home/sakalosj/projects/packit-service/packit_service/worker/jobs.py\"\ - , line 320, in process_message\r\n if project:\r\n File \"/home/sakalosj/projects/packit/packit/config/config.py\"\ - , line 208, in _get_project\r\n raise PackitConfigException(msg,\ - \ ex)\r\npackit.exceptions.PackitConfigException: (\"Authentication\ - \ for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ - \ is missing in the config.\", OgrException('No matching service was\ - \ found.'))\r\n```" - closed_at: null - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/383/comments - created_at: '2020-04-15T21:50:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/383/events - html_url: https://github.com/packit/ogr/issues/383 - id: 600609280 + body: '- Update `custom_mapping` with the info provided in the `custom_instances`. + + - Fixes: https://github.com/packit-service/ogr/issues/417' + closed_at: '2020-05-26T05:56:28Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/418/comments + created_at: '2020-05-25T09:11:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/418/events + html_url: https://github.com/packit/ogr/pull/418 + id: 624162285 labels: - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/383/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/418/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDA2MDkyODA= - number: 383 + node_id: MDExOlB1bGxSZXF1ZXN0NDIyNjM4Mzc4 + number: 418 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/418.diff + html_url: https://github.com/packit/ogr/pull/418 + patch_url: https://github.com/packit/ogr/pull/418.patch + url: https://api.github.com/repos/packit/ogr/pulls/418 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Initializing service via get_instances_from_dict() not working - as expected - updated_at: '2020-04-23T11:27:50Z' - url: https://api.github.com/repos/packit/ogr/issues/383 + state: closed + title: Fix factory.get_project + updated_at: '2020-05-26T05:57:27Z' + url: https://api.github.com/repos/packit/ogr/issues/418 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Supposed to Fix #391 \r\n\r\nAs far as I understand the `python-gitlab`\ - \ package, they follow Gitlab's REST API with few additions like `list()`\ - \ methods on some objects.\r\n\r\n- [x] (#391) Branches API does neither\ - \ state returning paginated list or explicitly say it returns *all*\ - \ branches\r\n works with `all=True` even though it's not documented\ - \ in Gitlab API\r\n - [x] will have to try using it at some repository\ - \ with many branches (default pagination is 20 in other API endpoints)\ - \ or could you provide the repository that brought this issue to light?\ - \ ;)\r\n- [x] Repository tree - can't find `all` parameter in API,\ - \ it is used though and there is pagination => should look into that\r\ - \n same, works even though it's not in the API documentation\r\n-\ - \ [x] Releases list - by API it is paginated, there's no mention of\ - \ adjusting the count of releases per page nor `all`-parameter\r\n \ - \ same, no mention of `all` in docs\r\n- [x] Add tests" - closed_at: '2020-04-22T13:38:46Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/392/comments - created_at: '2020-04-22T08:59:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/392/events - html_url: https://github.com/packit/ogr/pull/392 - id: 604582696 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/392/labels{/name} + author_association: NONE + body: "I want to enhance the-new-hotness with the ability to file PRs\ + \ directly to dist-git projects instead of attaching patches to bugzilla.\ + \ I started to work on it in this PR [here](https://github.com/fedora-infra/the-new-hotness/pull/235).\ + \ All the packit related code could be find in https://github.com/fedora-infra/the-new-hotness/pull/235/files#diff-d74ad19fb2d5a66e5bdf8eec8555ca1d\r\ + \n\r\nI'm using only the dist-git module from the packit itself and\ + \ my use case should work like this:\r\n1. Create fork of the target\ + \ repository\r\n2. Update branch\r\n3. Create PR against the specific\ + \ branch in target repository\r\n\r\nWith my current code it needs kerberos\ + \ ticket and user must be in packager group. I tried to do the same\ + \ using dist-git web interface and only thing I need to execute the\ + \ above scenario is the FAS account. \r\nThis should be doable with\ + \ only the pagure token, which allows both forking and creating PR." + closed_at: '2020-05-26T05:56:28Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/417/comments + created_at: '2020-01-28T14:53:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/417/events + html_url: https://github.com/packit/ogr/issues/417 + id: 624162109 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/417/labels{/name} locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA3MTQ5MDgy - number: 392 + milestone: null + node_id: MDU6SXNzdWU2MjQxNjIxMDk= + number: 417 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/392.diff - html_url: https://github.com/packit/ogr/pull/392 - patch_url: https://github.com/packit/ogr/pull/392.patch - url: https://api.github.com/repos/packit/ogr/pulls/392 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitLab pagination - updated_at: '2020-04-22T15:04:34Z' - url: https://api.github.com/repos/packit/ogr/issues/392 + title: '[use-case] the-new-hotness dist-git pull request creation' + updated_at: '2020-05-26T05:56:28Z' + url: https://api.github.com/repos/packit/ogr/issues/417 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/6943409?v=4 + events_url: https://api.github.com/users/Zlopez/events{/privacy} + followers_url: https://api.github.com/users/Zlopez/followers + following_url: https://api.github.com/users/Zlopez/following{/other_user} + gists_url: https://api.github.com/users/Zlopez/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/Zlopez + id: 6943409 + login: Zlopez + node_id: MDQ6VXNlcjY5NDM0MDk= + organizations_url: https://api.github.com/users/Zlopez/orgs + received_events_url: https://api.github.com/users/Zlopez/received_events + repos_url: https://api.github.com/users/Zlopez/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/Zlopez/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Zlopez/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/Zlopez - active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/20343475?v=4 + events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} + followers_url: https://api.github.com/users/RafayGhafoor/followers + following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} + gists_url: https://api.github.com/users/RafayGhafoor/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/RafayGhafoor + id: 20343475 + login: RafayGhafoor + node_id: MDQ6VXNlcjIwMzQzNDc1 + organizations_url: https://api.github.com/users/RafayGhafoor/orgs + received_events_url: https://api.github.com/users/RafayGhafoor/received_events + repos_url: https://api.github.com/users/RafayGhafoor/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/RafayGhafoor/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/RafayGhafoor/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/RafayGhafoor assignees: - - avatar_url: https://avatars0.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} + - avatar_url: https://avatars.githubusercontent.com/u/20343475?v=4 + events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} + followers_url: https://api.github.com/users/RafayGhafoor/followers + following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} + gists_url: https://api.github.com/users/RafayGhafoor/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/RafayGhafoor + id: 20343475 + login: RafayGhafoor + node_id: MDQ6VXNlcjIwMzQzNDc1 + organizations_url: https://api.github.com/users/RafayGhafoor/orgs + received_events_url: https://api.github.com/users/RafayGhafoor/received_events + repos_url: https://api.github.com/users/RafayGhafoor/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/RafayGhafoor/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/RafayGhafoor/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/RafayGhafoor author_association: MEMBER - body: "By now, we get only 20 branches at max. Looks like a pagination\ - \ issue.\r\n\r\nWe need to tweak pagination to list all -- we already\ - \ have that on some other method." - closed_at: '2020-04-22T13:38:46Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/391/comments - created_at: '2020-04-21T11:18:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/391/events - html_url: https://github.com/packit/ogr/issues/391 - id: 603917055 + body: "We have some URLs in the tests -- it would be nice to validate\ + \ them.\r\n\r\n*Originally reported by @jscotka :*\r\n> Maybe one note,\ + \ would be nice to test in tests that URLs are valid for github/gitlba/pagure,\ + \ eg. via urllib download the diff and check if there are few expected\ + \ lines." + closed_at: '2020-05-25T14:18:31Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/342/comments + created_at: '2020-02-26T09:49:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/342/events + html_url: https://github.com/packit/ogr/issues/342 + id: 571202848 labels: - - color: d93f0b + - color: fbca04 default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug + description: Reserved for the participants/applicants of the Google + Summer of Code. + id: 1867054141 + name: GSOC + node_id: MDU6TGFiZWwxODY3MDU0MTQx + url: https://api.github.com/repos/packit/ogr/labels/GSOC - color: 7057ff default: false description: Good for newcomers @@ -83826,19 +111049,40 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/391/labels{/name} + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/342/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDM5MTcwNTU= - number: 391 + node_id: MDU6SXNzdWU1NzEyMDI4NDg= + number: 342 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Return all project branches from Gitlab ' - updated_at: '2020-04-22T13:38:46Z' - url: https://api.github.com/repos/packit/ogr/issues/391 + title: Validate the urls + updated_at: '2020-05-25T14:18:31Z' + url: https://api.github.com/repos/packit/ogr/issues/342 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -83860,14 +111104,16 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Fixes #302 \r\n\r\n- [x] Add tests" - closed_at: '2020-04-20T12:38:20Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/389/comments - created_at: '2020-04-20T08:44:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/389/events - html_url: https://github.com/packit/ogr/pull/389 - id: 603054798 + body: "Currently implemented only for PagurePullRequest.\r\n\r\nIt returns\ + \ bytes in case there's some binary blob in the patch.\r\n\r\nI'd like\ + \ to use this in https://github.com/packit-service/packit-service/pull/627" + closed_at: '2020-05-22T17:27:23Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/415/comments + created_at: '2020-05-22T11:43:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/415/events + html_url: https://github.com/packit/ogr/pull/415 + id: 623151328 labels: - color: 0e8a16 default: false @@ -83876,76 +111122,154 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/389/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/415/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA1OTE2MDgx - number: 389 + node_id: MDExOlB1bGxSZXF1ZXN0NDIxODc0NDAw + number: 415 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/389.diff - html_url: https://github.com/packit/ogr/pull/389 - patch_url: https://github.com/packit/ogr/pull/389.patch - url: https://api.github.com/repos/packit/ogr/pulls/389 + diff_url: https://github.com/packit/ogr/pull/415.diff + html_url: https://github.com/packit/ogr/pull/415 + patch_url: https://github.com/packit/ogr/pull/415.patch + url: https://api.github.com/repos/packit/ogr/pulls/415 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement Issue setters for Pagure - updated_at: '2020-04-20T12:43:44Z' - url: https://api.github.com/repos/packit/ogr/issues/389 + title: Add PullRequest.patch property + updated_at: '2020-05-25T09:38:26Z' + url: https://api.github.com/repos/packit/ogr/issues/415 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Implement updating title and description of issue on Pagure when\ - \ the API allows it.\r\n\r\nBlocked by: [Pagure's issue](https://pagure.io/pagure/issue/4704)" - closed_at: '2020-04-20T12:38:20Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is dirty.This + is not supported.` | + + | `f31` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.12.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is dirty.This + is not supported.` | + + | `master` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-05-21T11:58:35Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/302/comments - created_at: '2020-01-02T16:42:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/302/events - html_url: https://github.com/packit/ogr/issues/302 - id: 544654301 + comments_url: https://api.github.com/repos/packit/ogr/issues/409/comments + created_at: '2020-05-06T15:57:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/409/events + html_url: https://github.com/packit/ogr/issues/409 + id: 613430701 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/409/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MTM0MzA3MDE= + number: 409 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.12.0' + updated_at: '2020-05-21T11:58:35Z' + url: https://api.github.com/repos/packit/ogr/issues/409 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Figure out how we can return data:\r\n- only when needed\r\n- only\ + \ a limited number of results at first\r\n\r\nAC:\r\n- Provide the same\ + \ API for users of all implementations (e.g. change lists to generators).\r\ + \n- Be transparent to user == download the additional data when the\ + \ user really needs them.\r\n - e.g. Use lazy properties where possible.\r\ + \n- Enable efficient filtering on the results / during the calls.\r\n" + closed_at: null + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/325/comments + created_at: '2020-02-13T18:52:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/325/events + html_url: https://github.com/packit/ogr/issues/325 + id: 564883774 labels: - - color: 1d76db + - color: 134ac1 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: bc4812 + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: b60205 default: false - description: We are blocked! - id: 1432779229 - name: blocker - node_id: MDU6TGFiZWwxNDMyNzc5MjI5 - url: https://api.github.com/repos/packit/ogr/labels/blocker - - color: a2eeef + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: ff9990 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged - color: 8be567 default: false description: Usability issue. @@ -83953,113 +111277,188 @@ requests.sessions: name: user-experience node_id: MDU6TGFiZWwxNDMyNzc5NDY0 url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/302/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/325/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDQ2NTQzMDE= - number: 302 + node_id: MDU6SXNzdWU1NjQ4ODM3NzQ= + number: 325 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Issue setters (Pagure) - updated_at: '2020-04-20T12:38:20Z' - url: https://api.github.com/repos/packit/ogr/issues/302 + state: open + title: Laziness + updated_at: '2020-05-18T08:42:29Z' + url: https://api.github.com/repos/packit/ogr/issues/325 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] + assignee: + avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 + events_url: https://api.github.com/users/TomasJani/events{/privacy} + followers_url: https://api.github.com/users/TomasJani/followers + following_url: https://api.github.com/users/TomasJani/following{/other_user} + gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasJani + id: 21237576 + login: TomasJani + node_id: MDQ6VXNlcjIxMjM3NTc2 + organizations_url: https://api.github.com/users/TomasJani/orgs + received_events_url: https://api.github.com/users/TomasJani/received_events + repos_url: https://api.github.com/users/TomasJani/repos + site_admin: false + starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + type: User + url: https://api.github.com/users/TomasJani + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 + events_url: https://api.github.com/users/TomasJani/events{/privacy} + followers_url: https://api.github.com/users/TomasJani/followers + following_url: https://api.github.com/users/TomasJani/following{/other_user} + gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasJani + id: 21237576 + login: TomasJani + node_id: MDQ6VXNlcjIxMjM3NTc2 + organizations_url: https://api.github.com/users/TomasJani/orgs + received_events_url: https://api.github.com/users/TomasJani/received_events + repos_url: https://api.github.com/users/TomasJani/repos + site_admin: false + starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + type: User + url: https://api.github.com/users/TomasJani author_association: MEMBER - body: 'I should read more carefully: rpmautospec is not in production - yet, - - should be only tested on staging: - - - https://lists.fedoraproject.org/archives/list/devel-announce@lists.fedoraproject.org/thread/LWE4URIRWVTEZKXKP7QOK5JXFNVJRUNW/ - - - Since we use this repository in packit''s tests, I''ll keep the spec - in a subdir so we can exercise this functionality while testing.' - closed_at: '2020-04-20T09:27:42Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/390/comments - created_at: '2020-04-20T09:09:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/390/events - html_url: https://github.com/packit/ogr/pull/390 - id: 603072599 + body: "- [x] add the `created` and `edited` properties to the commit flag\ + \ classes\r\n - [x] abstract class\r\n - [x] github:\r\n - https://pygithub.readthedocs.io/en/latest/github_objects/Commit.html#github.Commit.Commit.get_statuses\r\ + \n - [ ] gitlab:\r\n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status\r\ + \n - https://docs.gitlab.com/ce/api/commits.html\r\n - pagure:\r\ + \n - https://src.fedoraproject.org/api/0/ -> `Flags for a commit`\r\ + \n- [x] tests for all implementations" + closed_at: '2020-05-16T16:37:40Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/344/comments + created_at: '2020-03-02T11:25:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/344/events + html_url: https://github.com/packit/ogr/issues/344 + id: 573909124 labels: - - color: 0e8a16 + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/390/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/344/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA1OTMwMTIw - number: 390 + node_id: MDU6SXNzdWU1NzM5MDkxMjQ= + number: 344 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/390.diff - html_url: https://github.com/packit/ogr/pull/390 - patch_url: https://github.com/packit/ogr/pull/390.patch - url: https://api.github.com/repos/packit/ogr/pulls/390 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: revert rpmautospec - updated_at: '2020-04-20T12:28:41Z' - url: https://api.github.com/repos/packit/ogr/issues/390 + title: Add datetime to commit flags + updated_at: '2020-05-18T08:05:17Z' + url: https://api.github.com/repos/packit/ogr/issues/344 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: https://docs.pagure.org/Fedora-Infra.rpmautospec/principle.html - closed_at: '2020-04-15T08:48:11Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/378/comments - created_at: '2020-04-14T14:38:06Z' - events_url: https://api.github.com/repos/packit/ogr/issues/378/events - html_url: https://github.com/packit/ogr/pull/378 - id: 599623468 + body: "When telling if a user can merge PRs in a GitHub repo, ask GitHub\ + \ for\r\nthe user's permission on the repo instead of checking if the\ + \ user is in\r\nthe list of collaborators.\r\n\r\nThis should lead to\ + \ fewer API calls in cases when the full list of\r\ncollaborators is\ + \ not needed, but it also returns better results: the\r\nlist of collaborators\ + \ does not seem to be always up to date when queries\r\nare done using\ + \ GitHub App tokens.\r\n\r\nRelates to packit-service/packit-service#612.\r\ + \n\r\nSigned-off-by: Hunor Csomort\xE1ni " + closed_at: '2020-05-12T10:44:25Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/410/comments + created_at: '2020-05-11T13:29:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/410/events + html_url: https://github.com/packit/ogr/pull/410 + id: 615885823 labels: - color: 0e8a16 default: false @@ -84068,53 +111467,54 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/378/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/410/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzMjI1MjMy - number: 378 + node_id: MDExOlB1bGxSZXF1ZXN0NDE2MTA1NjQy + number: 410 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/378.diff - html_url: https://github.com/packit/ogr/pull/378 - patch_url: https://github.com/packit/ogr/pull/378.patch - url: https://api.github.com/repos/packit/ogr/pulls/378 + diff_url: https://github.com/packit/ogr/pull/410.diff + html_url: https://github.com/packit/ogr/pull/410 + patch_url: https://github.com/packit/ogr/pull/410.patch + url: https://api.github.com/repos/packit/ogr/pulls/410 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: use rpmautospec - updated_at: '2020-04-20T06:44:58Z' - url: https://api.github.com/repos/packit/ogr/issues/378 + title: 'GitHub: query only one user when telling if a user can merge PRs' + updated_at: '2020-05-12T10:44:25Z' + url: https://api.github.com/repos/packit/ogr/issues/410 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: my bad, didn't notice packit changed it and I committed it. - closed_at: '2020-04-17T06:44:16Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/388/comments - created_at: '2020-04-17T06:23:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/388/events - html_url: https://github.com/packit/ogr/pull/388 - id: 601732754 + author_association: CONTRIBUTOR + body: "Fixes #216 \r\n\r\nAdded to Github and Gitlab, Pagure is still\ + \ left to do." + closed_at: '2020-05-11T19:45:01Z' + comments: 26 + comments_url: https://api.github.com/repos/packit/ogr/issues/376/comments + created_at: '2020-04-09T16:55:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/376/events + html_url: https://github.com/packit/ogr/pull/376 + id: 597420110 labels: - color: 0e8a16 default: false @@ -84123,178 +111523,150 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/388/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/376/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA0OTQ1NTQx - number: 388 + node_id: MDExOlB1bGxSZXF1ZXN0NDAxNTM3MTMx + number: 376 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/388.diff - html_url: https://github.com/packit/ogr/pull/388 - patch_url: https://github.com/packit/ogr/pull/388.patch - url: https://api.github.com/repos/packit/ogr/pulls/388 + diff_url: https://github.com/packit/ogr/pull/376.diff + html_url: https://github.com/packit/ogr/pull/376 + patch_url: https://github.com/packit/ogr/pull/376.patch + url: https://api.github.com/repos/packit/ogr/pulls/376 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'spec: dont hardcode name/version, use macros instead' - updated_at: '2020-04-17T08:24:33Z' - url: https://api.github.com/repos/packit/ogr/issues/388 + title: Adding collaborators to projects - (Github, Gitlab, Pagure) + updated_at: '2020-05-11T19:45:01Z' + url: https://api.github.com/repos/packit/ogr/issues/376 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `master` | `[Errno 2] No such file or directory: ''/tmp/packit-dist-git1w9t9eub/fedora/changelog''` - | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-04-16T14:27:25Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/387/comments - created_at: '2020-04-16T09:54:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/387/events - html_url: https://github.com/packit/ogr/issues/387 - id: 600905691 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/387/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MDA5MDU2OTE= - number: 387 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[packit] Propose update failed for release 0.11.2' - updated_at: '2020-04-16T15:02:35Z' - url: https://api.github.com/repos/packit/ogr/issues/387 - user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + assignee: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - - active_lock_reason: null - assignee: null - assignees: [] + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi author_association: MEMBER - body: 'we are setting this so we can use packit from ogr''s dist-git - - packit can''t know what''s the upstream name when running from distgit' - closed_at: '2020-04-16T06:54:10Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/382/comments - created_at: '2020-04-15T15:53:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/382/events - html_url: https://github.com/packit/ogr/pull/382 - id: 600404945 + body: "- [ ] Add the `add_to_collaborators` method to `abstract.GitProject`.\ + \ (And raise `NotImplementedError`.)\r\n- [ ] Implement the method for\ + \ all forges (GitHub, GitLab, Pagure).\r\n- [ ] Add tests for this method.\r\ + \n\r\nDocumentation:\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-members\r\ + \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ + \n- https://pagure.io/api/0/ ( > Modify ACLs on a project ?)\r\n" + closed_at: '2020-05-11T19:45:01Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/216/comments + created_at: '2019-09-20T05:52:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/216/events + html_url: https://github.com/packit/ogr/issues/216 + id: 496159491 labels: - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/382/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/216/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzODQ1ODM3 - number: 382 + node_id: MDU6SXNzdWU0OTYxNTk0OTE= + number: 216 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/382.diff - html_url: https://github.com/packit/ogr/pull/382 - patch_url: https://github.com/packit/ogr/pull/382.patch - url: https://api.github.com/repos/packit/ogr/pulls/382 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'packit.xml: set upstream_package_name' - updated_at: '2020-04-16T14:03:12Z' - url: https://api.github.com/repos/packit/ogr/issues/382 + title: Adding collaborators to projects + updated_at: '2020-05-11T19:45:01Z' + url: https://api.github.com/repos/packit/ogr/issues/216 user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -84312,26 +111684,28 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - author_association: MEMBER + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Add a method to set flags\ - \ on Pagure PRs\n* Annotate PagurePullRequest.head_commit's return type\n\ - * Remove test jobs from zuul gating jobs\n* packit.xml: set upstream_package_name\n\ - * added CentOS prod/stg instances to pagure service\n* use rpmautospec\n\ - * p.yaml: use new syntax for dist_git_branch\n* Add created/edited properties\ - \ to CommitFlag\n* print pagure API errors properly\n* revert change\n\ - * PR comment: use pagure pagination metadata\n* using pagination to\ - \ retrieve pagure issue list\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.11.2-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-04-16T09:53:01Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/386/comments - created_at: '2020-04-16T07:51:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/386/events - html_url: https://github.com/packit/ogr/pull/386 - id: 600823758 + \ is the changelog I created:\n### Changes\n* Declare repositories on\ + \ git.centos.org not private\n* Create PR works for Github and fixed\ + \ test\n* Refactor getting projects internally\n* Add tests for `source_project`\ + \ on PullRequest\n* Implement `source_project` on PullRequest\n* Add\ + \ source/target_project to PullRequest\n* Fix tests after requre update\n\ + * Implement `head_commit` for GitHub and GitLab\n* Make tests for `head_commit`\ + \ on PullRequest\n* spec: don't do python_provide on F33+\n\n\nYou can\ + \ change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.12.0-release` branch before merging this PR.\nI\ + \ didn't find any files where `__version__` is set." + closed_at: '2020-05-06T15:53:24Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/408/comments + created_at: '2020-05-06T13:34:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/408/events + html_url: https://github.com/packit/ogr/pull/408 + id: 613324595 labels: - color: ededed default: false @@ -84354,24 +111728,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/386/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/408/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA0MTc5NDE0 - number: 386 + node_id: MDExOlB1bGxSZXF1ZXN0NDE0MTAwMTc4 + number: 408 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/386.diff - html_url: https://github.com/packit/ogr/pull/386 - patch_url: https://github.com/packit/ogr/pull/386.patch - url: https://api.github.com/repos/packit/ogr/pulls/386 + diff_url: https://github.com/packit/ogr/pull/408.diff + html_url: https://github.com/packit/ogr/pull/408 + patch_url: https://github.com/packit/ogr/pull/408.patch + url: https://api.github.com/repos/packit/ogr/pulls/408 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.11.2 release - updated_at: '2020-04-16T09:54:56Z' - url: https://api.github.com/repos/packit/ogr/issues/386 + title: 0.12.0 release + updated_at: '2020-05-06T15:57:57Z' + url: https://api.github.com/repos/packit/ogr/issues/408 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -84393,75 +111767,73 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Flags on PRs are specific to Pagure.\r\n\r\nOther forges allow\ - \ setting flags/statuses only on commits and will\r\ndisplay the flags\ - \ for the PR head on the PR page, if any is set.\r\n\r\nDue to the above\ - \ this method is added only to PagurePullRequests, and we\r\nexpect\ - \ OGR library users to implement the \"show the flags of the last\r\n\ - commit for the PR\" behaviour for Pagure, in case they need it.\r\n\r\ - \nSigned-off-by: Hunor Csomort\xE1ni " - closed_at: '2020-04-16T07:44:45Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/381/comments - created_at: '2020-04-15T15:15:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/381/events - html_url: https://github.com/packit/ogr/pull/381 - id: 600376230 + body: Let's create a new release! + closed_at: '2020-05-06T13:34:20Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/407/comments + created_at: '2020-05-06T13:32:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/407/events + html_url: https://github.com/packit/ogr/issues/407 + id: 613323657 labels: - - color: 0e8a16 + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/381/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/407/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzODIzNTY4 - number: 381 + node_id: MDU6SXNzdWU2MTMzMjM2NTc= + number: 407 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/381.diff - html_url: https://github.com/packit/ogr/pull/381 - patch_url: https://github.com/packit/ogr/pull/381.patch - url: https://api.github.com/repos/packit/ogr/pulls/381 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Set PR flags in Pagure - updated_at: '2020-04-16T07:46:43Z' - url: https://api.github.com/repos/packit/ogr/issues/381 + title: New minor release + updated_at: '2020-05-06T13:34:20Z' + url: https://api.github.com/repos/packit/ogr/issues/407 user: - avatar_url: https://avatars0.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} + 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/csomh - id: 11816497 - login: csomh - node_id: MDQ6VXNlcjExODE2NDk3 - organizations_url: https://api.github.com/users/csomh/orgs - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + 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/csomh + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-04-16T07:14:48Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/380/comments - created_at: '2020-04-15T13:00:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/380/events - html_url: https://github.com/packit/ogr/pull/380 - id: 600279414 + author_association: CONTRIBUTOR + body: "Related to #307 \r\nIf the fork_name arg is passed, PR is created\ + \ on the forked repo.\r\nIf the fork_name arg is not passed PR is made\ + \ to parent repo. \r\n\r\nTested for (fork-fork, fork-upstream, upstream-upstream)" + closed_at: '2020-05-05T07:34:36Z' + comments: 16 + comments_url: https://api.github.com/repos/packit/ogr/issues/404/comments + created_at: '2020-05-01T20:16:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/404/events + html_url: https://github.com/packit/ogr/pull/404 + id: 610947143 labels: - color: 0e8a16 default: false @@ -84470,172 +111842,128 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/380/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/404/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzNzQ1MDM3 - number: 380 + node_id: MDExOlB1bGxSZXF1ZXN0NDEyMjg0MDE0 + number: 404 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/380.diff - html_url: https://github.com/packit/ogr/pull/380 - patch_url: https://github.com/packit/ogr/pull/380.patch - url: https://api.github.com/repos/packit/ogr/pulls/380 + diff_url: https://github.com/packit/ogr/pull/404.diff + html_url: https://github.com/packit/ogr/pull/404 + patch_url: https://github.com/packit/ogr/pull/404.patch + url: https://api.github.com/repos/packit/ogr/pulls/404 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove test jobs from zuul gating jobs - updated_at: '2020-04-16T07:14:48Z' - url: https://api.github.com/repos/packit/ogr/issues/380 + title: Create PR's to forked Repo fixed for Github + updated_at: '2020-05-05T12:36:03Z' + url: https://api.github.com/repos/packit/ogr/issues/404 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 + events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} + followers_url: https://api.github.com/users/saisankargochhayat/followers + following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} + gists_url: https://api.github.com/users/saisankargochhayat/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/saisankargochhayat + id: 9396452 + login: saisankargochhayat + node_id: MDQ6VXNlcjkzOTY0NTI= + organizations_url: https://api.github.com/users/saisankargochhayat/orgs + received_events_url: https://api.github.com/users/saisankargochhayat/received_events + repos_url: https://api.github.com/users/saisankargochhayat/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/saisankargochhayat - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: added CentOS prod/stg instances to pagure service - closed_at: '2020-04-15T14:44:22Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/379/comments - created_at: '2020-04-15T08:59:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/379/events - html_url: https://github.com/packit/ogr/pull/379 - id: 600137338 + author_association: CONTRIBUTOR + body: "I am looking at this code:\r\n\r\nhttps://github.com/packit-service/ogr/blob/b7c5333c4df64ecdf854a5375c207a789ca51a01/ogr/services/github/pull_request.py#L111\r\ + \n\r\nwhat if I want to create a PR against my fork and not the upstream\ + \ project?" + closed_at: '2020-05-05T10:14:22Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/307/comments + created_at: '2020-01-14T11:20:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/307/events + html_url: https://github.com/packit/ogr/issues/307 + id: 549501262 labels: - - color: 18e033 + - color: '000000' default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/379/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/307/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzNjMwOTAx - number: 379 + node_id: MDU6SXNzdWU1NDk1MDEyNjI= + number: 307 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/379.diff - html_url: https://github.com/packit/ogr/pull/379 - patch_url: https://github.com/packit/ogr/pull/379.patch - url: https://api.github.com/repos/packit/ogr/pulls/379 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: added CentOS prod/stg instances to pagure service - updated_at: '2020-04-15T14:44:22Z' - url: https://api.github.com/repos/packit/ogr/issues/379 + title: how can I create a PR against my fork + updated_at: '2020-05-05T10:14:22Z' + url: https://api.github.com/repos/packit/ogr/issues/307 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=5: - - metadata: - latency: 0.7075395584106445 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: 'Add datetime to commit flags #344' - closed_at: '2020-04-14T16:09:59Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/374/comments - created_at: '2020-04-08T13:34:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/374/events - html_url: https://github.com/packit/ogr/pull/374 - id: 596583247 + author_association: MEMBER + body: "The best solution though would be to make this list configurable.\ + \ But I'm in a hurry now :slightly_smiling_face: \r\n\r\nSigned-off-by:\ + \ Hunor Csomort\xE1ni " + closed_at: '2020-05-05T09:54:09Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/405/comments + created_at: '2020-05-05T09:34:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/405/events + html_url: https://github.com/packit/ogr/pull/405 + id: 612468201 labels: - color: 0e8a16 default: false @@ -84644,128 +111972,71 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/374/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/405/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAwODUyNzQ0 - number: 374 + node_id: MDExOlB1bGxSZXF1ZXN0NDEzNDA2MjI3 + number: 405 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/374.diff - html_url: https://github.com/packit/ogr/pull/374 - patch_url: https://github.com/packit/ogr/pull/374.patch - url: https://api.github.com/repos/packit/ogr/pulls/374 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add datetime to commitflags - updated_at: '2020-04-14T16:09:59Z' - url: https://api.github.com/repos/packit/ogr/issues/374 - user: - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 - events_url: https://api.github.com/users/TomasJani/events{/privacy} - followers_url: https://api.github.com/users/TomasJani/followers - following_url: https://api.github.com/users/TomasJani/following{/other_user} - gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/TomasJani - id: 21237576 - login: TomasJani - node_id: MDQ6VXNlcjIxMjM3NTc2 - organizations_url: https://api.github.com/users/TomasJani/orgs - received_events_url: https://api.github.com/users/TomasJani/received_events - repos_url: https://api.github.com/users/TomasJani/repos - site_admin: false - starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasJani/subscriptions - type: User - url: https://api.github.com/users/TomasJani - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: PaureProject.get_files() not implemented. Maybe not possible because - pagure api doesnt provide any possiblity to get repository content. - closed_at: '2020-04-14T09:13:43Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/377/comments - created_at: '2020-04-14T07:44:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/377/events - html_url: https://github.com/packit/ogr/issues/377 - id: 599365195 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: cfd3d7 - default: true - description: This issue or pull request already exists - id: 1160311263 - name: duplicate - node_id: MDU6TGFiZWwxMTYwMzExMjYz - url: https://api.github.com/repos/packit/ogr/labels/duplicate - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: ff9990 - default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - labels_url: https://api.github.com/repos/packit/ogr/issues/377/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1OTkzNjUxOTU= - number: 377 - performed_via_github_app: null + diff_url: https://github.com/packit/ogr/pull/405.diff + html_url: https://github.com/packit/ogr/pull/405 + patch_url: https://github.com/packit/ogr/pull/405.patch + url: https://api.github.com/repos/packit/ogr/pulls/405 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: PaureProject.get_files() not implemented - updated_at: '2020-04-14T09:13:43Z' - url: https://api.github.com/repos/packit/ogr/issues/377 + title: Declare repositories on git.centos.org not private + updated_at: '2020-05-05T09:54:09Z' + url: https://api.github.com/repos/packit/ogr/issues/405 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'the "errors" may not be set - - - Fixes #334' - closed_at: '2020-04-09T11:55:55Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/375/comments - created_at: '2020-04-09T10:00:07Z' - events_url: https://api.github.com/repos/packit/ogr/issues/375/events - html_url: https://github.com/packit/ogr/pull/375 - id: 597167333 + body: "Closes #400\r\n\r\n# TODO\r\n\r\n(copied from issue)\r\n\r\n- [x]\ + \ add `source_project` property (abstract and implementations) returning\ + \ the project with the source branch\r\n- [x] create tests:\r\n - [x]\ + \ basic PR from `fork` to `upstream`\r\n - [x] renamed `fork`\r\n \ + \ - [x] renamed `upstream`\r\n - [x] PR from `fork` to `fork`\r\n \ + \ - [x] PR from `upstream` to `upstream`\r\n- [x] ? `target_project`\ + \ property that will replace the current `project` one to make it clear\r\ + \n - [x] don't forget to support both and deprecate the old one\r\n\ + - [x] squash commits\r\n- [x] check getting projects by internal representation\ + \ (github: creating from github.Repository, gitlab: from project_id)\r\ + \n - [x] Github: project uses almost the same way of initializing\ + \ `GithubProject` in `L129, L172, L385, L564`\r\n\r\n# Discussion\r\n\ + \r\n- [x] deprecating `.project`\r\n - [x] provide `.project` as\ + \ a property?\r\n - [ ] if so, do we need setters for them outside\ + \ class?\r\n- [ ] consider having `GithubProject.from_github_repository`,\ + \ which would take just the github repo from PyGithub and return new\ + \ project\r\n- [ ] consider creating GitLab projects just from _project\ + \ id_ (python-gitlab doesn't offer any way to get to source project\ + \ than ID)" + closed_at: '2020-04-30T16:23:19Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/401/comments + created_at: '2020-04-27T20:33:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/401/events + html_url: https://github.com/packit/ogr/pull/401 + id: 607834495 labels: - color: 0e8a16 default: false @@ -84774,99 +112045,113 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/375/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/401/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAxMzI4NDE2 - number: 375 + node_id: MDExOlB1bGxSZXF1ZXN0NDA5NzMxMzg3 + number: 401 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/375.diff - html_url: https://github.com/packit/ogr/pull/375 - patch_url: https://github.com/packit/ogr/pull/375.patch - url: https://api.github.com/repos/packit/ogr/pulls/375 + diff_url: https://github.com/packit/ogr/pull/401.diff + html_url: https://github.com/packit/ogr/pull/401 + patch_url: https://github.com/packit/ogr/pull/401.patch + url: https://api.github.com/repos/packit/ogr/pulls/401 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: print pagure API errors properly - updated_at: '2020-04-09T11:58:14Z' - url: https://api.github.com/repos/packit/ogr/issues/375 + title: Enhance project references in pull requests + updated_at: '2020-04-30T16:34:07Z' + url: https://api.github.com/repos/packit/ogr/issues/401 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.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} + - 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko author_association: MEMBER - body: "edited by @lachmanfrantisek :\r\n\r\nTODO:\r\n- Add tests for https://github.com/packit-service/ogr/pull/333\ - \ (better pagure error messages)\r\n - e.g. wrong URL, wrong token,\ - \ not-found object,..." - closed_at: '2020-04-09T11:55:54Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/334/comments - created_at: '2020-02-19T13:50:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/334/events - html_url: https://github.com/packit/ogr/issues/334 - id: 567583973 + body: "Now, we have only `project` property in the PR class, but it's\ + \ hard to get the source project. (It can be sometimes very tricky to\ + \ pick the right repo from the OGR's user perspective.)\r\n\r\n- [ ]\ + \ add `source_project` property (abstract and implementations) returning\ + \ the project with the source branch\r\n- [ ] create tests:\r\n - [\ + \ ] basic PR from `fork` to `upstream`\r\n - [ ] renamed `fork`\r\n\ + \ - [ ] renamed `upstream`\r\n - [ ] PR from `fork` to `fork`\r\n\ + \ - [ ] PR from `upstream` to `upstream`\r\n- [ ] ? `target_project`\ + \ property that will replace the current `project` one to make it clear\r\ + \n - [ ] don't forget to support both and deprecate the old one" + closed_at: '2020-04-30T16:23:19Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/400/comments + created_at: '2020-04-27T15:09:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/400/events + html_url: https://github.com/packit/ogr/issues/400 + id: 607627181 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 1d76db default: false description: Related to Pagure implementation. @@ -84874,120 +112159,111 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 42e529 + - color: a2eeef default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/334/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/400/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1Njc1ODM5NzM= - number: 334 + node_id: MDU6SXNzdWU2MDc2MjcxODE= + number: 400 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve pagure unit tests - updated_at: '2020-04-09T11:55:54Z' - url: https://api.github.com/repos/packit/ogr/issues/334 + title: source_project property for PR class + updated_at: '2020-04-30T16:23:19Z' + url: https://api.github.com/repos/packit/ogr/issues/400 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #334' - closed_at: '2020-04-09T09:43:45Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/373/comments - created_at: '2020-04-07T09:08:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/373/events - html_url: https://github.com/packit/ogr/pull/373 - id: 595713934 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/373/labels{/name} + body: '' + closed_at: '2020-04-30T15:29:45Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/403/comments + created_at: '2020-04-30T15:05:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/403/events + html_url: https://github.com/packit/ogr/pull/403 + id: 610115589 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/403/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAwMTM4Nzgx - number: 373 + node_id: MDExOlB1bGxSZXF1ZXN0NDExNjA3OTEx + number: 403 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/373.diff - html_url: https://github.com/packit/ogr/pull/373 - patch_url: https://github.com/packit/ogr/pull/373.patch - url: https://api.github.com/repos/packit/ogr/pulls/373 + diff_url: https://github.com/packit/ogr/pull/403.diff + html_url: https://github.com/packit/ogr/pull/403 + patch_url: https://github.com/packit/ogr/pull/403.patch + url: https://api.github.com/repos/packit/ogr/pulls/403 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'pagure: errors may be not set, add tests' - updated_at: '2020-04-09T09:43:45Z' - url: https://api.github.com/repos/packit/ogr/issues/373 + title: Fix tests after requre update + updated_at: '2020-04-30T15:36:23Z' + url: https://api.github.com/repos/packit/ogr/issues/403 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: FIRST_TIMER - body: "Fixes #339 \r\nPagure's API allows [pagination with 100 issues\ - \ per page](https://pagure.io/api/0/#issues), this code iterates though\ - \ issues pages until reaching either max issues (default 1000) or last\ - \ issue.\r\n" - closed_at: '2020-04-07T12:06:30Z' - comments: 17 - comments_url: https://api.github.com/repos/packit/ogr/issues/361/comments - created_at: '2020-03-23T14:55:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/361/events - html_url: https://github.com/packit/ogr/pull/361 - id: 586272328 + author_association: MEMBER + body: "Closes #368\r\n\r\n- [x] Implements `head_commit` for Github and\ + \ Gitlab\r\n- [x] Integration tests for all implementations" + closed_at: '2020-04-30T13:57:52Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/402/comments + created_at: '2020-04-30T10:24:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/402/events + html_url: https://github.com/packit/ogr/pull/402 + id: 609796401 labels: - color: 0e8a16 default: false @@ -84996,80 +112272,68 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/361/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/402/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzkyNDM2NTcw - number: 361 + node_id: MDExOlB1bGxSZXF1ZXN0NDExMzIzMDM3 + number: 402 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/361.diff - html_url: https://github.com/packit/ogr/pull/361 - patch_url: https://github.com/packit/ogr/pull/361.patch - url: https://api.github.com/repos/packit/ogr/pulls/361 + diff_url: https://github.com/packit/ogr/pull/402.diff + html_url: https://github.com/packit/ogr/pull/402 + patch_url: https://github.com/packit/ogr/pull/402.patch + url: https://api.github.com/repos/packit/ogr/pulls/402 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Using pagination to retrieve pagure's full issue list - updated_at: '2020-04-07T12:06:30Z' - url: https://api.github.com/repos/packit/ogr/issues/361 + title: Head commit on PRs + updated_at: '2020-04-30T14:06:58Z' + url: https://api.github.com/repos/packit/ogr/issues/402 user: - avatar_url: https://avatars3.githubusercontent.com/u/28443421?v=4 - events_url: https://api.github.com/users/AdarLavi/events{/privacy} - followers_url: https://api.github.com/users/AdarLavi/followers - following_url: https://api.github.com/users/AdarLavi/following{/other_user} - gists_url: https://api.github.com/users/AdarLavi/gists{/gist_id} + 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/AdarLavi - id: 28443421 - login: AdarLavi - node_id: MDQ6VXNlcjI4NDQzNDIx - organizations_url: https://api.github.com/users/AdarLavi/orgs - received_events_url: https://api.github.com/users/AdarLavi/received_events - repos_url: https://api.github.com/users/AdarLavi/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/AdarLavi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/AdarLavi/subscriptions + 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/AdarLavi + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Currently using a Pagure service the get_issue_list method returns\ - \ only the last 20 issues of a project. This is because Pagure paginate\ - \ the results, I have not looked at GitHub and GitLab but I guess it\ - \ works the same.\r\n\r\nIdeally `get_issue_list` should return a list\ - \ of all the issues for a project and the pagination should be transparent\ - \ to the user." - closed_at: '2020-04-07T12:06:30Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/339/comments - created_at: '2020-02-21T13:47:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/339/events - html_url: https://github.com/packit/ogr/issues/339 - id: 568965084 + body: Implement PullRequest.head_commit for github and gitlab + closed_at: '2020-04-30T13:57:51Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/368/comments + created_at: '2020-03-27T10:47:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/368/events + html_url: https://github.com/packit/ogr/issues/368 + id: 589045263 labels: - - color: 1d76db + - color: '000000' default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 7057ff default: false description: Good for newcomers @@ -85084,83 +112348,162 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/339/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/368/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1Njg5NjUwODQ= - number: 339 + node_id: MDU6SXNzdWU1ODkwNDUyNjM= + number: 368 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: support pagination for get_issue_list - updated_at: '2020-04-07T12:06:30Z' - url: https://api.github.com/repos/packit/ogr/issues/339 + title: Implement PullRequest.head_commit for github and gitlab + updated_at: '2020-04-30T13:57:51Z' + url: https://api.github.com/repos/packit/ogr/issues/368 user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 - events_url: https://api.github.com/users/cverna/events{/privacy} - followers_url: https://api.github.com/users/cverna/followers - following_url: https://api.github.com/users/cverna/following{/other_user} - gists_url: https://api.github.com/users/cverna/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/cverna - id: 7237866 - login: cverna - node_id: MDQ6VXNlcjcyMzc4NjY= - organizations_url: https://api.github.com/users/cverna/orgs - received_events_url: https://api.github.com/users/cverna/received_events - repos_url: https://api.github.com/users/cverna/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/cverna/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/cverna + url: https://api.github.com/users/sakalosj + _next: null + elapsed: 0.596153 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:53 GMT + ETag: W/"f3ffa896670b430debf52ce9e6efb2f3e0a01e7569d1ac0b232ebf201aa54fce" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7DC7D:191814F:6075DC19 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4889' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '111' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=8: + - metadata: + latency: 0.6849250793457031 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "similar to https://github.com/packit-service/requre/issues/29\r\ - \nplease add reverse dependency testing what will check that change\ - \ will not break ``packit`` and in case it is broken, will raise that\ - \ you have to create issue to packit to regenerate response files, or\ - \ that it found bug in ogr. " - closed_at: '2020-04-07T08:41:19Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/237/comments - created_at: '2019-10-09T05:48:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/237/events - html_url: https://github.com/packit/ogr/issues/237 - id: 504429863 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/237/labels{/name} + author_association: CONTRIBUTOR + body: 'packaging guidelines say this is automatic since F33 and we should + + disable it + + + https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_provides' + closed_at: '2020-04-27T17:21:08Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/399/comments + created_at: '2020-04-27T10:25:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/399/events + html_url: https://github.com/packit/ogr/pull/399 + id: 607427901 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/399/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDQ0Mjk4NjM= - number: 237 + node_id: MDExOlB1bGxSZXF1ZXN0NDA5NDAzNjI3 + number: 399 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/399.diff + html_url: https://github.com/packit/ogr/pull/399 + patch_url: https://github.com/packit/ogr/pull/399.patch + url: https://api.github.com/repos/packit/ogr/pulls/399 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add reverse dependency testing to packit package - updated_at: '2020-04-07T08:41:19Z' - url: https://api.github.com/repos/packit/ogr/issues/237 + title: 'spec: don''t do python_provide on F33+' + updated_at: '2020-04-28T08:16:08Z' + url: https://api.github.com/repos/packit/ogr/issues/399 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] @@ -85172,16 +112515,16 @@ requests.sessions: | --------------- | ----- | - | `f30` | `The distgit repository /tmp/packit-dist-git8t1ct16f is dirty.This - is not supported.` | + | `f30` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.3.tar.gz. + Reason: ''Not Found''. ` | - | `f31` | `The distgit repository /tmp/packit-dist-git8t1ct16f is dirty.This + | `f31` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This is not supported.` | - | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.1.tar.gz. - Reason: ''Not Found''. ` | + | `f32` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This + is not supported.` | - | `master` | `The distgit repository /tmp/packit-dist-git8t1ct16f is + | `master` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This is not supported.` | @@ -85190,27 +112533,27 @@ requests.sessions: the issue comment. ' - closed_at: '2020-04-01T13:27:44Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/372/comments - created_at: '2020-04-01T13:14:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/372/events - html_url: https://github.com/packit/ogr/issues/372 - id: 591906915 + closed_at: '2020-04-27T10:09:07Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/398/comments + created_at: '2020-04-27T09:59:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/398/events + html_url: https://github.com/packit/ogr/issues/398 + id: 607410636 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/372/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/398/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1OTE5MDY5MTU= - number: 372 + node_id: MDU6SXNzdWU2MDc0MTA2MzY= + number: 398 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.11.1' - updated_at: '2020-04-01T13:27:44Z' - url: https://api.github.com/repos/packit/ogr/issues/372 + title: '[packit] Propose update failed for release 0.11.3' + updated_at: '2020-04-27T10:11:01Z' + url: https://api.github.com/repos/packit/ogr/issues/398 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -85231,27 +112574,22 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* unnecessry pip/rpm install\ - \ removed\n* add last_commit property to Pagure project\n* github: raise\ - \ when we didn't obtain install id\n* whitespace: put space b/w words\n\ - * invoke tests directly with pytest\n* gitlab,get_forks: p-gitlab can't\ - \ process server's response\n* raise OperationNotSupported when gitlab\ - \ doesn't support releases\n* zuul: don't install twine, we don't need\ - \ it in CI\n* gitlab.members.all() turned into dict\n* github.repo.get_issues\ - \ wants GithubLabel, not str\n* split test_issue_permissions into two\n\ - * Fix and refactor packit rev-dep tests\n* Fix the descriptions in playbooks\n\ + \ is the changelog I created:\n### Changes\n* Fix pagination in GitLab\ + \ and add tests\n* Fix pagination for GitlabCommitFlag\n* Add tests\ + \ for PagureIssue setters\n* Implement Issue setters for Pagure\n* revert\ + \ rpmautospec\n* spec: dont hardcode name/version, use macros instead\n\ \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.11.1-release` branch before merging this\ + \ repository and pushing to `0.11.3-release` branch before merging this\ \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2020-04-01T13:11:44Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/371/comments - created_at: '2020-04-01T08:33:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/371/events - html_url: https://github.com/packit/ogr/pull/371 - id: 591729812 + closed_at: '2020-04-27T09:58:02Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/393/comments + created_at: '2020-04-24T07:15:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/393/events + html_url: https://github.com/packit/ogr/pull/393 + id: 606096113 labels: - color: ededed default: false @@ -85267,6 +112605,13 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - color: ededed default: false description: null @@ -85274,24 +112619,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/371/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/393/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzk2ODQxOTA3 - number: 371 + node_id: MDExOlB1bGxSZXF1ZXN0NDA4Mzc0MDEw + number: 393 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/371.diff - html_url: https://github.com/packit/ogr/pull/371 - patch_url: https://github.com/packit/ogr/pull/371.patch - url: https://api.github.com/repos/packit/ogr/pulls/371 + diff_url: https://github.com/packit/ogr/pull/393.diff + html_url: https://github.com/packit/ogr/pull/393 + patch_url: https://github.com/packit/ogr/pull/393.patch + url: https://api.github.com/repos/packit/ogr/pulls/393 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.11.1 release - updated_at: '2020-04-01T13:15:17Z' - url: https://api.github.com/repos/packit/ogr/issues/371 + title: 0.11.3 release + updated_at: '2020-04-27T10:00:28Z' + url: https://api.github.com/repos/packit/ogr/issues/393 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -85309,18 +112654,266 @@ requests.sessions: subscriptions_url: https://api.github.com/users/usercont-release-bot/subscriptions type: User url: https://api.github.com/users/usercont-release-bot + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Fixes #396' + closed_at: '2020-04-26T19:23:07Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/397/comments + created_at: '2020-04-25T11:55:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/397/events + html_url: https://github.com/packit/ogr/pull/397 + id: 606754068 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/397/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDA4ODk2ODgw + number: 397 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/397.diff + html_url: https://github.com/packit/ogr/pull/397 + patch_url: https://github.com/packit/ogr/pull/397.patch + url: https://api.github.com/repos/packit/ogr/pulls/397 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Switch backticks to apostrophes in Pagure errors + updated_at: '2020-04-27T09:06:09Z' + url: https://api.github.com/repos/packit/ogr/issues/397 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "As can be seen in https://github.com/abrt/reportd/issues/10 both\ + \ [ogr](https://github.com/packit-service/ogr/blob/master/ogr/services/pagure/service.py#L150)\ + \ and [packit-service](https://github.com/packit-service/packit-service/blob/master/packit_service/worker/handlers/github_handlers.py#L179)\ + \ use backticks, which results in strange Github comments.\r\n\r\nCan\ + \ ogr use apostrophes instead?" + closed_at: '2020-04-26T19:23:07Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/396/comments + created_at: '2020-04-25T08:39:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/396/events + html_url: https://github.com/packit/ogr/issues/396 + id: 606721347 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/396/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MDY3MjEzNDc= + number: 396 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Use apostrophe rather than backtics in log messages. + updated_at: '2020-04-26T19:23:07Z' + url: https://api.github.com/repos/packit/ogr/issues/396 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER body: '' - closed_at: '2020-04-01T08:33:46Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/370/comments - created_at: '2020-04-01T08:31:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/370/events - html_url: https://github.com/packit/ogr/issues/370 - id: 591728360 + closed_at: '2020-04-24T18:06:20Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/395/comments + created_at: '2020-04-24T12:55:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/395/events + html_url: https://github.com/packit/ogr/pull/395 + id: 606292445 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/395/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDA4NTM0Mzk4 + number: 395 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/395.diff + html_url: https://github.com/packit/ogr/pull/395 + patch_url: https://github.com/packit/ogr/pull/395.patch + url: https://api.github.com/repos/packit/ogr/pulls/395 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add is_fork and username to PagureProject __str__ + updated_at: '2020-04-24T18:25:00Z' + url: https://api.github.com/repos/packit/ogr/issues/395 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2020-04-24T13:31:09Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/394/comments + created_at: '2020-04-24T10:45:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/394/events + html_url: https://github.com/packit/ogr/pull/394 + id: 606221125 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/394/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDA4NDc1OTAz + number: 394 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/394.diff + html_url: https://github.com/packit/ogr/pull/394 + patch_url: https://github.com/packit/ogr/pull/394.patch + url: https://api.github.com/repos/packit/ogr/pulls/394 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Zuul related refactoring changes + updated_at: '2020-04-24T13:33:17Z' + url: https://api.github.com/repos/packit/ogr/issues/394 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: Thanks in advance! + closed_at: '2020-04-24T07:15:34Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/385/comments + created_at: '2020-04-16T07:48:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/385/events + html_url: https://github.com/packit/ogr/issues/385 + id: 600821635 labels: - color: ededed default: false @@ -85336,103 +112929,135 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/370/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/385/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1OTE3MjgzNjA= - number: 370 + node_id: MDU6SXNzdWU2MDA4MjE2MzU= + number: 385 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed title: New patch release - updated_at: '2020-04-01T08:33:46Z' - url: https://api.github.com/repos/packit/ogr/issues/370 + updated_at: '2020-04-24T07:15:34Z' + url: https://api.github.com/repos/packit/ogr/issues/385 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-04-01T08:28:05Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/366/comments - created_at: '2020-03-26T14:07:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/366/events - html_url: https://github.com/packit/ogr/pull/366 - id: 588448629 + body: "Create a class decorator that would iterate through members of\ + \ class and check if superclass has the same member with docstring,\ + \ if so, copy the docstring.\r\n\r\nReduces the unnecessary copy-pasting\ + \ of docstrings." + closed_at: '2020-04-23T11:37:34Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/271/comments + created_at: '2019-11-13T11:21:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/271/events + html_url: https://github.com/packit/ogr/issues/271 + id: 522140617 labels: - - color: 18e033 + - color: fef2c0 default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/366/labels{/name} + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/271/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzk0MTkyNzMy - number: 366 + node_id: MDU6SXNzdWU1MjIxNDA2MTc= + number: 271 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/366.diff - html_url: https://github.com/packit/ogr/pull/366 - patch_url: https://github.com/packit/ogr/pull/366.patch - url: https://api.github.com/repos/packit/ogr/pulls/366 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: added function to update mapping - updated_at: '2020-04-01T08:28:05Z' - url: https://api.github.com/repos/packit/ogr/issues/366 + title: Inherit docstrings + updated_at: '2020-04-23T11:37:34Z' + url: https://api.github.com/repos/packit/ogr/issues/271 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-03-27T16:27:42Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/367/comments - created_at: '2020-03-26T14:08:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/367/events - html_url: https://github.com/packit/ogr/pull/367 - id: 588448982 + body: "Supposed to Fix #391 \r\n\r\nAs far as I understand the `python-gitlab`\ + \ package, they follow Gitlab's REST API with few additions like `list()`\ + \ methods on some objects.\r\n\r\n- [x] (#391) Branches API does neither\ + \ state returning paginated list or explicitly say it returns *all*\ + \ branches\r\n works with `all=True` even though it's not documented\ + \ in Gitlab API\r\n - [x] will have to try using it at some repository\ + \ with many branches (default pagination is 20 in other API endpoints)\ + \ or could you provide the repository that brought this issue to light?\ + \ ;)\r\n- [x] Repository tree - can't find `all` parameter in API,\ + \ it is used though and there is pagination => should look into that\r\ + \n same, works even though it's not in the API documentation\r\n-\ + \ [x] Releases list - by API it is paginated, there's no mention of\ + \ adjusting the count of releases per page nor `all`-parameter\r\n \ + \ same, no mention of `all` in docs\r\n- [x] Add tests" + closed_at: '2020-04-22T13:38:46Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/392/comments + created_at: '2020-04-22T08:59:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/392/events + html_url: https://github.com/packit/ogr/pull/392 + id: 604582696 labels: - color: 0e8a16 default: false @@ -85441,51 +113066,44 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/367/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/392/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzk0MTkzMDE1 - number: 367 + node_id: MDExOlB1bGxSZXF1ZXN0NDA3MTQ5MDgy + number: 392 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/367.diff - html_url: https://github.com/packit/ogr/pull/367 - patch_url: https://github.com/packit/ogr/pull/367.patch - url: https://api.github.com/repos/packit/ogr/pulls/367 + diff_url: https://github.com/packit/ogr/pull/392.diff + html_url: https://github.com/packit/ogr/pull/392 + patch_url: https://github.com/packit/ogr/pull/392.patch + url: https://api.github.com/repos/packit/ogr/pulls/392 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add last_commit property to Pagure project - updated_at: '2020-03-27T16:27:42Z' - url: https://api.github.com/repos/packit/ogr/issues/367 + title: GitLab pagination + updated_at: '2020-04-22T15:04:34Z' + url: https://api.github.com/repos/packit/ogr/issues/392 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -85504,7 +113122,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -85523,35 +113141,17 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko author_association: MEMBER - body: "- [ ] Forward some object to the issue/pr/... instances to allow\ - \ connection to the service. (Classes are not only data-holders.)\r\n\ - - [ ] All ogr classes to have properties with setters allowing to update\ - \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ - - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ - \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ - \ \r\n" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments - created_at: '2019-06-25T13:15:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/86/events - html_url: https://github.com/packit/ogr/issues/86 - id: 460418171 + body: "By now, we get only 20 branches at max. Looks like a pagination\ + \ issue.\r\n\r\nWe need to tweak pagination to list all -- we already\ + \ have that on some other method." + closed_at: '2020-04-22T13:38:46Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/391/comments + created_at: '2020-04-21T11:18:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/391/events + html_url: https://github.com/packit/ogr/issues/391 + id: 603917055 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -85559,6 +113159,119 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/391/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MDM5MTcwNTU= + number: 391 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'Return all project branches from Gitlab ' + updated_at: '2020-04-22T13:38:46Z' + url: https://api.github.com/repos/packit/ogr/issues/391 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Fixes #302 \r\n\r\n- [x] Add tests" + closed_at: '2020-04-20T12:38:20Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/389/comments + created_at: '2020-04-20T08:44:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/389/events + html_url: https://github.com/packit/ogr/pull/389 + id: 603054798 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/389/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDA1OTE2MDgx + number: 389 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/389.diff + html_url: https://github.com/packit/ogr/pull/389 + patch_url: https://github.com/packit/ogr/pull/389.patch + url: https://api.github.com/repos/packit/ogr/pulls/389 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement Issue setters for Pagure + updated_at: '2020-04-20T12:43:44Z' + url: https://api.github.com/repos/packit/ogr/issues/389 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Implement updating title and description of issue on Pagure when\ + \ the API allows it.\r\n\r\nBlocked by: [Pagure's issue](https://pagure.io/pagure/issue/4704)" + closed_at: '2020-04-20T12:38:20Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/302/comments + created_at: '2020-01-02T16:42:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/302/events + html_url: https://github.com/packit/ogr/issues/302 + id: 544654301 + labels: - color: 1d76db default: false description: Related to Pagure implementation. @@ -85566,13 +113279,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 + - color: bc4812 default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker - color: a2eeef default: false description: New feature or a request for enhancement. @@ -85580,26 +113293,355 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + - color: 8be567 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/302/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NDQ2NTQzMDE= + number: 302 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Issue setters (Pagure) + updated_at: '2020-04-20T12:38:20Z' + url: https://api.github.com/repos/packit/ogr/issues/302 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'I should read more carefully: rpmautospec is not in production + yet, + + should be only tested on staging: + + + https://lists.fedoraproject.org/archives/list/devel-announce@lists.fedoraproject.org/thread/LWE4URIRWVTEZKXKP7QOK5JXFNVJRUNW/ + + + Since we use this repository in packit''s tests, I''ll keep the spec + in a subdir so we can exercise this functionality while testing.' + closed_at: '2020-04-20T09:27:42Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/390/comments + created_at: '2020-04-20T09:09:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/390/events + html_url: https://github.com/packit/ogr/pull/390 + id: 603072599 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/390/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDA1OTMwMTIw + number: 390 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/390.diff + html_url: https://github.com/packit/ogr/pull/390 + patch_url: https://github.com/packit/ogr/pull/390.patch + url: https://api.github.com/repos/packit/ogr/pulls/390 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: revert rpmautospec + updated_at: '2020-04-20T12:28:41Z' + url: https://api.github.com/repos/packit/ogr/issues/390 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: https://docs.pagure.org/Fedora-Infra.rpmautospec/principle.html + closed_at: '2020-04-15T08:48:11Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/378/comments + created_at: '2020-04-14T14:38:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/378/events + html_url: https://github.com/packit/ogr/pull/378 + id: 599623468 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/378/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDAzMjI1MjMy + number: 378 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/378.diff + html_url: https://github.com/packit/ogr/pull/378 + patch_url: https://github.com/packit/ogr/pull/378.patch + url: https://api.github.com/repos/packit/ogr/pulls/378 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: use rpmautospec + updated_at: '2020-04-20T06:44:58Z' + url: https://api.github.com/repos/packit/ogr/issues/378 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: my bad, didn't notice packit changed it and I committed it. + closed_at: '2020-04-17T06:44:16Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/388/comments + created_at: '2020-04-17T06:23:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/388/events + html_url: https://github.com/packit/ogr/pull/388 + id: 601732754 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/388/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDA0OTQ1NTQx + number: 388 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/388.diff + html_url: https://github.com/packit/ogr/pull/388 + patch_url: https://github.com/packit/ogr/pull/388.patch + url: https://api.github.com/repos/packit/ogr/pulls/388 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'spec: dont hardcode name/version, use macros instead' + updated_at: '2020-04-17T08:24:33Z' + url: https://api.github.com/repos/packit/ogr/issues/388 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `master` | `[Errno 2] No such file or directory: ''/tmp/packit-dist-git1w9t9eub/fedora/changelog''` + | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-04-16T14:27:25Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/387/comments + created_at: '2020-04-16T09:54:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/387/events + html_url: https://github.com/packit/ogr/issues/387 + id: 600905691 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/387/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MDA5MDU2OTE= + number: 387 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.11.2' + updated_at: '2020-04-16T15:02:35Z' + url: https://api.github.com/repos/packit/ogr/issues/387 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'we are setting this so we can use packit from ogr''s dist-git + + packit can''t know what''s the upstream name when running from distgit' + closed_at: '2020-04-16T06:54:10Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/382/comments + created_at: '2020-04-15T15:53:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/382/events + html_url: https://github.com/packit/ogr/pull/382 + id: 600404945 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/382/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA0MTgxNzE= - number: 86 + node_id: MDExOlB1bGxSZXF1ZXN0NDAzODQ1ODM3 + number: 382 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/382.diff + html_url: https://github.com/packit/ogr/pull/382 + patch_url: https://github.com/packit/ogr/pull/382.patch + url: https://api.github.com/repos/packit/ogr/pulls/382 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: object-specific methods bound to ogr classes - updated_at: '2020-03-27T13:50:33Z' - url: https://api.github.com/repos/packit/ogr/issues/86 + state: closed + title: 'packit.xml: set upstream_package_name' + updated_at: '2020-04-16T14:03:12Z' + url: https://api.github.com/repos/packit/ogr/issues/382 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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} @@ -85617,21 +113659,101 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add a method to set flags\ + \ on Pagure PRs\n* Annotate PagurePullRequest.head_commit's return type\n\ + * Remove test jobs from zuul gating jobs\n* packit.xml: set upstream_package_name\n\ + * added CentOS prod/stg instances to pagure service\n* use rpmautospec\n\ + * p.yaml: use new syntax for dist_git_branch\n* Add created/edited properties\ + \ to CommitFlag\n* print pagure API errors properly\n* revert change\n\ + * PR comment: use pagure pagination metadata\n* using pagination to\ + \ retrieve pagure issue list\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.11.2-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-04-16T09:53:01Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/386/comments + created_at: '2020-04-16T07:51:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/386/events + html_url: https://github.com/packit/ogr/pull/386 + id: 600823758 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/386/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDA0MTc5NDE0 + number: 386 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/386.diff + html_url: https://github.com/packit/ogr/pull/386 + patch_url: https://github.com/packit/ogr/pull/386.patch + url: https://api.github.com/repos/packit/ogr/pulls/386 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.11.2 release + updated_at: '2020-04-16T09:54:56Z' + url: https://api.github.com/repos/packit/ogr/issues/386 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "~~Blocked on #357~~\r\n\r\nReplaces an error like this:\r\n```\r\ - \ngithub.GithubException.GithubException: 401 {\"message\":\"'Issuer'\ - \ claim ('iss') must be an Integer\",\"documentation_url\":\"https://developer.github.com/v3\"\ - }\r\n```" - closed_at: '2020-03-18T13:13:11Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/352/comments - created_at: '2020-03-16T10:19:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/352/events - html_url: https://github.com/packit/ogr/pull/352 - id: 582171280 + body: "Flags on PRs are specific to Pagure.\r\n\r\nOther forges allow\ + \ setting flags/statuses only on commits and will\r\ndisplay the flags\ + \ for the PR head on the PR page, if any is set.\r\n\r\nDue to the above\ + \ this method is added only to PagurePullRequests, and we\r\nexpect\ + \ OGR library users to implement the \"show the flags of the last\r\n\ + commit for the PR\" behaviour for Pagure, in case they need it.\r\n\r\ + \nSigned-off-by: Hunor Csomort\xE1ni " + closed_at: '2020-04-16T07:44:45Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/381/comments + created_at: '2020-04-15T15:15:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/381/events + html_url: https://github.com/packit/ogr/pull/381 + id: 600376230 labels: - color: 0e8a16 default: false @@ -85640,56 +113762,53 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/352/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/381/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg5MTMwMDA2 - number: 352 + node_id: MDExOlB1bGxSZXF1ZXN0NDAzODIzNTY4 + number: 381 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/352.diff - html_url: https://github.com/packit/ogr/pull/352 - patch_url: https://github.com/packit/ogr/pull/352.patch - url: https://api.github.com/repos/packit/ogr/pulls/352 + diff_url: https://github.com/packit/ogr/pull/381.diff + html_url: https://github.com/packit/ogr/pull/381 + patch_url: https://github.com/packit/ogr/pull/381.patch + url: https://api.github.com/repos/packit/ogr/pulls/381 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github: raise when we didn''t obtain install id' - updated_at: '2020-03-18T14:55:12Z' - url: https://api.github.com/repos/packit/ogr/issues/352 + title: Set PR flags in Pagure + updated_at: '2020-04-16T07:46:43Z' + url: https://api.github.com/repos/packit/ogr/issues/381 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #353 - - - Also fixes some test failures, let''s see...' - closed_at: '2020-03-18T12:37:13Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/357/comments - created_at: '2020-03-18T08:37:16Z' - events_url: https://api.github.com/repos/packit/ogr/issues/357/events - html_url: https://github.com/packit/ogr/pull/357 - id: 583559616 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-04-16T07:14:48Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/380/comments + created_at: '2020-04-15T13:00:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/380/events + html_url: https://github.com/packit/ogr/pull/380 + id: 600279414 labels: - color: 0e8a16 default: false @@ -85698,213 +113817,238 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/357/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/380/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzkwMjk1MDIx - number: 357 + node_id: MDExOlB1bGxSZXF1ZXN0NDAzNzQ1MDM3 + number: 380 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/357.diff - html_url: https://github.com/packit/ogr/pull/357 - patch_url: https://github.com/packit/ogr/pull/357.patch - url: https://api.github.com/repos/packit/ogr/pulls/357 + diff_url: https://github.com/packit/ogr/pull/380.diff + html_url: https://github.com/packit/ogr/pull/380 + patch_url: https://github.com/packit/ogr/pull/380.patch + url: https://api.github.com/repos/packit/ogr/pulls/380 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: invoke tests directly with pytest - updated_at: '2020-03-18T14:27:38Z' - url: https://api.github.com/repos/packit/ogr/issues/357 + title: Remove test jobs from zuul gating jobs + updated_at: '2020-04-16T07:14:48Z' + url: https://api.github.com/repos/packit/ogr/issues/380 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\n$ tox\r\nGLOB sdist-make: /home/tt/g/user-cont/ogr/setup.py\ - \ \r\npy36 inst-nodeps: /home/tt/g/user-cont/ogr/.tox/.tmp/package/1/ogr-0.11.1.dev4+g022e9df.zip\r\ - \nWARNING: Discarding $PYTHONPATH from environment, to override specify\ - \ PYTHONPATH in 'passenv' in your configuration.\r\npy36 installed:\ - \ amqp==2.5.0,-e git+git@github.com:TomasTomecek/ansible-bender.git@e3ef97fb7cdb4e19bb8f21266c09d6fdc5e76392#egg=ansible_bender,aspy.yaml==1.2.0,attrs==19.3.0,\r\ - \nbeanbag==1.9.2,billiard==3.6.0.0,celery==4.3.0,certifi==2019.11.28,cffi==1.14.0,cfgv==1.5.0,chardet==3.0.4,click==7.1.1,colin-redhat==0.0.2,conu==0.6.0,coverage==5.0.3,crypt\r\ - \nography==2.8,Deprecated==1.2.5,dnspython==1.16.0,dpath==1.4.2,eventlet==0.25.0,flexmock==0.10.4,frambo==0.0.3,generator==0.1.dev34+g6448aff,gevent==1.4.0,gitchangelog==3.0.4\r\ - \n,gitdb==4.0.2,GitPython==3.1.0,identify==1.4.0,idna==2.9,importlib-metadata==0.8,jsl==0.2.4,kobo==0.7.0,koji==1.16.0,kombu==4.6.3,kubernetes==8.0.2,monotonic==1.5,more-itert\r\ - \nools==8.2.0,nodeenv==1.3.3,numpy==1.17.2,-e git+git@github.com:TomasTomecek/ogr@022e9dff7fd02e2f4d34ca836ac298127d7f5694#egg=ogr,packaging==20.3,-e\ - \ git+git@github.com:TomasT\r\nomecek/packit.git@25a1ca9a2d746b493ee10aced1ce477cfd529653#egg=packitos,persistentdict==0.1.0,pluggy==0.13.1,pre-commit==1.14.4,py==1.8.1,pycparser==2.20,PyGithub==1.46,PyJW\r\ - \nT==1.7.1,pyparsing==2.4.6,pystache==0.5.4,pytest==5.4.1,pytest-cov==2.8.1,python-gitlab==2.1.2,PyYAML==5.3,raven==6.10.0,redis==3.2.1,requests==2.23.0,-e\ - \ git+git@github.com:\r\nTomasTomecek/requre.git@f5410b0095d31e2b0f27b92d7ca24e365b472d33#egg=requre,rlsbot-test==1.0.0,rpm-py-installer==0.8.0,-e\ - \ git+git@github.com:TomasTomecek/generator.git@65a43\r\n07bcd0d8f45b3c7ed8b757be5d44601a62d#egg=sandcastle,sentry-sdk==0.12.2,show-me==0.1.dev25+g72bc7ba,six==1.14.0,smmap==3.0.1,tool==0.1.0.dev0,ucho==0.1.0,-e\ - \ git+git@github.com\r\n:TomasTomecek/upsint.git@972ba36e63c8b44eedf291ac1d30f87954258ef6#egg=upsint,urllib3==1.25.8,vine==1.3.0,wcwidth==0.1.8,wrapt==1.11.1,zipp==0.3.3\r\ - \npy36 run-test-pre: PYTHONHASHSEED='2399286198'\r\npy36 run-test: commands[0]\ - \ | pytest --color=yes --verbose --showlocals --cov=ogr --cov-report=term-missing\r\ - \n============================================================================\ - \ test session starts ============================================================================\r\ - \nplatform linux -- Python 3.6.10, pytest-5.4.1, py-1.8.1, pluggy-0.13.1\ - \ -- /home/tt/g/user-cont/ogr/.tox/py36/bin/python\r\ncachedir: .tox/py36/.pytest_cache\r\ - \nrootdir: /home/tt/g/user-cont/ogr\r\nplugins: cov-2.8.1\r\ncollected\ - \ 255 items \ - \ \ - \ \r\n\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_github\ - \ FAILED \ - \ [ 0%]\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_gitlab\ - \ FAILED \ - \ [ 0%]\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_pagure\ - \ FAILED \ - \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments\ - \ FAILED \ - \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_author\ - \ FAILED \ - \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_author_regex\ - \ FAILED \ - \ [ 2%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_regex\ - \ FAILED \ - \ [ 2%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_regex_reversed\ - \ FAILED \ - \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_reversed\ - \ FAILED \ - \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_updates\ - \ FAILED \ - \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_pr_comments\ - \ FAILED \ - \ [ 4%]\r\ntests/integration/test_github.py::Comments::test_pr_comments_author\ - \ FAILED \ - \ [ 4%]\r\ntests/integration/test_github.py::Comments::test_pr_comments_author_regex\ - \ FAILED \ - \ [ 5%]\r\n```\r\n\r\n```\r\nE \ - \ requre.exceptions.ItemNotInStorage: Keys not in storage:/home/tt/g/user-cont/ogr/tests/integration/test_data/test_github/tests.integration.test_github.Ge\r\ - \nnericCommands.test_description.yaml Matched: ['SKIP tests.integration.test_github',\ - \ 'SKIP ogr.services.github.project', 'SKIP github.MainClass', 'SKIP\ - \ github.Requester', 'SK\r\nIP requests.sessions', 'SKIP requre.objects'],\ - \ Missing: ['requests.sessions', 'send']\r\n```\r\n\r\nHappens even\ - \ when I use older pygithub." - closed_at: '2020-03-18T12:37:12Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/353/comments - created_at: '2020-03-16T11:20:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/353/events - html_url: https://github.com/packit/ogr/issues/353 - id: 582211662 + author_association: CONTRIBUTOR + body: added CentOS prod/stg instances to pagure service + closed_at: '2020-04-15T14:44:22Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/379/comments + created_at: '2020-04-15T08:59:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/379/events + html_url: https://github.com/packit/ogr/pull/379 + id: 600137338 labels: - - color: f9d0c4 + - color: 18e033 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/353/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/379/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODIyMTE2NjI= - number: 353 + node_id: MDExOlB1bGxSZXF1ZXN0NDAzNjMwOTAx + number: 379 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/379.diff + html_url: https://github.com/packit/ogr/pull/379 + patch_url: https://github.com/packit/ogr/pull/379.patch + url: https://api.github.com/repos/packit/ogr/pulls/379 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: most of the tests are failing on master now - updated_at: '2020-03-18T12:37:12Z' - url: https://api.github.com/repos/packit/ogr/issues/353 + title: added CentOS prod/stg instances to pagure service + updated_at: '2020-04-15T14:44:22Z' + url: https://api.github.com/repos/packit/ogr/issues/379 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: 'I was wondering if OGR does support interacting with enterprise - versions of Gitlab, when provided with an private token. I think Gitlab - enterprise has the same set of API''s as the public version, so is there - a way to like provide the service url like for example - https://gitlab.cee.redhat.com - and it would then try accessing repo''s from that instead of publicly - hosted Gitlab. ' - closed_at: '2020-03-17T14:46:29Z' + body: 'Add datetime to commit flags #344' + closed_at: '2020-04-14T16:09:59Z' comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/354/comments - created_at: '2020-03-16T16:10:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/354/events - html_url: https://github.com/packit/ogr/issues/354 - id: 582420398 + comments_url: https://api.github.com/repos/packit/ogr/issues/374/comments + created_at: '2020-04-08T13:34:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/374/events + html_url: https://github.com/packit/ogr/pull/374 + id: 596583247 labels: - - color: d93f0b + - color: 0e8a16 default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - labels_url: https://api.github.com/repos/packit/ogr/issues/354/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/374/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODI0MjAzOTg= - number: 354 + node_id: MDExOlB1bGxSZXF1ZXN0NDAwODUyNzQ0 + number: 374 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/374.diff + html_url: https://github.com/packit/ogr/pull/374 + patch_url: https://github.com/packit/ogr/pull/374.patch + url: https://api.github.com/repos/packit/ogr/pulls/374 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add datetime to commitflags + updated_at: '2020-04-14T16:09:59Z' + url: https://api.github.com/repos/packit/ogr/issues/374 + user: + avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 + events_url: https://api.github.com/users/TomasJani/events{/privacy} + followers_url: https://api.github.com/users/TomasJani/followers + following_url: https://api.github.com/users/TomasJani/following{/other_user} + gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasJani + id: 21237576 + login: TomasJani + node_id: MDQ6VXNlcjIxMjM3NTc2 + organizations_url: https://api.github.com/users/TomasJani/orgs + received_events_url: https://api.github.com/users/TomasJani/received_events + repos_url: https://api.github.com/users/TomasJani/repos + site_admin: false + starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + type: User + url: https://api.github.com/users/TomasJani + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: PaureProject.get_files() not implemented. Maybe not possible because + pagure api doesnt provide any possiblity to get repository content. + closed_at: '2020-04-14T09:13:43Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/377/comments + created_at: '2020-04-14T07:44:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/377/events + html_url: https://github.com/packit/ogr/issues/377 + id: 599365195 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: cfd3d7 + default: true + description: This issue or pull request already exists + id: 1160311263 + name: duplicate + node_id: MDU6TGFiZWwxMTYwMzExMjYz + url: https://api.github.com/repos/packit/ogr/labels/duplicate + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: ff9990 + default: false + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + labels_url: https://api.github.com/repos/packit/ogr/issues/377/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1OTkzNjUxOTU= + number: 377 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Supporting enterprise versions of Gitlab - updated_at: '2020-03-17T14:58:14Z' - url: https://api.github.com/repos/packit/ogr/issues/354 + title: PaureProject.get_files() not implemented + updated_at: '2020-04-14T09:13:43Z' + url: https://api.github.com/repos/packit/ogr/issues/377 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 - events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} - followers_url: https://api.github.com/users/saisankargochhayat/followers - following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} - gists_url: https://api.github.com/users/saisankargochhayat/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/saisankargochhayat - id: 9396452 - login: saisankargochhayat - node_id: MDQ6VXNlcjkzOTY0NTI= - organizations_url: https://api.github.com/users/saisankargochhayat/orgs - received_events_url: https://api.github.com/users/saisankargochhayat/received_events - repos_url: https://api.github.com/users/saisankargochhayat/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/saisankargochhayat + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Related #350 ' - closed_at: '2020-03-12T13:26:35Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/351/comments - created_at: '2020-03-11T08:26:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/351/events - html_url: https://github.com/packit/ogr/pull/351 - id: 579088221 + author_association: CONTRIBUTOR + body: 'the "errors" may not be set + + + Fixes #334' + closed_at: '2020-04-09T11:55:55Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/375/comments + created_at: '2020-04-09T10:00:07Z' + events_url: https://api.github.com/repos/packit/ogr/issues/375/events + html_url: https://github.com/packit/ogr/pull/375 + id: 597167333 labels: - color: 0e8a16 default: false @@ -85913,143 +114057,98 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/351/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg2NTQ3NzEz - number: 351 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/351.diff - html_url: https://github.com/packit/ogr/pull/351 - patch_url: https://github.com/packit/ogr/pull/351.patch - url: https://api.github.com/repos/packit/ogr/pulls/351 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Fix and refactor packit rev-dep tests - updated_at: '2020-03-12T13:26:35Z' - url: https://api.github.com/repos/packit/ogr/issues/351 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "The [Fedora dist-git CI fails](https://fedora.softwarefactory-project.io/zuul/build/755e891747f145b8810a8933c37fef3a/logs)\ - \ with that error.\r\nI'm not sure where's the correct place to fix\ - \ it, but I'm creating this so that we don't forget about it since I\ - \ need to merge [that PR](https://src.fedoraproject.org/rpms/python-ogr/pull-request/159)." - closed_at: '2020-03-12T12:24:37Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/323/comments - created_at: '2020-02-05T12:03:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/323/events - html_url: https://github.com/packit/ogr/issues/323 - id: 560327796 - labels: - - color: f9d0c4 + - color: 18e033 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/323/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/375/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NjAzMjc3OTY= - number: 323 + node_id: MDExOlB1bGxSZXF1ZXN0NDAxMzI4NDE2 + number: 375 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/375.diff + html_url: https://github.com/packit/ogr/pull/375 + patch_url: https://github.com/packit/ogr/pull/375.patch + url: https://api.github.com/repos/packit/ogr/pulls/375 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'ModuleNotFoundError: No module named ''flexmock''' - updated_at: '2020-03-12T12:24:37Z' - url: https://api.github.com/repos/packit/ogr/issues/323 + title: print pagure API errors properly + updated_at: '2020-04-09T11:58:14Z' + url: https://api.github.com/repos/packit/ogr/issues/375 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/TomasTomecek assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + - 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj - author_association: MEMBER - body: pagure provides more detailed error info stored under 'errors' key, - which is not currently not used in output - closed_at: '2020-03-12T12:16:11Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/331/comments - created_at: '2020-02-18T14:15:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/331/events - html_url: https://github.com/packit/ogr/issues/331 - id: 566921606 + url: https://api.github.com/users/TomasTomecek + author_association: CONTRIBUTOR + body: "edited by @lachmanfrantisek :\r\n\r\nTODO:\r\n- Add tests for https://github.com/packit-service/ogr/pull/333\ + \ (better pagure error messages)\r\n - e.g. wrong URL, wrong token,\ + \ not-found object,..." + closed_at: '2020-04-09T11:55:54Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/334/comments + created_at: '2020-02-19T13:50:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/334/events + html_url: https://github.com/packit/ogr/issues/334 + id: 567583973 labels: - color: 1d76db default: false @@ -86058,27 +114157,40 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 8be567 + - color: 7057ff default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/331/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/334/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NjY5MjE2MDY= - number: 331 + node_id: MDU6SXNzdWU1Njc1ODM5NzM= + number: 334 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: pagure provides more detailed error info stored under 'errors' - key - updated_at: '2020-03-12T12:16:11Z' - url: https://api.github.com/repos/packit/ogr/issues/331 + title: improve pagure unit tests + updated_at: '2020-04-09T11:55:54Z' + url: https://api.github.com/repos/packit/ogr/issues/334 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -86099,92 +114211,67 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'It seems that ogr-reverse-dep-packit-tests does not really test - packit with the ogr change, I broke the ogr and `ogr-reverse-dep-packit-tests - : SUCCESS in 8m 01s`.' - closed_at: '2020-03-11T08:27:40Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/350/comments - created_at: '2020-03-10T18:56:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/350/events - html_url: https://github.com/packit/ogr/pull/350 - id: 578793909 + author_association: CONTRIBUTOR + body: 'Fixes #334' + closed_at: '2020-04-09T09:43:45Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/373/comments + created_at: '2020-04-07T09:08:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/373/events + html_url: https://github.com/packit/ogr/pull/373 + id: 595713934 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/350/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/373/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg2MzA4Njk0 - number: 350 + node_id: MDExOlB1bGxSZXF1ZXN0NDAwMTM4Nzgx + number: 373 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/350.diff - html_url: https://github.com/packit/ogr/pull/350 - patch_url: https://github.com/packit/ogr/pull/350.patch - url: https://api.github.com/repos/packit/ogr/pulls/350 + diff_url: https://github.com/packit/ogr/pull/373.diff + html_url: https://github.com/packit/ogr/pull/373 + patch_url: https://github.com/packit/ogr/pull/373.patch + url: https://api.github.com/repos/packit/ogr/pulls/373 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Just testing the rev-dep tests - updated_at: '2020-03-11T08:27:40Z' - url: https://api.github.com/repos/packit/ogr/issues/350 + title: 'pagure: errors may be not set, add tests' + updated_at: '2020-04-09T09:43:45Z' + url: https://api.github.com/repos/packit/ogr/issues/373 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Add stage to expected\ - \ pagure instances\n* Set missing info in GitHub commit flags\n* Regenerate\ - \ responses for 'test_issue_list_label'\n* List all GitLab issues (ignore\ - \ pagination)\n* Allow to filter issues by labels.\n* enable getting\ - \ projects defined with SSH URLs\n* Add diff_url to the PR classes\n\ - * Add missing setters to abstract PR class\n* apply precommit changes\n\ - * simplify requre testcases and use requre base test class\n* Use only\ - \ first+last token/key character in the __str__ methods\n* updated PullRequest\ - \ depr message Co-Authored-By: lachmanfrantisek \n\ - * provide is_private method on GitProjects\n* improve pagure error response\n\ - * [.packit.yaml] remove no-longer needed keys & use aliases\n* [CONTRIBUTING.md]\ - \ update\n* Add support for tags when creating pagure issues.\n* Generate\ - \ standard .gitignore file\n* [Pre-commit] Use Prettier\n* [pre-commit]\ - \ autoupdate\n* Run setup-cfg-fmt\n* Strip trailing slash from URL,\ - \ if it exists\n* Add test for trailing slash in URL\n* github.pr.author:\ - \ use login instead of name\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.11.0-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-03-09T12:38:54Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/347/comments - created_at: '2020-03-07T06:10:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/347/events - html_url: https://github.com/packit/ogr/pull/347 - id: 577286080 + author_association: FIRST_TIMER + body: "Fixes #339 \r\nPagure's API allows [pagination with 100 issues\ + \ per page](https://pagure.io/api/0/#issues), this code iterates though\ + \ issues pages until reaching either max issues (default 1000) or last\ + \ issue.\r\n" + closed_at: '2020-04-07T12:06:30Z' + comments: 17 + comments_url: https://api.github.com/repos/packit/ogr/issues/361/comments + created_at: '2020-03-23T14:55:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/361/events + html_url: https://github.com/packit/ogr/pull/361 + id: 586272328 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -86192,48 +114279,230 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed + labels_url: https://api.github.com/repos/packit/ogr/issues/361/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzkyNDM2NTcw + number: 361 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/361.diff + html_url: https://github.com/packit/ogr/pull/361 + patch_url: https://github.com/packit/ogr/pull/361.patch + url: https://api.github.com/repos/packit/ogr/pulls/361 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Using pagination to retrieve pagure's full issue list + updated_at: '2020-04-07T12:06:30Z' + url: https://api.github.com/repos/packit/ogr/issues/361 + user: + avatar_url: https://avatars.githubusercontent.com/u/28443421?v=4 + events_url: https://api.github.com/users/AdarLavi/events{/privacy} + followers_url: https://api.github.com/users/AdarLavi/followers + following_url: https://api.github.com/users/AdarLavi/following{/other_user} + gists_url: https://api.github.com/users/AdarLavi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/AdarLavi + id: 28443421 + login: AdarLavi + node_id: MDQ6VXNlcjI4NDQzNDIx + organizations_url: https://api.github.com/users/AdarLavi/orgs + received_events_url: https://api.github.com/users/AdarLavi/received_events + repos_url: https://api.github.com/users/AdarLavi/repos + site_admin: false + starred_url: https://api.github.com/users/AdarLavi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/AdarLavi/subscriptions + type: User + url: https://api.github.com/users/AdarLavi + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Currently using a Pagure service the get_issue_list method returns\ + \ only the last 20 issues of a project. This is because Pagure paginate\ + \ the results, I have not looked at GitHub and GitLab but I guess it\ + \ works the same.\r\n\r\nIdeally `get_issue_list` should return a list\ + \ of all the issues for a project and the pagination should be transparent\ + \ to the user." + closed_at: '2020-04-07T12:06:30Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/339/comments + created_at: '2020-02-21T13:47:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/339/events + html_url: https://github.com/packit/ogr/issues/339 + id: 568965084 + labels: + - color: 1d76db default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/347/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/339/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1Njg5NjUwODQ= + number: 339 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: support pagination for get_issue_list + updated_at: '2020-04-07T12:06:30Z' + url: https://api.github.com/repos/packit/ogr/issues/339 + user: + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 + events_url: https://api.github.com/users/cverna/events{/privacy} + followers_url: https://api.github.com/users/cverna/followers + following_url: https://api.github.com/users/cverna/following{/other_user} + gists_url: https://api.github.com/users/cverna/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/cverna + id: 7237866 + login: cverna + node_id: MDQ6VXNlcjcyMzc4NjY= + organizations_url: https://api.github.com/users/cverna/orgs + received_events_url: https://api.github.com/users/cverna/received_events + repos_url: https://api.github.com/users/cverna/repos + site_admin: false + starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/cverna/subscriptions + type: User + url: https://api.github.com/users/cverna + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "similar to https://github.com/packit-service/requre/issues/29\r\ + \nplease add reverse dependency testing what will check that change\ + \ will not break ``packit`` and in case it is broken, will raise that\ + \ you have to create issue to packit to regenerate response files, or\ + \ that it found bug in ogr. " + closed_at: '2020-04-07T08:41:19Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/237/comments + created_at: '2019-10-09T05:48:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/237/events + html_url: https://github.com/packit/ogr/issues/237 + id: 504429863 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/237/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg1MTA5ODI1 - number: 347 + node_id: MDU6SXNzdWU1MDQ0Mjk4NjM= + number: 237 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/347.diff - html_url: https://github.com/packit/ogr/pull/347 - patch_url: https://github.com/packit/ogr/pull/347.patch - url: https://api.github.com/repos/packit/ogr/pulls/347 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.11.0 release - updated_at: '2020-03-11T08:26:41Z' - url: https://api.github.com/repos/packit/ogr/issues/347 + title: add reverse dependency testing to packit package + updated_at: '2020-04-07T08:41:19Z' + url: https://api.github.com/repos/packit/ogr/issues/237 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos 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 + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/jscotka + _next: null + elapsed: 0.684217 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:56 GMT + ETag: W/"9438dad3d050738b6096c0c928eb916253dff505825b82e2750c7d43156df96c" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7DE36:1918443:6075DC1B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4874' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '126' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=9: + - metadata: + latency: 0.4251210689544678 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] @@ -86245,45 +114514,45 @@ requests.sessions: | --------------- | ----- | - | `f30` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This - is not supported.` | - - | `f31` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + | `f30` | `The distgit repository /tmp/packit-dist-git8t1ct16f is dirty.This is not supported.` | - | `f32` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + | `f31` | `The distgit repository /tmp/packit-dist-git8t1ct16f is dirty.This is not supported.` | - | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.0.tar.gz. + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.1.tar.gz. Reason: ''Not Found''. ` | + | `master` | `The distgit repository /tmp/packit-dist-git8t1ct16f is + dirty.This is not supported.` | + You can re-trigger the update by adding `/packit propose-update` to the issue comment. ' - closed_at: '2020-03-09T14:02:41Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/348/comments - created_at: '2020-03-09T12:44:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/348/events - html_url: https://github.com/packit/ogr/issues/348 - id: 577881745 + closed_at: '2020-04-01T13:27:44Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/372/comments + created_at: '2020-04-01T13:14:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/372/events + html_url: https://github.com/packit/ogr/issues/372 + id: 591906915 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/348/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/372/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1Nzc4ODE3NDU= - number: 348 + node_id: MDU6SXNzdWU1OTE5MDY5MTU= + number: 372 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.11.0' - updated_at: '2020-03-10T09:57:32Z' - url: https://api.github.com/repos/packit/ogr/issues/348 + title: '[packit] Propose update failed for release 0.11.1' + updated_at: '2020-04-01T13:27:44Z' + url: https://api.github.com/repos/packit/ogr/issues/372 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -86304,70 +114573,27 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-03-09T16:13:07Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/349/comments - created_at: '2020-03-09T15:12:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/349/events - html_url: https://github.com/packit/ogr/pull/349 - id: 577980538 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/349/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg1NjQ2MjU3 - number: 349 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/349.diff - html_url: https://github.com/packit/ogr/pull/349 - patch_url: https://github.com/packit/ogr/pull/349.patch - url: https://api.github.com/repos/packit/ogr/pulls/349 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Fix the descriptions in playbooks - updated_at: '2020-03-09T16:13:07Z' - url: https://api.github.com/repos/packit/ogr/issues/349 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-03-07T06:10:20Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/346/comments - created_at: '2020-03-07T06:08:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/346/events - html_url: https://github.com/packit/ogr/issues/346 - id: 577285921 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* unnecessry pip/rpm install\ + \ removed\n* add last_commit property to Pagure project\n* github: raise\ + \ when we didn't obtain install id\n* whitespace: put space b/w words\n\ + * invoke tests directly with pytest\n* gitlab,get_forks: p-gitlab can't\ + \ process server's response\n* raise OperationNotSupported when gitlab\ + \ doesn't support releases\n* zuul: don't install twine, we don't need\ + \ it in CI\n* gitlab.members.all() turned into dict\n* github.repo.get_issues\ + \ wants GithubLabel, not str\n* split test_issue_permissions into two\n\ + * Fix and refactor packit rev-dep tests\n* Fix the descriptions in playbooks\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.11.1-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-04-01T13:11:44Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/371/comments + created_at: '2020-04-01T08:33:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/371/events + html_url: https://github.com/packit/ogr/pull/371 + id: 591729812 labels: - color: ededed default: false @@ -86376,56 +114602,6 @@ requests.sessions: name: bot node_id: MDU6TGFiZWwxMjM3NzA0MjUw url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/346/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1NzcyODU5MjE= - number: 346 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: New minor release - updated_at: '2020-03-07T06:10:20Z' - url: https://api.github.com/repos/packit/ogr/issues/346 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-03-05T07:21:02Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/345/comments - created_at: '2020-03-04T16:38:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/345/events - html_url: https://github.com/packit/ogr/pull/345 - id: 575562256 - labels: - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -86433,382 +114609,172 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/345/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzgzNjkxODk5 - number: 345 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/345.diff - html_url: https://github.com/packit/ogr/pull/345 - patch_url: https://github.com/packit/ogr/pull/345.patch - url: https://api.github.com/repos/packit/ogr/pulls/345 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add stage to expected pagure instances - updated_at: '2020-03-05T07:21:02Z' - url: https://api.github.com/repos/packit/ogr/issues/345 - user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos - site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions - type: User - url: https://api.github.com/users/dhodovsk - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Set missing info in GitHub commit flags. - - - Test was improved to cover that.' - closed_at: '2020-03-04T09:57:25Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/343/comments - created_at: '2020-03-02T11:17:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/343/events - html_url: https://github.com/packit/ogr/pull/343 - id: 573904235 - labels: - - color: 0e8a16 + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/343/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/371/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzgyMzI1NTEz - number: 343 + node_id: MDExOlB1bGxSZXF1ZXN0Mzk2ODQxOTA3 + number: 371 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/343.diff - html_url: https://github.com/packit/ogr/pull/343 - patch_url: https://github.com/packit/ogr/pull/343.patch - url: https://api.github.com/repos/packit/ogr/pulls/343 + diff_url: https://github.com/packit/ogr/pull/371.diff + html_url: https://github.com/packit/ogr/pull/371 + patch_url: https://github.com/packit/ogr/pull/371.patch + url: https://api.github.com/repos/packit/ogr/pulls/371 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix GitHub commit flags - updated_at: '2020-03-04T10:31:38Z' - url: https://api.github.com/repos/packit/ogr/issues/343 + title: 0.11.1 release + updated_at: '2020-04-01T13:15:17Z' + url: https://api.github.com/repos/packit/ogr/issues/371 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "When working with PRs, there are also URLs linking directly to\ - \ diff tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the `url_diff`\ - \ and implement it.\r\n - Use API if possible, otherwise \"guess\"\ - \ the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\nExamples:\r\ - \n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/diffs\r\ - \n- https://github.com/packit-service/ogr/pull/1/files\r\n- https://pagure.io/ogr-tests/pull-request/7#request_diff\r\ - \n" - closed_at: '2020-03-03T15:49:36Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/211/comments - created_at: '2019-09-19T18:48:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/211/events - html_url: https://github.com/packit/ogr/issues/211 - id: 495968184 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-04-01T08:33:46Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/370/comments + created_at: '2020-04-01T08:31:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/370/events + html_url: https://github.com/packit/ogr/issues/370 + id: 591728360 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - - color: '000000' + - color: ededed default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/211/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0OTU5NjgxODQ= - number: 211 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add diff url to PullRequest class - updated_at: '2020-03-03T15:49:36Z' - url: https://api.github.com/repos/packit/ogr/issues/211 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Added object representation for GitHub releases. - - - What about pagure? Is there anything that can be used?' - closed_at: '2019-03-12T13:36:17Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/19/comments - created_at: '2019-02-21T15:14:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/19/events - html_url: https://github.com/packit/ogr/pull/19 - id: 412975574 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/19/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/370/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU1MDY0MDU2 - number: 19 + node_id: MDU6SXNzdWU1OTE3MjgzNjA= + number: 370 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/19.diff - html_url: https://github.com/packit/ogr/pull/19 - patch_url: https://github.com/packit/ogr/pull/19.patch - url: https://api.github.com/repos/packit/ogr/pulls/19 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Releases - updated_at: '2020-02-28T11:35:03Z' - url: https://api.github.com/repos/packit/ogr/issues/19 + title: New patch release + updated_at: '2020-04-01T08:33:46Z' + url: https://api.github.com/repos/packit/ogr/issues/370 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=6: - - metadata: - latency: 0.6126630306243896 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Do not use tokens/private_keys in the `__str__` methods.\n -\ - \ used `set`/`not set` instead\n - reason: We've started to show logs\ - \ publicly in the packit-service and it can be easy to forget about\ - \ this \"feature\"." - closed_at: '2020-02-21T12:13:33Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/336/comments - created_at: '2020-02-20T09:28:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/336/events - html_url: https://github.com/packit/ogr/pull/336 - id: 568163719 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-04-01T08:28:05Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/366/comments + created_at: '2020-03-26T14:07:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/366/events + html_url: https://github.com/packit/ogr/pull/366 + id: 588448629 labels: - - color: 0e8a16 + - color: 18e033 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/336/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/366/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc3NjQzMzYy - number: 336 + node_id: MDExOlB1bGxSZXF1ZXN0Mzk0MTkyNzMy + number: 366 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/336.diff - html_url: https://github.com/packit/ogr/pull/336 - patch_url: https://github.com/packit/ogr/pull/336.patch - url: https://api.github.com/repos/packit/ogr/pulls/336 + diff_url: https://github.com/packit/ogr/pull/366.diff + html_url: https://github.com/packit/ogr/pull/366 + patch_url: https://github.com/packit/ogr/pull/366.patch + url: https://api.github.com/repos/packit/ogr/pulls/366 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Do not use tokens and keys in the __str__ methods - updated_at: '2020-02-28T11:34:56Z' - url: https://api.github.com/repos/packit/ogr/issues/336 + title: added function to update mapping + updated_at: '2020-04-01T08:28:05Z' + url: https://api.github.com/repos/packit/ogr/issues/366 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "This commit adds the possibility to provide\r\na list of labels\ - \ to filter the issues of a\r\nproject.\r\n\r\nSigned-off-by: Clement\ - \ Verna " - closed_at: '2020-02-28T10:13:37Z' - comments: 22 - comments_url: https://api.github.com/repos/packit/ogr/issues/340/comments - created_at: '2020-02-21T14:19:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/340/events - html_url: https://github.com/packit/ogr/pull/340 - id: 568983388 + body: '' + closed_at: '2020-03-27T16:27:42Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/367/comments + created_at: '2020-03-26T14:08:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/367/events + html_url: https://github.com/packit/ogr/pull/367 + id: 588448982 labels: - color: 0e8a16 default: false @@ -86817,57 +114783,63 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/340/labels{/name} + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/367/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc4MzA1ODAw - number: 340 + node_id: MDExOlB1bGxSZXF1ZXN0Mzk0MTkzMDE1 + number: 367 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/340.diff - html_url: https://github.com/packit/ogr/pull/340 - patch_url: https://github.com/packit/ogr/pull/340.patch - url: https://api.github.com/repos/packit/ogr/pulls/340 + diff_url: https://github.com/packit/ogr/pull/367.diff + html_url: https://github.com/packit/ogr/pull/367 + patch_url: https://github.com/packit/ogr/pull/367.patch + url: https://api.github.com/repos/packit/ogr/pulls/367 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Allow to filter issues by labels. - updated_at: '2020-02-28T10:17:42Z' - url: https://api.github.com/repos/packit/ogr/issues/340 + title: add last_commit property to Pagure project + updated_at: '2020-03-27T16:27:42Z' + url: https://api.github.com/repos/packit/ogr/issues/367 user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 - events_url: https://api.github.com/users/cverna/events{/privacy} - followers_url: https://api.github.com/users/cverna/followers - following_url: https://api.github.com/users/cverna/following{/other_user} - gists_url: https://api.github.com/users/cverna/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/cverna - id: 7237866 - login: cverna - node_id: MDQ6VXNlcjcyMzc4NjY= - organizations_url: https://api.github.com/users/cverna/orgs - received_events_url: https://api.github.com/users/cverna/received_events - repos_url: https://api.github.com/users/cverna/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/cverna/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/cverna + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #306 - - - Franto, we didn''t speak about this, but this how I expect it to work, - WDYT?' - closed_at: '2020-02-26T11:51:17Z' + author_association: CONTRIBUTOR + body: "~~Blocked on #357~~\r\n\r\nReplaces an error like this:\r\n```\r\ + \ngithub.GithubException.GithubException: 401 {\"message\":\"'Issuer'\ + \ claim ('iss') must be an Integer\",\"documentation_url\":\"https://developer.github.com/v3\"\ + }\r\n```" + closed_at: '2020-03-18T13:13:11Z' comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/337/comments - created_at: '2020-02-20T21:27:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/337/events - html_url: https://github.com/packit/ogr/pull/337 - id: 568583084 + comments_url: https://api.github.com/repos/packit/ogr/issues/352/comments + created_at: '2020-03-16T10:19:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/352/events + html_url: https://github.com/packit/ogr/pull/352 + id: 582171280 labels: - color: 0e8a16 default: false @@ -86876,24 +114848,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/337/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/352/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc3OTgyODUz - number: 337 + node_id: MDExOlB1bGxSZXF1ZXN0Mzg5MTMwMDA2 + number: 352 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/337.diff - html_url: https://github.com/packit/ogr/pull/337 - patch_url: https://github.com/packit/ogr/pull/337.patch - url: https://api.github.com/repos/packit/ogr/pulls/337 + diff_url: https://github.com/packit/ogr/pull/352.diff + html_url: https://github.com/packit/ogr/pull/352 + patch_url: https://github.com/packit/ogr/pull/352.patch + url: https://api.github.com/repos/packit/ogr/pulls/352 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: enable getting projects defined with SSH URLs - updated_at: '2020-02-26T11:51:17Z' - url: https://api.github.com/repos/packit/ogr/issues/337 + title: 'github: raise when we didn''t obtain install id' + updated_at: '2020-03-18T14:55:12Z' + url: https://api.github.com/repos/packit/ogr/issues/352 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -86912,27 +114884,46 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #353 + + + Also fixes some test failures, let''s see...' + closed_at: '2020-03-18T12:37:13Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/357/comments + created_at: '2020-03-18T08:37:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/357/events + html_url: https://github.com/packit/ogr/pull/357 + id: 583559616 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/357/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzkwMjk1MDIx + number: 357 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/357.diff + html_url: https://github.com/packit/ogr/pull/357 + patch_url: https://github.com/packit/ogr/pull/357.patch + url: https://api.github.com/repos/packit/ogr/pulls/357 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: invoke tests directly with pytest + updated_at: '2020-03-18T14:27:38Z' + url: https://api.github.com/repos/packit/ogr/issues/357 + 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} @@ -86950,43 +114941,94 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek - author_association: MEMBER - body: 'see below: https://github.com/packit-service/ogr/issues/306#issuecomment-575204355' - closed_at: '2020-02-26T11:51:17Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/306/comments - created_at: '2020-01-10T15:38:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/306/events - html_url: https://github.com/packit/ogr/issues/306 - id: 548146892 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n$ tox\r\nGLOB sdist-make: /home/tt/g/user-cont/ogr/setup.py\ + \ \r\npy36 inst-nodeps: /home/tt/g/user-cont/ogr/.tox/.tmp/package/1/ogr-0.11.1.dev4+g022e9df.zip\r\ + \nWARNING: Discarding $PYTHONPATH from environment, to override specify\ + \ PYTHONPATH in 'passenv' in your configuration.\r\npy36 installed:\ + \ amqp==2.5.0,-e git+git@github.com:TomasTomecek/ansible-bender.git@e3ef97fb7cdb4e19bb8f21266c09d6fdc5e76392#egg=ansible_bender,aspy.yaml==1.2.0,attrs==19.3.0,\r\ + \nbeanbag==1.9.2,billiard==3.6.0.0,celery==4.3.0,certifi==2019.11.28,cffi==1.14.0,cfgv==1.5.0,chardet==3.0.4,click==7.1.1,colin-redhat==0.0.2,conu==0.6.0,coverage==5.0.3,crypt\r\ + \nography==2.8,Deprecated==1.2.5,dnspython==1.16.0,dpath==1.4.2,eventlet==0.25.0,flexmock==0.10.4,frambo==0.0.3,generator==0.1.dev34+g6448aff,gevent==1.4.0,gitchangelog==3.0.4\r\ + \n,gitdb==4.0.2,GitPython==3.1.0,identify==1.4.0,idna==2.9,importlib-metadata==0.8,jsl==0.2.4,kobo==0.7.0,koji==1.16.0,kombu==4.6.3,kubernetes==8.0.2,monotonic==1.5,more-itert\r\ + \nools==8.2.0,nodeenv==1.3.3,numpy==1.17.2,-e git+git@github.com:TomasTomecek/ogr@022e9dff7fd02e2f4d34ca836ac298127d7f5694#egg=ogr,packaging==20.3,-e\ + \ git+git@github.com:TomasT\r\nomecek/packit.git@25a1ca9a2d746b493ee10aced1ce477cfd529653#egg=packitos,persistentdict==0.1.0,pluggy==0.13.1,pre-commit==1.14.4,py==1.8.1,pycparser==2.20,PyGithub==1.46,PyJW\r\ + \nT==1.7.1,pyparsing==2.4.6,pystache==0.5.4,pytest==5.4.1,pytest-cov==2.8.1,python-gitlab==2.1.2,PyYAML==5.3,raven==6.10.0,redis==3.2.1,requests==2.23.0,-e\ + \ git+git@github.com:\r\nTomasTomecek/requre.git@f5410b0095d31e2b0f27b92d7ca24e365b472d33#egg=requre,rlsbot-test==1.0.0,rpm-py-installer==0.8.0,-e\ + \ git+git@github.com:TomasTomecek/generator.git@65a43\r\n07bcd0d8f45b3c7ed8b757be5d44601a62d#egg=sandcastle,sentry-sdk==0.12.2,show-me==0.1.dev25+g72bc7ba,six==1.14.0,smmap==3.0.1,tool==0.1.0.dev0,ucho==0.1.0,-e\ + \ git+git@github.com\r\n:TomasTomecek/upsint.git@972ba36e63c8b44eedf291ac1d30f87954258ef6#egg=upsint,urllib3==1.25.8,vine==1.3.0,wcwidth==0.1.8,wrapt==1.11.1,zipp==0.3.3\r\ + \npy36 run-test-pre: PYTHONHASHSEED='2399286198'\r\npy36 run-test: commands[0]\ + \ | pytest --color=yes --verbose --showlocals --cov=ogr --cov-report=term-missing\r\ + \n============================================================================\ + \ test session starts ============================================================================\r\ + \nplatform linux -- Python 3.6.10, pytest-5.4.1, py-1.8.1, pluggy-0.13.1\ + \ -- /home/tt/g/user-cont/ogr/.tox/py36/bin/python\r\ncachedir: .tox/py36/.pytest_cache\r\ + \nrootdir: /home/tt/g/user-cont/ogr\r\nplugins: cov-2.8.1\r\ncollected\ + \ 255 items \ + \ \ + \ \r\n\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_github\ + \ FAILED \ + \ [ 0%]\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_gitlab\ + \ FAILED \ + \ [ 0%]\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_pagure\ + \ FAILED \ + \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments\ + \ FAILED \ + \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_author\ + \ FAILED \ + \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_author_regex\ + \ FAILED \ + \ [ 2%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_regex\ + \ FAILED \ + \ [ 2%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_regex_reversed\ + \ FAILED \ + \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_reversed\ + \ FAILED \ + \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_updates\ + \ FAILED \ + \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_pr_comments\ + \ FAILED \ + \ [ 4%]\r\ntests/integration/test_github.py::Comments::test_pr_comments_author\ + \ FAILED \ + \ [ 4%]\r\ntests/integration/test_github.py::Comments::test_pr_comments_author_regex\ + \ FAILED \ + \ [ 5%]\r\n```\r\n\r\n```\r\nE \ + \ requre.exceptions.ItemNotInStorage: Keys not in storage:/home/tt/g/user-cont/ogr/tests/integration/test_data/test_github/tests.integration.test_github.Ge\r\ + \nnericCommands.test_description.yaml Matched: ['SKIP tests.integration.test_github',\ + \ 'SKIP ogr.services.github.project', 'SKIP github.MainClass', 'SKIP\ + \ github.Requester', 'SK\r\nIP requests.sessions', 'SKIP requre.objects'],\ + \ Missing: ['requests.sessions', 'send']\r\n```\r\n\r\nHappens even\ + \ when I use older pygithub." + closed_at: '2020-03-18T12:37:12Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/353/comments + created_at: '2020-03-16T11:20:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/353/events + html_url: https://github.com/packit/ogr/issues/353 + id: 582211662 labels: - - color: '000000' + - color: f9d0c4 default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/306/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/353/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDgxNDY4OTI= - number: 306 + node_id: MDU6SXNzdWU1ODIyMTE2NjI= + number: 353 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'ogr can''t figure out auth for SSH style of URL: git@github...' - updated_at: '2020-02-26T11:51:17Z' - url: https://api.github.com/repos/packit/ogr/issues/306 + title: most of the tests are failing on master now + updated_at: '2020-03-18T12:37:12Z' + url: https://api.github.com/repos/packit/ogr/issues/353 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -87007,79 +115049,70 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Add diff_url to the PR classes.\r\n- Add missing setters to abstract\ - \ PR class.\r\n\r\nA rebased version of https://github.com/packit-service/ogr/pull/280\ - \ ." - closed_at: '2020-02-26T09:52:29Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/335/comments - created_at: '2020-02-20T06:22:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/335/events - html_url: https://github.com/packit/ogr/pull/335 - id: 568078329 + author_association: CONTRIBUTOR + body: 'I was wondering if OGR does support interacting with enterprise + versions of Gitlab, when provided with an private token. I think Gitlab + enterprise has the same set of API''s as the public version, so is there + a way to like provide the service url like for example - https://gitlab.cee.redhat.com + and it would then try accessing repo''s from that instead of publicly + hosted Gitlab. ' + closed_at: '2020-03-17T14:46:29Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/354/comments + created_at: '2020-03-16T16:10:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/354/events + html_url: https://github.com/packit/ogr/issues/354 + id: 582420398 labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 + - color: d93f0b default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/335/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + labels_url: https://api.github.com/repos/packit/ogr/issues/354/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc3NTcyNzgz - number: 335 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/335.diff - html_url: https://github.com/packit/ogr/pull/335 - patch_url: https://github.com/packit/ogr/pull/335.patch - url: https://api.github.com/repos/packit/ogr/pulls/335 + node_id: MDU6SXNzdWU1ODI0MjAzOTg= + number: 354 + performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: diff url for pull-requests - updated_at: '2020-02-26T10:14:51Z' - url: https://api.github.com/repos/packit/ogr/issues/335 + title: Supporting enterprise versions of Gitlab + updated_at: '2020-03-17T14:58:14Z' + url: https://api.github.com/repos/packit/ogr/issues/354 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 + events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} + followers_url: https://api.github.com/users/saisankargochhayat/followers + following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} + gists_url: https://api.github.com/users/saisankargochhayat/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/saisankargochhayat + id: 9396452 + login: saisankargochhayat + node_id: MDQ6VXNlcjkzOTY0NTI= + organizations_url: https://api.github.com/users/saisankargochhayat/orgs + received_events_url: https://api.github.com/users/saisankargochhayat/received_events + repos_url: https://api.github.com/users/saisankargochhayat/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/saisankargochhayat - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-02-26T07:46:42Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/341/comments - created_at: '2020-02-25T13:21:16Z' - events_url: https://api.github.com/repos/packit/ogr/issues/341/events - html_url: https://github.com/packit/ogr/pull/341 - id: 570565436 + author_association: CONTRIBUTOR + body: 'Related #350 ' + closed_at: '2020-03-12T13:26:35Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/351/comments + created_at: '2020-03-11T08:26:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/351/events + html_url: https://github.com/packit/ogr/pull/351 + id: 579088221 labels: - color: 0e8a16 default: false @@ -87088,129 +115121,97 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/341/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/351/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc5NTc3NjE5 - number: 341 + node_id: MDExOlB1bGxSZXF1ZXN0Mzg2NTQ3NzEz + number: 351 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/341.diff - html_url: https://github.com/packit/ogr/pull/341 - patch_url: https://github.com/packit/ogr/pull/341.patch - url: https://api.github.com/repos/packit/ogr/pulls/341 + diff_url: https://github.com/packit/ogr/pull/351.diff + html_url: https://github.com/packit/ogr/pull/351 + patch_url: https://github.com/packit/ogr/pull/351.patch + url: https://api.github.com/repos/packit/ogr/pulls/351 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: simplify requre testcases and use requre base test class - updated_at: '2020-02-26T07:46:42Z' - url: https://api.github.com/repos/packit/ogr/issues/341 + title: Fix and refactor packit rev-dep tests + updated_at: '2020-03-12T13:26:35Z' + url: https://api.github.com/repos/packit/ogr/issues/351 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Closes #211\r\n\r\nI added diff url to PullRequest.\r\n\r\nImplementation:\r\ - \n- [x] BasePullRequest\r\n- [x] Github\r\n- [x] Gitlab\r\n- [x] Pagure\r\ - \n\r\nBut I found diff url in api for github, so I \"guess\" url. \r\ - \nBut for github there are two option \"/files\" (consistent with other\ - \ services) or \".diff\" (consistent with Github api).\r\n\r\nFor example:\r\ - \nhttps://github.com/packit-service/ogr/pull/1/files\r\nand \r\nhttps://patch-diff.githubusercontent.com/raw/packit-service/ogr/pull/1.diff\r\ - \n\r\nI think \".files\" looks better and that option was in issue as\ - \ example, that why I chose this one. But if you want I can change to\ - \ github api option \".diff\" \r\n\r\nFor others services I couldn't\ - \ find in api, so I \"guess\" url. \r\n" - closed_at: '2020-02-20T08:39:54Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/280/comments - created_at: '2019-11-22T10:17:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/280/events - html_url: https://github.com/packit/ogr/pull/280 - id: 527108315 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/280/labels{/name} + author_association: MEMBER + body: "The [Fedora dist-git CI fails](https://fedora.softwarefactory-project.io/zuul/build/755e891747f145b8810a8933c37fef3a/logs)\ + \ with that error.\r\nI'm not sure where's the correct place to fix\ + \ it, but I'm creating this so that we don't forget about it since I\ + \ need to merge [that PR](https://src.fedoraproject.org/rpms/python-ogr/pull-request/159)." + closed_at: '2020-03-12T12:24:37Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/323/comments + created_at: '2020-02-05T12:03:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/323/events + html_url: https://github.com/packit/ogr/issues/323 + id: 560327796 + labels: + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/323/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ0NDQ0OTEz - number: 280 + node_id: MDU6SXNzdWU1NjAzMjc3OTY= + number: 323 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/280.diff - html_url: https://github.com/packit/ogr/pull/280 - patch_url: https://github.com/packit/ogr/pull/280.patch - url: https://api.github.com/repos/packit/ogr/pulls/280 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add url diff to PullRequest - updated_at: '2020-02-20T08:39:54Z' - url: https://api.github.com/repos/packit/ogr/issues/280 + title: 'ModuleNotFoundError: No module named ''flexmock''' + updated_at: '2020-03-12T12:24:37Z' + url: https://api.github.com/repos/packit/ogr/issues/323 user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 - events_url: https://api.github.com/users/pawelkopka/events{/privacy} - followers_url: https://api.github.com/users/pawelkopka/followers - following_url: https://api.github.com/users/pawelkopka/following{/other_user} - gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + 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/pawelkopka - id: 17784034 - login: pawelkopka - node_id: MDQ6VXNlcjE3Nzg0MDM0 - organizations_url: https://api.github.com/users/pawelkopka/orgs - received_events_url: https://api.github.com/users/pawelkopka/received_events - repos_url: https://api.github.com/users/pawelkopka/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + 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/pawelkopka + url: https://api.github.com/users/jpopelka - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-02-19T14:45:23Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/324/comments - created_at: '2020-02-10T13:09:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/324/events - html_url: https://github.com/packit/ogr/pull/324 - id: 562549831 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/324/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzczMTI1MDU5 - number: 324 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/324.diff - html_url: https://github.com/packit/ogr/pull/324 - patch_url: https://github.com/packit/ogr/pull/324.patch - url: https://api.github.com/repos/packit/ogr/pulls/324 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: updated PullRequest depr message - updated_at: '2020-02-19T14:52:32Z' - url: https://api.github.com/repos/packit/ogr/issues/324 - user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + assignee: + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -87228,82 +115229,43 @@ requests.sessions: subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User url: https://api.github.com/users/sakalosj - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-02-19T13:32:13Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/328/comments - created_at: '2020-02-17T13:41:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/328/events - html_url: https://github.com/packit/ogr/pull/328 - id: 566306913 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/328/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc2MTQyOTU3 - number: 328 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/328.diff - html_url: https://github.com/packit/ogr/pull/328 - patch_url: https://github.com/packit/ogr/pull/328.patch - url: https://api.github.com/repos/packit/ogr/pulls/328 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: provide is_private method on GitProjects - updated_at: '2020-02-19T13:36:04Z' - url: https://api.github.com/repos/packit/ogr/issues/328 - user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/dhodovsk - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: improve pagure error response to show additional info stored under - 'errors' key - closed_at: '2020-02-19T08:19:55Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/333/comments - created_at: '2020-02-18T15:47:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/333/events - html_url: https://github.com/packit/ogr/pull/333 - id: 566983390 + url: https://api.github.com/users/sakalosj + author_association: CONTRIBUTOR + body: pagure provides more detailed error info stored under 'errors' key, + which is not currently not used in output + closed_at: '2020-03-12T12:16:11Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/331/comments + created_at: '2020-02-18T14:15:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/331/events + html_url: https://github.com/packit/ogr/issues/331 + id: 566921606 labels: - - color: 18e033 + - color: 1d76db default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: 8be567 default: false description: Usability issue. @@ -87311,24 +115273,20 @@ requests.sessions: name: user-experience node_id: MDU6TGFiZWwxNDMyNzc5NDY0 url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/333/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/331/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc2NjkyMzc5 - number: 333 + node_id: MDU6SXNzdWU1NjY5MjE2MDY= + number: 331 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/333.diff - html_url: https://github.com/packit/ogr/pull/333 - patch_url: https://github.com/packit/ogr/pull/333.patch - url: https://api.github.com/repos/packit/ogr/pulls/333 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve pagure error response - updated_at: '2020-02-19T08:19:55Z' - url: https://api.github.com/repos/packit/ogr/issues/333 + title: pagure provides more detailed error info stored under 'errors' + key + updated_at: '2020-03-12T12:16:11Z' + url: https://api.github.com/repos/packit/ogr/issues/331 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -87349,70 +115307,220 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'fixes #331 ' - closed_at: '2020-02-18T15:30:01Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/332/comments - created_at: '2020-02-18T14:53:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/332/events - html_url: https://github.com/packit/ogr/pull/332 - id: 566946268 + author_association: CONTRIBUTOR + body: 'It seems that ogr-reverse-dep-packit-tests does not really test + packit with the ogr change, I broke the ogr and `ogr-reverse-dep-packit-tests + : SUCCESS in 8m 01s`.' + closed_at: '2020-03-11T08:27:40Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/350/comments + created_at: '2020-03-10T18:56:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/350/events + html_url: https://github.com/packit/ogr/pull/350 + id: 578793909 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/350/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzg2MzA4Njk0 + number: 350 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/350.diff + html_url: https://github.com/packit/ogr/pull/350 + patch_url: https://github.com/packit/ogr/pull/350.patch + url: https://api.github.com/repos/packit/ogr/pulls/350 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Just testing the rev-dep tests + updated_at: '2020-03-11T08:27:40Z' + url: https://api.github.com/repos/packit/ogr/issues/350 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add stage to expected\ + \ pagure instances\n* Set missing info in GitHub commit flags\n* Regenerate\ + \ responses for 'test_issue_list_label'\n* List all GitLab issues (ignore\ + \ pagination)\n* Allow to filter issues by labels.\n* enable getting\ + \ projects defined with SSH URLs\n* Add diff_url to the PR classes\n\ + * Add missing setters to abstract PR class\n* apply precommit changes\n\ + * simplify requre testcases and use requre base test class\n* Use only\ + \ first+last token/key character in the __str__ methods\n* updated PullRequest\ + \ depr message Co-Authored-By: lachmanfrantisek \n\ + * provide is_private method on GitProjects\n* improve pagure error response\n\ + * [.packit.yaml] remove no-longer needed keys & use aliases\n* [CONTRIBUTING.md]\ + \ update\n* Add support for tags when creating pagure issues.\n* Generate\ + \ standard .gitignore file\n* [Pre-commit] Use Prettier\n* [pre-commit]\ + \ autoupdate\n* Run setup-cfg-fmt\n* Strip trailing slash from URL,\ + \ if it exists\n* Add test for trailing slash in URL\n* github.pr.author:\ + \ use login instead of name\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.11.0-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-03-09T12:38:54Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/347/comments + created_at: '2020-03-07T06:10:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/347/events + html_url: https://github.com/packit/ogr/pull/347 + id: 577286080 labels: - - color: 18e033 + - color: ededed default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/332/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/347/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzg1MTA5ODI1 + number: 347 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/347.diff + html_url: https://github.com/packit/ogr/pull/347 + patch_url: https://github.com/packit/ogr/pull/347.patch + url: https://api.github.com/repos/packit/ogr/pulls/347 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.11.0 release + updated_at: '2020-03-11T08:26:41Z' + url: https://api.github.com/repos/packit/ogr/issues/347 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + is not supported.` | + + | `f31` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + is not supported.` | + + | `f32` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + is not supported.` | + + | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-03-09T14:02:41Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/348/comments + created_at: '2020-03-09T12:44:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/348/events + html_url: https://github.com/packit/ogr/issues/348 + id: 577881745 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/348/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc2NjYxODE0 - number: 332 + node_id: MDU6SXNzdWU1Nzc4ODE3NDU= + number: 348 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/332.diff - html_url: https://github.com/packit/ogr/pull/332 - patch_url: https://github.com/packit/ogr/pull/332.patch - url: https://api.github.com/repos/packit/ogr/pulls/332 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve pagure error response - updated_at: '2020-02-18T15:38:49Z' - url: https://api.github.com/repos/packit/ogr/issues/332 + title: '[packit] Propose update failed for release 0.11.0' + updated_at: '2020-03-10T09:57:32Z' + url: https://api.github.com/repos/packit/ogr/issues/348 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2020-02-17T15:39:51Z' + closed_at: '2020-03-09T16:13:07Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/327/comments - created_at: '2020-02-17T13:24:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/327/events - html_url: https://github.com/packit/ogr/pull/327 - id: 566296821 + comments_url: https://api.github.com/repos/packit/ogr/issues/349/comments + created_at: '2020-03-09T15:12:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/349/events + html_url: https://github.com/packit/ogr/pull/349 + id: 577980538 labels: - color: 0e8a16 default: false @@ -87421,79 +115529,81 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/327/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/349/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc2MTM0NTY3 - number: 327 + node_id: MDExOlB1bGxSZXF1ZXN0Mzg1NjQ2MjU3 + number: 349 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/327.diff - html_url: https://github.com/packit/ogr/pull/327 - patch_url: https://github.com/packit/ogr/pull/327.patch - url: https://api.github.com/repos/packit/ogr/pulls/327 + diff_url: https://github.com/packit/ogr/pull/349.diff + html_url: https://github.com/packit/ogr/pull/349 + patch_url: https://github.com/packit/ogr/pull/349.patch + url: https://api.github.com/repos/packit/ogr/pulls/349 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[.packit.yaml] remove no-longer needed keys & use aliases' - updated_at: '2020-02-17T15:43:04Z' - url: https://api.github.com/repos/packit/ogr/issues/327 + title: Fix the descriptions in playbooks + updated_at: '2020-03-09T16:13:07Z' + url: https://api.github.com/repos/packit/ogr/issues/349 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER body: '' - closed_at: '2020-02-14T16:46:09Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/326/comments - created_at: '2020-02-14T15:50:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/326/events - html_url: https://github.com/packit/ogr/pull/326 - id: 565409429 + closed_at: '2020-03-07T06:10:20Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/346/comments + created_at: '2020-03-07T06:08:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/346/events + html_url: https://github.com/packit/ogr/issues/346 + id: 577285921 labels: - - color: 0e8a16 + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/326/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/346/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc1NDUzMzA5 - number: 326 + node_id: MDU6SXNzdWU1NzcyODU5MjE= + number: 346 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/326.diff - html_url: https://github.com/packit/ogr/pull/326 - patch_url: https://github.com/packit/ogr/pull/326.patch - url: https://api.github.com/repos/packit/ogr/pulls/326 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[CONTRIBUTING.md] update' - updated_at: '2020-02-17T08:52:51Z' - url: https://api.github.com/repos/packit/ogr/issues/326 + title: New minor release + updated_at: '2020-03-07T06:10:20Z' + url: https://api.github.com/repos/packit/ogr/issues/346 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -87514,766 +115624,162 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Seeing this on prod:\r\n\r\n```\r\n | [2019-10-29 08:25:38,794:\ - \ INFO/MainProcess] Received task: task.steve_jobs.process_message[9b4d1ddc-72e3-4bd8-8ff9-fb2cf96d8efb]\r\ - \n\_ | [2019-10-29 08:25:38,810: INFO/ForkPoolWorker-1] Copr build event,\ - \ topic: org.fedoraproject.prod.copr.build.start\r\n\_ | [2019-10-29\ - \ 08:25:38,812: WARNING/ForkPoolWorker-1] Cannot get project for this\ - \ build id: 1081435\r\n\_ | [2019-10-29 08:25:38,819: ERROR/ForkPoolWorker-1]\ - \ Task task.steve_jobs.process_message[9b4d1ddc-72e3-4bd8-8ff9-fb2cf96d8efb]\ - \ raised unexpected: TypeError(\"argument of type 'NoneType' is not\ - \ iterable\")\r\n\_ | Traceback (most recent call last):\r\n\_ | File\ - \ \"/usr/lib/python3.7/site-packages/celery/app/trace.py\", line 382,\ - \ in trace_task\r\n\_ | R = retval = fun(*args, **kwargs)\r\n\_ | File\ - \ \"/usr/lib/python3.7/site-packages/celery/app/trace.py\", line 641,\ - \ in __protected_call__\r\n\_ | return self.run(*args, **kwargs)\r\n\ - \_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/celery.py\"\ - , line 155, in _inner\r\n\_ | reraise(*exc_info)\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/_compat.py\"\ - , line 57, in reraise\r\n\_ | raise value\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/celery.py\"\ - , line 150, in _inner\r\n\_ | return f(*args, **kwargs)\r\n\_ | File\ - \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ - , line 47, in process_message\r\n\_ | return SteveJobs().process_message(event=event,\ - \ topic=topic)\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 218, in process_message\r\n\_ | project\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/packit/config.py\"\ - , line 212, in _get_project\r\n\_ | project = get_project(url=url, custom_instances=self.services)\r\ - \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ - , line 83, in get_project\r\n\_ | kls = get_service_class(url=url, service_mapping_update=service_mapping_update)\r\ - \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ - , line 135, in get_service_class\r\n\_ | url=url, service_mapping_update=service_mapping_update\r\ - \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ - , line 118, in get_service_class_or_none\r\n\_ | if service in url:\r\ - \n\_ | TypeError: argument of type 'NoneType' is not iterable\r\n```\r\ - \n" - closed_at: '2020-02-16T09:26:02Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/261/comments - created_at: '2019-10-29T09:31:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/261/events - html_url: https://github.com/packit/ogr/issues/261 - id: 513793392 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-03-05T07:21:02Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/345/comments + created_at: '2020-03-04T16:38:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/345/events + html_url: https://github.com/packit/ogr/pull/345 + id: 575562256 labels: - - color: '000000' + - color: 0e8a16 default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/261/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/345/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTM3OTMzOTI= - number: 261 + node_id: MDExOlB1bGxSZXF1ZXN0MzgzNjkxODk5 + number: 345 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/345.diff + html_url: https://github.com/packit/ogr/pull/345 + patch_url: https://github.com/packit/ogr/pull/345.patch + url: https://api.github.com/repos/packit/ogr/pulls/345 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[get_service_class_or_none()] TypeError: argument of type ''NoneType'' - is not iterable' - updated_at: '2020-02-16T09:26:02Z' - url: https://api.github.com/repos/packit/ogr/issues/261 + title: Add stage to expected pagure instances + updated_at: '2020-03-05T07:21:02Z' + url: https://api.github.com/repos/packit/ogr/issues/345 user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "There are many warnings and errors when running `mypy` in a strict\ - \ mode. Each error can mean potentially problematic part of the code.\ - \ (The goal is to make the code better, not only to silence the mypy.)\ - \ \r\n\r\nIt would be nice to reduce the number of errors/warnings.\r\ - \n\r\nWhat you can do:\r\n- Run the mypy on the code:\r\n ```sh\r\n\ - \ mypy ogr --strict\r\n ```\r\n- pick an error/warning\r\n- try to\ - \ fix the problem which can mean\r\n - adding a type annotation\r\n\ - \ - changing the type annotation\r\n - adding some test for the input\ - \ and raising a propper exception\r\n - something else\r\n- send a\ - \ PR with the fix or raise an issue if you found some problem, that\ - \ cannot be easily fixed\r\n\r\nThis does not need to be done in one\ - \ PR. Also, one fixed error can be useful to us.\r\n\r\n
\r\n\ - 'mypy ogr --strict' output\r\n\r\n```\r\n$ mypy ogr\ - \ --strict\r\nogr/deprecation.py:23: error: Cannot find module named\ - \ 'deprecated'\r\nogr/deprecation.py:26: error: Function is missing\ - \ a type annotation\r\nogr/abstract.py:73: error: Function is missing\ - \ a return type annotation\r\nogr/abstract.py:94: error: Incompatible\ - \ return value type (got \"Optional[datetime]\", expected \"datetime\"\ - )\r\nogr/abstract.py:98: error: Incompatible return value type (got\ - \ \"Optional[datetime]\", expected \"datetime\")\r\nogr/abstract.py:104:\ - \ error: Incompatible return value type (got \"Optional[Any]\", expected\ - \ \"Issue\")\r\nogr/abstract.py:113: error: Incompatible return value\ - \ type (got \"Optional[Any]\", expected \"PullRequest\")\r\nogr/abstract.py:159:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/abstract.py:227:\ - \ error: Incompatible default for argument \"filter_regex\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:227:\ - \ error: Incompatible default for argument \"author\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/abstract.py:282: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/abstract.py:282: error: Untyped decorator makes function \"__init__\"\ - \ untyped\r\nogr/abstract.py:373: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1079: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1099: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1248: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/utils.py:28: error: Cannot find module named 'git'\r\n\ - ogr/read_only.py:52: error: Missing type parameters for generic type\ - \ \"Callable\"\r\nogr/read_only.py:66: error: Function is missing a\ - \ type annotation\r\nogr/read_only.py:68: error: Function is missing\ - \ a type annotation\r\nogr/read_only.py:157: error: Call to untyped\ - \ function \"deprecate_and_set_removal\" in typed context\r\nogr/read_only.py:157:\ - \ error: Untyped decorator makes function \"pr_create\" untyped\r\n\ - ogr/read_only.py:169: error: Incompatible default for argument \"fork_username\"\ - \ (default has type \"None\", argument has type \"str\")\r\nogr/read_only.py:187:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/read_only.py:208:\ - \ error: Incompatible default for argument \"commit\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/read_only.py:209: error:\ - \ Incompatible default for argument \"filename\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/read_only.py:210: error: Incompatible\ - \ default for argument \"row\" (default has type \"None\", argument\ - \ has type \"int\")\r\nogr/read_only.py:227: error: Returning Any from\ - \ function declared to return \"PullRequest\"\r\nogr/read_only.py:233:\ - \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/read_only.py:252: error: Returning Any from function declared\ - \ to return \"GitProject\"\r\nogr/factory.py:33: error: Function is\ - \ missing a return type annotation\r\nogr/factory.py:33: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/factory.py:57:\ - \ error: Function is missing a type annotation\r\nogr/factory.py:59:\ - \ error: Function is missing a return type annotation\r\nogr/factory.py:65:\ - \ error: Call to untyped function \"decorator_cover\" in typed context\r\ - \nogr/factory.py:68: error: Function is missing a type annotation for\ - \ one or more arguments\r\nogr/factory.py:70: error: Incompatible default\ - \ for argument \"service_mapping_update\" (default has type \"None\"\ - , argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:71:\ - \ error: Incompatible default for argument \"custom_instances\" (default\ - \ has type \"None\", argument has type \"Iterable[GitService]\")\r\n\ - ogr/factory.py:97: error: Item \"None\" of \"Optional[RepoUrl]\" has\ - \ no attribute \"get_instance_url\"\r\nogr/factory.py:103: error: Incompatible\ - \ default for argument \"service_mapping_update\" (default has type\ - \ \"None\", argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:125:\ - \ error: Incompatible default for argument \"service_mapping_update\"\ - \ (default has type \"None\", argument has type \"Dict[str, Type[GitService]]\"\ - )\r\nogr/factory.py:142: error: Implicit generic \"Any\". Use \"typing.Dict\"\ - \ and specify generic parameters\r\nogr/services/gitlab/comments.py:26:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/comments.py:41:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/comments.py:50: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/github/comments.py:25:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/comments.py:25:\ - \ note: See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports\r\ - \nogr/services/github/comments.py:38: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/comments.py:46:\ - \ error: Returning Any from function declared to return \"datetime\"\ - \r\nogr/services/base.py:64: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:64: error: Untyped decorator\ - \ makes function \"get_pr_comments\" untyped\r\nogr/services/base.py:65:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/base.py:70: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/base.py:70: error: Incompatible default for argument\ - \ \"author\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/base.py:83: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:83: error: Untyped decorator\ - \ makes function \"search_in_pr\" untyped\r\nogr/services/base.py:106:\ - \ error: Untyped decorator makes function \"pr_close\" untyped\r\nogr/services/base.py:107:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:107: error: Untyped decorator makes\ - \ function \"pr_close\" untyped\r\nogr/services/base.py:115: error:\ - \ Untyped decorator makes function \"pr_merge\" untyped\r\nogr/services/base.py:116:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:116: error: Untyped decorator makes\ - \ function \"pr_merge\" untyped\r\nogr/services/base.py:124: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:124: error: Untyped decorator makes function\ - \ \"get_pr_labels\" untyped\r\nogr/services/base.py:132: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:132: error: Untyped decorator makes function\ - \ \"add_pr_labels\" untyped\r\nogr/services/base.py:140: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:140: error: Untyped decorator makes function\ - \ \"get_pr_info\" untyped\r\nogr/services/base.py:148: error: Call to\ - \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:148: error: Untyped decorator makes function \"\ - update_pr_info\" untyped\r\nogr/services/base.py:158: error: Call to\ - \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:158: error: Untyped decorator makes function \"\ - get_all_pr_commits\" untyped\r\nogr/services/base.py:166: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:166: error: Untyped decorator makes function\ - \ \"_get_all_pr_comments\" untyped\r\nogr/services/base.py:174: error:\ - \ Untyped decorator makes function \"pr_comment\" untyped\r\nogr/services/base.py:178:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:178: error: Untyped decorator makes\ - \ function \"pr_comment\" untyped\r\nogr/services/base.py:187: error:\ - \ Incompatible default for argument \"commit\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/services/base.py:188: error:\ - \ Incompatible default for argument \"filename\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/services/base.py:189: error:\ - \ Incompatible default for argument \"row\" (default has type \"None\"\ - , argument has type \"int\")\r\nogr/services/base.py:193: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:193: error: Untyped decorator makes function\ - \ \"get_issue_comments\" untyped\r\nogr/services/base.py:194: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/base.py:201: error: Incompatible default for argument \"\ - filter_regex\" (default has type \"None\", argument has type \"str\"\ - )\r\nogr/services/base.py:203: error: Incompatible default for argument\ - \ \"author\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/base.py:207: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:207: error: Untyped decorator\ - \ makes function \"pr_create\" untyped\r\nogr/services/base.py:218:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:228:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:228: error: Untyped decorator makes\ - \ function \"can_close_issue\" untyped\r\nogr/services/base.py:236:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:236: error: Untyped decorator makes\ - \ function \"get_issue_info\" untyped\r\nogr/services/base.py:244: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:244: error: Untyped decorator makes function\ - \ \"_get_all_issue_comments\" untyped\r\nogr/services/base.py:252: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:252: error: Untyped decorator makes function\ - \ \"issue_comment\" untyped\r\nogr/services/base.py:260: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:260: error: Untyped decorator makes function\ - \ \"issue_close\" untyped\r\nogr/services/base.py:268: error: Call to\ - \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:268: error: Untyped decorator makes function \"\ - get_issue_labels\" untyped\r\nogr/services/base.py:276: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:276: error: Untyped decorator makes function\ - \ \"add_issue_labels\" untyped\r\nogr/services/base.py:330: error: Function\ - \ is missing a return type annotation\r\nogr/services/base.py:330: error:\ - \ Argument 1 of \"get_comments\" is incompatible with supertype \"PullRequest\"\ - ; supertype defines the argument type as \"Optional[str]\"\r\nogr/services/base.py:330:\ - \ error: Argument 3 of \"get_comments\" is incompatible with supertype\ - \ \"PullRequest\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/base.py:331: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/base.py:331: error: Incompatible default for\ - \ argument \"author\" (default has type \"None\", argument has type\ - \ \"str\")\r\nogr/services/base.py:336: error: Function is missing a\ - \ return type annotation\r\nogr/services/base.py:360: error: Incompatible\ - \ default for argument \"filter_regex\" (default has type \"None\",\ - \ argument has type \"str\")\r\nogr/services/base.py:360: error: Incompatible\ - \ default for argument \"author\" (default has type \"None\", argument\ - \ has type \"str\")\r\nogr/services/pagure/release.py:28: error: Name\ - \ 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:37:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:42:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/release.py:46:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:38:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:40:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/pull_request.py:44:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:44:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/pull_request.py:51:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:52: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:60:\ - \ error: Returning Any from function declared to return \"int\"\r\n\ - ogr/services/pagure/pull_request.py:64: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:80:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:81: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:89:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/pull_request.py:93: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:97:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/pull_request.py:106: error: Function is missing\ - \ a type annotation for one or more arguments\r\nogr/services/pagure/pull_request.py:106:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/pull_request.py:107: error: Returning\ - \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/pull_request.py:113:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:118:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/pull_request.py:139:\ - \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/services/pagure/pull_request.py:139: error: Call to untyped\ - \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:142:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:144:\ - \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/services/pagure/pull_request.py:144: error: Call to untyped\ - \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:147:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/pull_request.py:148: error: Name 'ogr_pagure.PagureProject'\ - \ is not defined\r\nogr/services/pagure/pull_request.py:160: error:\ - \ Call to untyped function \"PagurePullRequest\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:181: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:228:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:229: error: Returning Any from function\ - \ declared to return \"List[CommitFlag]\"\r\nogr/services/pagure/issue.py:33:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:35:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/issue.py:39:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/issue.py:39:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/issue.py:46:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/issue.py:47: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:51: error:\ - \ Returning Any from function declared to return \"int\"\r\nogr/services/pagure/issue.py:55:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/issue.py:60: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:66: error:\ - \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:67:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/issue.py:71: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:79: error:\ - \ Returning Any from function declared to return \"List[str]\"\r\nogr/services/pagure/issue.py:86:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:97:\ - \ error: Returning Any from function declared to return \"Issue\"\r\n\ - ogr/services/pagure/issue.py:97: error: Call to untyped function \"\ - PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:100:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:102:\ - \ error: Returning Any from function declared to return \"Issue\"\r\n\ - ogr/services/pagure/issue.py:102: error: Call to untyped function \"\ - PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:106:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:118:\ - \ error: Call to untyped function \"PagureIssue\" in typed context\r\ - \nogr/services/pagure/issue.py:121: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/flag.py:41: error:\ - \ Function is missing a return type annotation\r\nogr/services/pagure/flag.py:41:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/flag.py:42:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:43:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:44:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:45:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:46:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:49:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:58:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:64:\ - \ error: Incompatible default for argument \"percent\" (default has\ - \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/flag.py:66:\ - \ error: Incompatible default for argument \"uid\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:47:\ - \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:53:\ - \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:54:\ - \ error: Incompatible default for argument \"username\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:57:\ - \ error: Argument 3 to \"__init__\" of \"GitProject\" has incompatible\ - \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/pagure/project.py:64:\ - \ error: Incompatible types in assignment (expression has type \"Optional[str]\"\ - , variable has type \"str\")\r\nogr/services/pagure/project.py:88: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/pagure/project.py:93: error: Incompatible default for argument\ - \ \"method\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/pagure/project.py:94: error: Implicit generic \"Any\"\ - . Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/project.py:94:\ - \ error: Incompatible default for argument \"params\" (default has type\ - \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:95:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:95: error: Incompatible\ - \ default for argument \"data\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:96:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:108: error: Call to untyped\ - \ function \"_get_project_url\" in typed context\r\nogr/services/pagure/project.py:117:\ - \ error: Returning Any from function declared to return \"Dict[Any,\ - \ Any]\"\r\nogr/services/pagure/project.py:119: error: Function is missing\ - \ a type annotation for one or more arguments\r\nogr/services/pagure/project.py:124:\ - \ error: Incompatible default for argument \"method\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:125:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:125: error: Incompatible\ - \ default for argument \"params\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:126:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:126: error: Incompatible\ - \ default for argument \"data\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:139:\ - \ error: Call to untyped function \"_get_project_url\" in typed context\r\ - \nogr/services/pagure/project.py:148: error: Returning Any from function\ - \ declared to return \"RequestResponse\"\r\nogr/services/pagure/project.py:150:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/project.py:151:\ - \ error: Need type annotation for 'additional_parts' (hint: \"additional_parts:\ - \ List[] = ...\")\r\nogr/services/pagure/project.py:163: error:\ - \ Function is missing a return type annotation\r\nogr/services/pagure/project.py:169:\ - \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/pagure/project.py:172: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/project.py:172:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:175: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:176:\ - \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/pagure/project.py:180: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:189:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:195: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/pagure/project.py:216:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/project.py:226: error: Untyped decorator makes\ - \ function \"create_pr\" untyped\r\nogr/services/pagure/project.py:233:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:243:\ - \ error: Untyped decorator makes function \"fork_create\" untyped\r\n\ - ogr/services/pagure/project.py:275: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:281:\ - \ error: Returning Any from function declared to return \"Optional[PagureProject]\"\ - \r\nogr/services/pagure/project.py:290: error: Function is missing a\ - \ return type annotation\r\nogr/services/pagure/project.py:301: error:\ - \ Call to untyped function \"exists\" in typed context\r\nogr/services/pagure/project.py:301:\ - \ error: Item \"None\" of \"Optional[PagureProject]\" has no attribute\ - \ \"exists\"\r\nogr/services/pagure/project.py:304: error: Call to untyped\ - \ function \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:318:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:325: error: Returning Any from function\ - \ declared to return \"Dict[str, str]\"\r\nogr/services/pagure/project.py:335:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/project.py:353: error: Argument 3 of \"commit_comment\"\ - \ is incompatible with supertype \"GitProject\"; supertype defines the\ - \ argument type as \"Optional[str]\"\r\nogr/services/pagure/project.py:353:\ - \ error: Argument 4 of \"commit_comment\" is incompatible with supertype\ - \ \"GitProject\"; supertype defines the argument type as \"Optional[int]\"\ - \r\nogr/services/pagure/project.py:354: error: Incompatible default\ - \ for argument \"filename\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/pagure/project.py:354: error: Incompatible\ - \ default for argument \"row\" (default has type \"None\", argument\ - \ has type \"int\")\r\nogr/services/pagure/project.py:358: error: Untyped\ - \ decorator makes function \"set_commit_status\" untyped\r\nogr/services/pagure/project.py:366:\ - \ error: Incompatible default for argument \"percent\" (default has\ - \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/project.py:367:\ - \ error: Incompatible default for argument \"uid\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:440:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/user.py:31: error: Name 'ogr_pagure.PagureService'\ - \ is not defined\r\nogr/services/pagure/user.py:33: error: Name 'ogr_pagure.PagureService'\ - \ is not defined\r\nogr/services/pagure/user.py:43: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/pagure/service.py:42:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:44: error: Incompatible default for\ - \ argument \"token\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/pagure/service.py:81: error: Returning Any from\ - \ function declared to return \"bool\"\r\nogr/services/pagure/service.py:92:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:103: error: Item \"None\" of \"Optional[RepoUrl]\"\ - \ has no attribute \"repo\"\r\nogr/services/pagure/service.py:104: error:\ - \ Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"namespace\"\ - \r\nogr/services/pagure/service.py:105: error: Item \"None\" of \"Optional[RepoUrl]\"\ - \ has no attribute \"is_fork\"\r\nogr/services/pagure/service.py:106:\ - \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ - username\"\r\nogr/services/pagure/service.py:114: error: Function is\ - \ missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:115:\ - \ error: Incompatible default for argument \"method\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/service.py:115:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/service.py:115: error: Incompatible\ - \ default for argument \"params\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:116:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/service.py:149: error: Returning\ - \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/service.py:151:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:151:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:152: error: Incompatible default for\ - \ argument \"method\" (default has type \"None\", argument has type\ - \ \"str\")\r\nogr/services/pagure/service.py:152: error: Implicit generic\ - \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:152:\ - \ error: Incompatible default for argument \"params\" (default has type\ - \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:165:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:193: error: Function is missing a return\ - \ type annotation\r\nogr/services/pagure/service.py:196: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:209:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/service.py:219: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/service.py:221:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:230:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:272:\ - \ error: Argument 2 to \"__handle_project_create_fail\" of \"PagureService\"\ - \ has incompatible type \"Optional[str]\"; expected \"str\"\r\nogr/services/gitlab/user.py:28:\ - \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:30:\ - \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:37:\ - \ error: Function is missing a return type annotation\r\nogr/services/gitlab/user.py:41:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/user.py:44: error: Returning Any from function declared\ - \ to return \"str\"\r\nogr/services/gitlab/release.py:30: error: Name\ - \ 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/release.py:32:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/release.py:39: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/release.py:46: error: Function\ - \ is missing a return type annotation\r\nogr/services/gitlab/release.py:50:\ - \ error: Function is missing a return type annotation\r\nogr/services/gitlab/pull_request.py:26:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/pull_request.py:36:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:40:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:49: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/gitlab/pull_request.py:61:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:65: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:74:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:78: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:82:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:86: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/gitlab/pull_request.py:90:\ - \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/gitlab/pull_request.py:97: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/pull_request.py:102: error:\ - \ Incompatible default for argument \"fork_username\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/gitlab/pull_request.py:115:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:121:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:26:\ - \ error: Cannot find module named 'gitlab'\r\nogr/services/gitlab/issue.py:27:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/issue.py:41:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/issue.py:50: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/gitlab/issue.py:62: error:\ - \ Returning Any from function declared to return \"str\"\r\nogr/services/gitlab/issue.py:66:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/issue.py:75: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/issue.py:79: error:\ - \ Returning Any from function declared to return \"datetime\"\r\nogr/services/gitlab/issue.py:82:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/services/gitlab/issue.py:83:\ - \ error: Returning Any from function declared to return \"List[Any]\"\ - \r\nogr/services/gitlab/issue.py:89: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/issue.py:94: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/issue.py:102: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/flag.py:27: error: Cannot find\ - \ module named 'gitlab'\r\nogr/services/gitlab/flag.py:52: error: Function\ - \ is missing a return type annotation\r\nogr/services/gitlab/flag.py:52:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/gitlab/flag.py:53:\ - \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"sha\"\ - \r\nogr/services/gitlab/flag.py:54: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"status\"\r\nogr/services/gitlab/flag.py:55: error:\ - \ Item \"None\" of \"Optional[Any]\" has no attribute \"name\"\r\nogr/services/gitlab/flag.py:56:\ - \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ - \r\nogr/services/gitlab/flag.py:57: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"id\"\r\nogr/services/gitlab/flag.py:58: error:\ - \ Item \"None\" of \"Optional[Any]\" has no attribute \"target_url\"\ - \r\nogr/services/gitlab/flag.py:61: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/flag.py:76: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/project.py:26: error: Cannot\ - \ find module named 'gitlab'\r\nogr/services/gitlab/project.py:27: error:\ - \ Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/project.py:53:\ - \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/project.py:55:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:58: error: Name 'ogr_gitlab.GitlabService'\ - \ is not defined\r\nogr/services/gitlab/project.py:126: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/gitlab/project.py:181:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:209: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/project.py:220:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:231:\ - \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ - \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/gitlab/project.py:231: error: Argument 4 of \"commit_comment\"\ - \ is incompatible with supertype \"GitProject\"; supertype defines the\ - \ argument type as \"Optional[int]\"\r\nogr/services/gitlab/project.py:232:\ - \ error: Incompatible default for argument \"filename\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:232:\ - \ error: Incompatible default for argument \"row\" (default has type\ - \ \"None\", argument has type \"int\")\r\nogr/services/gitlab/project.py:317:\ - \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:323:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:331: error: Incompatible default for\ - \ argument \"filter_regex\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/gitlab/project.py:389: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/services/gitlab/project.py:395:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:413: error: Function is missing a return\ - \ type annotation\r\nogr/services/gitlab/project.py:437: error: Function\ - \ is missing a type annotation\r\nogr/services/gitlab/project.py:449:\ - \ error: Call to untyped function \"_normalize_label_color\" in typed\ - \ context\r\nogr/services/gitlab/project.py:462: error: Function is\ - \ missing a type annotation\r\nogr/services/gitlab/project.py:468: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/gitlab/project.py:473: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:492:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/service.py:23: error: Cannot find module named 'gitlab'\r\ - \nogr/services/gitlab/service.py:36: error: Function is missing a type\ - \ annotation\r\nogr/services/gitlab/service.py:71: error: Returning\ - \ Any from function declared to return \"bool\"\r\nogr/services/gitlab/service.py:80:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/service.py:91: error: Argument 2 of \"project_create\"\ - \ is incompatible with supertype \"GitService\"; supertype defines the\ - \ argument type as \"Optional[str]\"\r\nogr/services/gitlab/service.py:91:\ - \ error: Incompatible default for argument \"namespace\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/github/release.py:23:\ - \ error: Cannot find module named 'github.GitRelease'\r\nogr/services/github/release.py:30:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/release.py:39:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/release.py:46:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/release.py:50:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/pull_request.py:27:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/pull_request.py:28:\ - \ error: Cannot find module named 'github.Label'\r\nogr/services/github/pull_request.py:29:\ - \ error: Cannot find module named 'github.PullRequest'\r\nogr/services/github/pull_request.py:43:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:47:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:55: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/github/pull_request.py:67:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:71: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/pull_request.py:79:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:83: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/pull_request.py:87:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:91: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/github/pull_request.py:102:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:107:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/github/pull_request.py:129:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:135:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:26:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/issue.py:27:\ - \ error: Cannot find module named 'github.Issue'\r\nogr/services/github/issue.py:40:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:51:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/issue.py:59: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/github/issue.py:67: error:\ - \ Returning Any from function declared to return \"str\"\r\nogr/services/github/issue.py:71:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/issue.py:79: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/issue.py:83: error:\ - \ Returning Any from function declared to return \"datetime\"\r\nogr/services/github/issue.py:86:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/services/github/issue.py:93:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:98:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:104:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/flag.py:25:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/flag.py:42:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/flag.py:42:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/github/flag.py:43:\ - \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"state\"\ - \r\nogr/services/github/flag.py:44: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"context\"\r\nogr/services/github/flag.py:45: error:\ - \ Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ - \r\nogr/services/github/flag.py:48: error: Name 'ogr_github.GithubProject'\ - \ is not defined\r\nogr/services/github/flag.py:61: error: Name 'ogr_github.GithubProject'\ - \ is not defined\r\nogr/services/github/project.py:26: error: Cannot\ - \ find module named 'github'\r\nogr/services/github/project.py:33: error:\ - \ Cannot find module named 'github.GitRelease'\r\nogr/services/github/project.py:60:\ - \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/project.py:62:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:65: error: Name 'ogr_github.GithubService'\ - \ is not defined\r\nogr/services/github/project.py:82: error: Function\ - \ is missing a return type annotation\r\nogr/services/github/project.py:99:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:150:\ - \ error: Returning Any from function declared to return \"bool\"\r\n\ - ogr/services/github/project.py:166: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/project.py:184:\ - \ error: Returning Any from function declared to return \"Optional[GithubProject]\"\ - \r\nogr/services/github/project.py:219: error: Function is missing a\ - \ type annotation for one or more arguments\r\nogr/services/github/project.py:222:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/github/project.py:261: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/github/project.py:271:\ - \ error: Untyped decorator makes function \"create_pr\" untyped\r\n\ - ogr/services/github/project.py:278: error: Incompatible default for\ - \ argument \"fork_username\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/github/project.py:289: error: Untyped\ - \ decorator makes function \"commit_comment\" untyped\r\nogr/services/github/project.py:294:\ - \ error: Incompatible default for argument \"filename\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:294:\ - \ error: Incompatible default for argument \"row\" (default has type\ - \ \"None\", argument has type \"int\")\r\nogr/services/github/project.py:314:\ - \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ - \nogr/services/github/project.py:315: error: Function is missing a return\ - \ type annotation\r\nogr/services/github/project.py:361: error: Untyped\ - \ decorator makes function \"fork_create\" untyped\r\nogr/services/github/project.py:372:\ - \ error: Argument \"repo\" to \"GithubProject\" has incompatible type\ - \ \"None\"; expected \"str\"\r\nogr/services/github/project.py:372:\ - \ error: Argument \"namespace\" to \"GithubProject\" has incompatible\ - \ type \"None\"; expected \"str\"\r\nogr/services/github/project.py:380:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:383:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:385: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/project.py:392:\ - \ error: Incompatible default for argument \"filter_regex\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:463:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:470:\ - \ error: Function is missing a type annotation\r\nogr/services/github/project.py:481:\ - \ error: Call to untyped function \"_normalize_label_color\" in typed\ - \ context\r\nogr/services/github/project.py:490: error: Function is\ - \ missing a type annotation\r\nogr/services/github/project.py:495: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/github/project.py:499: error: Returning Any from function\ - \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:502:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:506: error: Returning Any from function\ - \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:509:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:518: error: Argument \"git_tag\" to\ - \ \"_release_from_github_object\" of \"GithubProject\" has incompatible\ - \ type \"Optional[GitTag]\"; expected \"GitTag\"\r\nogr/services/github/project.py:524:\ - \ error: Argument \"git_tag\" to \"_release_from_github_object\" of\ - \ \"GithubProject\" has incompatible type \"Optional[GitTag]\"; expected\ - \ \"GitTag\"\r\nogr/services/github/project.py:532: error: Argument\ - \ \"git_tag\" to \"_release_from_github_object\" of \"GithubProject\"\ - \ has incompatible type \"Optional[GitTag]\"; expected \"GitTag\"\r\n\ - ogr/services/github/project.py:567: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/user.py:31: error:\ - \ Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:33:\ - \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:40:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/user.py:44:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/user.py:46: error: Return type \"Optional[str]\"\ - \ of \"get_email\" incompatible with return type \"str\" in supertype\ - \ \"GitUser\"\r\nogr/services/github/user.py:49: error: Returning Any\ - \ from function declared to return \"Optional[str]\"\r\nogr/services/github/user.py:58:\ - \ error: Returning Any from function declared to return \"Optional[str]\"\ - \r\nogr/services/github/user.py:61: error: Returning Any from function\ - \ declared to return \"Optional[str]\"\r\nogr/services/github/user.py:63:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/user.py:75:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/service.py:26:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/service.py:43:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/service.py:47: error: Incompatible default for\ - \ argument \"github_app_id\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/github/service.py:48: error: Incompatible\ - \ default for argument \"github_app_private_key\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/github/service.py:49:\ - \ error: Incompatible default for argument \"github_app_private_key_path\"\ - \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:64:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/service.py:105:\ - \ error: Returning Any from function declared to return \"bool\"\r\n\ - ogr/services/github/service.py:118: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/github/service.py:139:\ - \ error: Argument 2 of \"project_create\" is incompatible with supertype\ - \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/github/service.py:139: error: Incompatible default\ - \ for argument \"namespace\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/__init__.py:30: error: Module 'ogr.services.github'\ - \ has no attribute 'GithubService'\r\nogr/__init__.py:31: error: Module\ - \ 'ogr.services.pagure' has no attribute 'PagureService'\r\nogr/__init__.py:32:\ - \ error: Module 'ogr.services.gitlab' has no attribute 'GitlabService'\r\ - \nFound 439 errors in 30 files (checked 38 source files)\r\n```\r\n\ -
" - closed_at: null - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/251/comments - created_at: '2019-10-22T12:09:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/251/events - html_url: https://github.com/packit/ogr/issues/251 - id: 510612410 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Set missing info in GitHub commit flags. + + - Test was improved to cover that.' + closed_at: '2020-03-04T09:57:25Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/343/comments + created_at: '2020-03-02T11:17:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/343/events + html_url: https://github.com/packit/ogr/pull/343 + id: 573904235 labels: - - color: 134ac1 + - color: 0e8a16 default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/343/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzgyMzI1NTEz + number: 343 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/343.diff + html_url: https://github.com/packit/ogr/pull/343 + patch_url: https://github.com/packit/ogr/pull/343.patch + url: https://api.github.com/repos/packit/ogr/pulls/343 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix GitHub commit flags + updated_at: '2020-03-04T10:31:38Z' + url: https://api.github.com/repos/packit/ogr/issues/343 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "When working with PRs, there are also URLs linking directly to\ + \ diff tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the `url_diff`\ + \ and implement it.\r\n - Use API if possible, otherwise \"guess\"\ + \ the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\nExamples:\r\ + \n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/diffs\r\ + \n- https://github.com/packit-service/ogr/pull/1/files\r\n- https://pagure.io/ogr-tests/pull-request/7#request_diff\r\ + \n" + closed_at: '2020-03-03T15:49:36Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/211/comments + created_at: '2019-09-19T18:48:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/211/events + html_url: https://github.com/packit/ogr/issues/211 + id: 495968184 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -88281,26 +115787,141 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 + - color: fef2c0 default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/251/labels{/name} + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/211/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTA2MTI0MTA= - number: 251 + node_id: MDU6SXNzdWU0OTU5NjgxODQ= + number: 211 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Strict mypy - updated_at: '2020-02-14T08:32:52Z' - url: https://api.github.com/repos/packit/ogr/issues/251 + state: closed + title: Add diff url to PullRequest class + updated_at: '2020-03-03T15:49:36Z' + url: https://api.github.com/repos/packit/ogr/issues/211 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Added object representation for GitHub releases. + + - What about pagure? Is there anything that can be used?' + closed_at: '2019-03-12T13:36:17Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/19/comments + created_at: '2019-02-21T15:14:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/19/events + html_url: https://github.com/packit/ogr/pull/19 + id: 412975574 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/19/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjU1MDY0MDU2 + number: 19 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/19.diff + html_url: https://github.com/packit/ogr/pull/19 + patch_url: https://github.com/packit/ogr/pull/19.patch + url: https://api.github.com/repos/packit/ogr/pulls/19 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Releases + updated_at: '2020-02-28T11:35:03Z' + url: https://api.github.com/repos/packit/ogr/issues/19 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Do not use tokens/private_keys in the `__str__` methods.\n -\ + \ used `set`/`not set` instead\n - reason: We've started to show logs\ + \ publicly in the packit-service and it can be easy to forget about\ + \ this \"feature\"." + closed_at: '2020-02-21T12:13:33Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/336/comments + created_at: '2020-02-20T09:28:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/336/events + html_url: https://github.com/packit/ogr/pull/336 + id: 568163719 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/336/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzc3NjQzMzYy + number: 336 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/336.diff + html_url: https://github.com/packit/ogr/pull/336 + patch_url: https://github.com/packit/ogr/pull/336.patch + url: https://api.github.com/repos/packit/ogr/pulls/336 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Do not use tokens and keys in the __str__ methods + updated_at: '2020-02-28T11:34:56Z' + url: https://api.github.com/repos/packit/ogr/issues/336 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -88322,15 +115943,16 @@ requests.sessions: assignee: null assignees: [] author_association: CONTRIBUTOR - body: "This commit allows to pass a list of tags to pagure's create_issue\ - \ method.\r\n\r\nSigned-off-by: Clement Verna " - closed_at: '2020-02-12T09:56:00Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/321/comments - created_at: '2020-01-31T19:31:24Z' - events_url: https://api.github.com/repos/packit/ogr/issues/321/events - html_url: https://github.com/packit/ogr/pull/321 - id: 558328639 + body: "This commit adds the possibility to provide\r\na list of labels\ + \ to filter the issues of a\r\nproject.\r\n\r\nSigned-off-by: Clement\ + \ Verna " + closed_at: '2020-02-28T10:13:37Z' + comments: 22 + comments_url: https://api.github.com/repos/packit/ogr/issues/340/comments + created_at: '2020-02-21T14:19:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/340/events + html_url: https://github.com/packit/ogr/pull/340 + id: 568983388 labels: - color: 0e8a16 default: false @@ -88339,24 +115961,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/321/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/340/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY5NzM3NjUy - number: 321 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc4MzA1ODAw + number: 340 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/321.diff - html_url: https://github.com/packit/ogr/pull/321 - patch_url: https://github.com/packit/ogr/pull/321.patch - url: https://api.github.com/repos/packit/ogr/pulls/321 + diff_url: https://github.com/packit/ogr/pull/340.diff + html_url: https://github.com/packit/ogr/pull/340 + patch_url: https://github.com/packit/ogr/pull/340.patch + url: https://api.github.com/repos/packit/ogr/pulls/340 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add support for tags when creating pagure issues. - updated_at: '2020-02-12T09:56:00Z' - url: https://api.github.com/repos/packit/ogr/issues/321 + title: Allow to filter issues by labels. + updated_at: '2020-02-28T10:17:42Z' + url: https://api.github.com/repos/packit/ogr/issues/340 user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 events_url: https://api.github.com/users/cverna/events{/privacy} followers_url: https://api.github.com/users/cverna/followers following_url: https://api.github.com/users/cverna/following{/other_user} @@ -88378,18 +116000,18 @@ requests.sessions: assignee: null assignees: [] author_association: CONTRIBUTOR - body: "While working on #319, I noticed that there was no `.gitignore`\ - \ file in the repository.\r\n\r\nTo solve my _own_ pain points while\ - \ developing, I generated this one, which should ignore standard files\ - \ for MacOS, Windows, & Linux, and additionally ignore files that are\ - \ generally good to ignore in Python projects." - closed_at: '2020-02-11T09:08:13Z' + body: 'Fixes #306 + + + Franto, we didn''t speak about this, but this how I expect it to work, + WDYT?' + closed_at: '2020-02-26T11:51:17Z' comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/320/comments - created_at: '2020-01-31T01:20:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/320/events - html_url: https://github.com/packit/ogr/pull/320 - id: 557854734 + comments_url: https://api.github.com/repos/packit/ogr/issues/337/comments + created_at: '2020-02-20T21:27:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/337/events + html_url: https://github.com/packit/ogr/pull/337 + id: 568583084 labels: - color: 0e8a16 default: false @@ -88398,53 +116020,148 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/320/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/337/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY5MzY2NDA1 - number: 320 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc3OTgyODUz + number: 337 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/320.diff - html_url: https://github.com/packit/ogr/pull/320 - patch_url: https://github.com/packit/ogr/pull/320.patch - url: https://api.github.com/repos/packit/ogr/pulls/320 + diff_url: https://github.com/packit/ogr/pull/337.diff + html_url: https://github.com/packit/ogr/pull/337 + patch_url: https://github.com/packit/ogr/pull/337.patch + url: https://api.github.com/repos/packit/ogr/pulls/337 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add `.gitignore` to repo - updated_at: '2020-02-11T09:08:13Z' - url: https://api.github.com/repos/packit/ogr/issues/320 + title: enable getting projects defined with SSH URLs + updated_at: '2020-02-26T11:51:17Z' + url: https://api.github.com/repos/packit/ogr/issues/337 user: - avatar_url: https://avatars3.githubusercontent.com/u/434063?v=4 - events_url: https://api.github.com/users/nickcannariato/events{/privacy} - followers_url: https://api.github.com/users/nickcannariato/followers - following_url: https://api.github.com/users/nickcannariato/following{/other_user} - gists_url: https://api.github.com/users/nickcannariato/gists{/gist_id} + 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/nickcannariato - id: 434063 - login: nickcannariato - node_id: MDQ6VXNlcjQzNDA2Mw== - organizations_url: https://api.github.com/users/nickcannariato/orgs - received_events_url: https://api.github.com/users/nickcannariato/received_events - repos_url: https://api.github.com/users/nickcannariato/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + author_association: CONTRIBUTOR + body: 'see below: https://github.com/packit-service/ogr/issues/306#issuecomment-575204355' + closed_at: '2020-02-26T11:51:17Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/306/comments + created_at: '2020-01-10T15:38:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/306/events + html_url: https://github.com/packit/ogr/issues/306 + id: 548146892 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/306/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NDgxNDY4OTI= + number: 306 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'ogr can''t figure out auth for SSH style of URL: git@github...' + updated_at: '2020-02-26T11:51:17Z' + url: https://api.github.com/repos/packit/ogr/issues/306 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/nickcannariato/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nickcannariato/subscriptions + 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/nickcannariato + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Closes #308 ' - closed_at: '2020-01-24T19:51:49Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/309/comments - created_at: '2020-01-17T13:36:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/309/events - html_url: https://github.com/packit/ogr/pull/309 - id: 551419531 + body: "- Add diff_url to the PR classes.\r\n- Add missing setters to abstract\ + \ PR class.\r\n\r\nA rebased version of https://github.com/packit-service/ogr/pull/280\ + \ ." + closed_at: '2020-02-26T09:52:29Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/335/comments + created_at: '2020-02-20T06:22:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/335/events + html_url: https://github.com/packit/ogr/pull/335 + id: 568078329 labels: - color: 0e8a16 default: false @@ -88453,58 +116170,60 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/309/labels{/name} + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/335/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY0MTQ0OTky - number: 309 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc3NTcyNzgz + number: 335 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/309.diff - html_url: https://github.com/packit/ogr/pull/309 - patch_url: https://github.com/packit/ogr/pull/309.patch - url: https://api.github.com/repos/packit/ogr/pulls/309 + diff_url: https://github.com/packit/ogr/pull/335.diff + html_url: https://github.com/packit/ogr/pull/335 + patch_url: https://github.com/packit/ogr/pull/335.patch + url: https://api.github.com/repos/packit/ogr/pulls/335 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add filtering of issues/PRs by author/assignee - updated_at: '2020-02-10T18:51:00Z' - url: https://api.github.com/repos/packit/ogr/issues/309 + title: diff url for pull-requests + updated_at: '2020-02-26T10:14:51Z' + url: https://api.github.com/repos/packit/ogr/issues/335 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Hello there \U0001F44B \r\n\r\nThis came up in my `good-first-issue`\ - \ search and seemed like a fairly straightforward bug to fix.\r\n\r\n\ - I decided to treat it as a data problem and check for the existence\ - \ of a trailing slash in a simple if statement. It worked in the test\ - \ cases I passed it, and should be pretty straightforward to debug.\ - \ \r\n\r\nOpen to any/all criticism. Thanks for all you do!" - closed_at: '2020-02-06T12:58:10Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/319/comments - created_at: '2020-01-31T01:06:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/319/events - html_url: https://github.com/packit/ogr/pull/319 - id: 557850271 + body: '' + closed_at: '2020-02-26T07:46:42Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/341/comments + created_at: '2020-02-25T13:21:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/341/events + html_url: https://github.com/packit/ogr/pull/341 + id: 570565436 labels: - color: 0e8a16 default: false @@ -88513,166 +116232,158 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/319/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/341/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY5MzYzMTc2 - number: 319 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc5NTc3NjE5 + number: 341 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/319.diff - html_url: https://github.com/packit/ogr/pull/319 - patch_url: https://github.com/packit/ogr/pull/319.patch - url: https://api.github.com/repos/packit/ogr/pulls/319 + diff_url: https://github.com/packit/ogr/pull/341.diff + html_url: https://github.com/packit/ogr/pull/341 + patch_url: https://github.com/packit/ogr/pull/341.patch + url: https://api.github.com/repos/packit/ogr/pulls/341 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove trailing slash from URLs before parsing - updated_at: '2020-02-06T17:15:07Z' - url: https://api.github.com/repos/packit/ogr/issues/319 + title: simplify requre testcases and use requre base test class + updated_at: '2020-02-26T07:46:42Z' + url: https://api.github.com/repos/packit/ogr/issues/341 user: - avatar_url: https://avatars3.githubusercontent.com/u/434063?v=4 - events_url: https://api.github.com/users/nickcannariato/events{/privacy} - followers_url: https://api.github.com/users/nickcannariato/followers - following_url: https://api.github.com/users/nickcannariato/following{/other_user} - gists_url: https://api.github.com/users/nickcannariato/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/nickcannariato - id: 434063 - login: nickcannariato - node_id: MDQ6VXNlcjQzNDA2Mw== - organizations_url: https://api.github.com/users/nickcannariato/orgs - received_events_url: https://api.github.com/users/nickcannariato/received_events - repos_url: https://api.github.com/users/nickcannariato/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/nickcannariato/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nickcannariato/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/nickcannariato + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\n>>> from ogr.parsing import parse_git_repo\r\n>>> r = parse_git_repo('https://github.com/avocado-framework/avocado/')\r\ - \n>>> r.namespace\r\n'avocado'\r\n>>> r.repo\r\n''\r\n```" - closed_at: '2020-02-06T12:58:11Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/318/comments - created_at: '2020-01-29T13:10:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/318/events - html_url: https://github.com/packit/ogr/issues/318 - id: 556852319 - labels: - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/318/labels{/name} + author_association: CONTRIBUTOR + body: "Closes #211\r\n\r\nI added diff url to PullRequest.\r\n\r\nImplementation:\r\ + \n- [x] BasePullRequest\r\n- [x] Github\r\n- [x] Gitlab\r\n- [x] Pagure\r\ + \n\r\nBut I found diff url in api for github, so I \"guess\" url. \r\ + \nBut for github there are two option \"/files\" (consistent with other\ + \ services) or \".diff\" (consistent with Github api).\r\n\r\nFor example:\r\ + \nhttps://github.com/packit-service/ogr/pull/1/files\r\nand \r\nhttps://patch-diff.githubusercontent.com/raw/packit-service/ogr/pull/1.diff\r\ + \n\r\nI think \".files\" looks better and that option was in issue as\ + \ example, that why I chose this one. But if you want I can change to\ + \ github api option \".diff\" \r\n\r\nFor others services I couldn't\ + \ find in api, so I \"guess\" url. \r\n" + closed_at: '2020-02-20T08:39:54Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/280/comments + created_at: '2019-11-22T10:17:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/280/events + html_url: https://github.com/packit/ogr/pull/280 + id: 527108315 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/280/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTY4NTIzMTk= - number: 318 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ0NDQ0OTEz + number: 280 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/280.diff + html_url: https://github.com/packit/ogr/pull/280 + patch_url: https://github.com/packit/ogr/pull/280.patch + url: https://api.github.com/repos/packit/ogr/pulls/280 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: parse_git_repo fails to handle '/' at string end correctly - updated_at: '2020-02-06T12:58:11Z' - url: https://api.github.com/repos/packit/ogr/issues/318 + title: Add url diff to PullRequest + updated_at: '2020-02-20T08:39:54Z' + url: https://api.github.com/repos/packit/ogr/issues/280 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 + events_url: https://api.github.com/users/pawelkopka/events{/privacy} + followers_url: https://api.github.com/users/pawelkopka/followers + following_url: https://api.github.com/users/pawelkopka/following{/other_user} + gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/pawelkopka + id: 17784034 + login: pawelkopka + node_id: MDQ6VXNlcjE3Nzg0MDM0 + organizations_url: https://api.github.com/users/pawelkopka/orgs + received_events_url: https://api.github.com/users/pawelkopka/received_events + repos_url: https://api.github.com/users/pawelkopka/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions type: User - url: https://api.github.com/users/dhodovsk + url: https://api.github.com/users/pawelkopka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2020-02-06T12:47:41Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/322/comments - created_at: '2020-02-05T10:22:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/322/events - html_url: https://github.com/packit/ogr/pull/322 - id: 560273848 - labels: - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/322/labels{/name} + closed_at: '2020-02-19T14:45:23Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/324/comments + created_at: '2020-02-10T13:09:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/324/events + html_url: https://github.com/packit/ogr/pull/324 + id: 562549831 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/324/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzcxMjkxODM1 - number: 322 + node_id: MDExOlB1bGxSZXF1ZXN0MzczMTI1MDU5 + number: 324 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/322.diff - html_url: https://github.com/packit/ogr/pull/322 - patch_url: https://github.com/packit/ogr/pull/322.patch - url: https://api.github.com/repos/packit/ogr/pulls/322 + diff_url: https://github.com/packit/ogr/pull/324.diff + html_url: https://github.com/packit/ogr/pull/324 + patch_url: https://github.com/packit/ogr/pull/324.patch + url: https://api.github.com/repos/packit/ogr/pulls/324 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pre-commit changes - updated_at: '2020-02-06T12:47:46Z' - url: https://api.github.com/repos/packit/ogr/issues/322 + title: updated PullRequest depr message + updated_at: '2020-02-19T14:52:32Z' + url: https://api.github.com/repos/packit/ogr/issues/324 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: TomasTomecek vs Tomas Tomecek - closed_at: '2020-01-29T12:56:32Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/317/comments - created_at: '2020-01-28T15:19:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/317/events - html_url: https://github.com/packit/ogr/pull/317 - id: 556279456 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-02-19T13:32:13Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/328/comments + created_at: '2020-02-17T13:41:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/328/events + html_url: https://github.com/packit/ogr/pull/328 + id: 566306913 labels: - color: 0e8a16 default: false @@ -88681,239 +116392,355 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/317/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/328/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY4MDcxOTA1 - number: 317 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc2MTQyOTU3 + number: 328 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/317.diff - html_url: https://github.com/packit/ogr/pull/317 - patch_url: https://github.com/packit/ogr/pull/317.patch - url: https://api.github.com/repos/packit/ogr/pulls/317 + diff_url: https://github.com/packit/ogr/pull/328.diff + html_url: https://github.com/packit/ogr/pull/328 + patch_url: https://github.com/packit/ogr/pull/328.patch + url: https://api.github.com/repos/packit/ogr/pulls/328 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github.pr.author: use login instead of name' - updated_at: '2020-01-30T08:42:02Z' - url: https://api.github.com/repos/packit/ogr/issues/317 + title: provide is_private method on GitProjects + updated_at: '2020-02-19T13:36:04Z' + url: https://api.github.com/repos/packit/ogr/issues/328 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/TomasTomecek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. - Reason: ''Not Found''. ` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-01-28T14:17:18Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/314/comments - created_at: '2020-01-28T14:05:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/314/events - html_url: https://github.com/packit/ogr/issues/314 - id: 556231299 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/314/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1NTYyMzEyOTk= - number: 314 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[packit] Propose update failed for release 0.10.0' - updated_at: '2020-01-28T14:17:18Z' - url: https://api.github.com/repos/packit/ogr/issues/314 - user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + url: https://api.github.com/users/dhodovsk + _next: null + elapsed: 0.424054 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 17:59:58 GMT + ETag: W/"52251c812442c0bc06146f7762e62d12d486f55f794c6d349d537a9ad0e23126" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7DFA3:191867A:6075DC1D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4862' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '138' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=10: + - metadata: + latency: 0.4951000213623047 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. - Reason: ''Not Found''. ` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-01-28T14:17:12Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/315/comments - created_at: '2020-01-28T14:05:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/315/events - html_url: https://github.com/packit/ogr/issues/315 - id: 556231476 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/315/labels{/name} + author_association: MEMBER + body: "When creating a project in Pagure and setting the namespace, we\ + \ get a general `not a valid choice`.\r\n\r\nIt would be useful to determine\ + \ these two possibilities:\r\n\r\n- non-existing namespace\r\n- no permissions\r\ + \n\r\n---\r\n\r\nThe follow-up to #242 ." + closed_at: '2020-01-03T08:43:55Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/245/comments + created_at: '2019-10-14T13:29:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/245/events + html_url: https://github.com/packit/ogr/issues/245 + id: 506654479 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/245/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTYyMzE0NzY= - number: 315 + node_id: MDU6SXNzdWU1MDY2NTQ0Nzk= + number: 245 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.10.0' - updated_at: '2020-01-28T14:17:12Z' - url: https://api.github.com/repos/packit/ogr/issues/315 + title: Determine the reason of project_create failure in Pagure namespace + updated_at: '2020-01-03T08:43:55Z' + url: https://api.github.com/repos/packit/ogr/issues/245 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + 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/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f30` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. - Reason: ''Not Found''. ` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-01-28T14:17:02Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/316/comments - created_at: '2020-01-28T14:05:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/316/events - html_url: https://github.com/packit/ogr/issues/316 - id: 556231659 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/316/labels{/name} + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-12-16T14:39:27Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/296/comments + created_at: '2019-12-16T11:17:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/296/events + html_url: https://github.com/packit/ogr/pull/296 + id: 538347978 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/296/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTYyMzE2NTk= - number: 316 + node_id: MDExOlB1bGxSZXF1ZXN0MzUzNTA4NTk4 + number: 296 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/296.diff + html_url: https://github.com/packit/ogr/pull/296 + patch_url: https://github.com/packit/ogr/pull/296.patch + url: https://api.github.com/repos/packit/ogr/pulls/296 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.10.0' - updated_at: '2020-01-28T14:17:02Z' - url: https://api.github.com/repos/packit/ogr/issues/316 + title: Regenerate gitlab tests after dep update + updated_at: '2019-12-16T14:40:17Z' + url: https://api.github.com/repos/packit/ogr/issues/296 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + 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/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + 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 - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Add tests for filtering\ - \ issues by author/assignee\n* Add filtering of issues by author/assignee\n\ - * Add response files\n* Add parameters to get_files method\n* WIP: add\ - \ method to list files\n* github: set repo & namespace when forking\n\ - * Implement get_tags for GithubProject\n* Fix update_pr_info (Pagure)\ - \ bug\n* Implement setters for Pagure PR\n* Implement Issue/PR setters\ - \ for Github/Gitlab\n* Add tests for PR/Issue setters for Github/Gitlab\n\ - * (#245) Improve Pagure's project_create* add reason of failure\n* Regenerate\ - \ gitlab tests after dep update\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.10.0-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-01-28T14:03:00Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/313/comments - created_at: '2020-01-27T11:51:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/313/events - html_url: https://github.com/packit/ogr/pull/313 - id: 555524947 + \ is the changelog I created:\n### Changes\n* Change IntEnum to Enum\n\ + * Implement enum for CommitFlag states\n* Fix typos and add tests\n\ + * Implement flags for pull requests\n* Implement CommitFlag for services\n\ + * Add methods to abstract CommitFlag\n* Fix typo in comments\n* Move\ + \ deprecation to separate file\n* Fix backward compatibility on pull\ + \ requests\n* Change attribute comment to body on comments\n* Add backward\ + \ links to comments Closes #255\n* Implement editing comments\n* Return\ + \ smoke test\n* Increase version for packit propose-update\n* Implementation\ + \ of GitPython instead of calling subprocess\n* Fix remarks from review\n\ + * Fix tests\n* Fix small typos and add dummy parameters/attributes\n\ + * Rename pr_create to create_pr and pr_id to id\n* Implement static\ + \ methods for PRs\n* Move deprecated functions to base project and deprecate\ + \ them\n* Create read-only PullRequest class\n* Remove unused code,\ + \ refactor code, change name of method\n* Implement pull request for\ + \ Pagure\n* Implement pull request for Gitlab\n* Implement pull request\ + \ for Github\n* Implement base class for pull request\n* Add methods\ + \ to abstract PullRequest\n* Ignore smoke test\n* Add .fmf and setup\ + \ testing-farm\n* Rename deprecation decorator\n* Change deprecation\ + \ messages\n* Pass parameters to Issue functions explicitly\n* Update\ + \ deprecation warnings for Issue functions\n* Implement updating Issue\ + \ object for Pagure\n* Add tests for updating issue object\n* Deprecate\ + \ Issue functions and fix tests\n* Move issue create, get, get_list\ + \ to static methods\n* Update docstrings\n* Fix typos\n* Change get_labels\ + \ to property and add_labels to variable-length args\n* Create properties\ + \ for Issue and implement them\n* Move deprecated issue-related functions\ + \ to base class\n* Rename functions in Issue and move raw_issue/project\ + \ to abstract\n* Factor out `can_close_issue`\n* Implement separate\ + \ Issue for Pagure\n* Implement separate Issue for GitLab\n* Implement\ + \ separate Issue for GitHub\n* Add methods to abstract Issue and implement\ + \ BaseIssue\n* Remove unused import (AnyComment)\n* Factor out filtering\ + \ comments to only one method\n* Add methods to abstract Issue\n* Fis\ + \ integration tests. Change PersistentObjectStorage().is_write_mode\ + \ to PersistentObjectStorage().mode == StorageMode.write\n* Add requirements\ + \ to zuul yaml\n* Remove Deprecated from test env\n* Add Deprecated\ + \ to dependencies\n* Remove github_tweak to use upstream github function\n\ + * temporary integration test method PullRequest._pr_close_temp() removed\n\ + * GithbProject.pr_close() implemented, integration tests added\n* instegration\ + \ test splited, related function headers updated, precommit fixes\n\ + * pre-commit fixes\n* response file genrated\n* integration test added\n\ + * pre-commit fixes\n* github_pr_create_rework_250\n* Fix the path to\ + \ the packit tests\n* Use requre-purge to unify the dates and tags in\ + \ response files\n* Tweak the stale-bot config\n* throw exception when\ + \ repo not found\n* write bytes as bytes to file\n* fix changes with\ + \ type hint inheritance\n* update NoReturns\n* type hint changes\n*\ + \ type hint changes\n* improve typehints for abstract.py\n* improve\ + \ typehint coverage in utils.py\n* Update contributing text in README\n\ + * Add link to contribution guide to README\n* Fix mypy remarks in Pagure's\ + \ comments\n* Add config for stale bot\n* changes args to Any\n* type\ + \ hint changes\n* black format\n* improve typehints for exceptions.py\n\ + * Fix black formatting\n* improve typehints for parsing.py\n* Resolve\ + \ remarks from review\n* (#230) Refactor parsing raw_comment\n* Change\ + \ method name\n* (#230) Update constructors and factor out raw_comment\n\ + * Remove duplicit import\n* Use bond TypeVar for abstract comment typing\n\ + * (#230) Support services' Issue/PRComment creation as in superclass\n\ + * (#230) Added TODO for backward-link and added raw_comment to objects\n\ + * (#230) Pagure comments (PR, Issue) implementation\n* (#230) Keep GithubProject.pr_comment\ + \ return type as before\n* (#230) Gitlab comments (PR, Issue) implementation\n\ + * (#230) Github comments (PR, Issue) implementation\n* (#230) Refactor\ + \ abstract classes for comments\n* Use new format for requre\n* Add\ + \ rebase check to pre-commit\n* (#240) Add parameter to Gitlab to get\ + \ comments in right order\n* (#240) Add tests for filtering Issue/PR\ + \ comments by author\n* Fix order of Gitlab's PR comments\n* (#240)\ + \ Update tests after factoring out getting comments\n* (#240) Refactor\ + \ of pr/issue comments\n* (#240) Extend get_issue/pr_comments interface\ + \ of filtering by author\n* (#240) Update filter_comments support\n\ + * (#204) Add test for creating Pagure project in invalid namespace\n\ + * Add response for creating Pagure repo in the namespace\n* (#204) Add\ + \ project_create to PagureService and add tests for it\n* (#232) Finish\ + \ Gitlab tests\n* (#232) Pagure tests finished\n* (#232) Start regenerating\ + \ GitLab tests\n* (#232) Started regenerating tests for Pagure\n* Newline\ + \ added\n* (#232) Fix GitHub tests\n* (#232) Update fullname of calling\ + \ objects for GitHub\n* (#232) Regenerate factory test_data\n* (#232)\ + \ Fix mypy/flake8 errors for gitlab and pagure\n* Fix mypy errors for\ + \ github\n* (#232) Fix circular imports\n* (#232) Pagure split and __init__\n\ + * (#232) GitLab split and __init__\n* (#232) GitHub split and __init__\n\ + * Add reverse-dependency test of packit\n* prepare for rev dependency\ + \ testing, set project dir in case it not come from zuul\n* remove all\ + \ stuff what were moved to requre project\n* Add Developer Certificate\ + \ of Origin\n* (#233) Update imports in Gitlab tests\n* Recreate old\ + \ response files\n* use requre for storing data for tests\n* (#205)\ + \ Update responses to match updated PagureService.get_project\n* (#205)\ + \ Add test_data for Pagure.get_issue_comments\n* (#205) Implement Pagure.get_issue_comments\ + \ and add tests\n* (#205) Implement Gitlab.get_issue_comments and add\ + \ tests\n* Fix formatting\n* (#205) Add Githubproject.get_issue_comments\ + \ and tests for it\n* Fix formatting\n* (#220) Regenerate responses\ + \ + update broken test\n* (#220) Pass username to PagureProject in get_project\ + \ if not given\n* (#220) PagureProject.is_fork offline and add method\ + \ for API call\n* (#220) Regenerate responses and add test\n* (#220)\ + \ Make PagureProject.full_repo_name property offline\n\n\nYou can change\ + \ it by editing `CHANGELOG.md` in the root of this repository and pushing\ + \ to `0.9.0-release` branch before merging this PR.\nI didn't find any\ + \ files where `__version__` is set." + closed_at: '2019-12-06T13:29:05Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/291/comments + created_at: '2019-12-04T09:37:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/291/events + html_url: https://github.com/packit/ogr/pull/291 + id: 532560063 labels: - color: ededed default: false @@ -88936,24 +116763,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/313/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/291/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY3NDUwNDkz - number: 313 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ4Nzg0MjM1 + number: 291 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/313.diff - html_url: https://github.com/packit/ogr/pull/313 - patch_url: https://github.com/packit/ogr/pull/313.patch - url: https://api.github.com/repos/packit/ogr/pulls/313 + diff_url: https://github.com/packit/ogr/pull/291.diff + html_url: https://github.com/packit/ogr/pull/291 + patch_url: https://github.com/packit/ogr/pull/291.patch + url: https://api.github.com/repos/packit/ogr/pulls/291 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.10.0 release - updated_at: '2020-01-28T14:05:46Z' - url: https://api.github.com/repos/packit/ogr/issues/313 + title: 0.9.0 release + updated_at: '2019-12-14T17:33:42Z' + url: https://api.github.com/repos/packit/ogr/issues/291 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -88975,42 +116802,40 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: Release-bot, it's time to work! - closed_at: '2020-01-27T11:51:57Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/312/comments - created_at: '2020-01-27T11:48:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/312/events - html_url: https://github.com/packit/ogr/issues/312 - id: 555523325 + body: '- Add trim commit flag descripttion to all implementations.' + closed_at: '2019-12-06T08:41:20Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/294/comments + created_at: '2019-12-05T09:15:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/294/events + html_url: https://github.com/packit/ogr/pull/294 + id: 533219952 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/312/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/294/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTU1MjMzMjU= - number: 312 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ5MzMyNDEx + number: 294 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/294.diff + html_url: https://github.com/packit/ogr/pull/294 + patch_url: https://github.com/packit/ogr/pull/294.patch + url: https://api.github.com/repos/packit/ogr/pulls/294 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2020-01-27T11:51:57Z' - url: https://api.github.com/repos/packit/ogr/issues/312 + title: Trim description of commit flag to abstract + updated_at: '2019-12-06T09:52:59Z' + url: https://api.github.com/repos/packit/ogr/issues/294 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -89032,15 +116857,20 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Consider also other filtering options:\r\n\r\nThe options are:\r\ - \nhttps://github.com/PyGithub/PyGithub/blob/master/github/Repository.py#L2172-L2195" - closed_at: '2020-01-24T19:51:49Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/308/comments - created_at: '2020-01-16T10:24:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/308/events - html_url: https://github.com/packit/ogr/issues/308 - id: 550712442 + body: "We are using `open` in the status enums, but `closed`.\r\n\r\n\ + Currently, we need to replace that for GitLab manually and GitHub probably\ + \ needs that fix as well. I am not sure about Pagure.\r\n\r\nIdeally,\ + \ we need to change our API, but we have some usages in other projects:\r\ + \n\r\n\r\n- [ ] packit\r\n - https://github.com/packit-service/packit/blob/master/tests/testsuite_basic/conftest.py#L114\ + \ (just a test)\r\n- [x] packit-service (no occurences found)\r\n- [\ + \ ] release-bot\r\n - https://github.com/user-cont/release-bot/blob/master/release_bot/github.py#L308" + closed_at: '2019-12-04T12:26:57Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/193/comments + created_at: '2019-09-11T14:03:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/193/events + html_url: https://github.com/packit/ogr/issues/193 + id: 492259504 labels: - color: '000000' default: false @@ -89063,55 +116893,110 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 8be567 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/308/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/193/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTA3MTI0NDI= - number: 308 + node_id: MDU6SXNzdWU0OTIyNTk1MDQ= + number: 193 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Support listing issues based on creator - updated_at: '2020-01-24T19:51:49Z' - url: https://api.github.com/repos/packit/ogr/issues/308 + title: Investigate 'open' x 'opened' status for Issues and PullRequests + updated_at: '2019-12-04T12:26:57Z' + url: https://api.github.com/repos/packit/ogr/issues/193 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-01-21T11:27:06Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/297/comments - created_at: '2019-12-17T08:10:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/297/events - html_url: https://github.com/packit/ogr/pull/297 - id: 538905049 + body: 'Closes #193 ' + closed_at: '2019-12-04T12:25:00Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/293/comments + created_at: '2019-12-04T11:19:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/293/events + html_url: https://github.com/packit/ogr/pull/293 + id: 532619628 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/293/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ4ODM0MjE0 + number: 293 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/293.diff + html_url: https://github.com/packit/ogr/pull/293 + patch_url: https://github.com/packit/ogr/pull/293.patch + url: https://api.github.com/repos/packit/ogr/pulls/293 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Change statuses from `open` to `opened` + updated_at: '2019-12-04T12:26:08Z' + url: https://api.github.com/repos/packit/ogr/issues/293 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Allow creating sommit flags with commit state as a string.' + closed_at: '2019-12-04T11:17:22Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/292/comments + created_at: '2019-12-04T10:10:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/292/events + html_url: https://github.com/packit/ogr/pull/292 + id: 532578973 labels: - color: 0e8a16 default: false @@ -89120,54 +117005,119 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/297/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/292/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ4Nzk5Njcy + number: 292 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/292.diff + html_url: https://github.com/packit/ogr/pull/292 + patch_url: https://github.com/packit/ogr/pull/292.patch + url: https://api.github.com/repos/packit/ogr/pulls/292 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix flags to be compatible with string states + updated_at: '2019-12-04T12:04:38Z' + url: https://api.github.com/repos/packit/ogr/issues/292 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: There was done a lot of work after the last release. Let's make + a new one! + closed_at: '2019-12-04T09:37:32Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/290/comments + created_at: '2019-12-04T09:32:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/290/events + html_url: https://github.com/packit/ogr/issues/290 + id: 532557330 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/290/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzUzOTcxMDUx - number: 297 + node_id: MDU6SXNzdWU1MzI1NTczMzA= + number: 290 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/297.diff - html_url: https://github.com/packit/ogr/pull/297 - patch_url: https://github.com/packit/ogr/pull/297.patch - url: https://api.github.com/repos/packit/ogr/pulls/297 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add method to list files - updated_at: '2020-01-21T11:27:06Z' - url: https://api.github.com/repos/packit/ogr/issues/297 + title: new minor release + updated_at: '2019-12-04T09:37:32Z' + url: https://api.github.com/repos/packit/ogr/issues/290 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #245' - closed_at: '2020-01-03T08:43:56Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/300/comments - created_at: '2019-12-30T18:09:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/300/events - html_url: https://github.com/packit/ogr/pull/300 - id: 543964942 + body: 'Fixes: #288 ' + closed_at: '2019-12-03T16:04:47Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/289/comments + created_at: '2019-12-03T15:07:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/289/events + html_url: https://github.com/packit/ogr/pull/289 + id: 532051771 labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -89175,24 +117125,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/300/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/289/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzU4MTc5NDg3 - number: 300 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ4MzgyNjMw + number: 289 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/300.diff - html_url: https://github.com/packit/ogr/pull/300 - patch_url: https://github.com/packit/ogr/pull/300.patch - url: https://api.github.com/repos/packit/ogr/pulls/300 + diff_url: https://github.com/packit/ogr/pull/289.diff + html_url: https://github.com/packit/ogr/pull/289 + patch_url: https://github.com/packit/ogr/pull/289.patch + url: https://api.github.com/repos/packit/ogr/pulls/289 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add resolution of failure of Pagure's project_create - updated_at: '2020-01-16T10:43:12Z' - url: https://api.github.com/repos/packit/ogr/issues/300 + title: Fix typo in comments + updated_at: '2019-12-04T09:27:03Z' + url: https://api.github.com/repos/packit/ogr/issues/289 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -89210,83 +117160,26 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=7: - - metadata: - latency: 0.6020293235778809 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER body: '' - closed_at: '2020-01-03T10:13:00Z' + closed_at: '2019-11-20T14:23:47Z' comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/298/comments - created_at: '2019-12-19T21:12:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/298/events - html_url: https://github.com/packit/ogr/pull/298 - id: 540569497 + comments_url: https://api.github.com/repos/packit/ogr/issues/279/comments + created_at: '2019-11-20T10:32:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/279/events + html_url: https://github.com/packit/ogr/pull/279 + id: 525714930 labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -89294,24 +117187,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/298/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/279/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzU1MzYwNjcy - number: 298 + node_id: MDExOlB1bGxSZXF1ZXN0MzQzMjgyNDg4 + number: 279 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/298.diff - html_url: https://github.com/packit/ogr/pull/298 - patch_url: https://github.com/packit/ogr/pull/298.patch - url: https://api.github.com/repos/packit/ogr/pulls/298 + diff_url: https://github.com/packit/ogr/pull/279.diff + html_url: https://github.com/packit/ogr/pull/279 + patch_url: https://github.com/packit/ogr/pull/279.patch + url: https://api.github.com/repos/packit/ogr/pulls/279 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Setters for Issue/PR - updated_at: '2020-01-16T10:43:08Z' - url: https://api.github.com/repos/packit/ogr/issues/298 + title: Add deprecation policy and dependency package + updated_at: '2019-12-04T09:27:02Z' + url: https://api.github.com/repos/packit/ogr/issues/279 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -89333,166 +117226,24 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "```\r\nName Stmts Miss Cover Missing\r\ - \n----------------------------------------------------------\r\nservices/github.py\ - \ 114 63 45% 17-19, 24-26, 30, 33-34, 41-42, 47, 51,\ - \ 58-61, 64, 67, 70, 73-79, 82-83, 86-87, 95-98, 108, 111, 114-115,\ - \ 118, 121, 124, 127-132, 135, 149, 170, 184, 193-203, 207-209, 212-213,\ - \ 216-217, 227, 230\r\nservices/gitlab.py 66 66 0%\ - \ 1-144\r\nservices/our_pagure.py 79 46 42% 33, 36-39,\ - \ 134-148, 160-176, 180-186, 249-256, 259-264, 267-270, 273, 276, 279-282,\ - \ 285-288, 291-294, 297-298\r\nutils.py 150 110\ - \ 27% 35-77, 82-83, 88-89, 94, 98-116, 120-130, 145-148, 163-165,\ - \ 169-176, 180-214, 219-248, 252, 260, 273\r\n```\r\n\r\nI know the\ - \ `gitlab` module is WIP, but the others deserve more tests IMHO" - closed_at: '2020-01-15T11:22:38Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/49/comments - created_at: '2019-03-26T14:47:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/49/events - html_url: https://github.com/packit/ogr/issues/49 - id: 425463412 - labels: - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/49/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0MjU0NjM0MTI= - number: 49 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Modules with poor code coverage - updated_at: '2020-01-15T11:22:38Z' - url: https://api.github.com/repos/packit/ogr/issues/49 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "TLDR: Investigate if it is possible to reset PR/commit flags. (*added\ - \ by @lachmanfrantisek*)\r\n\r\n----\r\n\r\nI solved a problem with\ - \ reset Copr build statuses.\r\nLike can be seen here: https://github.com/packit-service/hello-world/pull/9\r\ - \n\r\nIt would be nice to look at the possibility if in case of the\ - \ pull request is not created by a collaborator to get rid of check\ - \ statuses. Like nothing is shown and the pull request can not be merged." - closed_at: '2020-01-13T09:38:06Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/133/comments - created_at: '2019-07-23T07:53:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/133/events - html_url: https://github.com/packit/ogr/issues/133 - id: 471540158 + body: "- [x] editing of comments\r\n- [x] backward-link to issue/PR\r\n\ + - [x] rename property `comment` to `body`\r\n editing comments works\ + \ only on `body`" + closed_at: '2019-12-03T11:21:57Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/285/comments + created_at: '2019-11-29T12:32:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/285/events + html_url: https://github.com/packit/ogr/pull/285 + id: 530323155 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: ff9990 + - color: b60205 default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - labels_url: https://api.github.com/repos/packit/ogr/issues/133/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NzE1NDAxNTg= - number: 133 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Look at possibility for reseting or get rid off checkes in GitHub - updated_at: '2020-01-13T09:38:06Z' - url: https://api.github.com/repos/packit/ogr/issues/133 - user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos - site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions - type: User - url: https://api.github.com/users/phracek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-01-09T08:17:00Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/305/comments - created_at: '2020-01-05T17:52:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/305/events - html_url: https://github.com/packit/ogr/pull/305 - id: 545446757 - labels: + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -89500,54 +117251,66 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/305/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/285/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzU5MzIyMjQw - number: 305 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ3MDI4OTMw + number: 285 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/305.diff - html_url: https://github.com/packit/ogr/pull/305 - patch_url: https://github.com/packit/ogr/pull/305.patch - url: https://api.github.com/repos/packit/ogr/pulls/305 + diff_url: https://github.com/packit/ogr/pull/285.diff + html_url: https://github.com/packit/ogr/pull/285 + patch_url: https://github.com/packit/ogr/pull/285.patch + url: https://api.github.com/repos/packit/ogr/pulls/285 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github: set repo & namespace when forking' - updated_at: '2020-01-09T08:40:00Z' - url: https://api.github.com/repos/packit/ogr/issues/305 + title: Implement editing comments and backward-link to Issue/PR + updated_at: '2019-12-04T09:27:02Z' + url: https://api.github.com/repos/packit/ogr/issues/285 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #303' - closed_at: '2020-01-06T08:18:34Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/304/comments - created_at: '2020-01-05T10:51:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/304/events - html_url: https://github.com/packit/ogr/pull/304 - id: 545401796 + body: "- [x] add methods\r\n- [x] services' implementation\r\n- [x] enum\ + \ for statuses?\r\n- [x] PRs?\r\n - [x] tests\r\n\r\nComparison of\ + \ statuses:\r\n\r\nGitHub | GitLab | Pagure\r\n--- | --- | ---\r\n`pending`\ + \ | `pending` | `pending`\r\n`success` | `success` | `success`\r\n`failure`\ + \ | `failed` | `failure`\r\n`error` | `-` | `error`\r\n`-` | `canceled`\ + \ | `canceled`\r\n`-` | `running` | `-`" + closed_at: '2019-12-03T20:23:52Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/286/comments + created_at: '2019-11-30T20:18:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/286/events + html_url: https://github.com/packit/ogr/pull/286 + id: 530625724 labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -89555,24 +117318,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/304/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/286/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzU5MjkwMzMz - number: 304 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ3MjU2NjI2 + number: 286 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/304.diff - html_url: https://github.com/packit/ogr/pull/304 - patch_url: https://github.com/packit/ogr/pull/304.patch - url: https://api.github.com/repos/packit/ogr/pulls/304 + diff_url: https://github.com/packit/ogr/pull/286.diff + html_url: https://github.com/packit/ogr/pull/286 + patch_url: https://github.com/packit/ogr/pull/286.patch + url: https://api.github.com/repos/packit/ogr/pulls/286 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement get_tags for GithubProject - updated_at: '2020-01-06T08:48:26Z' - url: https://api.github.com/repos/packit/ogr/issues/304 + title: Commit flags + updated_at: '2019-12-04T09:27:02Z' + url: https://api.github.com/repos/packit/ogr/issues/286 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -89594,169 +117357,109 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "```\r\nipdb> git_project \ - \ \ - \ \r\n\r\n\r\nipdb> git_project.get_tags \ - \ \r\n>\r\n\r\nipdb> git_project.get_tags() \ - \ \r\n*** NotImplementedError\r\n```" - closed_at: '2020-01-06T08:18:34Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/303/comments - created_at: '2020-01-03T14:36:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/303/events - html_url: https://github.com/packit/ogr/issues/303 - id: 545018569 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/303/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1NDUwMTg1Njk= - number: 303 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: get_tags is not implemented for GithubProject - updated_at: '2020-01-06T08:18:34Z' - url: https://api.github.com/repos/packit/ogr/issues/303 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "this means to use standard-test-roles to wrap our tests so they\ - \ can run when we create PRs on dist-git\r\n\r\nsee [python-docker's\ - \ test wrapper](https://src.fedoraproject.org/rpms/python-docker/blob/master/f/tests)\ - \ for more details" - closed_at: '2020-01-03T14:54:39Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/29/comments - created_at: '2019-03-01T17:18:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/29/events - html_url: https://github.com/packit/ogr/issues/29 - id: 416200836 + body: '' + closed_at: '2019-12-03T12:36:59Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/287/comments + created_at: '2019-12-02T14:02:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/287/events + html_url: https://github.com/packit/ogr/pull/287 + id: 531147909 labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: '000000' + - color: b60205 default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - - color: f9d0c4 + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/29/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/287/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTYyMDA4MzY= - number: 29 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ3NjQwMjEz + number: 287 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/287.diff + html_url: https://github.com/packit/ogr/pull/287 + patch_url: https://github.com/packit/ogr/pull/287.patch + url: https://api.github.com/repos/packit/ogr/pulls/287 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: run our tests in Fedora CI - updated_at: '2020-01-05T17:00:32Z' - url: https://api.github.com/repos/packit/ogr/issues/29 + title: Fix backward compatibility on pull requests + updated_at: '2019-12-04T09:27:02Z' + url: https://api.github.com/repos/packit/ogr/issues/287 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "During the implementation of setters for PR for Pagure (#298) I've\ - \ found out that Pagure's API requires title to be given (which seems\ - \ a bit odd, since why would you need to give title when you want to\ - \ update only description).\r\n\r\nWill fix in PR above, just letting\ - \ know about the bug." - closed_at: '2020-01-03T10:13:01Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/299/comments - created_at: '2019-12-26T21:35:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/299/events - html_url: https://github.com/packit/ogr/issues/299 - id: 542675897 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/299/labels{/name} + body: 'Closes #230' + closed_at: '2019-10-23T13:09:59Z' + comments: 27 + comments_url: https://api.github.com/repos/packit/ogr/issues/249/comments + created_at: '2019-10-16T16:02:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/249/events + html_url: https://github.com/packit/ogr/pull/249 + id: 507947617 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/249/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDI2NzU4OTc= - number: 299 + node_id: MDExOlB1bGxSZXF1ZXN0MzI4ODM5NDg2 + number: 249 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/249.diff + html_url: https://github.com/packit/ogr/pull/249 + patch_url: https://github.com/packit/ogr/pull/249.patch + url: https://api.github.com/repos/packit/ogr/pulls/249 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Updating PullRequest info (Pagure) - updated_at: '2020-01-03T10:13:01Z' - url: https://api.github.com/repos/packit/ogr/issues/299 + title: Factor out Comment + updated_at: '2019-12-04T09:27:01Z' + url: https://api.github.com/repos/packit/ogr/issues/249 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -89778,126 +117481,158 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: started porting upsint to ogr and realized that I can't get all - labels defined on a repo - closed_at: '2020-01-03T09:14:39Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/301/comments - created_at: '2020-01-02T12:24:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/301/events - html_url: https://github.com/packit/ogr/issues/301 - id: 544558708 + body: '- Update annotation of `_from_raw_comment`' + closed_at: '2019-11-04T12:35:35Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/260/comments + created_at: '2019-10-27T17:27:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/260/events + html_url: https://github.com/packit/ogr/pull/260 + id: 512995963 labels: - - color: a2eeef + - color: b60205 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/301/labels{/name} + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/260/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDQ1NTg3MDg= - number: 301 + node_id: MDExOlB1bGxSZXF1ZXN0MzMyODc1NTQ3 + number: 260 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/260.diff + html_url: https://github.com/packit/ogr/pull/260 + patch_url: https://github.com/packit/ogr/pull/260.patch + url: https://api.github.com/repos/packit/ogr/pulls/260 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'RFE: get repo labels' - updated_at: '2020-01-03T09:14:39Z' - url: https://api.github.com/repos/packit/ogr/issues/301 + title: 'Comment: mypy' + updated_at: '2019-12-04T09:27:01Z' + url: https://api.github.com/repos/packit/ogr/issues/260 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "When creating a project in Pagure and setting the namespace, we\ - \ get a general `not a valid choice`.\r\n\r\nIt would be useful to determine\ - \ these two possibilities:\r\n\r\n- non-existing namespace\r\n- no permissions\r\ - \n\r\n---\r\n\r\nThe follow-up to #242 ." - closed_at: '2020-01-03T08:43:55Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/245/comments - created_at: '2019-10-14T13:29:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/245/events - html_url: https://github.com/packit/ogr/issues/245 - id: 506654479 + body: "Closes #253\r\n\r\n- [x] move issue-related functions from `Project`\ + \ to `Issue`\r\n- [x] make `Project`'s methods backward-compatible by\ + \ calling new methods\r\n- [x] fix tests\r\n- [x] `__get_comment`, `get_issue_comments`\r\ + \n- [x] deprecate functions on `Project`\r\n- [x] check docstrings\r\ + \n- [x] update deprecation warnings" + closed_at: '2019-11-26T08:52:22Z' + comments: 24 + comments_url: https://api.github.com/repos/packit/ogr/issues/264/comments + created_at: '2019-11-04T11:23:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/264/events + html_url: https://github.com/packit/ogr/pull/264 + id: 517089572 labels: - - color: 1d76db + - color: b60205 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 8be567 + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/245/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/264/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDY2NTQ0Nzk= - number: 245 + node_id: MDExOlB1bGxSZXF1ZXN0MzM2MjI2MDM0 + number: 264 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/264.diff + html_url: https://github.com/packit/ogr/pull/264 + patch_url: https://github.com/packit/ogr/pull/264.patch + url: https://api.github.com/repos/packit/ogr/pulls/264 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Determine the reason of project_create failure in Pagure namespace - updated_at: '2020-01-03T08:43:55Z' - url: https://api.github.com/repos/packit/ogr/issues/245 + title: Issue class refactor + updated_at: '2019-12-04T09:27:01Z' + url: https://api.github.com/repos/packit/ogr/issues/264 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-12-16T14:39:27Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/296/comments - created_at: '2019-12-16T11:17:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/296/events - html_url: https://github.com/packit/ogr/pull/296 - id: 538347978 + body: "Closes #254 \r\n\r\n- [x] move PR-related functions from `Project`\ + \ to `PullRequest`\r\n - [x] `BasePullRequest`\r\n - [x] Github\r\n\ + \ - [x] Gitlab\r\n - [x] Pagure\r\n- [x] make `Project`'s methods\ + \ backward-compatible by calling new methods\r\n- [x] deprecation\r\n\ + \ - [x] move deprecated functions to base class\r\n - [x] deprecate\ + \ functions on `Project`\r\n- [x] properties\r\n- [x] fix tests\r\n\ + - [x] static methods for `get`, `create`, `list`\r\n- [x] update comments\ + \ (after refactor from Issue has been merged)\r\n- [x] check docstrings\r\ + \n- [x] `pr_create` -> update name" + closed_at: '2019-11-29T10:21:52Z' + comments: 17 + comments_url: https://api.github.com/repos/packit/ogr/issues/276/comments + created_at: '2019-11-16T21:01:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/276/events + html_url: https://github.com/packit/ogr/pull/276 + id: 523895740 labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -89905,24 +117640,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/296/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/276/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzUzNTA4NTk4 - number: 296 + node_id: MDExOlB1bGxSZXF1ZXN0MzQxNzkxNzIw + number: 276 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/296.diff - html_url: https://github.com/packit/ogr/pull/296 - patch_url: https://github.com/packit/ogr/pull/296.patch - url: https://api.github.com/repos/packit/ogr/pulls/296 + diff_url: https://github.com/packit/ogr/pull/276.diff + html_url: https://github.com/packit/ogr/pull/276 + patch_url: https://github.com/packit/ogr/pull/276.patch + url: https://api.github.com/repos/packit/ogr/pulls/276 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Regenerate gitlab tests after dep update - updated_at: '2019-12-16T14:40:17Z' - url: https://api.github.com/repos/packit/ogr/issues/296 + title: Pull request class refactor + updated_at: '2019-12-04T09:27:01Z' + url: https://api.github.com/repos/packit/ogr/issues/276 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -89941,153 +117676,25 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Change IntEnum to Enum\n\ - * Implement enum for CommitFlag states\n* Fix typos and add tests\n\ - * Implement flags for pull requests\n* Implement CommitFlag for services\n\ - * Add methods to abstract CommitFlag\n* Fix typo in comments\n* Move\ - \ deprecation to separate file\n* Fix backward compatibility on pull\ - \ requests\n* Change attribute comment to body on comments\n* Add backward\ - \ links to comments Closes #255\n* Implement editing comments\n* Return\ - \ smoke test\n* Increase version for packit propose-update\n* Implementation\ - \ of GitPython instead of calling subprocess\n* Fix remarks from review\n\ - * Fix tests\n* Fix small typos and add dummy parameters/attributes\n\ - * Rename pr_create to create_pr and pr_id to id\n* Implement static\ - \ methods for PRs\n* Move deprecated functions to base project and deprecate\ - \ them\n* Create read-only PullRequest class\n* Remove unused code,\ - \ refactor code, change name of method\n* Implement pull request for\ - \ Pagure\n* Implement pull request for Gitlab\n* Implement pull request\ - \ for Github\n* Implement base class for pull request\n* Add methods\ - \ to abstract PullRequest\n* Ignore smoke test\n* Add .fmf and setup\ - \ testing-farm\n* Rename deprecation decorator\n* Change deprecation\ - \ messages\n* Pass parameters to Issue functions explicitly\n* Update\ - \ deprecation warnings for Issue functions\n* Implement updating Issue\ - \ object for Pagure\n* Add tests for updating issue object\n* Deprecate\ - \ Issue functions and fix tests\n* Move issue create, get, get_list\ - \ to static methods\n* Update docstrings\n* Fix typos\n* Change get_labels\ - \ to property and add_labels to variable-length args\n* Create properties\ - \ for Issue and implement them\n* Move deprecated issue-related functions\ - \ to base class\n* Rename functions in Issue and move raw_issue/project\ - \ to abstract\n* Factor out `can_close_issue`\n* Implement separate\ - \ Issue for Pagure\n* Implement separate Issue for GitLab\n* Implement\ - \ separate Issue for GitHub\n* Add methods to abstract Issue and implement\ - \ BaseIssue\n* Remove unused import (AnyComment)\n* Factor out filtering\ - \ comments to only one method\n* Add methods to abstract Issue\n* Fis\ - \ integration tests. Change PersistentObjectStorage().is_write_mode\ - \ to PersistentObjectStorage().mode == StorageMode.write\n* Add requirements\ - \ to zuul yaml\n* Remove Deprecated from test env\n* Add Deprecated\ - \ to dependencies\n* Remove github_tweak to use upstream github function\n\ - * temporary integration test method PullRequest._pr_close_temp() removed\n\ - * GithbProject.pr_close() implemented, integration tests added\n* instegration\ - \ test splited, related function headers updated, precommit fixes\n\ - * pre-commit fixes\n* response file genrated\n* integration test added\n\ - * pre-commit fixes\n* github_pr_create_rework_250\n* Fix the path to\ - \ the packit tests\n* Use requre-purge to unify the dates and tags in\ - \ response files\n* Tweak the stale-bot config\n* throw exception when\ - \ repo not found\n* write bytes as bytes to file\n* fix changes with\ - \ type hint inheritance\n* update NoReturns\n* type hint changes\n*\ - \ type hint changes\n* improve typehints for abstract.py\n* improve\ - \ typehint coverage in utils.py\n* Update contributing text in README\n\ - * Add link to contribution guide to README\n* Fix mypy remarks in Pagure's\ - \ comments\n* Add config for stale bot\n* changes args to Any\n* type\ - \ hint changes\n* black format\n* improve typehints for exceptions.py\n\ - * Fix black formatting\n* improve typehints for parsing.py\n* Resolve\ - \ remarks from review\n* (#230) Refactor parsing raw_comment\n* Change\ - \ method name\n* (#230) Update constructors and factor out raw_comment\n\ - * Remove duplicit import\n* Use bond TypeVar for abstract comment typing\n\ - * (#230) Support services' Issue/PRComment creation as in superclass\n\ - * (#230) Added TODO for backward-link and added raw_comment to objects\n\ - * (#230) Pagure comments (PR, Issue) implementation\n* (#230) Keep GithubProject.pr_comment\ - \ return type as before\n* (#230) Gitlab comments (PR, Issue) implementation\n\ - * (#230) Github comments (PR, Issue) implementation\n* (#230) Refactor\ - \ abstract classes for comments\n* Use new format for requre\n* Add\ - \ rebase check to pre-commit\n* (#240) Add parameter to Gitlab to get\ - \ comments in right order\n* (#240) Add tests for filtering Issue/PR\ - \ comments by author\n* Fix order of Gitlab's PR comments\n* (#240)\ - \ Update tests after factoring out getting comments\n* (#240) Refactor\ - \ of pr/issue comments\n* (#240) Extend get_issue/pr_comments interface\ - \ of filtering by author\n* (#240) Update filter_comments support\n\ - * (#204) Add test for creating Pagure project in invalid namespace\n\ - * Add response for creating Pagure repo in the namespace\n* (#204) Add\ - \ project_create to PagureService and add tests for it\n* (#232) Finish\ - \ Gitlab tests\n* (#232) Pagure tests finished\n* (#232) Start regenerating\ - \ GitLab tests\n* (#232) Started regenerating tests for Pagure\n* Newline\ - \ added\n* (#232) Fix GitHub tests\n* (#232) Update fullname of calling\ - \ objects for GitHub\n* (#232) Regenerate factory test_data\n* (#232)\ - \ Fix mypy/flake8 errors for gitlab and pagure\n* Fix mypy errors for\ - \ github\n* (#232) Fix circular imports\n* (#232) Pagure split and __init__\n\ - * (#232) GitLab split and __init__\n* (#232) GitHub split and __init__\n\ - * Add reverse-dependency test of packit\n* prepare for rev dependency\ - \ testing, set project dir in case it not come from zuul\n* remove all\ - \ stuff what were moved to requre project\n* Add Developer Certificate\ - \ of Origin\n* (#233) Update imports in Gitlab tests\n* Recreate old\ - \ response files\n* use requre for storing data for tests\n* (#205)\ - \ Update responses to match updated PagureService.get_project\n* (#205)\ - \ Add test_data for Pagure.get_issue_comments\n* (#205) Implement Pagure.get_issue_comments\ - \ and add tests\n* (#205) Implement Gitlab.get_issue_comments and add\ - \ tests\n* Fix formatting\n* (#205) Add Githubproject.get_issue_comments\ - \ and tests for it\n* Fix formatting\n* (#220) Regenerate responses\ - \ + update broken test\n* (#220) Pass username to PagureProject in get_project\ - \ if not given\n* (#220) PagureProject.is_fork offline and add method\ - \ for API call\n* (#220) Regenerate responses and add test\n* (#220)\ - \ Make PagureProject.full_repo_name property offline\n\n\nYou can change\ - \ it by editing `CHANGELOG.md` in the root of this repository and pushing\ - \ to `0.9.0-release` branch before merging this PR.\nI didn't find any\ - \ files where `__version__` is set." - closed_at: '2019-12-06T13:29:05Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/291/comments - created_at: '2019-12-04T09:37:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/291/events - html_url: https://github.com/packit/ogr/pull/291 - id: 532560063 + body: 'Fixes #233' + closed_at: '2019-10-07T11:02:38Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/234/comments + created_at: '2019-10-07T08:22:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/234/events + html_url: https://github.com/packit/ogr/pull/234 + id: 503300422 labels: - - color: ededed + - color: b60205 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -90095,61 +117702,61 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/291/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/234/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ4Nzg0MjM1 - number: 291 + node_id: MDExOlB1bGxSZXF1ZXN0MzI1MTgxMjU0 + number: 234 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/291.diff - html_url: https://github.com/packit/ogr/pull/291 - patch_url: https://github.com/packit/ogr/pull/291.patch - url: https://api.github.com/repos/packit/ogr/pulls/291 + diff_url: https://github.com/packit/ogr/pull/234.diff + html_url: https://github.com/packit/ogr/pull/234 + patch_url: https://github.com/packit/ogr/pull/234.patch + url: https://api.github.com/repos/packit/ogr/pulls/234 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.9.0 release - updated_at: '2019-12-14T17:33:42Z' - url: https://api.github.com/repos/packit/ogr/issues/291 + title: Update imports in Gitlab tests + updated_at: '2019-12-04T09:27:00Z' + url: https://api.github.com/repos/packit/ogr/issues/234 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Add trim commit flag descripttion to all implementations.' - closed_at: '2019-12-06T08:41:20Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/294/comments - created_at: '2019-12-05T09:15:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/294/events - html_url: https://github.com/packit/ogr/pull/294 - id: 533219952 + body: 'Fixes #232' + closed_at: '2019-10-11T06:36:16Z' + comments: 18 + comments_url: https://api.github.com/repos/packit/ogr/issues/236/comments + created_at: '2019-10-07T14:44:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/236/events + html_url: https://github.com/packit/ogr/pull/236 + id: 503499100 labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -90157,156 +117764,148 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/294/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/236/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ5MzMyNDEx - number: 294 + node_id: MDExOlB1bGxSZXF1ZXN0MzI1MzM5NTg3 + number: 236 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/294.diff - html_url: https://github.com/packit/ogr/pull/294 - patch_url: https://github.com/packit/ogr/pull/294.patch - url: https://api.github.com/repos/packit/ogr/pulls/294 + diff_url: https://github.com/packit/ogr/pull/236.diff + html_url: https://github.com/packit/ogr/pull/236 + patch_url: https://github.com/packit/ogr/pull/236.patch + url: https://api.github.com/repos/packit/ogr/pulls/236 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Trim description of commit flag to abstract - updated_at: '2019-12-06T09:52:59Z' - url: https://api.github.com/repos/packit/ogr/issues/294 + title: Prepare file structure for object-specific methods + updated_at: '2019-12-04T09:27:00Z' + url: https://api.github.com/repos/packit/ogr/issues/236 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "We are using `open` in the status enums, but `closed`.\r\n\r\n\ - Currently, we need to replace that for GitLab manually and GitHub probably\ - \ needs that fix as well. I am not sure about Pagure.\r\n\r\nIdeally,\ - \ we need to change our API, but we have some usages in other projects:\r\ - \n\r\n\r\n- [ ] packit\r\n - https://github.com/packit-service/packit/blob/master/tests/testsuite_basic/conftest.py#L114\ - \ (just a test)\r\n- [x] packit-service (no occurences found)\r\n- [\ - \ ] release-bot\r\n - https://github.com/user-cont/release-bot/blob/master/release_bot/github.py#L308" - closed_at: '2019-12-04T12:26:57Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/193/comments - created_at: '2019-09-11T14:03:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/193/events - html_url: https://github.com/packit/ogr/issues/193 - id: 492259504 + body: 'Closes #204' + closed_at: '2019-10-15T07:33:19Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/242/comments + created_at: '2019-10-11T11:05:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/242/events + html_url: https://github.com/packit/ogr/pull/242 + id: 505786917 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db + - color: b60205 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 8be567 + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/193/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/242/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTIyNTk1MDQ= - number: 193 + node_id: MDExOlB1bGxSZXF1ZXN0MzI3MTQ2NTgy + number: 242 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/242.diff + html_url: https://github.com/packit/ogr/pull/242 + patch_url: https://github.com/packit/ogr/pull/242.patch + url: https://api.github.com/repos/packit/ogr/pulls/242 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Investigate 'open' x 'opened' status for Issues and PullRequests - updated_at: '2019-12-04T12:26:57Z' - url: https://api.github.com/repos/packit/ogr/issues/193 + title: Add project_create to PagureService and add tests for it + updated_at: '2019-12-04T09:27:00Z' + url: https://api.github.com/repos/packit/ogr/issues/242 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Closes #193 ' - closed_at: '2019-12-04T12:25:00Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/293/comments - created_at: '2019-12-04T11:19:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/293/events - html_url: https://github.com/packit/ogr/pull/293 - id: 532619628 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/293/labels{/name} + body: 'Closes #240' + closed_at: '2019-10-15T10:49:50Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/243/comments + created_at: '2019-10-12T11:32:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/243/events + html_url: https://github.com/packit/ogr/pull/243 + id: 506175099 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/243/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ4ODM0MjE0 - number: 293 + node_id: MDExOlB1bGxSZXF1ZXN0MzI3NDU2NDQz + number: 243 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/293.diff - html_url: https://github.com/packit/ogr/pull/293 - patch_url: https://github.com/packit/ogr/pull/293.patch - url: https://api.github.com/repos/packit/ogr/pulls/293 + diff_url: https://github.com/packit/ogr/pull/243.diff + html_url: https://github.com/packit/ogr/pull/243 + patch_url: https://github.com/packit/ogr/pull/243.patch + url: https://api.github.com/repos/packit/ogr/pulls/243 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Change statuses from `open` to `opened` - updated_at: '2019-12-04T12:26:08Z' - url: https://api.github.com/repos/packit/ogr/issues/293 + title: Implementation of filtering PR/Issue comments by author + updated_at: '2019-12-04T09:27:00Z' + url: https://api.github.com/repos/packit/ogr/issues/243 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -90328,15 +117927,29 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- Allow creating sommit flags with commit state as a string.' - closed_at: '2019-12-04T11:17:22Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/292/comments - created_at: '2019-12-04T10:10:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/292/events - html_url: https://github.com/packit/ogr/pull/292 - id: 532578973 + body: 'Closes #107' + closed_at: '2019-09-26T09:12:11Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/221/comments + created_at: '2019-09-25T14:42:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/221/events + html_url: https://github.com/packit/ogr/pull/221 + id: 498333159 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -90344,111 +117957,115 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/292/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/221/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ4Nzk5Njcy - number: 292 + node_id: MDExOlB1bGxSZXF1ZXN0MzIxMjg0ODI1 + number: 221 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/292.diff - html_url: https://github.com/packit/ogr/pull/292 - patch_url: https://github.com/packit/ogr/pull/292.patch - url: https://api.github.com/repos/packit/ogr/pulls/292 + diff_url: https://github.com/packit/ogr/pull/221.diff + html_url: https://github.com/packit/ogr/pull/221 + patch_url: https://github.com/packit/ogr/pull/221.patch + url: https://api.github.com/repos/packit/ogr/pulls/221 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix flags to be compatible with string states - updated_at: '2019-12-04T12:04:38Z' - url: https://api.github.com/repos/packit/ogr/issues/292 + title: Remove pull requests from issues in GitHub implementation + updated_at: '2019-12-04T09:26:59Z' + url: https://api.github.com/repos/packit/ogr/issues/221 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: There was done a lot of work after the last release. Let's make - a new one! - closed_at: '2019-12-04T09:37:32Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/290/comments - created_at: '2019-12-04T09:32:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/290/events - html_url: https://github.com/packit/ogr/issues/290 - id: 532557330 + body: 'Fixes #220' + closed_at: '2019-10-02T09:17:18Z' + comments: 41 + comments_url: https://api.github.com/repos/packit/ogr/issues/226/comments + created_at: '2019-09-26T14:55:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/226/events + html_url: https://github.com/packit/ogr/pull/226 + id: 498940241 labels: - - color: ededed + - color: b60205 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/290/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/226/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MzI1NTczMzA= - number: 290 + node_id: MDExOlB1bGxSZXF1ZXN0MzIxNzY0NTE1 + number: 226 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/226.diff + html_url: https://github.com/packit/ogr/pull/226 + patch_url: https://github.com/packit/ogr/pull/226.patch + url: https://api.github.com/repos/packit/ogr/pulls/226 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-12-04T09:37:32Z' - url: https://api.github.com/repos/packit/ogr/issues/290 + title: Make PagureProject.full_repo_name property offline + updated_at: '2019-12-04T09:26:59Z' + url: https://api.github.com/repos/packit/ogr/issues/226 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes: #288 ' - closed_at: '2019-12-03T16:04:47Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/289/comments - created_at: '2019-12-03T15:07:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/289/events - html_url: https://github.com/packit/ogr/pull/289 - id: 532051771 + body: 'Closes #224' + closed_at: '2019-09-30T11:40:39Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/227/comments + created_at: '2019-09-27T10:16:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/227/events + html_url: https://github.com/packit/ogr/pull/227 + id: 499361462 labels: - color: b60205 default: false @@ -90464,24 +118081,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/289/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/227/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ4MzgyNjMw - number: 289 + node_id: MDExOlB1bGxSZXF1ZXN0MzIyMDk2ODIw + number: 227 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/289.diff - html_url: https://github.com/packit/ogr/pull/289 - patch_url: https://github.com/packit/ogr/pull/289.patch - url: https://api.github.com/repos/packit/ogr/pulls/289 + diff_url: https://github.com/packit/ogr/pull/227.diff + html_url: https://github.com/packit/ogr/pull/227 + patch_url: https://github.com/packit/ogr/pull/227.patch + url: https://api.github.com/repos/packit/ogr/pulls/227 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix typo in comments - updated_at: '2019-12-04T09:27:03Z' - url: https://api.github.com/repos/packit/ogr/issues/289 + title: Factor out getting collaborators (GithubProject) + updated_at: '2019-12-04T09:26:59Z' + url: https://api.github.com/repos/packit/ogr/issues/227 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -90502,15 +118119,16 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-12-03T12:36:59Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/287/comments - created_at: '2019-12-02T14:02:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/287/events - html_url: https://github.com/packit/ogr/pull/287 - id: 531147909 + author_association: MEMBER + body: "Closes #205\r\n\r\n- [x] `GithubProject.get_issue_comments`\r\n\ + \r\n- [x] `GitlabProject.get_issue_comments`\r\n\r\n- [x] `PagureProject.get_issue_comments`" + closed_at: '2019-10-03T14:35:15Z' + comments: 22 + comments_url: https://api.github.com/repos/packit/ogr/issues/228/comments + created_at: '2019-09-27T20:06:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/228/events + html_url: https://github.com/packit/ogr/pull/228 + id: 499627560 labels: - color: b60205 default: false @@ -90519,6 +118137,13 @@ requests.sessions: name: RHOSC node_id: MDU6TGFiZWwxNTYzMzA5Nzcz url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -90526,24 +118151,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/287/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/228/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ3NjQwMjEz - number: 287 + node_id: MDExOlB1bGxSZXF1ZXN0MzIyMzA4NzQy + number: 228 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/287.diff - html_url: https://github.com/packit/ogr/pull/287 - patch_url: https://github.com/packit/ogr/pull/287.patch - url: https://api.github.com/repos/packit/ogr/pulls/287 + diff_url: https://github.com/packit/ogr/pull/228.diff + html_url: https://github.com/packit/ogr/pull/228 + patch_url: https://github.com/packit/ogr/pull/228.patch + url: https://api.github.com/repos/packit/ogr/pulls/228 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix backward compatibility on pull requests - updated_at: '2019-12-04T09:27:02Z' - url: https://api.github.com/repos/packit/ogr/issues/287 + title: Implementation of get_issue_comments for projects + updated_at: '2019-12-04T09:26:59Z' + url: https://api.github.com/repos/packit/ogr/issues/228 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -90565,19 +118190,16 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "- [x] add methods\r\n- [x] services' implementation\r\n- [x] enum\ - \ for statuses?\r\n- [x] PRs?\r\n - [x] tests\r\n\r\nComparison of\ - \ statuses:\r\n\r\nGitHub | GitLab | Pagure\r\n--- | --- | ---\r\n`pending`\ - \ | `pending` | `pending`\r\n`success` | `success` | `success`\r\n`failure`\ - \ | `failed` | `failure`\r\n`error` | `-` | `error`\r\n`-` | `canceled`\ - \ | `canceled`\r\n`-` | `running` | `-`" - closed_at: '2019-12-03T20:23:52Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/286/comments - created_at: '2019-11-30T20:18:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/286/events - html_url: https://github.com/packit/ogr/pull/286 - id: 530625724 + body: "Closes #213\r\nSeems like it could be implemented in BaseGitProject.\r\ + \nNot quite sure about Pagure implementation, since I haven't found\ + \ any tests regarding `None` as namespace." + closed_at: '2019-09-24T08:53:16Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/217/comments + created_at: '2019-09-22T08:47:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/217/events + html_url: https://github.com/packit/ogr/pull/217 + id: 496750815 labels: - color: b60205 default: false @@ -90593,24 +118215,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/286/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/217/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ3MjU2NjI2 - number: 286 + node_id: MDExOlB1bGxSZXF1ZXN0MzIwMDI1NDc1 + number: 217 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/286.diff - html_url: https://github.com/packit/ogr/pull/286 - patch_url: https://github.com/packit/ogr/pull/286.patch - url: https://api.github.com/repos/packit/ogr/pulls/286 + diff_url: https://github.com/packit/ogr/pull/217.diff + html_url: https://github.com/packit/ogr/pull/217 + patch_url: https://github.com/packit/ogr/pull/217.patch + url: https://api.github.com/repos/packit/ogr/pulls/217 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Commit flags - updated_at: '2019-12-04T09:27:02Z' - url: https://api.github.com/repos/packit/ogr/issues/286 + title: Implement GitProject.get_web_url() + updated_at: '2019-12-04T09:26:58Z' + url: https://api.github.com/repos/packit/ogr/issues/217 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -90632,16 +118254,16 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "- [x] editing of comments\r\n- [x] backward-link to issue/PR\r\n\ - - [x] rename property `comment` to `body`\r\n editing comments works\ - \ only on `body`" - closed_at: '2019-12-03T11:21:57Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/285/comments - created_at: '2019-11-29T12:32:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/285/events - html_url: https://github.com/packit/ogr/pull/285 - id: 530323155 + body: "Closes #218\r\n\r\n- removes implementation from abstract class\r\ + \n- overrides it for Pagure projects that have optional namespace\r\n\ + - adds few basic tests" + closed_at: '2019-09-25T05:20:03Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/219/comments + created_at: '2019-09-24T09:35:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/219/events + html_url: https://github.com/packit/ogr/pull/219 + id: 497572530 labels: - color: b60205 default: false @@ -90657,24 +118279,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/285/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/219/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ3MDI4OTMw - number: 285 + node_id: MDExOlB1bGxSZXF1ZXN0MzIwNjc0OTk2 + number: 219 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/285.diff - html_url: https://github.com/packit/ogr/pull/285 - patch_url: https://github.com/packit/ogr/pull/285.patch - url: https://api.github.com/repos/packit/ogr/pulls/285 + diff_url: https://github.com/packit/ogr/pull/219.diff + html_url: https://github.com/packit/ogr/pull/219 + patch_url: https://github.com/packit/ogr/pull/219.patch + url: https://api.github.com/repos/packit/ogr/pulls/219 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement editing comments and backward-link to Issue/PR - updated_at: '2019-12-04T09:27:02Z' - url: https://api.github.com/repos/packit/ogr/issues/285 + title: GitProject.full_repo_name + updated_at: '2019-12-04T09:26:58Z' + url: https://api.github.com/repos/packit/ogr/issues/219 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -90692,26 +118314,155 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "After there will be done these stuff:\r\n - [ ] https://github.com/packit-service/ogr/pull/201\ + \ will be merged\r\n - [ ] there will be fixed also ``packit`` to use\ + \ ``requre``\r\n\r\nthen remove all mocking stuff from this project" + closed_at: '2019-12-04T08:54:10Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/225/comments + created_at: '2019-09-26T13:04:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/225/events + html_url: https://github.com/packit/ogr/issues/225 + id: 498871887 + labels: + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/225/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTg4NzE4ODc= + number: 225 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: remove persistent storage + mocking from ogr after using requre + updated_at: '2019-12-04T08:54:17Z' + url: https://api.github.com/repos/packit/ogr/issues/225 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-11-20T14:23:47Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/279/comments - created_at: '2019-11-20T10:32:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/279/events - html_url: https://github.com/packit/ogr/pull/279 - id: 525714930 + body: "The default behaviour should be:\r\n\r\n- running from fork:\r\n\ + \ - create pr from fork to upstream\r\n- running from upstream:\r\ + \n - create pr from upstream to upstream\r\n\r\nWe need to specify\ + \ correctly the username in `head` or use the correct pygithub object\ + \ to call the `create_pull` on.\r\n\r\n- Get inspired in packit: https://github.com/packit-service/packit/blob/master/packit/upstream.py#L190\r\ + \n- API docs: https://developer.github.com/v3/pulls/#create-a-pull-request\ + \ (`head` parameter)\r\n- Related pygithub method: https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_pull\r\ + \n\r\nAC:\r\n\r\n- [ ] check the existing workflow\r\n- [ ] fix the\ + \ username to support both workflows correctly\r\n- [ ] create tests\ + \ for both of them\r\n\r\n\r\n" + closed_at: '2019-12-04T08:50:38Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/250/comments + created_at: '2019-10-17T13:55:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/250/events + html_url: https://github.com/packit/ogr/issues/250 + id: 508493656 labels: - - color: b60205 + - color: '000000' default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/250/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MDg0OTM2NTY= + number: 250 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix createing pull requests in GitHub + updated_at: '2019-12-04T08:50:38Z' + url: https://api.github.com/repos/packit/ogr/issues/250 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Closes #281 \r\nAfter change in requre integration tests fails.\ + \ \r\nChange PersistentObjectStorage().is_write_mode to PersistentObjectStorage().mode\ + \ == StorageMode.write\r\n\r\nZuul allow to add relation between repos,\ + \ maybe this is a option to prevent that situation, but I don't know\ + \ how looks policy about that in packit-service. \r\n" + closed_at: '2019-11-25T12:33:59Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/282/comments + created_at: '2019-11-22T11:31:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/282/events + html_url: https://github.com/packit/ogr/pull/282 + id: 527144120 + labels: - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -90719,24 +118470,184 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/279/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/282/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQzMjgyNDg4 - number: 279 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ0NDc0MTIz + number: 282 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/279.diff - html_url: https://github.com/packit/ogr/pull/279 - patch_url: https://github.com/packit/ogr/pull/279.patch - url: https://api.github.com/repos/packit/ogr/pulls/279 + diff_url: https://github.com/packit/ogr/pull/282.diff + html_url: https://github.com/packit/ogr/pull/282 + patch_url: https://github.com/packit/ogr/pull/282.patch + url: https://api.github.com/repos/packit/ogr/pulls/282 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add deprecation policy and dependency package - updated_at: '2019-12-04T09:27:02Z' - url: https://api.github.com/repos/packit/ogr/issues/279 + title: Fix integration tests + updated_at: '2019-12-03T16:14:58Z' + url: https://api.github.com/repos/packit/ogr/issues/282 + user: + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 + events_url: https://api.github.com/users/pawelkopka/events{/privacy} + followers_url: https://api.github.com/users/pawelkopka/followers + following_url: https://api.github.com/users/pawelkopka/following{/other_user} + gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/pawelkopka + id: 17784034 + login: pawelkopka + node_id: MDQ6VXNlcjE3Nzg0MDM0 + organizations_url: https://api.github.com/users/pawelkopka/orgs + received_events_url: https://api.github.com/users/pawelkopka/received_events + repos_url: https://api.github.com/users/pawelkopka/repos + site_admin: false + starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + type: User + url: https://api.github.com/users/pawelkopka + _next: null + elapsed: 0.494426 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:47 GMT + ETag: W/"f6b9d2599fdd8f008d420ef41ab3039537038d3486a4c57befea4ca532531bfc" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F80918:191C68D:6075DC4E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4627' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '373' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=11: + - metadata: + latency: 0.6037445068359375 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Any ideas how [this](https://sentry.io/organizations/red-hat-0p/issues/1369231585)\ + \ could have happen?\r\n\r\n```python\r\nAttributeError: 'GithubPRComment'\ + \ object has no attribute '_body'\r\n File \"packit_service/worker/tasks.py\"\ + , line 42, in process_message\r\n return SteveJobs().process_message(event=event,\ + \ topic=topic)\r\n File \"packit_service/worker/jobs.py\", line 249,\ + \ in process_message\r\n jobs_results[job_type] = handler.run_n_clean()\r\ + \n File \"packit_service/worker/handler.py\", line 177, in run_n_clean\r\ + \n return self.run()\r\n File \"packit_service/worker/fedmsg_handlers.py\"\ + , line 221, in run\r\n if not self.was_last_build_successful():\r\ + \n File \"packit_service/worker/fedmsg_handlers.py\", line 189, in\ + \ was_last_build_successful\r\n if \"Congratulations!\" in comment.comment:\r\ + \n File \"ogr/abstract.py\", line 78, in comment\r\n return self._body\r\ + \n```" + closed_at: '2019-12-03T16:04:47Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/288/comments + created_at: '2019-12-03T14:14:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/288/events + html_url: https://github.com/packit/ogr/issues/288 + id: 532014956 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/288/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MzIwMTQ5NTY= + number: 288 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'AttributeError: ''GithubPRComment'' object has no attribute ''_body''' + updated_at: '2019-12-03T16:04:47Z' + url: https://api.github.com/repos/packit/ogr/issues/288 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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} @@ -90754,27 +118665,40 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] author_association: MEMBER - body: "Closes #254 \r\n\r\n- [x] move PR-related functions from `Project`\ - \ to `PullRequest`\r\n - [x] `BasePullRequest`\r\n - [x] Github\r\n\ - \ - [x] Gitlab\r\n - [x] Pagure\r\n- [x] make `Project`'s methods\ - \ backward-compatible by calling new methods\r\n- [x] deprecation\r\n\ - \ - [x] move deprecated functions to base class\r\n - [x] deprecate\ - \ functions on `Project`\r\n- [x] properties\r\n- [x] fix tests\r\n\ - - [x] static methods for `get`, `create`, `list`\r\n- [x] update comments\ - \ (after refactor from Issue has been merged)\r\n- [x] check docstrings\r\ - \n- [x] `pr_create` -> update name" - closed_at: '2019-11-29T10:21:52Z' - comments: 17 - comments_url: https://api.github.com/repos/packit/ogr/issues/276/comments - created_at: '2019-11-16T21:01:08Z' - events_url: https://api.github.com/repos/packit/ogr/issues/276/events - html_url: https://github.com/packit/ogr/pull/276 - id: 523895740 + body: "`Comment` class should keep backward-link to parent, e.g. `Issue`\ + \ or `PullRequest`.\r\n\r\n- [x] Add parameter to constructor and getter\r\ + \n- [x] Keep link to `Issue`\r\n blocked by #253\r\n- [x] Keep link\ + \ to `PR`\r\n blocked by #254" + closed_at: '2019-12-03T11:21:59Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/255/comments + created_at: '2019-10-24T17:16:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/255/events + html_url: https://github.com/packit/ogr/issues/255 + id: 512074603 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: b60205 default: false description: Issue reserved to students from Red Hat Open Source Contest @@ -90782,31 +118706,33 @@ requests.sessions: name: RHOSC node_id: MDU6TGFiZWwxNTYzMzA5Nzcz url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + - color: a2eeef default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/276/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/255/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQxNzkxNzIw - number: 276 + node_id: MDU6SXNzdWU1MTIwNzQ2MDM= + number: 255 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/276.diff - html_url: https://github.com/packit/ogr/pull/276 - patch_url: https://github.com/packit/ogr/pull/276.patch - url: https://api.github.com/repos/packit/ogr/pulls/276 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pull request class refactor - updated_at: '2019-12-04T09:27:01Z' - url: https://api.github.com/repos/packit/ogr/issues/276 + title: Backward links on comments + updated_at: '2019-12-03T11:21:59Z' + url: https://api.github.com/repos/packit/ogr/issues/255 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -90828,26 +118754,15 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Closes #253\r\n\r\n- [x] move issue-related functions from `Project`\ - \ to `Issue`\r\n- [x] make `Project`'s methods backward-compatible by\ - \ calling new methods\r\n- [x] fix tests\r\n- [x] `__get_comment`, `get_issue_comments`\r\ - \n- [x] deprecate functions on `Project`\r\n- [x] check docstrings\r\ - \n- [x] update deprecation warnings" - closed_at: '2019-11-26T08:52:22Z' - comments: 24 - comments_url: https://api.github.com/repos/packit/ogr/issues/264/comments - created_at: '2019-11-04T11:23:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/264/events - html_url: https://github.com/packit/ogr/pull/264 - id: 517089572 + body: '- Increase version for packit propose-update.' + closed_at: '2019-12-02T14:21:28Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/283/comments + created_at: '2019-11-28T08:24:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/283/events + html_url: https://github.com/packit/ogr/pull/283 + id: 529760830 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -90855,54 +118770,113 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/264/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/283/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM2MjI2MDM0 - number: 264 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ2NTc1ODcw + number: 283 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/264.diff - html_url: https://github.com/packit/ogr/pull/264 - patch_url: https://github.com/packit/ogr/pull/264.patch - url: https://api.github.com/repos/packit/ogr/pulls/264 + diff_url: https://github.com/packit/ogr/pull/283.diff + html_url: https://github.com/packit/ogr/pull/283 + patch_url: https://github.com/packit/ogr/pull/283.patch + url: https://api.github.com/repos/packit/ogr/pulls/283 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Issue class refactor - updated_at: '2019-12-04T09:27:01Z' - url: https://api.github.com/repos/packit/ogr/issues/264 + title: Packit config update + updated_at: '2019-12-03T07:42:52Z' + url: https://api.github.com/repos/packit/ogr/issues/283 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "This PR contains possible solution of #178 \r\nCloses #178 " + closed_at: '2019-11-29T11:43:22Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/274/comments + created_at: '2019-11-14T09:46:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/274/events + html_url: https://github.com/packit/ogr/pull/274 + id: 522738918 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/274/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQwODc5MDI4 + number: 274 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/274.diff + html_url: https://github.com/packit/ogr/pull/274 + patch_url: https://github.com/packit/ogr/pull/274.patch + url: https://api.github.com/repos/packit/ogr/pulls/274 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implementation of GitPython instead of calling subprocess + updated_at: '2019-11-29T11:43:22Z' + url: https://api.github.com/repos/packit/ogr/issues/274 + user: + avatar_url: https://avatars.githubusercontent.com/u/35431035?v=4 + events_url: https://api.github.com/users/Hojang2/events{/privacy} + followers_url: https://api.github.com/users/Hojang2/followers + following_url: https://api.github.com/users/Hojang2/following{/other_user} + gists_url: https://api.github.com/users/Hojang2/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Hojang2 + id: 35431035 + login: Hojang2 + node_id: MDQ6VXNlcjM1NDMxMDM1 + organizations_url: https://api.github.com/users/Hojang2/orgs + received_events_url: https://api.github.com/users/Hojang2/received_events + repos_url: https://api.github.com/users/Hojang2/repos + site_admin: false + starred_url: https://api.github.com/users/Hojang2/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Hojang2/subscriptions + type: User + url: https://api.github.com/users/Hojang2 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Update annotation of `_from_raw_comment`' - closed_at: '2019-11-04T12:35:35Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/260/comments - created_at: '2019-10-27T17:27:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/260/events - html_url: https://github.com/packit/ogr/pull/260 - id: 512995963 + body: "Investigate existing libraries (example https://github.com/release-depot/git_wrapper).\r\ + \nDecide whether to use an existing library or move our [git-related\ + \ code](https://github.com/packit-service/ogr/blob/master/ogr/utils.py)\ + \ (check for all occurrences of \"git\" through the code) into a new\ + \ library.\r\nUse such library in ogr." + closed_at: '2019-11-29T11:43:21Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/178/comments + created_at: '2019-09-06T10:41:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/178/events + html_url: https://github.com/packit/ogr/issues/178 + id: 490258611 labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC - color: b60205 default: false description: Issue reserved to students from Red Hat Open Source Contest @@ -90910,31 +118884,72 @@ requests.sessions: name: RHOSC node_id: MDU6TGFiZWwxNTYzMzA5Nzcz url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + - color: a2eeef default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/260/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/178/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyODc1NTQ3 - number: 260 + node_id: MDU6SXNzdWU0OTAyNTg2MTE= + number: 178 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/260.diff - html_url: https://github.com/packit/ogr/pull/260 - patch_url: https://github.com/packit/ogr/pull/260.patch - url: https://api.github.com/repos/packit/ogr/pulls/260 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Comment: mypy' - updated_at: '2019-12-04T09:27:01Z' - url: https://api.github.com/repos/packit/ogr/issues/260 + title: Replace git-wrapping code with new or existing library + updated_at: '2019-11-29T11:43:21Z' + url: https://api.github.com/repos/packit/ogr/issues/178 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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} @@ -90952,19 +118967,43 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] author_association: MEMBER - body: 'Closes #230' - closed_at: '2019-10-23T13:09:59Z' - comments: 27 - comments_url: https://api.github.com/repos/packit/ogr/issues/249/comments - created_at: '2019-10-16T16:02:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/249/events - html_url: https://github.com/packit/ogr/pull/249 - id: 507947617 + body: "Extend `PullRequest` class of methods.\r\n\r\n- [x] move PR-related\ + \ functions from `Project` to `PullRequest`\r\n - [x] `BasePullRequest`\r\ + \n - [x] Github\r\n - [x] Gitlab\r\n - [x] Pagure\r\n- [x] make `Project`'s\ + \ methods backward-compatible by calling new methods\r\n- [x] deprecation\r\ + \n - [x] move deprecated functions to base class\r\n - [x] deprecate\ + \ functions on `Project`\r\n- [x] properties\r\n- [x] fix tests\r\n\r\ + \nPart of #86\r\nBlocked by #121" + closed_at: '2019-11-29T10:21:52Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/254/comments + created_at: '2019-10-24T17:14:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/254/events + html_url: https://github.com/packit/ogr/issues/254 + id: 512073698 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: b60205 default: false description: Issue reserved to students from Red Hat Open Source Contest @@ -90972,31 +119011,47 @@ requests.sessions: name: RHOSC node_id: MDU6TGFiZWwxNTYzMzA5Nzcz url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + - color: a2eeef default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/249/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/254/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI4ODM5NDg2 - number: 249 + node_id: MDU6SXNzdWU1MTIwNzM2OTg= + number: 254 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/249.diff - html_url: https://github.com/packit/ogr/pull/249 - patch_url: https://github.com/packit/ogr/pull/249.patch - url: https://api.github.com/repos/packit/ogr/pulls/249 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Factor out Comment - updated_at: '2019-12-04T09:27:01Z' - url: https://api.github.com/repos/packit/ogr/issues/249 + title: PullRequest class refactor + updated_at: '2019-11-29T10:21:52Z' + url: https://api.github.com/repos/packit/ogr/issues/254 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -91014,26 +119069,68 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-11-28T10:13:00Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/284/comments + created_at: '2019-11-28T10:06:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/284/events + html_url: https://github.com/packit/ogr/pull/284 + id: 529812923 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/284/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQ2NjE4MjQ5 + number: 284 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/284.diff + html_url: https://github.com/packit/ogr/pull/284 + patch_url: https://github.com/packit/ogr/pull/284.patch + url: https://api.github.com/repos/packit/ogr/pulls/284 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Do not merge - test PR + updated_at: '2019-11-28T10:13:00Z' + url: https://api.github.com/repos/packit/ogr/issues/284 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Closes #240' - closed_at: '2019-10-15T10:49:50Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/243/comments - created_at: '2019-10-12T11:32:08Z' - events_url: https://api.github.com/repos/packit/ogr/issues/243/events - html_url: https://github.com/packit/ogr/pull/243 - id: 506175099 + body: "- Add .fmf and setup testing-farm.\r\n\r\n---\r\n\r\nTODO:\r\n\ + - [x] add some real tests" + closed_at: '2019-11-28T08:22:05Z' + comments: 18 + comments_url: https://api.github.com/repos/packit/ogr/issues/278/comments + created_at: '2019-11-19T12:06:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/278/events + html_url: https://github.com/packit/ogr/pull/278 + id: 524968144 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -91041,53 +119138,55 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/243/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/278/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI3NDU2NDQz - number: 243 + node_id: MDExOlB1bGxSZXF1ZXN0MzQyNjQ1NDE1 + number: 278 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/243.diff - html_url: https://github.com/packit/ogr/pull/243 - patch_url: https://github.com/packit/ogr/pull/243.patch - url: https://api.github.com/repos/packit/ogr/pulls/243 + diff_url: https://github.com/packit/ogr/pull/278.diff + html_url: https://github.com/packit/ogr/pull/278 + patch_url: https://github.com/packit/ogr/pull/278.patch + url: https://api.github.com/repos/packit/ogr/pulls/278 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implementation of filtering PR/Issue comments by author - updated_at: '2019-12-04T09:27:00Z' - url: https://api.github.com/repos/packit/ogr/issues/243 + title: Setup testing farm + updated_at: '2019-11-28T10:11:46Z' + url: https://api.github.com/repos/packit/ogr/issues/278 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Closes #204' - closed_at: '2019-10-15T07:33:19Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/242/comments - created_at: '2019-10-11T11:05:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/242/events - html_url: https://github.com/packit/ogr/pull/242 - id: 505786917 + body: "Figure out a deprecated strategy for ogr, get inspired by packit:\ + \ https://packit.dev/ [or django, ansible].\r\n\r\n- [x] documentation\r\ + \n- [x] solution for method/classes" + closed_at: '2019-11-27T12:02:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/121/comments + created_at: '2019-07-16T11:54:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/121/events + html_url: https://github.com/packit/ogr/issues/121 + id: 468611036 labels: - color: b60205 default: false @@ -91096,31 +119195,53 @@ requests.sessions: name: RHOSC node_id: MDU6TGFiZWwxNTYzMzA5Nzcz url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 8be567 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/242/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/121/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI3MTQ2NTgy - number: 242 + node_id: MDU6SXNzdWU0Njg2MTEwMzY= + number: 121 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/242.diff - html_url: https://github.com/packit/ogr/pull/242 - patch_url: https://github.com/packit/ogr/pull/242.patch - url: https://api.github.com/repos/packit/ogr/pulls/242 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add project_create to PagureService and add tests for it - updated_at: '2019-12-04T09:27:00Z' - url: https://api.github.com/repos/packit/ogr/issues/242 + title: Deprecation policy + updated_at: '2019-11-27T12:02:53Z' + url: https://api.github.com/repos/packit/ogr/issues/121 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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} @@ -91138,51 +119259,8 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #232' - closed_at: '2019-10-11T06:36:16Z' - comments: 18 - comments_url: https://api.github.com/repos/packit/ogr/issues/236/comments - created_at: '2019-10-07T14:44:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/236/events - html_url: https://github.com/packit/ogr/pull/236 - id: 503499100 - labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/236/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI1MzM5NTg3 - number: 236 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/236.diff - html_url: https://github.com/packit/ogr/pull/236 - patch_url: https://github.com/packit/ogr/pull/236.patch - url: https://api.github.com/repos/packit/ogr/pulls/236 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Prepare file structure for object-specific methods - updated_at: '2019-12-04T09:27:00Z' - url: https://api.github.com/repos/packit/ogr/issues/236 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + assignees: + - 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} @@ -91200,19 +119278,42 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] author_association: MEMBER - body: 'Fixes #233' - closed_at: '2019-10-07T11:02:38Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/234/comments - created_at: '2019-10-07T08:22:06Z' - events_url: https://api.github.com/repos/packit/ogr/issues/234/events - html_url: https://github.com/packit/ogr/pull/234 - id: 503300422 + body: "Extend `Issue` class of methods.\r\n\r\n- [x] move issue-related\ + \ functions from `Project` to `Issue`\r\n- [x] make `Project`'s methods\ + \ backward-compatible by calling new methods\r\n- [x] deprecate functions\ + \ on `Project`\r\n- [x] separate all issue-related tests if needed\r\ + \n- [x] `__get_comment`, `get_issue_comments`\r\n\r\nPart of #86\r\n\ + Blocked by #121" + closed_at: '2019-11-26T08:52:22Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/253/comments + created_at: '2019-10-24T17:13:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/253/events + html_url: https://github.com/packit/ogr/issues/253 + id: 512073255 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: b60205 default: false description: Issue reserved to students from Red Hat Open Source Contest @@ -91220,31 +119321,47 @@ requests.sessions: name: RHOSC node_id: MDU6TGFiZWwxNTYzMzA5Nzcz url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + - color: a2eeef default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/234/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/253/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI1MTgxMjU0 - number: 234 + node_id: MDU6SXNzdWU1MTIwNzMyNTU= + number: 253 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/234.diff - html_url: https://github.com/packit/ogr/pull/234 - patch_url: https://github.com/packit/ogr/pull/234.patch - url: https://api.github.com/repos/packit/ogr/pulls/234 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update imports in Gitlab tests - updated_at: '2019-12-04T09:27:00Z' - url: https://api.github.com/repos/packit/ogr/issues/234 + title: Issue class refactor + updated_at: '2019-11-26T08:52:22Z' + url: https://api.github.com/repos/packit/ogr/issues/253 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -91262,98 +119379,173 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=8: - - metadata: - latency: 0.5791726112365723 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Closes #205\r\n\r\n- [x] `GithubProject.get_issue_comments`\r\n\ - \r\n- [x] `GitlabProject.get_issue_comments`\r\n\r\n- [x] `PagureProject.get_issue_comments`" - closed_at: '2019-10-03T14:35:15Z' - comments: 22 - comments_url: https://api.github.com/repos/packit/ogr/issues/228/comments - created_at: '2019-09-27T20:06:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/228/events - html_url: https://github.com/packit/ogr/pull/228 - id: 499627560 + author_association: CONTRIBUTOR + body: "After change in requre integrations tests, trying call property\ + \ _is_write_mode_ .\r\nProbably this _PersistentObjectStorage().is_write_mode_\ + \ need to be change to _PersistentObjectStorage().mode == StorageMode.write_\r\ + \n\r\n\r\nError:\r\n`AttributeError: 'PersistentObjectStorage' object\ + \ has no attribute 'is_write_mode'`" + closed_at: '2019-11-25T12:33:59Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/281/comments + created_at: '2019-11-22T11:06:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/281/events + html_url: https://github.com/packit/ogr/issues/281 + id: 527132897 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/281/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MjcxMzI4OTc= + number: 281 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Integrations tests fails afters change in requre + updated_at: '2019-11-25T12:33:59Z' + url: https://api.github.com/repos/packit/ogr/issues/281 + user: + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 + events_url: https://api.github.com/users/pawelkopka/events{/privacy} + followers_url: https://api.github.com/users/pawelkopka/followers + following_url: https://api.github.com/users/pawelkopka/following{/other_user} + gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/pawelkopka + id: 17784034 + login: pawelkopka + node_id: MDQ6VXNlcjE3Nzg0MDM0 + organizations_url: https://api.github.com/users/pawelkopka/orgs + received_events_url: https://api.github.com/users/pawelkopka/received_events + repos_url: https://api.github.com/users/pawelkopka/repos + site_admin: false + starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + type: User + url: https://api.github.com/users/pawelkopka + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/eliskasl/received_events + repos_url: https://api.github.com/users/eliskasl/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/eliskasl/received_events + repos_url: https://api.github.com/users/eliskasl/repos + 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 + author_association: CONTRIBUTOR + body: "https://github.com/PyGithub/PyGithub/pull/1135 is now merged\r\n\ + \r\nUse the code above to initiate GitHubService, related code (which\ + \ we are using in the meantime):\r\n\r\npretty much drop this:\r\nhttps://github.com/packit-service/ogr/blob/253e93bc87c079d0cd8f3dc87fc5e11f5078e53b/ogr/services/github_tweak.py#L11\r\ + \n\r\nUse the newly added functionality in pygithub here:\r\nhttps://github.com/packit-service/ogr/blob/5729e29cb4e5bea7eb6ed68e1c573ca7f2d86051/ogr/factory.py#L142\r\ + \n\r\nAlso please write a test case for this." + closed_at: '2019-11-20T15:17:22Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/270/comments + created_at: '2019-06-20T09:29:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/270/events + html_url: https://github.com/packit/ogr/issues/270 + id: 521607861 labels: - - color: b60205 + - color: '000000' default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 7057ff default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/270/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MjE2MDc4NjE= + number: 270 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'get installation ID: use code from pygithub once a new release + is available' + updated_at: '2019-11-20T15:17:22Z' + url: https://api.github.com/repos/packit/ogr/issues/270 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "After PR(https://github.com/PyGithub/PyGithub/pull/1135) merged\ + \ github_tweak can be remove and use get_installation from PyGithub.\r\ + \n\r\nCloses #178" + closed_at: '2019-11-19T08:51:59Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/277/comments + created_at: '2019-11-18T14:11:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/277/events + html_url: https://github.com/packit/ogr/pull/277 + id: 524392477 + labels: - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -91361,61 +119553,54 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/228/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/277/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIyMzA4NzQy - number: 228 + node_id: MDExOlB1bGxSZXF1ZXN0MzQyMTc1NDg2 + number: 277 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/228.diff - html_url: https://github.com/packit/ogr/pull/228 - patch_url: https://github.com/packit/ogr/pull/228.patch - url: https://api.github.com/repos/packit/ogr/pulls/228 + diff_url: https://github.com/packit/ogr/pull/277.diff + html_url: https://github.com/packit/ogr/pull/277 + patch_url: https://github.com/packit/ogr/pull/277.patch + url: https://api.github.com/repos/packit/ogr/pulls/277 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implementation of get_issue_comments for projects - updated_at: '2019-12-04T09:26:59Z' - url: https://api.github.com/repos/packit/ogr/issues/228 + title: Remove github_tweak to use upstream github function + updated_at: '2019-11-19T08:51:59Z' + url: https://api.github.com/repos/packit/ogr/issues/277 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 + events_url: https://api.github.com/users/pawelkopka/events{/privacy} + followers_url: https://api.github.com/users/pawelkopka/followers + following_url: https://api.github.com/users/pawelkopka/following{/other_user} + gists_url: https://api.github.com/users/pawelkopka/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/pawelkopka + id: 17784034 + login: pawelkopka + node_id: MDQ6VXNlcjE3Nzg0MDM0 + organizations_url: https://api.github.com/users/pawelkopka/orgs + received_events_url: https://api.github.com/users/pawelkopka/received_events + repos_url: https://api.github.com/users/pawelkopka/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/pawelkopka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Closes #224' - closed_at: '2019-09-30T11:40:39Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/227/comments - created_at: '2019-09-27T10:16:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/227/events - html_url: https://github.com/packit/ogr/pull/227 - id: 499361462 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-11-18T12:45:03Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/275/comments + created_at: '2019-11-14T11:29:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/275/events + html_url: https://github.com/packit/ogr/pull/275 + id: 522798569 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -91423,61 +119608,55 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/227/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/275/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIyMDk2ODIw - number: 227 + node_id: MDExOlB1bGxSZXF1ZXN0MzQwOTI0NzU4 + number: 275 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/227.diff - html_url: https://github.com/packit/ogr/pull/227 - patch_url: https://github.com/packit/ogr/pull/227.patch - url: https://api.github.com/repos/packit/ogr/pulls/227 + diff_url: https://github.com/packit/ogr/pull/275.diff + html_url: https://github.com/packit/ogr/pull/275 + patch_url: https://github.com/packit/ogr/pull/275.patch + url: https://api.github.com/repos/packit/ogr/pulls/275 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Factor out getting collaborators (GithubProject) - updated_at: '2019-12-04T09:26:59Z' - url: https://api.github.com/repos/packit/ogr/issues/227 + title: temporary integration test method PullRequest._pr_close_temp() + removed + updated_at: '2019-11-18T13:00:09Z' + url: https://api.github.com/repos/packit/ogr/issues/275 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #220' - closed_at: '2019-10-02T09:17:18Z' - comments: 41 - comments_url: https://api.github.com/repos/packit/ogr/issues/226/comments - created_at: '2019-09-26T14:55:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/226/events - html_url: https://github.com/packit/ogr/pull/226 - id: 498940241 + author_association: CONTRIBUTOR + body: '#250 ' + closed_at: '2019-11-14T08:21:22Z' + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/269/comments + created_at: '2019-11-10T21:17:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/269/events + html_url: https://github.com/packit/ogr/pull/269 + id: 520658857 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -91485,68 +119664,55 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/226/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/269/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIxNzY0NTE1 - number: 226 + node_id: MDExOlB1bGxSZXF1ZXN0MzM5MTkxOTQw + number: 269 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/226.diff - html_url: https://github.com/packit/ogr/pull/226 - patch_url: https://github.com/packit/ogr/pull/226.patch - url: https://api.github.com/repos/packit/ogr/pulls/226 + diff_url: https://github.com/packit/ogr/pull/269.diff + html_url: https://github.com/packit/ogr/pull/269 + patch_url: https://github.com/packit/ogr/pull/269.patch + url: https://api.github.com/repos/packit/ogr/pulls/269 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Make PagureProject.full_repo_name property offline - updated_at: '2019-12-04T09:26:59Z' - url: https://api.github.com/repos/packit/ogr/issues/226 + title: github_pr_create_rework_250 + updated_at: '2019-11-14T10:46:21Z' + url: https://api.github.com/repos/packit/ogr/issues/269 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Closes #107' - closed_at: '2019-09-26T09:12:11Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/221/comments - created_at: '2019-09-25T14:42:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/221/events - html_url: https://github.com/packit/ogr/pull/221 - id: 498333159 + author_association: CONTRIBUTOR + body: "Hi,\r\n\r\ni have implemented GithubProject.pr_close(). integration\ + \ test included. Working on unit test." + closed_at: '2019-11-14T10:10:01Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/273/comments + created_at: '2019-11-13T20:19:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/273/events + html_url: https://github.com/packit/ogr/pull/273 + id: 522450593 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -91554,63 +119720,107 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/221/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/273/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIxMjg0ODI1 - number: 221 + node_id: MDExOlB1bGxSZXF1ZXN0MzQwNjQ5Mzc2 + number: 273 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/221.diff - html_url: https://github.com/packit/ogr/pull/221 - patch_url: https://github.com/packit/ogr/pull/221.patch - url: https://api.github.com/repos/packit/ogr/pulls/221 + diff_url: https://github.com/packit/ogr/pull/273.diff + html_url: https://github.com/packit/ogr/pull/273 + patch_url: https://github.com/packit/ogr/pull/273.patch + url: https://api.github.com/repos/packit/ogr/pulls/273 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove pull requests from issues in GitHub implementation - updated_at: '2019-12-04T09:26:59Z' - url: https://api.github.com/repos/packit/ogr/issues/221 + title: implement GithubProject.pr_close() + updated_at: '2019-11-14T10:10:01Z' + url: https://api.github.com/repos/packit/ogr/issues/273 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Closes #218\r\n\r\n- removes implementation from abstract class\r\ - \n- overrides it for Pagure projects that have optional namespace\r\n\ - - adds few basic tests" - closed_at: '2019-09-25T05:20:03Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/219/comments - created_at: '2019-09-24T09:35:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/219/events - html_url: https://github.com/packit/ogr/pull/219 - id: 497572530 + body: '- Fix the path to the packit tests.' + closed_at: '2019-11-13T21:58:53Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/272/comments + created_at: '2019-11-13T15:23:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/272/events + html_url: https://github.com/packit/ogr/pull/272 + id: 522292170 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/272/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQwNTE5Mjg0 + number: 272 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/272.diff + html_url: https://github.com/packit/ogr/pull/272 + patch_url: https://github.com/packit/ogr/pull/272.patch + url: https://api.github.com/repos/packit/ogr/pulls/272 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix ogr rev dep tests + updated_at: '2019-11-13T21:58:57Z' + url: https://api.github.com/repos/packit/ogr/issues/272 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Use requre-purge to unify the dates and tags in response files.\r\ + \n\r\n\r\nTODO:\r\n\r\n- [x] add to pre-commit and run on all changed\ + \ yaml files (pre-commit hook created in the requre repo)\r\n- [x] check\ + \ other possible values to purge (defined in the [requre pre-commit-hook\ + \ config](https://github.com/packit-service/requre/blob/master/.pre-commit-hooks.yaml))\r\ + \n- [x] Makefile target running cleanup on all files." + closed_at: '2019-11-12T07:51:34Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/266/comments + created_at: '2019-11-06T09:59:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/266/events + html_url: https://github.com/packit/ogr/pull/266 + id: 518363112 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -91618,63 +119828,54 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/219/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/266/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIwNjc0OTk2 - number: 219 + node_id: MDExOlB1bGxSZXF1ZXN0MzM3MjcwODQ5 + number: 266 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/219.diff - html_url: https://github.com/packit/ogr/pull/219 - patch_url: https://github.com/packit/ogr/pull/219.patch - url: https://api.github.com/repos/packit/ogr/pulls/219 + diff_url: https://github.com/packit/ogr/pull/266.diff + html_url: https://github.com/packit/ogr/pull/266 + patch_url: https://github.com/packit/ogr/pull/266.patch + url: https://api.github.com/repos/packit/ogr/pulls/266 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitProject.full_repo_name - updated_at: '2019-12-04T09:26:58Z' - url: https://api.github.com/repos/packit/ogr/issues/219 + title: Requre purge + updated_at: '2019-11-12T08:05:45Z' + url: https://api.github.com/repos/packit/ogr/issues/266 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Closes #213\r\nSeems like it could be implemented in BaseGitProject.\r\ - \nNot quite sure about Pagure implementation, since I haven't found\ - \ any tests regarding `None` as namespace." - closed_at: '2019-09-24T08:53:16Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/217/comments - created_at: '2019-09-22T08:47:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/217/events - html_url: https://github.com/packit/ogr/pull/217 - id: 496750815 + body: '- Tweak the stale-bot config.' + closed_at: '2019-11-11T13:51:55Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/268/comments + created_at: '2019-11-06T13:57:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/268/events + html_url: https://github.com/packit/ogr/pull/268 + id: 518489380 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -91682,189 +119883,225 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/217/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/268/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIwMDI1NDc1 - number: 217 + node_id: MDExOlB1bGxSZXF1ZXN0MzM3Mzc0NzAw + number: 268 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/217.diff - html_url: https://github.com/packit/ogr/pull/217 - patch_url: https://github.com/packit/ogr/pull/217.patch - url: https://api.github.com/repos/packit/ogr/pulls/217 + diff_url: https://github.com/packit/ogr/pull/268.diff + html_url: https://github.com/packit/ogr/pull/268 + patch_url: https://github.com/packit/ogr/pull/268.patch + url: https://api.github.com/repos/packit/ogr/pulls/268 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitProject.get_web_url() - updated_at: '2019-12-04T09:26:58Z' - url: https://api.github.com/repos/packit/ogr/issues/217 + title: Stale-bot config update + updated_at: '2019-11-11T14:11:04Z' + url: https://api.github.com/repos/packit/ogr/issues/268 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "After there will be done these stuff:\r\n - [ ] https://github.com/packit-service/ogr/pull/201\ - \ will be merged\r\n - [ ] there will be fixed also ``packit`` to use\ - \ ``requre``\r\n\r\nthen remove all mocking stuff from this project" - closed_at: '2019-12-04T08:54:10Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/225/comments - created_at: '2019-09-26T13:04:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/225/events - html_url: https://github.com/packit/ogr/issues/225 - id: 498871887 + author_association: CONTRIBUTOR + body: "they have a file called ogr.py:\r\n```\r\n$ rpm -ql python3-gdal\ + \ | grep ogr\r\n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.opt-1.pyc\r\ + \n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.pyc\r\ + \n/usr/lib64/python3.7/site-packages/ogr.py\r\n/usr/lib64/python3.7/site-packages/osgeo/__pycache__/ogr.cpython-37.opt-1.pyc\r\ + \n/usr/lib64/python3.7/site-packages/osgeo/__pycache__/ogr.cpython-37.pyc\r\ + \n/usr/lib64/python3.7/site-packages/osgeo/_ogr.cpython-37m-x86_64-linux-gnu.so\r\ + \n/usr/lib64/python3.7/site-packages/osgeo/ogr.py\r\n/usr/share/doc/python3-gdal/samples/gcps2ogr.py\r\ + \n/usr/share/doc/python3-gdal/samples/ogr2ogr.py\r\n/usr/share/doc/python3-gdal/samples/ogr2vrt.py\r\ + \n/usr/share/doc/python3-gdal/samples/ogr_build_junction_table.py\r\n\ + /usr/share/doc/python3-gdal/samples/ogr_dispatch.py\r\n/usr/share/doc/python3-gdal/samples/ogr_layer_algebra.py\r\ + \n/usr/share/doc/python3-gdal/samples/ogrinfo.py\r\n/usr/share/doc/python3-gdal/samples/ogrupdate.py\r\ + \n```\r\n\r\nSo now that I installed python3-gdal, I can't use ogr anymore:\r\ + \n```\r\n$ ipython3\r\nPython 3.7.4 (default, Jul 9 2019, 16:32:37)\ + \ \r\nType 'copyright', 'credits' or 'license' for more information\r\ + \nIPython 7.2.0 -- An enhanced Interactive Python. Type '?' for help.\r\ + \nfrException reporting mode: Verbose\r\n\r\nIn [1]: from ogr import\ + \ services \r\n---------------------------------------------------------------------------\r\ + \nImportError Traceback (most recent call\ + \ last)\r\n in \r\n----> 1 from\ + \ ogr import services\r\n global ogr = undefined\r\n global\ + \ services = undefined\r\n\r\nImportError: cannot import name 'services'\ + \ from 'ogr' (/usr/lib64/python3.7/site-packages/ogr.py)\r\n```\r\n\r\ + \nNo idea how to fix this.\r\n\r\nWTF\r\n" + closed_at: '2019-11-11T14:00:21Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/139/comments + created_at: '2019-07-31T09:54:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/139/events + html_url: https://github.com/packit/ogr/issues/139 + id: 475047644 labels: - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 + - color: bc4812 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/225/labels{/name} + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker + labels_url: https://api.github.com/repos/packit/ogr/issues/139/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTg4NzE4ODc= - number: 225 + node_id: MDU6SXNzdWU0NzUwNDc2NDQ= + number: 139 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: remove persistent storage + mocking from ogr after using requre - updated_at: '2019-12-04T08:54:17Z' - url: https://api.github.com/repos/packit/ogr/issues/225 + title: installing python3-gdal breaks ogr + updated_at: '2019-11-11T14:00:21Z' + url: https://api.github.com/repos/packit/ogr/issues/139 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "The default behaviour should be:\r\n\r\n- running from fork:\r\n\ - \ - create pr from fork to upstream\r\n- running from upstream:\r\ - \n - create pr from upstream to upstream\r\n\r\nWe need to specify\ - \ correctly the username in `head` or use the correct pygithub object\ - \ to call the `create_pull` on.\r\n\r\n- Get inspired in packit: https://github.com/packit-service/packit/blob/master/packit/upstream.py#L190\r\ - \n- API docs: https://developer.github.com/v3/pulls/#create-a-pull-request\ - \ (`head` parameter)\r\n- Related pygithub method: https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_pull\r\ - \n\r\nAC:\r\n\r\n- [ ] check the existing workflow\r\n- [ ] fix the\ - \ username to support both workflows correctly\r\n- [ ] create tests\ - \ for both of them\r\n\r\n\r\n" - closed_at: '2019-12-04T08:50:38Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/250/comments - created_at: '2019-10-17T13:55:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/250/events - html_url: https://github.com/packit/ogr/issues/250 - id: 508493656 + author_association: CONTRIBUTOR + body: 'Aims to remove any strict MyPy errors from the utils.py file, relating + to ticket #251 ' + closed_at: '2019-11-05T07:49:43Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/259/comments + created_at: '2019-10-26T20:18:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/259/events + html_url: https://github.com/packit/ogr/pull/259 + id: 512880678 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff + - color: 0e8a16 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/250/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/259/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzk4MjAw + number: 259 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/259.diff + html_url: https://github.com/packit/ogr/pull/259 + patch_url: https://github.com/packit/ogr/pull/259.patch + url: https://api.github.com/repos/packit/ogr/pulls/259 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: improve typehint coverage in utils.py + updated_at: '2019-11-07T07:16:34Z' + url: https://api.github.com/repos/packit/ogr/issues/259 + user: + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos + site_admin: false + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions + type: User + url: https://api.github.com/users/svenharris + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: Make it possible to clear check status on PR (optionally commit). + closed_at: '2019-11-06T11:37:33Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/267/comments + created_at: '2019-11-06T11:36:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/267/events + html_url: https://github.com/packit/ogr/issues/267 + id: 518415970 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/267/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDg0OTM2NTY= - number: 250 + node_id: MDU6SXNzdWU1MTg0MTU5NzA= + number: 267 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix createing pull requests in GitHub - updated_at: '2019-12-04T08:50:38Z' - url: https://api.github.com/repos/packit/ogr/issues/250 + title: Support for clearing checks + updated_at: '2019-11-06T11:37:33Z' + url: https://api.github.com/repos/packit/ogr/issues/267 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Closes #281 \r\nAfter change in requre integration tests fails.\ - \ \r\nChange PersistentObjectStorage().is_write_mode to PersistentObjectStorage().mode\ - \ == StorageMode.write\r\n\r\nZuul allow to add relation between repos,\ - \ maybe this is a option to prevent that situation, but I don't know\ - \ how looks policy about that in packit-service. \r\n" - closed_at: '2019-11-25T12:33:59Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/282/comments - created_at: '2019-11-22T11:31:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/282/events - html_url: https://github.com/packit/ogr/pull/282 - id: 527144120 + body: 'As part of issue #251 update type hinting within the abstract.py + file such that there are no mypy errors for that file' + closed_at: '2019-11-05T11:05:30Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/258/comments + created_at: '2019-10-26T19:26:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/258/events + html_url: https://github.com/packit/ogr/pull/258 + id: 512875119 labels: - color: 0e8a16 default: false @@ -91873,239 +120110,214 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/282/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/258/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ0NDc0MTIz - number: 282 + node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzk0NDEy + number: 258 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/282.diff - html_url: https://github.com/packit/ogr/pull/282 - patch_url: https://github.com/packit/ogr/pull/282.patch - url: https://api.github.com/repos/packit/ogr/pulls/282 + diff_url: https://github.com/packit/ogr/pull/258.diff + html_url: https://github.com/packit/ogr/pull/258 + patch_url: https://github.com/packit/ogr/pull/258.patch + url: https://api.github.com/repos/packit/ogr/pulls/258 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix integration tests - updated_at: '2019-12-03T16:14:58Z' - url: https://api.github.com/repos/packit/ogr/issues/282 + title: Improve type hint coverage in abstract.py + updated_at: '2019-11-05T12:37:31Z' + url: https://api.github.com/repos/packit/ogr/issues/258 user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 - events_url: https://api.github.com/users/pawelkopka/events{/privacy} - followers_url: https://api.github.com/users/pawelkopka/followers - following_url: https://api.github.com/users/pawelkopka/following{/other_user} - gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/pawelkopka - id: 17784034 - login: pawelkopka - node_id: MDQ6VXNlcjE3Nzg0MDM0 - organizations_url: https://api.github.com/users/pawelkopka/orgs - received_events_url: https://api.github.com/users/pawelkopka/received_events - repos_url: https://api.github.com/users/pawelkopka/repos + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos site_admin: false - starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions type: User - url: https://api.github.com/users/pawelkopka + url: https://api.github.com/users/svenharris - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Any ideas how [this](https://sentry.io/organizations/red-hat-0p/issues/1369231585)\ - \ could have happen?\r\n\r\n```python\r\nAttributeError: 'GithubPRComment'\ - \ object has no attribute '_body'\r\n File \"packit_service/worker/tasks.py\"\ - , line 42, in process_message\r\n return SteveJobs().process_message(event=event,\ - \ topic=topic)\r\n File \"packit_service/worker/jobs.py\", line 249,\ - \ in process_message\r\n jobs_results[job_type] = handler.run_n_clean()\r\ - \n File \"packit_service/worker/handler.py\", line 177, in run_n_clean\r\ - \n return self.run()\r\n File \"packit_service/worker/fedmsg_handlers.py\"\ - , line 221, in run\r\n if not self.was_last_build_successful():\r\ - \n File \"packit_service/worker/fedmsg_handlers.py\", line 189, in\ - \ was_last_build_successful\r\n if \"Congratulations!\" in comment.comment:\r\ - \n File \"ogr/abstract.py\", line 78, in comment\r\n return self._body\r\ - \n```" - closed_at: '2019-12-03T16:04:47Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/288/comments - created_at: '2019-12-03T14:14:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/288/events - html_url: https://github.com/packit/ogr/issues/288 - id: 532014956 + author_association: CONTRIBUTOR + body: "Fixes #165\r\n\r\n*edited by @lachmanfrantisek to close that issue\ + \ on merging*" + closed_at: '2019-11-04T13:59:19Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/166/comments + created_at: '2019-09-06T01:43:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/166/events + html_url: https://github.com/packit/ogr/pull/166 + id: 490086601 labels: - - color: d73a4a + - color: c5def5 default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/288/labels{/name} + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + labels_url: https://api.github.com/repos/packit/ogr/issues/166/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MzIwMTQ5NTY= - number: 288 + node_id: MDExOlB1bGxSZXF1ZXN0MzE0NzYyMzA5 + number: 166 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/166.diff + html_url: https://github.com/packit/ogr/pull/166 + patch_url: https://github.com/packit/ogr/pull/166.patch + url: https://api.github.com/repos/packit/ogr/pulls/166 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'AttributeError: ''GithubPRComment'' object has no attribute ''_body''' - updated_at: '2019-12-03T16:04:47Z' - url: https://api.github.com/repos/packit/ogr/issues/288 + title: Update and link the contribution guide in README + updated_at: '2019-11-04T13:59:19Z' + url: https://api.github.com/repos/packit/ogr/issues/166 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/19755484?v=4 + events_url: https://api.github.com/users/RomaneGreen/events{/privacy} + followers_url: https://api.github.com/users/RomaneGreen/followers + following_url: https://api.github.com/users/RomaneGreen/following{/other_user} + gists_url: https://api.github.com/users/RomaneGreen/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/RomaneGreen + id: 19755484 + login: RomaneGreen + node_id: MDQ6VXNlcjE5NzU1NDg0 + organizations_url: https://api.github.com/users/RomaneGreen/orgs + received_events_url: https://api.github.com/users/RomaneGreen/received_events + repos_url: https://api.github.com/users/RomaneGreen/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/RomaneGreen/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/RomaneGreen/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/RomaneGreen - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "`Comment` class should keep backward-link to parent, e.g. `Issue`\ - \ or `PullRequest`.\r\n\r\n- [x] Add parameter to constructor and getter\r\ - \n- [x] Keep link to `Issue`\r\n blocked by #253\r\n- [x] Keep link\ - \ to `PR`\r\n blocked by #254" - closed_at: '2019-12-03T11:21:59Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/255/comments - created_at: '2019-10-24T17:16:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/255/events - html_url: https://github.com/packit/ogr/issues/255 - id: 512074603 + body: '- Add link to contribution guide to README. + + - Rebased version of #166.' + closed_at: '2019-11-04T13:56:09Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/265/comments + created_at: '2019-11-04T12:48:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/265/events + html_url: https://github.com/packit/ogr/pull/265 + id: 517129326 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 8be567 + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/255/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/265/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTIwNzQ2MDM= - number: 255 + node_id: MDExOlB1bGxSZXF1ZXN0MzM2MjU4MjI3 + number: 265 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/265.diff + html_url: https://github.com/packit/ogr/pull/265 + patch_url: https://github.com/packit/ogr/pull/265.patch + url: https://api.github.com/repos/packit/ogr/pulls/265 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Backward links on comments - updated_at: '2019-12-03T11:21:59Z' - url: https://api.github.com/repos/packit/ogr/issues/255 + title: 'Link to contribution guide (rebased version of #166)' + updated_at: '2019-11-04T13:59:00Z' + url: https://api.github.com/repos/packit/ogr/issues/265 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: '' + closed_at: '2019-11-04T13:58:31Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/244/comments + created_at: '2019-10-12T13:08:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/244/events + html_url: https://github.com/packit/ogr/pull/244 + id: 506185012 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/244/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI3NDYzMzkw + number: 244 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/244.diff + html_url: https://github.com/packit/ogr/pull/244 + patch_url: https://github.com/packit/ogr/pull/244.patch + url: https://api.github.com/repos/packit/ogr/pulls/244 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add the add_to_collaborators method to abstract.GitProject + updated_at: '2019-11-04T13:58:31Z' + url: https://api.github.com/repos/packit/ogr/issues/244 + user: + avatar_url: https://avatars.githubusercontent.com/u/23198051?v=4 + events_url: https://api.github.com/users/HECTOPK/events{/privacy} + followers_url: https://api.github.com/users/HECTOPK/followers + following_url: https://api.github.com/users/HECTOPK/following{/other_user} + gists_url: https://api.github.com/users/HECTOPK/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/HECTOPK + id: 23198051 + login: HECTOPK + node_id: MDQ6VXNlcjIzMTk4MDUx + organizations_url: https://api.github.com/users/HECTOPK/orgs + received_events_url: https://api.github.com/users/HECTOPK/received_events + repos_url: https://api.github.com/users/HECTOPK/repos + site_admin: false + starred_url: https://api.github.com/users/HECTOPK/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/HECTOPK/subscriptions + type: User + url: https://api.github.com/users/HECTOPK - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Increase version for packit propose-update.' - closed_at: '2019-12-02T14:21:28Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/283/comments - created_at: '2019-11-28T08:24:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/283/events - html_url: https://github.com/packit/ogr/pull/283 - id: 529760830 + body: "The used config is the example one from the app page:\r\nhttps://github.com/apps/stale/" + closed_at: '2019-11-01T10:47:23Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/262/comments + created_at: '2019-10-31T15:18:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/262/events + html_url: https://github.com/packit/ogr/pull/262 + id: 515517121 labels: - color: 0e8a16 default: false @@ -92114,24 +120326,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/283/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/262/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ2NTc1ODcw - number: 283 + node_id: MDExOlB1bGxSZXF1ZXN0MzM0OTY3Mzcy + number: 262 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/283.diff - html_url: https://github.com/packit/ogr/pull/283 - patch_url: https://github.com/packit/ogr/pull/283.patch - url: https://api.github.com/repos/packit/ogr/pulls/283 + diff_url: https://github.com/packit/ogr/pull/262.diff + html_url: https://github.com/packit/ogr/pull/262 + patch_url: https://github.com/packit/ogr/pull/262.patch + url: https://api.github.com/repos/packit/ogr/pulls/262 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Packit config update - updated_at: '2019-12-03T07:42:52Z' - url: https://api.github.com/repos/packit/ogr/issues/283 + title: Add config for stale bot + updated_at: '2019-11-01T10:48:02Z' + url: https://api.github.com/repos/packit/ogr/issues/262 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -92153,179 +120365,142 @@ requests.sessions: assignee: null assignees: [] author_association: CONTRIBUTOR - body: "This PR contains possible solution of #178 \r\nCloses #178 " - closed_at: '2019-11-29T11:43:22Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/274/comments - created_at: '2019-11-14T09:46:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/274/events - html_url: https://github.com/packit/ogr/pull/274 - id: 522738918 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/274/labels{/name} + body: 'This pull request intends to fix the strict mypy errors in the + exceptions.py file as part of #251. Not sure if the types within the + dictionary (str, str) are consistent with how this is used as couldn''t + see any instances in the codebase where this error is raised with the + kwargs filled in.' + closed_at: '2019-10-31T19:36:13Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/256/comments + created_at: '2019-10-26T18:24:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/256/events + html_url: https://github.com/packit/ogr/pull/256 + id: 512868698 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/256/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQwODc5MDI4 - number: 274 + node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzg5ODUy + number: 256 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/274.diff - html_url: https://github.com/packit/ogr/pull/274 - patch_url: https://github.com/packit/ogr/pull/274.patch - url: https://api.github.com/repos/packit/ogr/pulls/274 + diff_url: https://github.com/packit/ogr/pull/256.diff + html_url: https://github.com/packit/ogr/pull/256 + patch_url: https://github.com/packit/ogr/pull/256.patch + url: https://api.github.com/repos/packit/ogr/pulls/256 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implementation of GitPython instead of calling subprocess - updated_at: '2019-11-29T11:43:22Z' - url: https://api.github.com/repos/packit/ogr/issues/274 + title: Improve typehints for exceptions.py + updated_at: '2019-10-31T19:36:13Z' + url: https://api.github.com/repos/packit/ogr/issues/256 user: - avatar_url: https://avatars1.githubusercontent.com/u/35431035?v=4 - events_url: https://api.github.com/users/Hojang2/events{/privacy} - followers_url: https://api.github.com/users/Hojang2/followers - following_url: https://api.github.com/users/Hojang2/following{/other_user} - gists_url: https://api.github.com/users/Hojang2/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/Hojang2 - id: 35431035 - login: Hojang2 - node_id: MDQ6VXNlcjM1NDMxMDM1 - organizations_url: https://api.github.com/users/Hojang2/orgs - received_events_url: https://api.github.com/users/Hojang2/received_events - repos_url: https://api.github.com/users/Hojang2/repos + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos site_admin: false - starred_url: https://api.github.com/users/Hojang2/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/Hojang2/subscriptions + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions type: User - url: https://api.github.com/users/Hojang2 + url: https://api.github.com/users/svenharris - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Investigate existing libraries (example https://github.com/release-depot/git_wrapper).\r\ - \nDecide whether to use an existing library or move our [git-related\ - \ code](https://github.com/packit-service/ogr/blob/master/ogr/utils.py)\ - \ (check for all occurrences of \"git\" through the code) into a new\ - \ library.\r\nUse such library in ogr." - closed_at: '2019-11-29T11:43:21Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/178/comments - created_at: '2019-09-06T10:41:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/178/events - html_url: https://github.com/packit/ogr/issues/178 - id: 490258611 + author_association: CONTRIBUTOR + body: 'As part of issue #251 improve the typehinting within the repo. + This pull request aims to fix the type hints in the parsing.py file.' + closed_at: '2019-10-31T17:38:33Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/257/comments + created_at: '2019-10-26T18:31:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/257/events + html_url: https://github.com/packit/ogr/pull/257 + id: 512869415 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: c2ef58 + - color: 0e8a16 default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/178/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/257/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAyNTg2MTE= - number: 178 + node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzkwMzc2 + number: 257 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/257.diff + html_url: https://github.com/packit/ogr/pull/257 + patch_url: https://github.com/packit/ogr/pull/257.patch + url: https://api.github.com/repos/packit/ogr/pulls/257 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Replace git-wrapping code with new or existing library - updated_at: '2019-11-29T11:43:21Z' - url: https://api.github.com/repos/packit/ogr/issues/178 + title: improve typehints for parsing.py + updated_at: '2019-10-31T18:15:49Z' + url: https://api.github.com/repos/packit/ogr/issues/257 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/svenharris - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "Extend `PullRequest` class of methods.\r\n\r\n- [x] move PR-related\ - \ functions from `Project` to `PullRequest`\r\n - [x] `BasePullRequest`\r\ - \n - [x] Github\r\n - [x] Gitlab\r\n - [x] Pagure\r\n- [x] make `Project`'s\ - \ methods backward-compatible by calling new methods\r\n- [x] deprecation\r\ - \n - [x] move deprecated functions to base class\r\n - [x] deprecate\ - \ functions on `Project`\r\n- [x] properties\r\n- [x] fix tests\r\n\r\ - \nPart of #86\r\nBlocked by #121" - closed_at: '2019-11-29T10:21:52Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/254/comments - created_at: '2019-10-24T17:14:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/254/events - html_url: https://github.com/packit/ogr/issues/254 - id: 512073698 + body: "Part of #86\r\n\r\nStructure of classes:\r\n\r\n* _Comment_\r\n\ + \ * _IssueComment_\r\n * GithubIssueComment\r\n * GitlabIssueComment\r\ + \n * PagureIssueComment\r\n * _PRComment_\r\n * GithubPRComment\r\ + \n * GitlabPRComment\r\n * PagurePRComment\r\n\r\nsuggested by\ + \ @lachmanfrantisek in #228\r\n\r\n* [x] Create a `Comment` abstract\ + \ class\r\n* [x] Implement base class for `Comment`\r\n* [x] Implementation\ + \ of services\r\n * [x] Github\r\n * [x] Gitlab\r\n * [x] Pagure\r\ + \n* [x] Update interface to include function for returning `Comment`\ + \ object\r\n * [x] Deprecate functions (`*Project`) manipulating with\ + \ comments (#121)\r\n* [ ] Remove `Comment = TypeVar('Comment', IssueComment,\ + \ PRComment)`\r\n* [ ] Make service-specific `__str__` to be compatible\ + \ with parent's constructor\r\n* [ ] Decide return types for services\ + \ `PRComment` vs `GithubPRComment`\r\n\r\nMaybe the implementation for\ + \ specific service could take the `raw_comment` in constructor?" + closed_at: '2019-10-23T13:09:59Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/230/comments + created_at: '2019-10-01T17:40:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/230/events + html_url: https://github.com/packit/ogr/issues/230 + id: 501044775 labels: - color: '000000' default: false @@ -92355,13 +120530,6 @@ requests.sessions: name: RHOSC node_id: MDU6TGFiZWwxNTYzMzA5Nzcz url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - color: c2ef58 default: false description: Technical debt - the code needs love. @@ -92369,13 +120537,6 @@ requests.sessions: name: refactor node_id: MDU6TGFiZWwxNDMyNzc5NDEz url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - color: 8be567 default: false description: Usability issue. @@ -92383,19 +120544,19 @@ requests.sessions: name: user-experience node_id: MDU6TGFiZWwxNDMyNzc5NDY0 url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/254/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/230/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTIwNzM2OTg= - number: 254 + node_id: MDU6SXNzdWU1MDEwNDQ3NzU= + number: 230 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: PullRequest class refactor - updated_at: '2019-11-29T10:21:52Z' - url: https://api.github.com/repos/packit/ogr/issues/254 + title: Factor out Comment + updated_at: '2019-10-23T13:09:59Z' + url: https://api.github.com/repos/packit/ogr/issues/230 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -92413,67 +120574,125 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.60323 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:48 GMT + ETag: W/"14ff603ba825cd2dc0498d9fafa0ee2bb324d772d8ad48083819a64f3d96a0ff" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F80A01:191C7C1:6075DC50 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4621' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '379' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=12: + - metadata: + latency: 0.6322252750396729 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-11-28T10:13:00Z' + author_association: NONE + body: 'I have added # type: ignore at the beginning of each python file.' + closed_at: '2019-10-23T07:32:14Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/284/comments - created_at: '2019-11-28T10:06:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/284/events - html_url: https://github.com/packit/ogr/pull/284 - id: 529812923 + comments_url: https://api.github.com/repos/packit/ogr/issues/252/comments + created_at: '2019-10-22T19:08:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/252/events + html_url: https://github.com/packit/ogr/pull/252 + id: 510850860 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/284/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/252/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ2NjE4MjQ5 - number: 284 + node_id: MDExOlB1bGxSZXF1ZXN0MzMxMTUyNDg0 + number: 252 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/284.diff - html_url: https://github.com/packit/ogr/pull/284 - patch_url: https://github.com/packit/ogr/pull/284.patch - url: https://api.github.com/repos/packit/ogr/pulls/284 + diff_url: https://github.com/packit/ogr/pull/252.diff + html_url: https://github.com/packit/ogr/pull/252 + patch_url: https://github.com/packit/ogr/pull/252.patch + url: https://api.github.com/repos/packit/ogr/pulls/252 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Do not merge - test PR - updated_at: '2019-11-28T10:13:00Z' - url: https://api.github.com/repos/packit/ogr/issues/284 + title: 'Added # type: ignore ' + updated_at: '2019-10-23T07:32:14Z' + url: https://api.github.com/repos/packit/ogr/issues/252 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/42462649?v=4 + events_url: https://api.github.com/users/maniis/events{/privacy} + followers_url: https://api.github.com/users/maniis/followers + following_url: https://api.github.com/users/maniis/following{/other_user} + gists_url: https://api.github.com/users/maniis/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/maniis + id: 42462649 + login: maniis + node_id: MDQ6VXNlcjQyNDYyNjQ5 + organizations_url: https://api.github.com/users/maniis/orgs + received_events_url: https://api.github.com/users/maniis/received_events + repos_url: https://api.github.com/users/maniis/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + starred_url: https://api.github.com/users/maniis/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/maniis/subscriptions type: User - url: https://api.github.com/users/dhodovsk + url: https://api.github.com/users/maniis - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Add .fmf and setup testing-farm.\r\n\r\n---\r\n\r\nTODO:\r\n\ - - [x] add some real tests" - closed_at: '2019-11-28T08:22:05Z' - comments: 18 - comments_url: https://api.github.com/repos/packit/ogr/issues/278/comments - created_at: '2019-11-19T12:06:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/278/events - html_url: https://github.com/packit/ogr/pull/278 - id: 524968144 + body: '- Use new format for requre.' + closed_at: '2019-10-21T14:17:11Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/246/comments + created_at: '2019-10-15T10:46:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/246/events + html_url: https://github.com/packit/ogr/pull/246 + id: 507162669 labels: - color: 0e8a16 default: false @@ -92482,24 +120701,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/278/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/246/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQyNjQ1NDE1 - number: 278 + node_id: MDExOlB1bGxSZXF1ZXN0MzI4MjAyNTY5 + number: 246 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/278.diff - html_url: https://github.com/packit/ogr/pull/278 - patch_url: https://github.com/packit/ogr/pull/278.patch - url: https://api.github.com/repos/packit/ogr/pulls/278 + diff_url: https://github.com/packit/ogr/pull/246.diff + html_url: https://github.com/packit/ogr/pull/246 + patch_url: https://github.com/packit/ogr/pull/246.patch + url: https://api.github.com/repos/packit/ogr/pulls/246 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Setup testing farm - updated_at: '2019-11-28T10:11:46Z' - url: https://api.github.com/repos/packit/ogr/issues/278 + title: Use new requre api + updated_at: '2019-10-21T14:22:24Z' + url: https://api.github.com/repos/packit/ogr/issues/246 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -92521,51 +120740,101 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Figure out a deprecated strategy for ogr, get inspired by packit:\ - \ https://packit.dev/ [or django, ansible].\r\n\r\n- [x] documentation\r\ - \n- [x] solution for method/classes" - closed_at: '2019-11-27T12:02:53Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/121/comments - created_at: '2019-07-16T11:54:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/121/events - html_url: https://github.com/packit/ogr/issues/121 - id: 468611036 + body: 'Test for https://github.com/packit-service/packit-service/pull/164 + + + - should pass' + closed_at: '2019-10-21T13:52:54Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/247/comments + created_at: '2019-10-16T10:40:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/247/events + html_url: https://github.com/packit/ogr/pull/247 + id: 507767488 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/247/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzI4NjkwNjU1 + number: 247 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/247.diff + html_url: https://github.com/packit/ogr/pull/247 + patch_url: https://github.com/packit/ogr/pull/247.patch + url: https://api.github.com/repos/packit/ogr/pulls/247 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add rebase check to pre-commit (pass) + updated_at: '2019-10-21T13:53:00Z' + url: https://api.github.com/repos/packit/ogr/issues/247 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Test for https://github.com/packit-service/packit-service/pull/164 + + + - should fail' + closed_at: '2019-10-21T13:10:47Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/248/comments + created_at: '2019-10-16T10:41:07Z' + events_url: https://api.github.com/repos/packit/ogr/issues/248/events + html_url: https://github.com/packit/ogr/pull/248 + id: 507767766 labels: - - color: b60205 + - color: dd5f74 default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: c5def5 + description: Work in progress. + id: 1432779248 + name: do-not-merge + node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 + url: https://api.github.com/repos/packit/ogr/labels/do-not-merge + - color: e4e669 default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/121/labels{/name} + description: This doesn't seem right. + id: 1160311267 + name: invalid + node_id: MDU6TGFiZWwxMTYwMzExMjY3 + url: https://api.github.com/repos/packit/ogr/labels/invalid + labels_url: https://api.github.com/repos/packit/ogr/issues/248/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njg2MTEwMzY= - number: 121 + node_id: MDExOlB1bGxSZXF1ZXN0MzI4NjkwODg5 + number: 248 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/248.diff + html_url: https://github.com/packit/ogr/pull/248 + patch_url: https://github.com/packit/ogr/pull/248.patch + url: https://api.github.com/repos/packit/ogr/pulls/248 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Deprecation policy - updated_at: '2019-11-27T12:02:53Z' - url: https://api.github.com/repos/packit/ogr/issues/121 + title: Add rebase check to pre-commit (fail) + updated_at: '2019-10-21T13:10:51Z' + url: https://api.github.com/repos/packit/ogr/issues/248 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -92585,7 +120854,7 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -92604,7 +120873,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -92623,19 +120892,19 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko author_association: MEMBER - body: "Extend `Issue` class of methods.\r\n\r\n- [x] move issue-related\ - \ functions from `Project` to `Issue`\r\n- [x] make `Project`'s methods\ - \ backward-compatible by calling new methods\r\n- [x] deprecate functions\ - \ on `Project`\r\n- [x] separate all issue-related tests if needed\r\ - \n- [x] `__get_comment`, `get_issue_comments`\r\n\r\nPart of #86\r\n\ - Blocked by #121" - closed_at: '2019-11-26T08:52:22Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/253/comments - created_at: '2019-10-24T17:13:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/253/events - html_url: https://github.com/packit/ogr/issues/253 - id: 512073255 + body: "Add possibility to filter PR/issue comments by their author.\r\n\ + \r\n- [ ] Extend the methods of `GitProject` in `ogr/abstract.py`.\r\ + \n- [ ] Extend the `BaseGitProject` in `ogr/services/base.py` if needed.\r\ + \n- [ ] Implement the support both for PRs and issues. (Share as much\ + \ code as possible -- implementation and pr/issue)\r\n - [ ] github\r\ + \n - [ ] gitlab\r\n - [ ] pagure" + closed_at: '2019-10-15T10:49:50Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/240/comments + created_at: '2019-10-09T15:23:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/240/events + html_url: https://github.com/packit/ogr/issues/240 + id: 504724114 labels: - color: '000000' default: false @@ -92651,6 +120920,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -92672,40 +120948,46 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 8be567 + - color: 7057ff default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/253/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/240/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTIwNzMyNTU= - number: 253 + node_id: MDU6SXNzdWU1MDQ3MjQxMTQ= + number: 240 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Issue class refactor - updated_at: '2019-11-26T08:52:22Z' - url: https://api.github.com/repos/packit/ogr/issues/253 + title: Filter comments by author + updated_at: '2019-10-15T11:03:47Z' + url: https://api.github.com/repos/packit/ogr/issues/240 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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} @@ -92723,105 +121005,46 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "After change in requre integrations tests, trying call property\ - \ _is_write_mode_ .\r\nProbably this _PersistentObjectStorage().is_write_mode_\ - \ need to be change to _PersistentObjectStorage().mode == StorageMode.write_\r\ - \n\r\n\r\nError:\r\n`AttributeError: 'PersistentObjectStorage' object\ - \ has no attribute 'is_write_mode'`" - closed_at: '2019-11-25T12:33:59Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/281/comments - created_at: '2019-11-22T11:06:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/281/events - html_url: https://github.com/packit/ogr/issues/281 - id: 527132897 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/281/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1MjcxMzI4OTc= - number: 281 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Integrations tests fails afters change in requre - updated_at: '2019-11-25T12:33:59Z' - url: https://api.github.com/repos/packit/ogr/issues/281 - user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 - events_url: https://api.github.com/users/pawelkopka/events{/privacy} - followers_url: https://api.github.com/users/pawelkopka/followers - following_url: https://api.github.com/users/pawelkopka/following{/other_user} - gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/pawelkopka - id: 17784034 - login: pawelkopka - node_id: MDQ6VXNlcjE3Nzg0MDM0 - organizations_url: https://api.github.com/users/pawelkopka/orgs - received_events_url: https://api.github.com/users/pawelkopka/received_events - repos_url: https://api.github.com/users/pawelkopka/repos - site_admin: false - starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions - type: User - url: https://api.github.com/users/pawelkopka - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/eliskasl/received_events - repos_url: https://api.github.com/users/eliskasl/repos - 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 assignees: - - avatar_url: https://avatars3.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} + - 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/eliskasl - id: 1866652 - login: eliskasl - node_id: MDQ6VXNlcjE4NjY2NTI= - organizations_url: https://api.github.com/users/eliskasl/orgs - received_events_url: https://api.github.com/users/eliskasl/received_events - repos_url: https://api.github.com/users/eliskasl/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/eliskasl/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/eliskasl/subscriptions + 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/eliskasl - author_association: MEMBER - body: "https://github.com/PyGithub/PyGithub/pull/1135 is now merged\r\n\ - \r\nUse the code above to initiate GitHubService, related code (which\ - \ we are using in the meantime):\r\n\r\npretty much drop this:\r\nhttps://github.com/packit-service/ogr/blob/253e93bc87c079d0cd8f3dc87fc5e11f5078e53b/ogr/services/github_tweak.py#L11\r\ - \n\r\nUse the newly added functionality in pygithub here:\r\nhttps://github.com/packit-service/ogr/blob/5729e29cb4e5bea7eb6ed68e1c573ca7f2d86051/ogr/factory.py#L142\r\ - \n\r\nAlso please write a test case for this." - closed_at: '2019-11-20T15:17:22Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/270/comments - created_at: '2019-06-20T09:29:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/270/events - html_url: https://github.com/packit/ogr/issues/270 - id: 521607861 + url: https://api.github.com/users/mfocko + author_association: COLLABORATOR + body: "Based on [Github API doc](https://developer.github.com/v3/pulls/#labels-assignees-and-milestones):\r\ + \n>Every pull request is an issue, but not every issue is a pull request.\r\ + \n\r\nTherefore, in the case of Github, functions as `get_issue_list`,\ + \ `get_issue_info` etc. are working also with Pull Requests and behavior\ + \ isn't tested.\r\n\r\nWe should get rid of Pull Requests in functions\ + \ working with Issues. Pagure doesn't have this problem. \r\n\r\n--------------\r\ + \n@lachmanfrantisek added:\r\n\r\nTo be able to be compatible with other\ + \ git forges, let's differentiate between issues and pull-requests.\ + \ (And do not allow working with GitHub issues, that are actually pull-requests.\ + \ Issues and pull-requests are distinct sets.)\r\n\r\nAC:\r\n\r\n- [\ + \ ] Go through the issue related code in `GithubProject` and check if\ + \ it does not return any PullRequest.\r\n- [ ] Create test cases for\ + \ that.\r\n" + closed_at: '2019-09-26T09:12:11Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/107/comments + created_at: '2019-07-10T11:56:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/107/events + html_url: https://github.com/packit/ogr/issues/107 + id: 466266403 labels: - color: '000000' default: false @@ -92830,6 +121053,20 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug - color: 7057ff default: false description: Good for newcomers @@ -92837,359 +121074,151 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/270/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1MjE2MDc4NjE= - number: 270 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'get installation ID: use code from pygithub once a new release - is available' - updated_at: '2019-11-20T15:17:22Z' - url: https://api.github.com/repos/packit/ogr/issues/270 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "After PR(https://github.com/PyGithub/PyGithub/pull/1135) merged\ - \ github_tweak can be remove and use get_installation from PyGithub.\r\ - \n\r\nCloses #178" - closed_at: '2019-11-19T08:51:59Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/277/comments - created_at: '2019-11-18T14:11:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/277/events - html_url: https://github.com/packit/ogr/pull/277 - id: 524392477 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/277/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQyMTc1NDg2 - number: 277 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/277.diff - html_url: https://github.com/packit/ogr/pull/277 - patch_url: https://github.com/packit/ogr/pull/277.patch - url: https://api.github.com/repos/packit/ogr/pulls/277 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Remove github_tweak to use upstream github function - updated_at: '2019-11-19T08:51:59Z' - url: https://api.github.com/repos/packit/ogr/issues/277 - user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 - events_url: https://api.github.com/users/pawelkopka/events{/privacy} - followers_url: https://api.github.com/users/pawelkopka/followers - following_url: https://api.github.com/users/pawelkopka/following{/other_user} - gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/pawelkopka - id: 17784034 - login: pawelkopka - node_id: MDQ6VXNlcjE3Nzg0MDM0 - organizations_url: https://api.github.com/users/pawelkopka/orgs - received_events_url: https://api.github.com/users/pawelkopka/received_events - repos_url: https://api.github.com/users/pawelkopka/repos - site_admin: false - starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions - type: User - url: https://api.github.com/users/pawelkopka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-11-18T12:45:03Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/275/comments - created_at: '2019-11-14T11:29:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/275/events - html_url: https://github.com/packit/ogr/pull/275 - id: 522798569 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/275/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQwOTI0NzU4 - number: 275 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/275.diff - html_url: https://github.com/packit/ogr/pull/275 - patch_url: https://github.com/packit/ogr/pull/275.patch - url: https://api.github.com/repos/packit/ogr/pulls/275 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: temporary integration test method PullRequest._pr_close_temp() - removed - updated_at: '2019-11-18T13:00:09Z' - url: https://api.github.com/repos/packit/ogr/issues/275 - user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos - site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '#250 ' - closed_at: '2019-11-14T08:21:22Z' - comments: 28 - comments_url: https://api.github.com/repos/packit/ogr/issues/269/comments - created_at: '2019-11-10T21:17:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/269/events - html_url: https://github.com/packit/ogr/pull/269 - id: 520658857 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/269/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM5MTkxOTQw - number: 269 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/269.diff - html_url: https://github.com/packit/ogr/pull/269 - patch_url: https://github.com/packit/ogr/pull/269.patch - url: https://api.github.com/repos/packit/ogr/pulls/269 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: github_pr_create_rework_250 - updated_at: '2019-11-14T10:46:21Z' - url: https://api.github.com/repos/packit/ogr/issues/269 - user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos - site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\r\n\r\ni have implemented GithubProject.pr_close(). integration\ - \ test included. Working on unit test." - closed_at: '2019-11-14T10:10:01Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/273/comments - created_at: '2019-11-13T20:19:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/273/events - html_url: https://github.com/packit/ogr/pull/273 - id: 522450593 - labels: - - color: 0e8a16 + - color: 42e529 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/273/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/107/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQwNjQ5Mzc2 - number: 273 + node_id: MDU6SXNzdWU0NjYyNjY0MDM= + number: 107 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/273.diff - html_url: https://github.com/packit/ogr/pull/273 - patch_url: https://github.com/packit/ogr/pull/273.patch - url: https://api.github.com/repos/packit/ogr/pulls/273 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: implement GithubProject.pr_close() - updated_at: '2019-11-14T10:10:01Z' - url: https://api.github.com/repos/packit/ogr/issues/273 + title: Remove PullRequests from list of Github Issues. + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/107 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/sakalosj + url: https://api.github.com/users/marusinm - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Fix the path to the packit tests.' - closed_at: '2019-11-13T21:58:53Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/272/comments - created_at: '2019-11-13T15:23:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/272/events - html_url: https://github.com/packit/ogr/pull/272 - id: 522292170 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/272/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQwNTE5Mjg0 - number: 272 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/272.diff - html_url: https://github.com/packit/ogr/pull/272 - patch_url: https://github.com/packit/ogr/pull/272.patch - url: https://api.github.com/repos/packit/ogr/pulls/272 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Fix ogr rev dep tests - updated_at: '2019-11-13T21:58:57Z' - url: https://api.github.com/repos/packit/ogr/issues/272 - user: - avatar_url: https://avatars1.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} + assignee: + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/mfocko + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: MEMBER - body: "- Use requre-purge to unify the dates and tags in response files.\r\ - \n\r\n\r\nTODO:\r\n\r\n- [x] add to pre-commit and run on all changed\ - \ yaml files (pre-commit hook created in the requre repo)\r\n- [x] check\ - \ other possible values to purge (defined in the [requre pre-commit-hook\ - \ config](https://github.com/packit-service/requre/blob/master/.pre-commit-hooks.yaml))\r\ - \n- [x] Makefile target running cleanup on all files." - closed_at: '2019-11-12T07:51:34Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/266/comments - created_at: '2019-11-06T09:59:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/266/events - html_url: https://github.com/packit/ogr/pull/266 - id: 518363112 + body: "```python\r\n def project_create(self, repo: str, namespace:\ + \ str = None) -> \"PagureProject\":\r\n pass\r\n```\r\n\r\nAPI\ + \ documentation:\r\nhttps://pagure.io/api/0/#projects\r\n\r\nAC:\r\n\ + \r\n- [ ] implement the method in `PagureService`\r\n- [ ] create at\ + \ least two tests for that (with and without specifying `namespace`)" + closed_at: '2019-10-15T07:33:19Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/204/comments + created_at: '2019-09-18T09:09:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/204/events + html_url: https://github.com/packit/ogr/issues/204 + id: 495092331 labels: - - color: 0e8a16 + - color: be8fd8 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/266/labels{/name} + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/204/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM3MjcwODQ5 - number: 266 + node_id: MDU6SXNzdWU0OTUwOTIzMzE= + number: 204 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/266.diff - html_url: https://github.com/packit/ogr/pull/266 - patch_url: https://github.com/packit/ogr/pull/266.patch - url: https://api.github.com/repos/packit/ogr/pulls/266 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Requre purge - updated_at: '2019-11-12T08:05:45Z' - url: https://api.github.com/repos/packit/ogr/issues/266 + title: 'Implement Pagure method for create_project ' + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/204 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -93208,43 +121237,143 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: MEMBER - body: '- Tweak the stale-bot config.' - closed_at: '2019-11-11T13:51:55Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/268/comments - created_at: '2019-11-06T13:57:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/268/events - html_url: https://github.com/packit/ogr/pull/268 - id: 518489380 + body: "In abstract class `GitProject`, we have the following method:\r\ + \n\r\n```python\r\n def get_issue_comments(\r\n self, issue_id,\ + \ filter_regex: str = None, reverse: bool = False\r\n ) -> List[\"\ + IssueComment\"]:\r\n \"\"\"\r\n Get list of Issue comments.\r\ + \n\r\n :param issue_id: int\r\n :param filter_regex: filter\ + \ the comments' content with re.search\r\n :param reverse: reverse\ + \ order of comments\r\n :return: [IssueComment]\r\n \"\ + \"\"\r\n raise NotImplementedError()\r\n```\r\n\r\nThis issue\ + \ is not implemented in `GithubProject`, but the real implementation\ + \ should be in the `_get_all_issue_comments`.\r\n\r\n```python\r\n \ + \ def _get_all_issue_comments(self, issue_id: int) -> List[IssueComment]:\r\ + \n issue = self.github_repo.get_pull(number=issue_id)\r\n \ + \ return [\r\n self._issuecomment_from_github_object(raw_comment)\r\ + \n for raw_comment in issue.get_issue_comments()\r\n \ + \ ]\r\n```\r\n\r\nAC:\r\n- [ ] Github/Pagure\r\n - [ ] implement\ + \ the `get_issue_comments` with the code `_get_all_issue_comments` (There\ + \ are some missing parameters.)\r\n - [ ] remove the `_get_all_issue_comments`\ + \ and change its usage to `get_issue_comments`\r\n - [ ] make sure\ + \ it works as expected\r\n- [ ] Implement the `get_issue_comments` in\ + \ `GitlabProject`\r\n- [ ] create test(s) for that if they are not already\ + \ there" + closed_at: '2019-10-03T14:35:15Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/205/comments + created_at: '2019-09-18T09:19:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/205/events + html_url: https://github.com/packit/ogr/issues/205 + id: 495098643 labels: - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/268/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/205/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM3Mzc0NzAw - number: 268 + node_id: MDU6SXNzdWU0OTUwOTg2NDM= + number: 205 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/268.diff - html_url: https://github.com/packit/ogr/pull/268 - patch_url: https://github.com/packit/ogr/pull/268.patch - url: https://api.github.com/repos/packit/ogr/pulls/268 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Stale-bot config update - updated_at: '2019-11-11T14:11:04Z' - url: https://api.github.com/repos/packit/ogr/issues/268 + title: Fix/implement get_issue_comments + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/205 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -93263,366 +121392,264 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "they have a file called ogr.py:\r\n```\r\n$ rpm -ql python3-gdal\ - \ | grep ogr\r\n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.opt-1.pyc\r\ - \n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.pyc\r\ - \n/usr/lib64/python3.7/site-packages/ogr.py\r\n/usr/lib64/python3.7/site-packages/osgeo/__pycache__/ogr.cpython-37.opt-1.pyc\r\ - \n/usr/lib64/python3.7/site-packages/osgeo/__pycache__/ogr.cpython-37.pyc\r\ - \n/usr/lib64/python3.7/site-packages/osgeo/_ogr.cpython-37m-x86_64-linux-gnu.so\r\ - \n/usr/lib64/python3.7/site-packages/osgeo/ogr.py\r\n/usr/share/doc/python3-gdal/samples/gcps2ogr.py\r\ - \n/usr/share/doc/python3-gdal/samples/ogr2ogr.py\r\n/usr/share/doc/python3-gdal/samples/ogr2vrt.py\r\ - \n/usr/share/doc/python3-gdal/samples/ogr_build_junction_table.py\r\n\ - /usr/share/doc/python3-gdal/samples/ogr_dispatch.py\r\n/usr/share/doc/python3-gdal/samples/ogr_layer_algebra.py\r\ - \n/usr/share/doc/python3-gdal/samples/ogrinfo.py\r\n/usr/share/doc/python3-gdal/samples/ogrupdate.py\r\ - \n```\r\n\r\nSo now that I installed python3-gdal, I can't use ogr anymore:\r\ - \n```\r\n$ ipython3\r\nPython 3.7.4 (default, Jul 9 2019, 16:32:37)\ - \ \r\nType 'copyright', 'credits' or 'license' for more information\r\ - \nIPython 7.2.0 -- An enhanced Interactive Python. Type '?' for help.\r\ - \nfrException reporting mode: Verbose\r\n\r\nIn [1]: from ogr import\ - \ services \r\n---------------------------------------------------------------------------\r\ - \nImportError Traceback (most recent call\ - \ last)\r\n in \r\n----> 1 from\ - \ ogr import services\r\n global ogr = undefined\r\n global\ - \ services = undefined\r\n\r\nImportError: cannot import name 'services'\ - \ from 'ogr' (/usr/lib64/python3.7/site-packages/ogr.py)\r\n```\r\n\r\ - \nNo idea how to fix this.\r\n\r\nWTF\r\n" - closed_at: '2019-11-11T14:00:21Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/139/comments - created_at: '2019-07-31T09:54:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/139/events - html_url: https://github.com/packit/ogr/issues/139 - id: 475047644 - labels: - - color: bc4812 - default: false - description: We are blocked! - id: 1432779229 - name: blocker - node_id: MDU6TGFiZWwxNDMyNzc5MjI5 - url: https://api.github.com/repos/packit/ogr/labels/blocker - labels_url: https://api.github.com/repos/packit/ogr/issues/139/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NzUwNDc2NDQ= - number: 139 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: installing python3-gdal breaks ogr - updated_at: '2019-11-11T14:00:21Z' - url: https://api.github.com/repos/packit/ogr/issues/139 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: 'Aims to remove any strict MyPy errors from the utils.py file, relating - to ticket #251 ' - closed_at: '2019-11-05T07:49:43Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/259/comments - created_at: '2019-10-26T20:18:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/259/events - html_url: https://github.com/packit/ogr/pull/259 - id: 512880678 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/259/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzk4MjAw - number: 259 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/259.diff - html_url: https://github.com/packit/ogr/pull/259 - patch_url: https://github.com/packit/ogr/pull/259.patch - url: https://api.github.com/repos/packit/ogr/pulls/259 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: improve typehint coverage in utils.py - updated_at: '2019-11-07T07:16:34Z' - url: https://api.github.com/repos/packit/ogr/issues/259 - user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + assignee: + 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/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + 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/svenharris - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=9: - - metadata: - latency: 0.6051633358001709 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: Make it possible to clear check status on PR (optionally commit). - closed_at: '2019-11-06T11:37:33Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/267/comments - created_at: '2019-11-06T11:36:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/267/events - html_url: https://github.com/packit/ogr/issues/267 - id: 518415970 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/267/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1MTg0MTU5NzA= - number: 267 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Support for clearing checks - updated_at: '2019-11-06T11:37:33Z' - url: https://api.github.com/repos/packit/ogr/issues/267 - user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + url: https://api.github.com/users/mfocko + assignees: + - 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: 'As part of issue #251 update type hinting within the abstract.py - file such that there are no mypy errors for that file' - closed_at: '2019-11-05T11:05:30Z' - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/258/comments - created_at: '2019-10-26T19:26:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/258/events - html_url: https://github.com/packit/ogr/pull/258 - id: 512875119 + url: https://api.github.com/users/mfocko + author_association: MEMBER + body: "1. Property `full_repo_name` is implemented both in `BaseGitProject`\ + \ and `GitProject`\r\n1. `full_repo_name` doesn't handle non-existing\ + \ namespace (in case of Pagure projects)" + closed_at: '2019-09-25T05:20:03Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/218/comments + created_at: '2019-09-24T09:15:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/218/events + html_url: https://github.com/packit/ogr/issues/218 + id: 497561711 labels: - - color: 0e8a16 + - color: 1d76db default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/258/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/218/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzk0NDEy - number: 258 + node_id: MDU6SXNzdWU0OTc1NjE3MTE= + number: 218 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/258.diff - html_url: https://github.com/packit/ogr/pull/258 - patch_url: https://github.com/packit/ogr/pull/258.patch - url: https://api.github.com/repos/packit/ogr/pulls/258 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve type hint coverage in abstract.py - updated_at: '2019-11-05T12:37:31Z' - url: https://api.github.com/repos/packit/ogr/issues/258 + title: GitProject.full_repo_name() and Pagure implementation + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/218 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + 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/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + 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/svenharris + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "Fixes #165\r\n\r\n*edited by @lachmanfrantisek to close that issue\ - \ on merging*" - closed_at: '2019-11-04T13:59:19Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/166/comments - created_at: '2019-09-06T01:43:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/166/events - html_url: https://github.com/packit/ogr/pull/166 - id: 490086601 + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "Split service implementations into separate directories, module\ + \ for each class\r\n\r\n- [x] Directory for each service\r\n- [x] GitHub\r\ + \n - [x] split implementation into multiple modules\r\n - [x] add\ + \ `__init__.py` to make imports compatible\r\n - [x] update tests,\ + \ since they store \"full path\" of caller\r\n- [x] GitLab\r\n - [x]\ + \ split implementation into multiple modules\r\n - [x] add `__init__.py`\ + \ to make imports compatible\r\n - [x] update tests, since they store\ + \ \"full path\" of caller\r\n- [x] Pagure\r\n - [x] split implementation\ + \ into multiple modules\r\n - [x] add `__init__.py` to make imports\ + \ compatible\r\n - [x] update tests, since they store \"full path\"\ + \ of caller\r\n\r\nRelated to #86" + closed_at: '2019-10-11T06:36:16Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/232/comments + created_at: '2019-10-05T09:52:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/232/events + html_url: https://github.com/packit/ogr/issues/232 + id: 502942365 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - labels_url: https://api.github.com/repos/packit/ogr/issues/166/labels{/name} + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/232/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE0NzYyMzA5 - number: 166 + node_id: MDU6SXNzdWU1MDI5NDIzNjU= + number: 232 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/166.diff - html_url: https://github.com/packit/ogr/pull/166 - patch_url: https://github.com/packit/ogr/pull/166.patch - url: https://api.github.com/repos/packit/ogr/pulls/166 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update and link the contribution guide in README - updated_at: '2019-11-04T13:59:19Z' - url: https://api.github.com/repos/packit/ogr/issues/166 + title: Prepare file structure for object-specific methods (#86) + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/232 user: - avatar_url: https://avatars2.githubusercontent.com/u/19755484?v=4 - events_url: https://api.github.com/users/RomaneGreen/events{/privacy} - followers_url: https://api.github.com/users/RomaneGreen/followers - following_url: https://api.github.com/users/RomaneGreen/following{/other_user} - gists_url: https://api.github.com/users/RomaneGreen/gists{/gist_id} + 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/RomaneGreen - id: 19755484 - login: RomaneGreen - node_id: MDQ6VXNlcjE5NzU1NDg0 - organizations_url: https://api.github.com/users/RomaneGreen/orgs - received_events_url: https://api.github.com/users/RomaneGreen/received_events - repos_url: https://api.github.com/users/RomaneGreen/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/RomaneGreen/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/RomaneGreen/subscriptions + 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/RomaneGreen + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Add link to contribution guide to README. - - - Rebased version of #166.' - closed_at: '2019-11-04T13:56:09Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/265/comments - created_at: '2019-11-04T12:48:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/265/events - html_url: https://github.com/packit/ogr/pull/265 - id: 517129326 + body: '- Add reverse-dependence-test of packit.' + closed_at: '2019-10-10T14:18:42Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/241/comments + created_at: '2019-10-10T07:36:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/241/events + html_url: https://github.com/packit/ogr/pull/241 + id: 505092361 labels: - color: 0e8a16 default: false @@ -93631,24 +121658,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/265/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/241/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM2MjU4MjI3 - number: 265 + node_id: MDExOlB1bGxSZXF1ZXN0MzI2NTkyODk0 + number: 241 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/265.diff - html_url: https://github.com/packit/ogr/pull/265 - patch_url: https://github.com/packit/ogr/pull/265.patch - url: https://api.github.com/repos/packit/ogr/pulls/265 + diff_url: https://github.com/packit/ogr/pull/241.diff + html_url: https://github.com/packit/ogr/pull/241 + patch_url: https://github.com/packit/ogr/pull/241.patch + url: https://api.github.com/repos/packit/ogr/pulls/241 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Link to contribution guide (rebased version of #166)' - updated_at: '2019-11-04T13:59:00Z' - url: https://api.github.com/repos/packit/ogr/issues/265 + title: Reverse dependency testing of packit + updated_at: '2019-10-10T15:14:48Z' + url: https://api.github.com/repos/packit/ogr/issues/241 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -93669,63 +121696,15 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: NONE + author_association: CONTRIBUTOR body: '' - closed_at: '2019-11-04T13:58:31Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/244/comments - created_at: '2019-10-12T13:08:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/244/events - html_url: https://github.com/packit/ogr/pull/244 - id: 506185012 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/244/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI3NDYzMzkw - number: 244 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/244.diff - html_url: https://github.com/packit/ogr/pull/244 - patch_url: https://github.com/packit/ogr/pull/244.patch - url: https://api.github.com/repos/packit/ogr/pulls/244 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add the add_to_collaborators method to abstract.GitProject - updated_at: '2019-11-04T13:58:31Z' - url: https://api.github.com/repos/packit/ogr/issues/244 - user: - avatar_url: https://avatars1.githubusercontent.com/u/23198051?v=4 - events_url: https://api.github.com/users/HECTOPK/events{/privacy} - followers_url: https://api.github.com/users/HECTOPK/followers - following_url: https://api.github.com/users/HECTOPK/following{/other_user} - gists_url: https://api.github.com/users/HECTOPK/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/HECTOPK - id: 23198051 - login: HECTOPK - node_id: MDQ6VXNlcjIzMTk4MDUx - organizations_url: https://api.github.com/users/HECTOPK/orgs - received_events_url: https://api.github.com/users/HECTOPK/received_events - repos_url: https://api.github.com/users/HECTOPK/repos - site_admin: false - starred_url: https://api.github.com/users/HECTOPK/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/HECTOPK/subscriptions - type: User - url: https://api.github.com/users/HECTOPK - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "The used config is the example one from the app page:\r\nhttps://github.com/apps/stale/" - closed_at: '2019-11-01T10:47:23Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/262/comments - created_at: '2019-10-31T15:18:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/262/events - html_url: https://github.com/packit/ogr/pull/262 - id: 515517121 + closed_at: '2019-10-09T09:50:00Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/239/comments + created_at: '2019-10-09T09:26:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/239/events + html_url: https://github.com/packit/ogr/pull/239 + id: 504525592 labels: - color: 0e8a16 default: false @@ -93734,113 +121713,102 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/262/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/239/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM0OTY3Mzcy - number: 262 + node_id: MDExOlB1bGxSZXF1ZXN0MzI2MTU0MzU4 + number: 239 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/262.diff - html_url: https://github.com/packit/ogr/pull/262 - patch_url: https://github.com/packit/ogr/pull/262.patch - url: https://api.github.com/repos/packit/ogr/pulls/262 + diff_url: https://github.com/packit/ogr/pull/239.diff + html_url: https://github.com/packit/ogr/pull/239 + patch_url: https://github.com/packit/ogr/pull/239.patch + url: https://api.github.com/repos/packit/ogr/pulls/239 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add config for stale bot - updated_at: '2019-11-01T10:48:02Z' - url: https://api.github.com/repos/packit/ogr/issues/262 + title: prepare for rev dependency testing, set project dir in case it + not come from zuul + updated_at: '2019-10-09T09:50:00Z' + url: https://api.github.com/repos/packit/ogr/issues/239 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: 'This pull request intends to fix the strict mypy errors in the - exceptions.py file as part of #251. Not sure if the types within the - dictionary (str, str) are consistent with how this is used as couldn''t - see any instances in the codebase where this error is raised with the - kwargs filled in.' - closed_at: '2019-10-31T19:36:13Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/256/comments - created_at: '2019-10-26T18:24:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/256/events - html_url: https://github.com/packit/ogr/pull/256 - id: 512868698 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/256/labels{/name} + body: '' + closed_at: '2019-10-09T08:41:00Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/238/comments + created_at: '2019-10-09T07:06:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/238/events + html_url: https://github.com/packit/ogr/pull/238 + id: 504458794 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/238/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzg5ODUy - number: 256 + node_id: MDExOlB1bGxSZXF1ZXN0MzI2MTAxNzE3 + number: 238 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/256.diff - html_url: https://github.com/packit/ogr/pull/256 - patch_url: https://github.com/packit/ogr/pull/256.patch - url: https://api.github.com/repos/packit/ogr/pulls/256 + diff_url: https://github.com/packit/ogr/pull/238.diff + html_url: https://github.com/packit/ogr/pull/238 + patch_url: https://github.com/packit/ogr/pull/238.patch + url: https://api.github.com/repos/packit/ogr/pulls/238 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve typehints for exceptions.py - updated_at: '2019-10-31T19:36:13Z' - url: https://api.github.com/repos/packit/ogr/issues/256 + title: remove all stuff what were moved to requre project + updated_at: '2019-10-09T08:41:00Z' + url: https://api.github.com/repos/packit/ogr/issues/238 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/svenharris + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: 'As part of issue #251 improve the typehinting within the repo. - This pull request aims to fix the type hints in the parsing.py file.' - closed_at: '2019-10-31T17:38:33Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/257/comments - created_at: '2019-10-26T18:31:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/257/events - html_url: https://github.com/packit/ogr/pull/257 - id: 512869415 + body: '' + closed_at: '2019-10-07T14:04:40Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/235/comments + created_at: '2019-10-07T11:19:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/235/events + html_url: https://github.com/packit/ogr/pull/235 + id: 503387838 labels: - color: 0e8a16 default: false @@ -93849,74 +121817,55 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/257/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/235/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzkwMzc2 - number: 257 + node_id: MDExOlB1bGxSZXF1ZXN0MzI1MjUwMzkx + number: 235 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/257.diff - html_url: https://github.com/packit/ogr/pull/257 - patch_url: https://github.com/packit/ogr/pull/257.patch - url: https://api.github.com/repos/packit/ogr/pulls/257 + diff_url: https://github.com/packit/ogr/pull/235.diff + html_url: https://github.com/packit/ogr/pull/235 + patch_url: https://github.com/packit/ogr/pull/235.patch + url: https://api.github.com/repos/packit/ogr/pulls/235 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve typehints for parsing.py - updated_at: '2019-10-31T18:15:49Z' - url: https://api.github.com/repos/packit/ogr/issues/257 + title: Add Developer Certificate of Origin + updated_at: '2019-10-07T14:04:41Z' + url: https://api.github.com/repos/packit/ogr/issues/235 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + 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/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + 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/svenharris + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Part of #86\r\n\r\nStructure of classes:\r\n\r\n* _Comment_\r\n\ - \ * _IssueComment_\r\n * GithubIssueComment\r\n * GitlabIssueComment\r\ - \n * PagureIssueComment\r\n * _PRComment_\r\n * GithubPRComment\r\ - \n * GitlabPRComment\r\n * PagurePRComment\r\n\r\nsuggested by\ - \ @lachmanfrantisek in #228\r\n\r\n* [x] Create a `Comment` abstract\ - \ class\r\n* [x] Implement base class for `Comment`\r\n* [x] Implementation\ - \ of services\r\n * [x] Github\r\n * [x] Gitlab\r\n * [x] Pagure\r\ - \n* [x] Update interface to include function for returning `Comment`\ - \ object\r\n * [x] Deprecate functions (`*Project`) manipulating with\ - \ comments (#121)\r\n* [ ] Remove `Comment = TypeVar('Comment', IssueComment,\ - \ PRComment)`\r\n* [ ] Make service-specific `__str__` to be compatible\ - \ with parent's constructor\r\n* [ ] Decide return types for services\ - \ `PRComment` vs `GithubPRComment`\r\n\r\nMaybe the implementation for\ - \ specific service could take the `raw_comment` in constructor?" - closed_at: '2019-10-23T13:09:59Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/230/comments - created_at: '2019-10-01T17:40:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/230/events - html_url: https://github.com/packit/ogr/issues/230 - id: 501044775 + body: Gitlab tests import `PRStatus` and `IssueStatus` from `ogr.services.gitlab` + instead of `ogr.abstract` + closed_at: '2019-10-07T11:02:37Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/233/comments + created_at: '2019-10-05T15:21:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/233/events + html_url: https://github.com/packit/ogr/issues/233 + id: 502976447 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -93924,47 +121873,47 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 + - color: be8fd8 default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: c2ef58 + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 8be567 + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9d0c4 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/230/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/233/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDEwNDQ3NzU= - number: 230 + node_id: MDU6SXNzdWU1MDI5NzY0NDc= + number: 233 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Factor out Comment - updated_at: '2019-10-23T13:09:59Z' - url: https://api.github.com/repos/packit/ogr/issues/230 + title: Gitlab tests imports + updated_at: '2019-10-07T11:02:38Z' + url: https://api.github.com/repos/packit/ogr/issues/233 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -93985,63 +121934,65 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'I have added # type: ignore at the beginning of each python file.' - closed_at: '2019-10-23T07:32:14Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/252/comments - created_at: '2019-10-22T19:08:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/252/events - html_url: https://github.com/packit/ogr/pull/252 - id: 510850860 + author_association: CONTRIBUTOR + body: "replace storing requests objects by ``requre`` project.\r\n\r\n\ + - [x] regenerate test data for ogr\r\n- [x] remove old functionality\ + \ after packit will be fixed as well, not now in this PR\r\n\r\n" + closed_at: '2019-10-07T10:42:46Z' + comments: 17 + comments_url: https://api.github.com/repos/packit/ogr/issues/201/comments + created_at: '2019-09-17T09:04:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/201/events + html_url: https://github.com/packit/ogr/pull/201 + id: 494495662 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/252/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/201/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMxMTUyNDg0 - number: 252 + node_id: MDExOlB1bGxSZXF1ZXN0MzE4MjM0OTky + number: 201 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/252.diff - html_url: https://github.com/packit/ogr/pull/252 - patch_url: https://github.com/packit/ogr/pull/252.patch - url: https://api.github.com/repos/packit/ogr/pulls/252 + diff_url: https://github.com/packit/ogr/pull/201.diff + html_url: https://github.com/packit/ogr/pull/201 + patch_url: https://github.com/packit/ogr/pull/201.patch + url: https://api.github.com/repos/packit/ogr/pulls/201 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Added # type: ignore ' - updated_at: '2019-10-23T07:32:14Z' - url: https://api.github.com/repos/packit/ogr/issues/252 + title: use requre for storing data for tests + updated_at: '2019-10-07T10:42:47Z' + url: https://api.github.com/repos/packit/ogr/issues/201 user: - avatar_url: https://avatars2.githubusercontent.com/u/42462649?v=4 - events_url: https://api.github.com/users/maniis/events{/privacy} - followers_url: https://api.github.com/users/maniis/followers - following_url: https://api.github.com/users/maniis/following{/other_user} - gists_url: https://api.github.com/users/maniis/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/maniis - id: 42462649 - login: maniis - node_id: MDQ6VXNlcjQyNDYyNjQ5 - organizations_url: https://api.github.com/users/maniis/orgs - received_events_url: https://api.github.com/users/maniis/received_events - repos_url: https://api.github.com/users/maniis/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/maniis/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/maniis/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/maniis + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Use new format for requre.' - closed_at: '2019-10-21T14:17:11Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/246/comments - created_at: '2019-10-15T10:46:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/246/events - html_url: https://github.com/packit/ogr/pull/246 - id: 507162669 + body: '- use requre for storing data for tests.' + closed_at: '2019-10-04T08:09:13Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/231/comments + created_at: '2019-10-03T08:51:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/231/events + html_url: https://github.com/packit/ogr/pull/231 + id: 501935145 labels: - color: 0e8a16 default: false @@ -94050,24 +122001,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/246/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/231/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI4MjAyNTY5 - number: 246 + node_id: MDExOlB1bGxSZXF1ZXN0MzI0MTEwMzY5 + number: 231 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/246.diff - html_url: https://github.com/packit/ogr/pull/246 - patch_url: https://github.com/packit/ogr/pull/246.patch - url: https://api.github.com/repos/packit/ogr/pulls/246 + diff_url: https://github.com/packit/ogr/pull/231.diff + html_url: https://github.com/packit/ogr/pull/231 + patch_url: https://github.com/packit/ogr/pull/231.patch + url: https://api.github.com/repos/packit/ogr/pulls/231 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Use new requre api - updated_at: '2019-10-21T14:22:24Z' - url: https://api.github.com/repos/packit/ogr/issues/246 + title: 'Use requre (rebased #201)' + updated_at: '2019-10-04T08:24:34Z' + url: https://api.github.com/repos/packit/ogr/issues/231 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -94089,36 +122040,49 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Test for https://github.com/packit-service/packit-service/pull/164 - - - - should pass' - closed_at: '2019-10-21T13:52:54Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/247/comments - created_at: '2019-10-16T10:40:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/247/events - html_url: https://github.com/packit/ogr/pull/247 - id: 507767488 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/247/labels{/name} + body: "This property violates our rule that only methods with `get` can\ + \ touch the real servers.\r\n\r\nWe can:\r\n\r\n- Revert the change\ + \ and stay with guessing.\r\n- Change the property to `get_full_repo_name`\ + \ (needs deprecation to original property)\r\n- Change our mind and\ + \ do not be strict about that. (And use properties instead of methods\ + \ for objects.)\r\n - This will bring nicer user-experience, but\ + \ maybe some confusion.\r\n - Maybe, we can leave only `__init__`\ + \ offline?\r\n\r\n" + closed_at: '2019-10-02T09:17:18Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/220/comments + created_at: '2019-09-25T06:13:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/220/events + html_url: https://github.com/packit/ogr/issues/220 + id: 498070461 + labels: + - color: ff9990 + default: false + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/220/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI4NjkwNjU1 - number: 247 + node_id: MDU6SXNzdWU0OTgwNzA0NjE= + number: 220 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/247.diff - html_url: https://github.com/packit/ogr/pull/247 - patch_url: https://github.com/packit/ogr/pull/247.patch - url: https://api.github.com/repos/packit/ogr/pulls/247 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add rebase check to pre-commit (pass) - updated_at: '2019-10-21T13:53:00Z' - url: https://api.github.com/repos/packit/ogr/issues/247 + title: PagureProject.full_repo_name touches service + updated_at: '2019-10-02T09:17:18Z' + url: https://api.github.com/repos/packit/ogr/issues/220 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -94139,121 +122103,120 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Test for https://github.com/packit-service/packit-service/pull/164 - - - - should fail' - closed_at: '2019-10-21T13:10:47Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/248/comments - created_at: '2019-10-16T10:41:07Z' - events_url: https://api.github.com/repos/packit/ogr/issues/248/events - html_url: https://github.com/packit/ogr/pull/248 - id: 507767766 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Replace numbers by access\ + \ constants\n* suggested changes added\n* methods for permissions\n\ + * (#107) Rename test\n* (#107) Fix type and formatting\n* (#107) Add\ + \ tests for querying PRs in issue-related functions (GitHub)\n* (#107)\ + \ Raise exception if querying PR using issue-related function\n* (#107)\ + \ Fix typo in Github._get_all_issue_comments\n* (#107) Update test_data\ + \ for Github's issues\n* (#107) Filter out pull requests from issues\ + \ (GitHub)\n* Do not save links beteen values in response files\n* specified\ + \ return type\n* exceptions added\n* methods for pr and issue labels\n\ + * (#218) Remove checking if fork exists in test for full_repo_name\n\ + * (#218) Add tests for full_repo_name with namespace and fork\n* (#218)\ + \ Add tests for full_repo_name property\n* (#218) Override full_repo_name\ + \ in PagureProject\n* (#218) Remove full_repo_name implementation from\ + \ GitProject\n* Fix flake8 remarks\n* (#213) Modify PagureProject.get_web_url()\ + \ to use project info\n* (#213) Fix wrong property name in Gitlab.get_web_url()\ + \ test and add test_data\n* (#213) Fix Pagure's get_web_url()\n* (#213)\ + \ Update GitLab.get_web_url() to use repo object\n* (#213) Update GitHub.get_web_url()\ + \ to use repo object\n* Add tests for get_web_url\n* Add get_web_url\ + \ to GitHub, GitLab and Pagure\n* Add get_web_url to GitProject\n* Add\ + \ tests for set_commit_status method\n* Add trim parameter to set_commit_status\ + \ method\n* test changed\n* test added\n* response files added\n* methods\ + \ for commit status and commit comment\n* refactor\n* github method\ + \ for creating projects added\n* Document the tests that are problematic\ + \ when regenerating\n* Be consistent in instantiating services in tests\n\ + * Update GitHub response files and fix the tests\n* Fix get_email in\ + \ GitHub implementation\n* Update Pagure response files and fix the\ + \ tests\n* Use returned GitLab repo instance in GitlabService.project_create\n\ + * Remove Gitlab also from example\n* delete GitLab from README.md\n\ + * Quickstart example\n* Generate response-file for test_create_fork\ + \ with python_gitlab-1.11\n* WIP: forking methods\n* better tests\n\ + * pr close, merge methods\n* Implement service.project_create for GitLab\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.8.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-10-01T19:57:46Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/223/comments + created_at: '2019-09-26T11:11:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/223/events + html_url: https://github.com/packit/ogr/pull/223 + id: 498820056 labels: - - color: dd5f74 + - color: ededed default: false - description: Work in progress. - id: 1432779248 - name: do-not-merge - node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 - url: https://api.github.com/repos/packit/ogr/labels/do-not-merge - - color: e4e669 - default: true - description: This doesn't seem right. - id: 1160311267 - name: invalid - node_id: MDU6TGFiZWwxMTYwMzExMjY3 - url: https://api.github.com/repos/packit/ogr/labels/invalid - labels_url: https://api.github.com/repos/packit/ogr/issues/248/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/223/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI4NjkwODg5 - number: 248 + node_id: MDExOlB1bGxSZXF1ZXN0MzIxNjY2NjY0 + number: 223 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/248.diff - html_url: https://github.com/packit/ogr/pull/248 - patch_url: https://github.com/packit/ogr/pull/248.patch - url: https://api.github.com/repos/packit/ogr/pulls/248 + diff_url: https://github.com/packit/ogr/pull/223.diff + html_url: https://github.com/packit/ogr/pull/223 + patch_url: https://github.com/packit/ogr/pull/223.patch + url: https://api.github.com/repos/packit/ogr/pulls/223 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add rebase check to pre-commit (fail) - updated_at: '2019-10-21T13:10:51Z' - url: https://api.github.com/repos/packit/ogr/issues/248 + title: 0.8.0 release + updated_at: '2019-10-01T19:59:12Z' + url: https://api.github.com/repos/packit/ogr/issues/223 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "Add possibility to filter PR/issue comments by their author.\r\n\ - \r\n- [ ] Extend the methods of `GitProject` in `ogr/abstract.py`.\r\ - \n- [ ] Extend the `BaseGitProject` in `ogr/services/base.py` if needed.\r\ - \n- [ ] Implement the support both for PRs and issues. (Share as much\ - \ code as possible -- implementation and pr/issue)\r\n - [ ] github\r\ - \n - [ ] gitlab\r\n - [ ] pagure" - closed_at: '2019-10-15T10:49:50Z' + body: 'In `GithubProject` class there is identical implementation for + `who_can_close_issue` and `who_can_merge_pr`, is it intentional? Or + can we factor it out since it''s identical? ' + closed_at: '2019-09-30T11:40:39Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/240/comments - created_at: '2019-10-09T15:23:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/240/events - html_url: https://github.com/packit/ogr/issues/240 - id: 504724114 + comments_url: https://api.github.com/repos/packit/ogr/issues/224/comments + created_at: '2019-09-26T11:56:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/224/events + html_url: https://github.com/packit/ogr/issues/224 + id: 498839261 labels: - color: '000000' default: false @@ -94262,41 +122225,6 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: be8fd8 - default: false - description: Participate in https://hacktoberfest.digitalocean.com - id: 1592645945 - name: Hacktoberfest - node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 - url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -94304,58 +122232,26 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/240/labels{/name} + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/224/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDQ3MjQxMTQ= - number: 240 + node_id: MDU6SXNzdWU0OTg4MzkyNjE= + number: 224 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Filter comments by author - updated_at: '2019-10-15T11:03:47Z' - url: https://api.github.com/repos/packit/ogr/issues/240 + title: Identical implementation for collaborators (Github Project) + updated_at: '2019-09-30T11:40:39Z' + url: https://api.github.com/repos/packit/ogr/issues/224 user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -94373,169 +122269,131 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - author_association: COLLABORATOR - body: "Based on [Github API doc](https://developer.github.com/v3/pulls/#labels-assignees-and-milestones):\r\ - \n>Every pull request is an issue, but not every issue is a pull request.\r\ - \n\r\nTherefore, in the case of Github, functions as `get_issue_list`,\ - \ `get_issue_info` etc. are working also with Pull Requests and behavior\ - \ isn't tested.\r\n\r\nWe should get rid of Pull Requests in functions\ - \ working with Issues. Pagure doesn't have this problem. \r\n\r\n--------------\r\ - \n@lachmanfrantisek added:\r\n\r\nTo be able to be compatible with other\ - \ git forges, let's differentiate between issues and pull-requests.\ - \ (And do not allow working with GitHub issues, that are actually pull-requests.\ - \ Issues and pull-requests are distinct sets.)\r\n\r\nAC:\r\n\r\n- [\ - \ ] Go through the issue related code in `GithubProject` and check if\ - \ it does not return any PullRequest.\r\n- [ ] Create test cases for\ - \ that.\r\n" - closed_at: '2019-09-26T09:12:11Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/107/comments - created_at: '2019-07-10T11:56:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/107/events - html_url: https://github.com/packit/ogr/issues/107 - id: 466266403 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: The release time is now! + closed_at: '2019-09-26T11:11:51Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/222/comments + created_at: '2019-09-26T11:06:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/222/events + html_url: https://github.com/packit/ogr/issues/222 + id: 498817742 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/107/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/222/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjYyNjY0MDM= - number: 107 + node_id: MDU6SXNzdWU0OTg4MTc3NDI= + number: 222 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove PullRequests from list of Github Issues. - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/107 + title: new minor release + updated_at: '2019-09-26T11:11:51Z' + url: https://api.github.com/repos/packit/ogr/issues/222 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars0.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} + - 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "In abstract class `GitProject`, we have the following method:\r\ - \n\r\n```python\r\n def get_issue_comments(\r\n self, issue_id,\ - \ filter_regex: str = None, reverse: bool = False\r\n ) -> List[\"\ - IssueComment\"]:\r\n \"\"\"\r\n Get list of Issue comments.\r\ - \n\r\n :param issue_id: int\r\n :param filter_regex: filter\ - \ the comments' content with re.search\r\n :param reverse: reverse\ - \ order of comments\r\n :return: [IssueComment]\r\n \"\ - \"\"\r\n raise NotImplementedError()\r\n```\r\n\r\nThis issue\ - \ is not implemented in `GithubProject`, but the real implementation\ - \ should be in the `_get_all_issue_comments`.\r\n\r\n```python\r\n \ - \ def _get_all_issue_comments(self, issue_id: int) -> List[IssueComment]:\r\ - \n issue = self.github_repo.get_pull(number=issue_id)\r\n \ - \ return [\r\n self._issuecomment_from_github_object(raw_comment)\r\ - \n for raw_comment in issue.get_issue_comments()\r\n \ - \ ]\r\n```\r\n\r\nAC:\r\n- [ ] Github/Pagure\r\n - [ ] implement\ - \ the `get_issue_comments` with the code `_get_all_issue_comments` (There\ - \ are some missing parameters.)\r\n - [ ] remove the `_get_all_issue_comments`\ - \ and change its usage to `get_issue_comments`\r\n - [ ] make sure\ - \ it works as expected\r\n- [ ] Implement the `get_issue_comments` in\ - \ `GitlabProject`\r\n- [ ] create test(s) for that if they are not already\ - \ there" - closed_at: '2019-10-03T14:35:15Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/205/comments - created_at: '2019-09-18T09:19:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/205/events - html_url: https://github.com/packit/ogr/issues/205 - id: 495098643 + body: "Since we merged [the PR with the basic GitLab support](https://github.com/packit-service/ogr/pull/150)\ + \ is there still something missing?\r\n\r\n- [x] service mapping (#156\ + \ )\r\n- [x] fix the mix of new and old API (#167 )\r\n- [x] missing\ + \ methods:\r\n - [x] forking: https://github.com/packit-service/ogr/issues/168\r\ + \n - [x] owners and permissions: https://github.com/packit-service/ogr/issues/169\r\ + \n - [x] get_sha_from_tag: https://github.com/packit-service/ogr/issues/170\r\ + \n - [x] issue labels: https://github.com/packit-service/ogr/issues/171\r\ + \n - [x] commit comment/status: https://github.com/packit-service/ogr/issues/172\r\ + \n - [x] pr close/merge: https://github.com/packit-service/ogr/issues/173\r\ + \n - [x] PR labels: https://github.com/packit-service/ogr/issues/174\r\ + \n - [x] project info: https://github.com/packit-service/ogr/issues/175\r\ + \n - [x] latest release: https://github.com/packit-service/ogr/issues/176\r\ + \n\r\n" + closed_at: '2019-09-26T10:59:39Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/158/comments + created_at: '2019-08-15T15:29:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/158/events + html_url: https://github.com/packit/ogr/issues/158 + id: 481206920 labels: - - color: '000000' + - color: 134ac1 default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC - color: d93f0b default: false description: Related to GitLab implementation. @@ -94543,41 +122401,6 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: be8fd8 - default: false - description: Participate in https://hacktoberfest.digitalocean.com - id: 1592645945 - name: Hacktoberfest - node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 - url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -94585,19 +122408,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/205/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/158/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTUwOTg2NDM= - number: 205 + node_id: MDU6SXNzdWU0ODEyMDY5MjA= + number: 158 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix/implement get_issue_comments - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/205 + title: Missing features in GitLab implementation + updated_at: '2019-09-26T10:59:40Z' + url: https://api.github.com/repos/packit/ogr/issues/158 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -94615,80 +122438,134 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #169. I used https://docs.gitlab.com/ee/user/permissions.html#project-members-permissions, + but I am not sure about the permission for closing of the project issues, + I couldn''t find more information about that.' + closed_at: '2019-09-26T10:43:42Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/207/comments + created_at: '2019-09-18T13:54:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/207/events + html_url: https://github.com/packit/ogr/pull/207 + id: 495242377 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/207/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE4ODI1OTA4 + number: 207 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/207.diff + html_url: https://github.com/packit/ogr/pull/207 + patch_url: https://github.com/packit/ogr/pull/207.patch + url: https://api.github.com/repos/packit/ogr/pulls/207 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: methods for permissions + updated_at: '2019-09-26T10:43:42Z' + url: https://api.github.com/repos/packit/ogr/issues/207 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 - active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars0.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} + - 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "```python\r\n def project_create(self, repo: str, namespace:\ - \ str = None) -> \"PagureProject\":\r\n pass\r\n```\r\n\r\nAPI\ - \ documentation:\r\nhttps://pagure.io/api/0/#projects\r\n\r\nAC:\r\n\ - \r\n- [ ] implement the method in `PagureService`\r\n- [ ] create at\ - \ least two tests for that (with and without specifying `namespace`)" - closed_at: '2019-10-15T07:33:19Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/204/comments - created_at: '2019-09-18T09:09:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/204/events - html_url: https://github.com/packit/ogr/issues/204 - id: 495092331 + body: "```python\r\n def get_owners(self) -> List[str]:\r\n \ + \ raise NotImplementedError()\r\n\r\n def who_can_close_issue(self)\ + \ -> Set[str]:\r\n raise NotImplementedError()\r\n\r\n def\ + \ who_can_merge_pr(self) -> Set[str]:\r\n raise NotImplementedError()\r\ + \n\r\n def can_close_issue(self, username: str, issue: Issue) ->\ + \ bool:\r\n raise NotImplementedError()\r\n\r\n def can_merge_pr(self,\ + \ username) -> bool:\r\n raise NotImplementedError()\r\n```\r\ + \n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-members\r\ + \n- https://docs.gitlab.com/ce/api/members.html" + closed_at: '2019-09-26T10:43:41Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/169/comments + created_at: '2019-09-06T07:20:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/169/events + html_url: https://github.com/packit/ogr/issues/169 + id: 490171859 labels: - - color: be8fd8 - default: false - description: Participate in https://hacktoberfest.digitalocean.com - id: 1592645945 - name: Hacktoberfest - node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 - url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 + - color: d93f0b default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: a2eeef default: false description: New feature or a request for enhancement. @@ -94710,19 +122587,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/204/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/169/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTUwOTIzMzE= - number: 204 + node_id: MDU6SXNzdWU0OTAxNzE4NTk= + number: 169 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Implement Pagure method for create_project ' - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/204 + title: Implement GitLab methods for owners and permissions + updated_at: '2019-09-26T10:43:41Z' + url: https://api.github.com/repos/packit/ogr/issues/169 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -94742,70 +122619,56 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars0.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} + - 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "Split service implementations into separate directories, module\ - \ for each class\r\n\r\n- [x] Directory for each service\r\n- [x] GitHub\r\ - \n - [x] split implementation into multiple modules\r\n - [x] add\ - \ `__init__.py` to make imports compatible\r\n - [x] update tests,\ - \ since they store \"full path\" of caller\r\n- [x] GitLab\r\n - [x]\ - \ split implementation into multiple modules\r\n - [x] add `__init__.py`\ - \ to make imports compatible\r\n - [x] update tests, since they store\ - \ \"full path\" of caller\r\n- [x] Pagure\r\n - [x] split implementation\ - \ into multiple modules\r\n - [x] add `__init__.py` to make imports\ - \ compatible\r\n - [x] update tests, since they store \"full path\"\ - \ of caller\r\n\r\nRelated to #86" - closed_at: '2019-10-11T06:36:16Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/232/comments - created_at: '2019-10-05T09:52:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/232/events - html_url: https://github.com/packit/ogr/issues/232 - id: 502942365 + body: "```python\r\n def get_pr_labels(self, pr_id: int) -> List:\r\ + \n pass\r\n\r\n def add_pr_labels(self, pr_id, labels) ->\ + \ None:\r\n pass\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ + \n- https://docs.gitlab.com/ee/api/merge_requests.html" + closed_at: '2019-09-25T08:50:51Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/174/comments + created_at: '2019-09-06T07:23:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/174/events + html_url: https://github.com/packit/ogr/issues/174 + id: 490172937 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -94813,122 +122676,124 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db + - color: a2eeef default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: c2ef58 + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/232/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/174/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDI5NDIzNjU= - number: 232 + node_id: MDU6SXNzdWU0OTAxNzI5Mzc= + number: 174 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Prepare file structure for object-specific methods (#86) - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/232 + title: Implement GitLab methods for PR labels (merge-request labels) + updated_at: '2019-09-25T08:50:51Z' + url: https://api.github.com/repos/packit/ogr/issues/174 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars0.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} + - 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "1. Property `full_repo_name` is implemented both in `BaseGitProject`\ - \ and `GitProject`\r\n1. `full_repo_name` doesn't handle non-existing\ - \ namespace (in case of Pagure projects)" - closed_at: '2019-09-25T05:20:03Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/218/comments - created_at: '2019-09-24T09:15:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/218/events - html_url: https://github.com/packit/ogr/issues/218 - id: 497561711 + body: "```python\r\n def get_issue_labels(self, issue_id: int) -> List:\r\ + \n raise NotImplementedError()\r\n\r\n def add_issue_labels(self,\ + \ issue_id, labels) -> None:\r\n raise NotImplementedError()\r\ + \n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ + \n- https://docs.gitlab.com/ce/api/issues.html" + closed_at: '2019-09-25T08:34:08Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/171/comments + created_at: '2019-09-06T07:22:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/171/events + html_url: https://github.com/packit/ogr/issues/171 + id: 490172449 labels: - - color: 1d76db + - color: d93f0b default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -94936,20 +122801,6 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - color: 42e529 default: false description: This issue was already processed and well defined. @@ -94957,74 +122808,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/218/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0OTc1NjE3MTE= - number: 218 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: GitProject.full_repo_name() and Pagure implementation - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/218 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Add reverse-dependence-test of packit.' - closed_at: '2019-10-10T14:18:42Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/241/comments - created_at: '2019-10-10T07:36:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/241/events - html_url: https://github.com/packit/ogr/pull/241 - id: 505092361 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/241/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/171/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI2NTkyODk0 - number: 241 + node_id: MDU6SXNzdWU0OTAxNzI0NDk= + number: 171 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/241.diff - html_url: https://github.com/packit/ogr/pull/241 - patch_url: https://github.com/packit/ogr/pull/241.patch - url: https://api.github.com/repos/packit/ogr/pulls/241 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Reverse dependency testing of packit - updated_at: '2019-10-10T15:14:48Z' - url: https://api.github.com/repos/packit/ogr/issues/241 + title: Implement GitLab methods for issue labels + updated_at: '2019-09-25T08:34:08Z' + url: https://api.github.com/repos/packit/ogr/issues/171 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -95045,15 +122841,15 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-10-09T09:50:00Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/239/comments - created_at: '2019-10-09T09:26:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/239/events - html_url: https://github.com/packit/ogr/pull/239 - id: 504525592 + author_association: CONTRIBUTOR + body: 'Fixes #171, #174' + closed_at: '2019-09-25T08:34:08Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/198/comments + created_at: '2019-09-12T12:07:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/198/events + html_url: https://github.com/packit/ogr/pull/198 + id: 492763927 labels: - color: 0e8a16 default: false @@ -95062,102 +122858,161 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/239/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/198/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI2MTU0MzU4 - number: 239 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODczMjYx + number: 198 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/239.diff - html_url: https://github.com/packit/ogr/pull/239 - patch_url: https://github.com/packit/ogr/pull/239.patch - url: https://api.github.com/repos/packit/ogr/pulls/239 + diff_url: https://github.com/packit/ogr/pull/198.diff + html_url: https://github.com/packit/ogr/pull/198 + patch_url: https://github.com/packit/ogr/pull/198.patch + url: https://api.github.com/repos/packit/ogr/pulls/198 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: prepare for rev dependency testing, set project dir in case it - not come from zuul - updated_at: '2019-10-09T09:50:00Z' - url: https://api.github.com/repos/packit/ogr/issues/239 + title: methods for pr and issue labels + updated_at: '2019-09-25T08:34:08Z' + url: https://api.github.com/repos/packit/ogr/issues/198 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-10-09T08:41:00Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/238/comments - created_at: '2019-10-09T07:06:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/238/events - html_url: https://github.com/packit/ogr/pull/238 - id: 504458794 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/238/labels{/name} + body: "In GitProject we do not have a method for getting web URL of the\ + \ project.\r\n\r\nAC:\r\n\r\n- [ ] Add the method to `abstract.GitProject`.\ + \ (And raise `NotImplementedError`.)\r\n- [ ] Implement the method for\ + \ all forges (GitHub, GitLab, Pagure).\r\n- [ ] Add tests for this method.\r\ + \n\r\nLinks:\r\n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ + \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \n https://docs.gitlab.com/ce/api/projects.html\r\n- https://pagure.io/api/0/#projects\r\ + \n\r\nExamples:\r\n- https://github.com/packit-service/ogr\r\n- https://gitlab.com/packit-service/ogr-tests\r\ + \n- https://pagure.io/ogr-tests/" + closed_at: '2019-09-24T08:53:16Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/213/comments + created_at: '2019-09-19T19:19:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/213/events + html_url: https://github.com/packit/ogr/issues/213 + id: 495981567 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/213/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI2MTAxNzE3 - number: 238 + node_id: MDU6SXNzdWU0OTU5ODE1Njc= + number: 213 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/238.diff - html_url: https://github.com/packit/ogr/pull/238 - patch_url: https://github.com/packit/ogr/pull/238.patch - url: https://api.github.com/repos/packit/ogr/pulls/238 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: remove all stuff what were moved to requre project - updated_at: '2019-10-09T08:41:00Z' - url: https://api.github.com/repos/packit/ogr/issues/238 + title: Implement GitProject.get_url() + updated_at: '2019-09-25T06:07:53Z' + url: https://api.github.com/repos/packit/ogr/issues/213 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-10-07T14:04:40Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/235/comments - created_at: '2019-10-07T11:19:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/235/events - html_url: https://github.com/packit/ogr/pull/235 - id: 503387838 + author_association: CONTRIBUTOR + body: "Fixes: #143 \r\n\r\n*edited by @lachmanfrantisek to close this\ + \ after merge*" + closed_at: '2019-09-19T14:18:04Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/210/comments + created_at: '2019-09-19T11:24:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/210/events + html_url: https://github.com/packit/ogr/pull/210 + id: 495738504 labels: - color: 0e8a16 default: false @@ -95166,24 +123021,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/235/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/210/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI1MjUwMzkx - number: 235 + node_id: MDExOlB1bGxSZXF1ZXN0MzE5MjI3MjM2 + number: 210 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/235.diff - html_url: https://github.com/packit/ogr/pull/235 - patch_url: https://github.com/packit/ogr/pull/235.patch - url: https://api.github.com/repos/packit/ogr/pulls/235 + diff_url: https://github.com/packit/ogr/pull/210.diff + html_url: https://github.com/packit/ogr/pull/210 + patch_url: https://github.com/packit/ogr/pull/210.patch + url: https://api.github.com/repos/packit/ogr/pulls/210 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add Developer Certificate of Origin - updated_at: '2019-10-07T14:04:41Z' - url: https://api.github.com/repos/packit/ogr/issues/235 + title: Add trim parameter to set_commit_status method + updated_at: '2019-09-19T15:46:39Z' + url: https://api.github.com/repos/packit/ogr/issues/210 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -95204,31 +123059,74 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Gitlab tests import `PRStatus` and `IssueStatus` from `ogr.services.gitlab` - instead of `ogr.abstract` - closed_at: '2019-10-07T11:02:37Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/233/comments - created_at: '2019-10-05T15:21:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/233/events - html_url: https://github.com/packit/ogr/issues/233 - id: 502976447 + author_association: CONTRIBUTOR + body: "```\r\nTraceback (most recent call last): \ + \ \ + \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ + , line 385, in trace_task \ + \ \r\n R = retval = fun(*args,\ + \ **kwargs) \ + \ \ + \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ + , line 648, in __protected_call__ \ + \ \r\n return self.run(*args,\ + \ **kwargs) \ + \ \ + \ \r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ + , line 42, in process_message \ + \ \r\n return SteveJobs().process_message(event=event,\ + \ topic=topic) \ + \ \r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 126, in process_message \ + \ \r\n jobs_results = self.process_jobs(event_object)\ + \ \ + \ \r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 92, in process_jobs \ + \ \r\n handlers_results[job.job.value]\ + \ = handler.run() \ + \ \ + \ \r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/github_handlers.py\"\ + , line 330, in run \ + \ \r\n return self.handle_pull_request() \ + \ \ + \ \r\n\ + \ File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/github_handlers.py\"\ + , line 305, in handle_pull_request \ + \ \r\n r.report(\"failure\", msg)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/handler.py\"\ + , line 84, in report\r\n self.commit_sha, state, url, description,\ + \ check_name\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/read_only.py\"\ + , line 68, in readonly_func\r\n return func(self, *args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ + , line 541, in set_commit_status\r\n github_commit.create_status(state,\ + \ target_url, description, context)\r\n File \"/usr/local/lib/python3.7/site-packages/github/Commit.py\"\ + , line 189, in create_status\r\n input=post_parameters\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/github/Requester.py\", line\ + \ 276, in requestJsonAndCheck\r\n return self.__check(*self.requestJson(verb,\ + \ url, parameters, headers, input, self.__customConnection(url)))\r\n\ + \ File \"/usr/local/lib/python3.7/site-packages/github/Requester.py\"\ + , line 287, in __check\r\n raise self.__createException(status, responseHeaders,\ + \ output)\r\ngithub.GithubException.GithubException: 422 {'message':\ + \ 'Validation Failed', 'errors': [{'resource': 'Status', 'code': 'custom',\ + \ 'field': 'description', 'message': 'descript\r\nion is too long (maximum\ + \ is 140 characters)'}], 'documentation_url': 'https://developer.github.com/v3/repos/statuses/#create-a-status'}\r\ + \n```" + closed_at: '2019-09-19T14:18:04Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/143/comments + created_at: '2019-08-08T09:03:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/143/events + html_url: https://github.com/packit/ogr/issues/143 + id: 478340513 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: be8fd8 + - color: '000000' default: false - description: Participate in https://hacktoberfest.digitalocean.com - id: 1592645945 - name: Hacktoberfest - node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 - url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d73a4a default: true description: Something isn't working @@ -95243,195 +123141,211 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9d0c4 + - color: f9e231 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/233/labels{/name} + description: High priority. + id: 1432779316 + name: high-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzE2 + url: https://api.github.com/repos/packit/ogr/labels/high-prio + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/143/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDI5NzY0NDc= - number: 233 + node_id: MDU6SXNzdWU0NzgzNDA1MTM= + number: 143 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Gitlab tests imports - updated_at: '2019-10-07T11:02:38Z' - url: https://api.github.com/repos/packit/ogr/issues/233 + title: GitHub check descriptions can only be 140 chars long + updated_at: '2019-09-19T14:18:04Z' + url: https://api.github.com/repos/packit/ogr/issues/143 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.631541 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:51 GMT + ETag: W/"cccd3747853f6f6a64e648eae883e9d187c2d55358148bc8c853355c561b5d67" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F80C13:191CB19:6075DC52 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4609' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '391' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=13: + - metadata: + latency: 0.35396623611450195 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "replace storing requests objects by ``requre`` project.\r\n\r\n\ - - [x] regenerate test data for ogr\r\n- [x] remove old functionality\ - \ after packit will be fixed as well, not now in this PR\r\n\r\n" - closed_at: '2019-10-07T10:42:46Z' - comments: 17 - comments_url: https://api.github.com/repos/packit/ogr/issues/201/comments - created_at: '2019-09-17T09:04:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/201/events - html_url: https://github.com/packit/ogr/pull/201 - id: 494495662 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/201/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE4MjM0OTky - number: 201 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/201.diff - html_url: https://github.com/packit/ogr/pull/201 - patch_url: https://github.com/packit/ogr/pull/201.patch - url: https://api.github.com/repos/packit/ogr/pulls/201 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: use requre for storing data for tests - updated_at: '2019-10-07T10:42:47Z' - url: https://api.github.com/repos/packit/ogr/issues/201 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + assignee: + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- use requre for storing data for tests.' - closed_at: '2019-10-04T08:09:13Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/231/comments - created_at: '2019-10-03T08:51:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/231/events - html_url: https://github.com/packit/ogr/pull/231 - id: 501935145 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/231/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI0MTEwMzY5 - number: 231 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/231.diff - html_url: https://github.com/packit/ogr/pull/231 - patch_url: https://github.com/packit/ogr/pull/231.patch - url: https://api.github.com/repos/packit/ogr/pulls/231 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'Use requre (rebased #201)' - updated_at: '2019-10-04T08:24:34Z' - url: https://api.github.com/repos/packit/ogr/issues/231 - user: - avatar_url: https://avatars1.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} + url: https://api.github.com/users/lbarcziova + assignees: + - 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "This property violates our rule that only methods with `get` can\ - \ touch the real servers.\r\n\r\nWe can:\r\n\r\n- Revert the change\ - \ and stay with guessing.\r\n- Change the property to `get_full_repo_name`\ - \ (needs deprecation to original property)\r\n- Change our mind and\ - \ do not be strict about that. (And use properties instead of methods\ - \ for objects.)\r\n - This will bring nicer user-experience, but\ - \ maybe some confusion.\r\n - Maybe, we can leave only `__init__`\ - \ offline?\r\n\r\n" - closed_at: '2019-10-02T09:17:18Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/220/comments - created_at: '2019-09-25T06:13:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/220/events - html_url: https://github.com/packit/ogr/issues/220 - id: 498070461 + body: "```python\r\n def commit_comment(\r\n self, commit: str,\ + \ body: str, filename: str = None, row: int = None\r\n ) -> \"CommitComment\"\ + :\r\n raise NotImplementedError()\r\n\r\n def set_commit_status(\r\ + \n self, commit: str, state: str, target_url: str, description:\ + \ str, context: str\r\n ) -> \"CommitFlag\":\r\n raise NotImplementedError()\r\ + \n\r\n def get_commit_statuses(self, commit: str) -> List[CommitFlag]:\r\ + \n \"\"\"\r\n Something like this:\r\n commit_object\ + \ = self.gitlab_repo.commits.get(commit)\r\n raw_statuses = commit_object.statuses.list()\r\ + \n return [\r\n GitlabProject._commit_status_from_gitlab_object(raw_status)\r\ + \n for raw_status in raw_statuses\r\n ]\r\n \ + \ \"\"\"\r\n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html\r\ + \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-comments\r\ + \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status" + closed_at: '2019-09-19T09:46:56Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/172/comments + created_at: '2019-09-06T07:23:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/172/events + html_url: https://github.com/packit/ogr/issues/172 + id: 490172659 labels: - - color: ff9990 + - color: d93f0b default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - - color: 8be567 + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/220/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/172/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTgwNzA0NjE= - number: 220 + node_id: MDU6SXNzdWU0OTAxNzI2NTk= + number: 172 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: PagureProject.full_repo_name touches service - updated_at: '2019-10-02T09:17:18Z' - url: https://api.github.com/repos/packit/ogr/issues/220 + title: Implement GitLab methods for commits + updated_at: '2019-09-19T09:46:56Z' + url: https://api.github.com/repos/packit/ogr/issues/172 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -95452,57 +123366,16 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Replace numbers by access\ - \ constants\n* suggested changes added\n* methods for permissions\n\ - * (#107) Rename test\n* (#107) Fix type and formatting\n* (#107) Add\ - \ tests for querying PRs in issue-related functions (GitHub)\n* (#107)\ - \ Raise exception if querying PR using issue-related function\n* (#107)\ - \ Fix typo in Github._get_all_issue_comments\n* (#107) Update test_data\ - \ for Github's issues\n* (#107) Filter out pull requests from issues\ - \ (GitHub)\n* Do not save links beteen values in response files\n* specified\ - \ return type\n* exceptions added\n* methods for pr and issue labels\n\ - * (#218) Remove checking if fork exists in test for full_repo_name\n\ - * (#218) Add tests for full_repo_name with namespace and fork\n* (#218)\ - \ Add tests for full_repo_name property\n* (#218) Override full_repo_name\ - \ in PagureProject\n* (#218) Remove full_repo_name implementation from\ - \ GitProject\n* Fix flake8 remarks\n* (#213) Modify PagureProject.get_web_url()\ - \ to use project info\n* (#213) Fix wrong property name in Gitlab.get_web_url()\ - \ test and add test_data\n* (#213) Fix Pagure's get_web_url()\n* (#213)\ - \ Update GitLab.get_web_url() to use repo object\n* (#213) Update GitHub.get_web_url()\ - \ to use repo object\n* Add tests for get_web_url\n* Add get_web_url\ - \ to GitHub, GitLab and Pagure\n* Add get_web_url to GitProject\n* Add\ - \ tests for set_commit_status method\n* Add trim parameter to set_commit_status\ - \ method\n* test changed\n* test added\n* response files added\n* methods\ - \ for commit status and commit comment\n* refactor\n* github method\ - \ for creating projects added\n* Document the tests that are problematic\ - \ when regenerating\n* Be consistent in instantiating services in tests\n\ - * Update GitHub response files and fix the tests\n* Fix get_email in\ - \ GitHub implementation\n* Update Pagure response files and fix the\ - \ tests\n* Use returned GitLab repo instance in GitlabService.project_create\n\ - * Remove Gitlab also from example\n* delete GitLab from README.md\n\ - * Quickstart example\n* Generate response-file for test_create_fork\ - \ with python_gitlab-1.11\n* WIP: forking methods\n* better tests\n\ - * pr close, merge methods\n* Implement service.project_create for GitLab\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.8.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-10-01T19:57:46Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/223/comments - created_at: '2019-09-26T11:11:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/223/events - html_url: https://github.com/packit/ogr/pull/223 - id: 498820056 + author_association: CONTRIBUTOR + body: 'Fixes #172 ' + closed_at: '2019-09-19T09:46:56Z' + comments: 13 + comments_url: https://api.github.com/repos/packit/ogr/issues/206/comments + created_at: '2019-09-18T13:16:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/206/events + html_url: https://github.com/packit/ogr/pull/206 + id: 495219552 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -95510,62 +123383,98 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/223/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/206/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIxNjY2NjY0 - number: 223 + node_id: MDExOlB1bGxSZXF1ZXN0MzE4ODA3MTU3 + number: 206 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/223.diff - html_url: https://github.com/packit/ogr/pull/223 - patch_url: https://github.com/packit/ogr/pull/223.patch - url: https://api.github.com/repos/packit/ogr/pulls/223 + diff_url: https://github.com/packit/ogr/pull/206.diff + html_url: https://github.com/packit/ogr/pull/206 + patch_url: https://github.com/packit/ogr/pull/206.patch + url: https://api.github.com/repos/packit/ogr/pulls/206 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.8.0 release - updated_at: '2019-10-01T19:59:12Z' - url: https://api.github.com/repos/packit/ogr/issues/223 + title: methods for commit status and commit comment + updated_at: '2019-09-19T09:46:56Z' + url: https://api.github.com/repos/packit/ogr/issues/206 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: 'In `GithubProject` class there is identical implementation for - `who_can_close_issue` and `who_can_merge_pr`, is it intentional? Or - can we factor it out since it''s identical? ' - closed_at: '2019-09-30T11:40:39Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/224/comments - created_at: '2019-09-26T11:56:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/224/events - html_url: https://github.com/packit/ogr/issues/224 - id: 498839261 + body: "```python\r\n def project_create(self, repo: str, namespace:\ + \ str = None) -> \"GithubProject\":\r\n pass\r\n```\r\n\r\nThe\ + \ methods for creating projects are in two places:\r\n\r\n- user:\r\n\ + \ - [Github.get_user](https://pygithub.readthedocs.io/en/latest/github.html#github.MainClass.Github.get_user)\r\ + \n - [User.create_repo](https://pygithub.readthedocs.io/en/latest/github_objects/AuthenticatedUser.html#github.AuthenticatedUser.AuthenticatedUser.create_repo)\r\ + \n- namespace:\r\n - [Github.get_organization](https://pygithub.readthedocs.io/en/latest/github.html#github.MainClass.Github.get_organization)\r\ + \n - [Organization.create_repo](https://pygithub.readthedocs.io/en/latest/github_objects/Organization.html#github.Organization.Organization.create_repo)\r\ + \n\r\nAC:\r\n\r\n- [x] implement the method in `GithubService`\r\n-\ + \ [x] create at least two tests for that (with and without specifying\ + \ `namespace`)\r\n" + closed_at: '2019-09-19T09:13:21Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/203/comments + created_at: '2019-09-18T09:06:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/203/events + html_url: https://github.com/packit/ogr/issues/203 + id: 495090506 labels: - color: '000000' default: false @@ -95574,6 +123483,13 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -95581,83 +123497,153 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 + - color: 42e529 default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/224/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/203/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTg4MzkyNjE= - number: 224 + node_id: MDU6SXNzdWU0OTUwOTA1MDY= + number: 203 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Identical implementation for collaborators (Github Project) - updated_at: '2019-09-30T11:40:39Z' - url: https://api.github.com/repos/packit/ogr/issues/224 + title: Implement GitHub method for create_project + updated_at: '2019-09-19T09:27:27Z' + url: https://api.github.com/repos/packit/ogr/issues/203 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #203 ' + closed_at: '2019-09-19T09:13:22Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/208/comments + created_at: '2019-09-19T06:12:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/208/events + html_url: https://github.com/packit/ogr/pull/208 + id: 495593829 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/208/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE5MTEwNjY0 + number: 208 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/208.diff + html_url: https://github.com/packit/ogr/pull/208 + patch_url: https://github.com/packit/ogr/pull/208.patch + url: https://api.github.com/repos/packit/ogr/pulls/208 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: github method for creating projects added + updated_at: '2019-09-19T09:13:22Z' + url: https://api.github.com/repos/packit/ogr/issues/208 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: The release time is now! - closed_at: '2019-09-26T11:11:51Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/222/comments - created_at: '2019-09-26T11:06:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/222/events - html_url: https://github.com/packit/ogr/issues/222 - id: 498817742 + body: "- [x] Update Pagure response files and fix the tests.\r\n- [x]\ + \ Update GitHub response files and fix the tests.\r\n- ~~[ ] Update\ + \ GitLab response files and fix the tests if needed.~~\r\n\r\nFixes\ + \ #181 " + closed_at: '2019-09-19T08:09:47Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/202/comments + created_at: '2019-09-17T13:18:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/202/events + html_url: https://github.com/packit/ogr/pull/202 + id: 494619035 labels: - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: c2ef58 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/222/labels{/name} + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/202/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTg4MTc3NDI= - number: 222 + node_id: MDExOlB1bGxSZXF1ZXN0MzE4MzM1NjYw + number: 202 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/202.diff + html_url: https://github.com/packit/ogr/pull/202 + patch_url: https://github.com/packit/ogr/pull/202.patch + url: https://api.github.com/repos/packit/ogr/pulls/202 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-09-26T11:11:51Z' - url: https://api.github.com/repos/packit/ogr/issues/222 + title: Update tests and response files + updated_at: '2019-09-19T08:09:51Z' + url: https://api.github.com/repos/packit/ogr/issues/202 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -95675,110 +123661,49 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=10: - - metadata: - latency: 0.5009007453918457 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Not overwrite the gitlab token when set on read-mode. - - - Support GitlabAuthenticationError in response files as well.' - closed_at: '2019-09-10T09:06:12Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/182/comments - created_at: '2019-09-09T10:59:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/182/events - html_url: https://github.com/packit/ogr/pull/182 - id: 491026784 + body: "Currently, we need to know the author of the generated files, because\ + \ we do not know the owner of the fork we are using. (When we are not\ + \ setting the `PAGURE_USER` token, e.i. in CI.)\r\n\r\nAI: Fix the need\ + \ of `LAST_GENERATED_BY = ` constant." + closed_at: '2019-09-19T08:09:47Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/181/comments + created_at: '2019-09-09T08:16:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/181/events + html_url: https://github.com/packit/ogr/issues/181 + id: 490947039 labels: - - color: 0e8a16 + - color: f9d0c4 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/182/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/181/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1NDc0NDYw - number: 182 + node_id: MDU6SXNzdWU0OTA5NDcwMzk= + number: 181 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/182.diff - html_url: https://github.com/packit/ogr/pull/182 - patch_url: https://github.com/packit/ogr/pull/182.patch - url: https://api.github.com/repos/packit/ogr/pulls/182 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Support GitlabAuthenticationError - updated_at: '2019-09-10T09:07:59Z' - url: https://api.github.com/repos/packit/ogr/issues/182 + title: Avoid saving author of the last generated response-files + updated_at: '2019-09-19T08:09:47Z' + url: https://api.github.com/repos/packit/ogr/issues/181 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -95795,39 +123720,88 @@ requests.sessions: 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 + url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-09-19T07:00:59Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/194/comments + created_at: '2019-09-12T08:49:07Z' + events_url: https://api.github.com/repos/packit/ogr/issues/194/events + html_url: https://github.com/packit/ogr/issues/194 + id: 492670435 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/194/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTI2NzA0MzU= + number: 194 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Release 0.7.0 by /packit propose-update + updated_at: '2019-09-19T07:00:59Z' + url: https://api.github.com/repos/packit/ogr/issues/194 + user: + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos + site_admin: false + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions + type: User + url: https://api.github.com/users/phracek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "fix the issue causing that older ogr does not know what is exception\ - \ in init.\r\ndo not store values what are empty" - closed_at: '2019-09-09T10:52:04Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/179/comments - created_at: '2019-09-06T12:29:16Z' - events_url: https://api.github.com/repos/packit/ogr/issues/179/events - html_url: https://github.com/packit/ogr/pull/179 - id: 490300829 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/179/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-09-17T09:05:10Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/200/comments + created_at: '2019-09-13T12:21:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/200/events + html_url: https://github.com/packit/ogr/pull/200 + id: 493295672 + labels: + - color: dd5f74 + default: false + description: Work in progress. + id: 1432779248 + name: do-not-merge + node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 + url: https://api.github.com/repos/packit/ogr/labels/do-not-merge + labels_url: https://api.github.com/repos/packit/ogr/issues/200/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE0OTMzMDEy - number: 179 + node_id: MDExOlB1bGxSZXF1ZXN0MzE3MzAxMTYz + number: 200 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/179.diff - html_url: https://github.com/packit/ogr/pull/179 - patch_url: https://github.com/packit/ogr/pull/179.patch - url: https://api.github.com/repos/packit/ogr/pulls/179 + diff_url: https://github.com/packit/ogr/pull/200.diff + html_url: https://github.com/packit/ogr/pull/200 + patch_url: https://github.com/packit/ogr/pull/200.patch + url: https://api.github.com/repos/packit/ogr/pulls/200 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: fix backward compafibility for tests - updated_at: '2019-09-09T14:13:28Z' - url: https://api.github.com/repos/packit/ogr/issues/179 + title: 'WIP: use requre project and list modules for next work' + updated_at: '2019-09-17T09:07:25Z' + url: https://api.github.com/repos/packit/ogr/issues/200 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -95849,46 +123823,47 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- Test creating Pagure PRs and fix some username problems in Pagure - tests. - - - Creating Pagure PRs calls upstream project url (not the url of fork). - - - Fixes: #161' - closed_at: '2019-09-09T08:16:38Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/180/comments - created_at: '2019-09-06T19:01:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/180/events - html_url: https://github.com/packit/ogr/pull/180 - id: 490477438 + body: '- Use returned GitLab repo instance in GitlabService.project_create.' + closed_at: '2019-09-12T18:18:59Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/197/comments + created_at: '2019-09-12T10:18:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/197/events + html_url: https://github.com/packit/ogr/pull/197 + id: 492715580 labels: - - color: 1d76db + - color: d93f0b default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - labels_url: https://api.github.com/repos/packit/ogr/issues/180/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/197/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1MDc2NjUy - number: 180 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODM0MDQ1 + number: 197 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/180.diff - html_url: https://github.com/packit/ogr/pull/180 - patch_url: https://github.com/packit/ogr/pull/180.patch - url: https://api.github.com/repos/packit/ogr/pulls/180 + diff_url: https://github.com/packit/ogr/pull/197.diff + html_url: https://github.com/packit/ogr/pull/197 + patch_url: https://github.com/packit/ogr/pull/197.patch + url: https://api.github.com/repos/packit/ogr/pulls/197 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix creating Pagure PRs - updated_at: '2019-09-09T08:16:44Z' - url: https://api.github.com/repos/packit/ogr/issues/180 + title: Set GitLab object on project_create + updated_at: '2019-09-12T19:29:31Z' + url: https://api.github.com/repos/packit/ogr/issues/197 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -95909,408 +123884,502 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "https://src.stg.fedoraproject.org/api/0/#pull-requests\r\n\r\n\ - we just need to use the new fields such as repo_from which were added\ - \ to the API in order to create PRs from forks to parent repos.\r\n\r\ - \nfollow up to https://github.com/packit-service/packit/pull/496\r\n\ - blocks https://github.com/packit-service/packit.dev/pull/42\r\n\r\n\ - likely packit will need some code changes to support this" - closed_at: '2019-09-09T08:16:38Z' + author_association: CONTRIBUTOR + body: "In `packit-service`, I am using method `who_can_merge_pr` for getting\ + \ users who can merge PR.\r\n\r\n* `get_owners` for repository `packit-service/packit-service`\ + \ returns list `['packit-service']`\r\n```\r\n[2019-07-22 08:52:07,528:\ + \ DEBUG/ForkPoolWorker-1] Repository owners ['packit-service']\r\n```\r\ + \n* `who_can_merge_pr` for repository `rebase-helper/rebase-helper`\ + \ returns list like `{'FrNecas', 'uhliarik', 'phracek', 'nforro', 'thozza'}`\ + \ but for `packit-service/packit-service` repo it failed with traceback\r\ + \n\r\n```\r\n[2019-07-22 08:52:08,368: ERROR/ForkPoolWorker-1] Task\ + \ task.steve_jobs.process_message[9c44c1c8-5cf7-4a98-88d5-b0dbaca0262f]\ + \ raised unexpected: AttributeError(\"'Repository' object has no attribute\ + \ 'get_collaborator_permission'\")\r\nTraceback (most recent call last):\r\ + \n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ + , line 385, in trace_task\r\n R = retval = fun(*args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ + , line 648, in __protected_call__\r\n return self.run(*args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ + , line 31, in process_message\r\n return SteveJobs().process_message(event=event,\ + \ topic=topic)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 383, in process_message\r\n jobs_results = self.process_jobs(trigger,\ + \ package_config, event, project)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 341, in process_jobs\r\n handlers_results[job.job.value] =\ + \ handler.run()\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 793, in run\r\n return self.handle_pull_request()\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 717, in handle_pull_request\r\n collaborators = self.project.who_can_merge_pr()\r\ + \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ + , line 254, in who_can_merge_pr\r\n collaborators = self._get_collaborators_with_permission()\r\ + \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ + , line 294, in _get_collaborators_with_permission\r\n permission\ + \ = self.github_repo.get_collaborator_permission(user)\r\nAttributeError:\ + \ 'Repository' object has no attribute 'get_collaborator_permission'\r\ + \n```\r\n\r\nFunction GITHUB API function which gets all collaborators\ + \ returns\r\n```\r\n[2019-07-22 08:52:08,136: DEBUG/ForkPoolWorker-1]\ + \ GET https://api.github.com/repos/packit-service/hello-world/collaborators\ + \ \r\n{'Authorization': 'token (oauth token removed)', 'User-Agent':\ + \ 'PyGithub/Python'} None ==> 200 {'date': 'Mon, 22 Jul 2019 08:52:05\ + \ GMT', 'content-type': 'application/json; charset=utf-8', 'content-length':\ + \ '9897', 'server': 'GitHub.com', 'status': '200 OK', 'x-ratelimit-limit':\ + \ '5000', 'x-ratelimit-remaining': '4997', 'x-ratelimit-reset': '1563789120',\ + \ 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept-Encoding',\ + \ 'etag': '\"608e280b2b2bc2d96b1393ce9c294cee\"', 'x-github-media-type':\ + \ 'github.v3; format=json', 'access-control-expose-headers': 'ETag,\ + \ Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining,\ + \ X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval,\ + \ X-GitHub-Media-Type', 'access-control-allow-origin': '*', 'strict-transport-security':\ + \ 'max-age=31536000; includeSubdomains; preload', 'x-frame-options':\ + \ 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1;\ + \ mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin',\ + \ 'content-security-policy': \"default-src 'none'\", 'x-github-request-id':\ + \ '1110:253E:289043:3B0BB6:5D357935'}b'[\r\n{\"login\":\"jpopelka\"\ + ,\"id\":288686,\"node_id\":\"MDQ6VXNlcjI4ODY4Ng==\",\"avatar_url\":\"\ + https://avatars0.githubusercontent.com/u/288686?v=4\",\"gravatar_id\"\ + :\"\",\"url\":\"https://api.github.com/users/jpopelka\",\"html_url\"\ + :\"https://github.com/jpopelka\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/jpopelka/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/jpopelka/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/jpopelka/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/jpopelka/repos\",\"events_url\"\ + :\"https://api.github.com/users /jpopelka/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/jpopelka/received_events\",\"type\"\ + :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"TomasTomecek\",\"id\":1662493,\"\ + node_id\":\"MDQ6VXNlcjE2NjI0OTM=\",\"avatar_url\":\"https://avatars0.githubusercontent.com/u/1662493?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/TomasTomecek\"\ + ,\"html_url\":\"https://github.com/TomasTomecek\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/TomasTomecek/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/TomasTomecek/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/TomasTomecek/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/TomasTomecek/repos\",\"\ + events_url\":\"https://api.github.com/users/TomasTomecek/events{/privacy}\"\ + ,\"received_events_url\":\"https://api.github.com/users/TomasTomecek/received_events\"\ + ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ + push\":true,\"pull\":true}},\r\n{\"login\":\"eliskasl\",\"id\":1866652,\"\ + node_id\":\"MDQ6VXNlcjE4NjY2NTI=\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/1866652?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/eliskasl\"\ + ,\"html_url\":\"https://github.com/eliskasl\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/eliskasl/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/eliskasl/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/eliskasl/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/eliskasl/repos\",\"events_url\"\ + :\"https://api.github.com/users/eliskasl/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/ eliskasl/received_events\",\"type\"\ + :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"phracek\",\"id\":3416672,\"node_id\"\ + :\"MDQ6VXNlcjM0MTY2NzI=\",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/3416672?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/phracek\"\ + ,\"html_url\":\"https://github.com/phracek\",\"followers_url\":\"https://api.github.com/users/phracek/followers\"\ + ,\"following_url\":\"https://api.github.com/users/phracek/following{/other_user}\"\ + ,\"gists_url\":\"https://api.github.com/users/phracek/gists{/gist_id}\"\ + ,\"starred_url\":\"https://api.github.com/users/phracek/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/phracek/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/phracek/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/phracek/repos\",\"events_url\"\ + :\"https://api.github.com/users/phracek/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/phracek/received_events\",\"type\":\"\ + User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"jscotka\",\"id\":8735467,\"node_id\"\ + :\"MDQ6VXNlcjg3MzU0Njc=\",\"avatar_url\":\"https://avatars0.githubusercontent.com/u/8735467?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/jscotka\"\ + ,\"html_url\":\"https://github.com/jscotka\",\"followers_url\":\"https://api.github.com/users/jscotka/followers\"\ + ,\"following_url\":\"https://api.github.com/users/jscotka/following{/other_user}\"\ + ,\"gists_url\":\"https://api.github.com/users/jscotka/gists{/gist_id}\"\ + ,\"starred_url\":\"https://api.github.com/users/jscotka/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/jscotka/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/jscotka/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/jscotka/repos\",\"events_url\"\ + :\"https://api.github.com/users/jscotka/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/jscotka/received_events\",\"type\":\"\ + User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},{\"login\":\"lachmanfrantisek\",\"id\":202140\ + \ 43,\"node_id\":\"MDQ6VXNlcjIwMjE0MDQz\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/20214043?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/lachmanfrantisek\"\ + ,\"html_url\":\"https://github.com/lachmanfrantisek\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/lachmanfrantisek/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/lachmanfrantisek/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/lachmanfrantisek/repos\"\ + ,\"events_url\":\"https://api.github.com/users/lachmanfrantisek/events{/privacy}\"\ + ,\"received_events_url\":\"https://api.github.com/users/lachmanfrantisek/received_events\"\ + ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ + push\":true,\"pull\":true}},\r\n{\"login\":\"rpitonak\",\"id\":26160778,\"\ + node_id\":\"MDQ6VXNlcjI2MTYwNzc4\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/26160778?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/rpitonak\"\ + ,\"html_url\":\"https://github.com/rpitonak\",\"followers_url\":\"https://api.github.com/users/rpitonak/followers\"\ + ,\"following_url\":\"https://api.github.com/users/rpitonak/following{/other_user}\"\ + ,\"gists_url\":\"https://api.github.com/users/rpitonak/gists{/gist_id}\"\ + ,\"starred_url\":\"https://api.github.com/users/rpitonak/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/rpitonak/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/rpitonak/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/rpitonak/repos\",\"events_url\"\ + :\"https://api.github.com/users/rpitonak/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/rpitonak/received_events\",\"type\"\ + :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"dhodovsk\",\"id\":31201372,\"\ + node_id\":\"MDQ6VXNlcjMxMjAxMzcy \",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/31201372?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/dhodovsk\"\ + ,\"html_url\":\"https://github.com/dhodovsk\",\"followers_url\":\"https://api.github.com/users/dhodovsk/followers\"\ + ,\"following_url\":\"https://api.github.com/users/dhodovsk/following{/other_user}\"\ + ,\"gists_url\":\"https://api.github.com/users/dhodovsk/gists{/gist_id}\"\ + ,\"starred_url\":\"https://api.github.com/users/dhodovsk/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/dhodovsk/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/dhodovsk/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/dhodovsk/repos\",\"events_url\"\ + :\"https://api.github.com/users/dhodovsk/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/dhodovsk/received_events\",\"type\"\ + :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"usercont-release-bot\",\"id\"\ + :36231209,\"node_id\":\"MDQ6VXNlcjM2MjMxMjA5\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/36231209?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/usercont-release-bot\"\ + ,\"html_url\":\"https://github.com/usercont-release-bot\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/usercont-release-bot/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/usercont-release-bot/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/usercont-release-bot/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/usercont-release-bot/repos\"\ + ,\"events_url\":\"https://api.github.com/users/usercont-release-bot/events{/privacy}\"\ + ,\"received_events_url\":\"https://api.github.com/users/usercont-release-bot/received_events\"\ + ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ + push\":true,\"pull\":true}},\r\n{\"login\":\"lbarcziova\",\"id\":49026743,\"\ + node_id\": \"MDQ6VXNlcjQ5MDI2NzQz\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/49026743?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/lbarcziova\"\ + ,\"html_url\":\"https://github.com/lbarcziova\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/lbarcziova/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/lbarcziova/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/lbarcziova/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/lbarcziova/repos\",\"\ + events_url\":\"https://api.github.com/users/lbarcziova/events{/privacy}\"\ + ,\"received_events_url\":\"https://api.github.com/users/lbarcziova/received_events\"\ + ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ + push\":true,\"pull\":true}}]'\r\n```" + closed_at: '2019-09-12T11:13:02Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/161/comments - created_at: '2019-08-29T09:31:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/161/events - html_url: https://github.com/packit/ogr/issues/161 - id: 486845482 + comments_url: https://api.github.com/repos/packit/ogr/issues/132/comments + created_at: '2019-07-22T09:03:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/132/events + html_url: https://github.com/packit/ogr/issues/132 + id: 470977370 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9e231 + - color: '000000' default: false - description: High priority. - id: 1432779316 - name: high-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzE2 - url: https://api.github.com/repos/packit/ogr/labels/high-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/161/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0ODY4NDU0ODI= - number: 161 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'pagure: support new way of creating PRs from forks' - updated_at: '2019-09-09T08:16:38Z' - url: https://api.github.com/repos/packit/ogr/issues/161 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Fix the naming issues in GitLab API and add the skeleton of the - non-implemented methods. - - - Fix API for update_pr_info.' - closed_at: '2019-09-06T08:20:46Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/167/comments - created_at: '2019-09-06T06:33:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/167/events - html_url: https://github.com/packit/ogr/pull/167 - id: 490155512 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/167/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/132/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE0ODE1OTI3 - number: 167 + node_id: MDU6SXNzdWU0NzA5NzczNzA= + number: 132 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/167.diff - html_url: https://github.com/packit/ogr/pull/167 - patch_url: https://github.com/packit/ogr/pull/167.patch - url: https://api.github.com/repos/packit/ogr/pulls/167 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix the inconsistences in the GitLab API - updated_at: '2019-09-06T08:20:50Z' - url: https://api.github.com/repos/packit/ogr/issues/167 + title: fnc `who_can_merge_pr` fails with traceback + updated_at: '2019-09-12T15:19:54Z' + url: https://api.github.com/repos/packit/ogr/issues/132 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/phracek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #162' - closed_at: '2019-09-05T09:00:25Z' - comments: 31 - comments_url: https://api.github.com/repos/packit/ogr/issues/163/comments - created_at: '2019-09-02T12:37:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/163/events - html_url: https://github.com/packit/ogr/pull/163 - id: 488169691 + author_association: CONTRIBUTOR + body: "I would like to solve an issue https://github.com/packit-service/packit/issues/328\r\ + \nbut it failed with traceback:\r\n\r\n~~~\r\n$ packit -d propose-update\r\ + \n[..snip..]\r\n10:40:20.990 upstream.py DEBUG Version in spec\ + \ file: 0.16.3\r\nPicking version found in spec file.\r\nChecking out\ + \ upstream version 0.16.3\r\n10:40:21.013 base_git.py DEBUG Allowed\ + \ GPG keys are not set, skipping the verification.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running ActionName.pre_sync hook.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running ActionName.pre_sync.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running default implementation for ActionName.pre_sync.\r\ + \nUsing 'master' dist-git branch\r\n10:40:21.017 base_git.py DEBUG\ + \ It seems that branch master already exists, checking it out.\r\n\ + 10:40:21.020 distgit.py DEBUG About to update branch 'master'\r\ + \n10:40:21.727 api.py DEBUG Path of README /tmp/tmpzla3qy3y/README.packit\r\ + \n10:40:21.728 base_git.py DEBUG Running ActionName.prepare_files.\r\ + \n10:40:21.729 base_git.py DEBUG Running default implementation\ + \ for ActionName.prepare_files.\r\n10:40:21.729 sync.py DEBUG\ + \ Copy synced files [RawSyncFilesItem(src=/home/vagrant/rebase-helper/.packit.yml,\ + \ dest=/tmp/tmpzla3qy3y/.packit.yml, dist_is_dir=False), RawSyncFilesItem(src=/home/vagrant/rebase-helper/rebase-helper.spec,\ + \ dest=/tmp/tmpzla3qy3y/rebase-helper.spec, dist_is_dir=False)]\r\n\ + 10:40:21.730 sync.py DEBUG src = /home/vagrant/rebase-helper/.packit.yml,\ + \ dest = /tmp/tmpzla3qy3y/.packit.yml\r\nCopying /home/vagrant/rebase-helper/.packit.yml\ + \ to /tmp/tmpzla3qy3y/.packit.yml.\r\n10:40:21.731 sync.py \ + \ DEBUG src = /home/vagrant/rebase-helper/rebase-helper.spec, dest\ + \ = /tmp/tmpzla3qy3y/rebase-helper.spec\r\nCopying /home/vagrant/rebase-helper/rebase-helper.spec\ + \ to /tmp/tmpzla3qy3y/rebase-helper.spec.\r\n10:40:21.814 distgit.py\ + \ DEBUG Upstream archive name is 'rebase-helper-0.16.3.tar.gz'\r\ + \nArchive rebase-helper-0.16.3.tar.gz found in lookaside cache (skipping\ + \ upload).\r\n10:40:22.347 distgit.py DEBUG Upstream archive\ + \ name is 'rebase-helper-0.16.3.tar.gz'\r\n10:40:22.348 base_git.py\ + \ DEBUG About to add all & commit\r\n10:40:22.366 distgit.py\ + \ DEBUG About to force push changes to branch 0.16.3-master-update\ + \ of a fork fork of the dist-git repo\r\n10:40:32.251 distgit.py \ + \ DEBUG About to create dist-git pull request from 0.16.3-master-update\ + \ to master\r\nERROR There was an error while creating the PR: PagureAPIException('Page\ + \ `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.')\r\nERROR Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.\r\nTraceback (most recent call\ + \ last):\r\n File \"/usr/local/lib/python3.7/site-packages/packit/cli/utils.py\"\ + , line 58, in covered_func\r\n func(config=config, *args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/packit/cli/update.py\"\ + , line 113, in update\r\n upstream_ref=upstream_ref,\r\n File \"\ + /usr/local/lib/python3.7/site-packages/packit/api.py\", line 229, in\ + \ sync_release\r\n dist_git_branch=dist_git_branch,\r\n File \"\ + /usr/local/lib/python3.7/site-packages/packit/api.py\", line 316, in\ + \ push_and_create_pr\r\n target_branch=dist_git_branch,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit/distgit.py\", line\ + \ 211, in create_pull\r\n target_branch=target_branch,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/ogr/mock_core.py\", line\ + \ 49, in readonly_func\r\n return func(self, *args, **kwargs)\r\n\ + \ File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 377, in pr_create\r\n \"initial_comment\": body,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 232, in _call_project_api\r\n url=request_url, method=method,\ + \ params=params, data=data\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 71, in call_api\r\n raise PagureAPIException(f\"Page `{url}`\ + \ not found when calling Pagure API.\")\r\nogr.exceptions.PagureAPIException:\ + \ Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.\r\n10:40:34.958 local_project.py\ + \ DEBUG Cleaning: /tmp/tmpzla3qy3y\r\n~~~\r\n\r\n\r\nReferenced issues:\r\ + \nhttps://pagure.io/pagure/issue/4512\r\nhttps://github.com/packit-service/packit/issues/328\r\ + \n" + closed_at: '2019-09-12T11:17:19Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/91/comments + created_at: '2019-06-27T10:41:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/91/events + html_url: https://github.com/packit/ogr/issues/91 + id: 461455149 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/163/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/91/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzEzMjQ4MzIz - number: 163 + node_id: MDU6SXNzdWU0NjE0NTUxNDk= + number: 91 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/163.diff - html_url: https://github.com/packit/ogr/pull/163 - patch_url: https://github.com/packit/ogr/pull/163.patch - url: https://api.github.com/repos/packit/ogr/pulls/163 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Be able to set private key path for GitHub app - updated_at: '2019-09-05T09:00:29Z' - url: https://api.github.com/repos/packit/ogr/issues/163 + title: ' Page `/fork/phracek/rpms/rebase-helper/pull-request/new` not + found when calling Pagure API' + updated_at: '2019-09-12T11:17:20Z' + url: https://api.github.com/repos/packit/ogr/issues/91 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/phracek - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - author_association: MEMBER - body: "When authenticating as a GitHub-app we currently need a private_key\ - \ as a string.\r\n\r\nIt would be very convenient (and very usefull\ - \ when having #160 ) to have another attribute for the private-key path.\r\ - \n\r\nThe code can be moved/stolen [from packit](https://github.com/packit-service/packit/blob/master/packit/upstream.py#L88).\r\ - \n" - closed_at: '2019-09-05T09:00:25Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/162/comments - created_at: '2019-09-02T09:12:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/162/events - html_url: https://github.com/packit/ogr/issues/162 - id: 488085461 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/162/labels{/name} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "see log: \r\nhttps://softwarefactory-project.io/logs/13/513/8c3c6370096e5834c90dc5ff06e47cf9f3443cde/check/tests-pip-deps/cd79e16/job-output.txt.gz\r\ + \nwith git master it works, but pypi and rpm version of ogr fails with\ + \ errors like:\r\n**TypeError: __init__() got an unexpected keyword\ + \ argument 'exception'**\r\n\r\n```\r\n self = .ClassWithPersistentStorage\ + \ object at 0x7fa913e99450>\r\n2019-09-06 07:32:25.448747 | test-node\ + \ | url = 'https://src.fedoraproject.org//api/0/rpms/python-ogr/git/branches'\r\ + \n2019-09-06 07:32:25.448840 | test-node | method = 'GET', params =\ + \ None, data = None, header = None\r\n2019-09-06 07:32:25.448859 | test-node\ + \ |\r\n2019-09-06 07:32:25.448868 | test-node | def get_raw_request(\r\ + \n2019-09-06 07:32:25.448909 | test-node | self, url, method=\"\ + GET\", params=None, data=None, header=None\r\n2019-09-06 07:32:25.448924\ + \ | test-node | ):\r\n2019-09-06 07:32:25.448949 | test-node | \ + \ keys_internal = [method, url, params, data]\r\n2019-09-06 07:32:25.448977\ + \ | test-node | if self.persistent_storage.is_write_mode:\r\n\ + 2019-09-06 07:32:25.449005 | test-node | output = super().get_raw_request(\r\ + \n2019-09-06 07:32:25.449038 | test-node | url, method=method,\ + \ params=params, data=data, header=header\r\n2019-09-06 07:32:25.449066\ + \ | test-node | )\r\n2019-09-06 07:32:25.449078 | test-node\ + \ | self.persistent_storage.store(\r\n2019-09-06 07:32:25.449120\ + \ | test-node | keys=keys_internal, values=output.to_json_format()\r\ + \n2019-09-06 07:32:25.449148 | test-node | )\r\n2019-09-06\ + \ 07:32:25.449159 | test-node | else:\r\n2019-09-06 07:32:25.449190\ + \ | test-node | output_dict = self.persistent_storage.read(keys=keys_internal)\r\ + \n2019-09-06 07:32:25.449242 | test-node | > output = RequestResponse(**output_dict)\r\ + \n2019-09-06 07:32:25.449276 | test-node | E TypeError: __init__()\ + \ got an unexpected keyword argument 'exception'\r\n```" + closed_at: '2019-09-12T11:08:06Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/177/comments + created_at: '2019-09-06T07:58:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/177/events + html_url: https://github.com/packit/ogr/issues/177 + id: 490185857 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/177/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODgwODU0NjE= - number: 162 + node_id: MDU6SXNzdWU0OTAxODU4NTc= + number: 177 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Be able to use path to private_key for GitHub app authentication - updated_at: '2019-09-05T09:00:25Z' - url: https://api.github.com/repos/packit/ogr/issues/162 + title: adding storing exception to RecordRequest class in utils caused + regression + updated_at: '2019-09-12T11:08:06Z' + url: https://api.github.com/repos/packit/ogr/issues/177 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Add method for loading services from dictionary. - - - Tests included. - - - Fixes: #159' - closed_at: '2019-09-02T10:30:19Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/160/comments - created_at: '2019-08-21T08:47:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/160/events - html_url: https://github.com/packit/ogr/pull/160 - id: 483284044 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/160/labels{/name} + author_association: CONTRIBUTOR + body: When new people come to the OGR repository, I think it is worth + to have a simple example on the top part of README.md demonstrating + the usage. WDYT? + closed_at: '2019-09-12T10:57:56Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/195/comments + created_at: '2019-09-12T09:33:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/195/events + html_url: https://github.com/packit/ogr/pull/195 + id: 492693187 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/195/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA5Mzg5NjA4 - number: 160 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODE1NjE1 + number: 195 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/160.diff - html_url: https://github.com/packit/ogr/pull/160 - patch_url: https://github.com/packit/ogr/pull/160.patch - url: https://api.github.com/repos/packit/ogr/pulls/160 + diff_url: https://github.com/packit/ogr/pull/195.diff + html_url: https://github.com/packit/ogr/pull/195 + patch_url: https://github.com/packit/ogr/pull/195.patch + url: https://api.github.com/repos/packit/ogr/pulls/195 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Loading services from dict - updated_at: '2019-09-02T10:47:59Z' - url: https://api.github.com/repos/packit/ogr/issues/160 + title: Quickstart example + updated_at: '2019-09-12T10:57:56Z' + url: https://api.github.com/repos/packit/ogr/issues/195 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 + events_url: https://api.github.com/users/rpitonak/events{/privacy} + followers_url: https://api.github.com/users/rpitonak/followers + following_url: https://api.github.com/users/rpitonak/following{/other_user} + gists_url: https://api.github.com/users/rpitonak/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/rpitonak + id: 26160778 + login: rpitonak + node_id: MDQ6VXNlcjI2MTYwNzc4 + organizations_url: https://api.github.com/users/rpitonak/orgs + received_events_url: https://api.github.com/users/rpitonak/received_events + repos_url: https://api.github.com/users/rpitonak/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/rpitonak/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/rpitonak - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - author_association: MEMBER - body: "In [packit](https://github.com/packit-service/packit) and [upsint](https://github.com/packit-service/upsint/),\ - \ we need to load authentication for services from files.\r\n\r\nIt\ - \ would be nice to have a method for loading instances from `dict` so\ - \ we can use it from multiple projects.\r\n\r\n```python\r\n>>> from\ - \ ogr import get_instances_from_dict\r\n>>> get_instances_from_dict({\r\ - \n... \"github.com\": {\"token\": \"abcd\"},\r\n... \"pagure.io\"\ - : {\"token\": \"defg\"},\r\n... \"src.fedoraproject.org\": {\"token\"\ - : \"asdasdasda\"},\r\n... })\r\n[\r\n GithubService(token=\"abcd\"\ - ),\r\n PagureService(instance_url=\"https://pagure.io\", token=\"\ - defg\"),\r\n PagureService(instance_url=\"https://src.fedoraproject.org\"\ - , token=\"asdasdasda\"),\r\n]\r\n```\r\n\r\n\r\n" - closed_at: '2019-09-02T10:30:19Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/159/comments - created_at: '2019-08-20T12:11:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/159/events - html_url: https://github.com/packit/ogr/issues/159 - id: 482822700 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Fixes #168 \r\nTest for creating fork succeeded first time and\ + \ since that it has been failing and I can't find out the reason." + closed_at: '2019-09-12T10:04:42Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/192/comments + created_at: '2019-09-11T12:39:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/192/events + html_url: https://github.com/packit/ogr/pull/192 + id: 492212114 labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: a2eeef default: false description: New feature or a request for enhancement. @@ -96318,58 +124387,137 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/159/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/192/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODI4MjI3MDA= - number: 159 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2NDI3NjE1 + number: 192 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/192.diff + html_url: https://github.com/packit/ogr/pull/192 + patch_url: https://github.com/packit/ogr/pull/192.patch + url: https://api.github.com/repos/packit/ogr/pulls/192 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add method for loading instances from dict - updated_at: '2019-09-02T10:30:19Z' - url: https://api.github.com/repos/packit/ogr/issues/159 + title: Forking methods + updated_at: '2019-09-12T10:04:42Z' + url: https://api.github.com/repos/packit/ogr/issues/192 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: "- Remove repo specific methods from GitlabService.\r\n- Make the\ - \ creation of gitlab objects lazy.\r\n- Add tests for gitlab service-mapping.\r\ - \n- Make the pagure service mapping more general.\r\n- Add gitlab to\ - \ service mapping." - closed_at: '2019-08-20T11:55:31Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/156/comments - created_at: '2019-08-15T14:37:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/156/events - html_url: https://github.com/packit/ogr/pull/156 - id: 481182139 + body: "```python\r\n @property\r\n def is_fork(self) -> bool:\r\n\ + \ raise NotImplementedError()\r\n\r\n @property\r\n def\ + \ parent(self) -> Optional[\"GitlabProject\"]:\r\n raise NotImplementedError()\r\ + \n\r\n def is_forked(self) -> bool:\r\n raise NotImplementedError()\r\ + \n\r\n def get_fork(self, create: bool = True) -> Optional[\"GitlabProject\"\ + ]:\r\n raise NotImplementedError()\r\n\r\n```\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\ + \ -> Fork a project\r\n- An old snippet of code that may be helpful:\r\ + \n\r\n```python\r\n @staticmethod\r\n def is_fork_of(user_repo,\ + \ target_repo):\r\n \"\"\" is provided repo fork of the {parent_repo}/?\ + \ \"\"\"\r\n return user_repo.forked_from_project[\"id\"] ==\ + \ target_repo.id\r\n\r\n def fork(self, target_repo):\r\n \ + \ target_repo_org, target_repo_name = target_repo.split(\"/\", 1)\r\n\ + \r\n target_repo_gl = self.gitlab_instance.projects.get(target_repo)\r\ + \n\r\n try:\r\n # is it already forked?\r\n \ + \ user_repo = self.gitlab_instance.projects.get(\r\n \ + \ \"{}/{}\".format(self.user.get_username(), target_repo_name)\r\ + \n )\r\n if not self.is_fork_of(user_repo, target_repo_gl):\r\ + \n raise RuntimeError(\r\n \"repo\ + \ %s is not a fork of %s\" % (user_repo, target_repo_gl)\r\n \ + \ )\r\n except Exception:\r\n # nope\r\n \ + \ user_repo = None\r\n\r\n if self.user.get_username()\ + \ == target_repo_org:\r\n # user wants to fork its own repo;\ + \ let's just set up remotes 'n stuff\r\n if not user_repo:\r\ + \n raise RuntimeError(\"repo %s not found\" % target_repo_name)\r\ + \n clone_repo_and_cd_inside(\r\n user_repo.path,\ + \ user_repo.attributes[\"ssh_url_to_repo\"], target_repo_org\r\n \ + \ )\r\n else:\r\n user_repo = user_repo or\ + \ self._fork_gracefully(target_repo_gl)\r\n\r\n clone_repo_and_cd_inside(\r\ + \n user_repo.path, user_repo.attributes[\"ssh_url_to_repo\"\ + ], target_repo_org\r\n )\r\n\r\n set_upstream_remote(\r\ + \n clone_url=target_repo_gl.attributes[\"http_url_to_repo\"\ + ],\r\n ssh_url=target_repo_gl.attributes[\"ssh_url_to_repo\"\ + ],\r\n pull_merge_name=\"merge-requests\",\r\n \ + \ )\r\n set_origin_remote(\r\n user_repo.attributes[\"\ + ssh_url_to_repo\"], pull_merge_name=\"merge-requests\"\r\n )\r\ + \n fetch_all()\r\n\r\n @staticmethod\r\n def _fork_gracefully(target_repo):\r\ + \n \"\"\" fork if not forked, return forked repo \"\"\"\r\n \ + \ try:\r\n logger.info(\"forking repo %s\", target_repo)\r\ + \n fork = target_repo.forks.create({})\r\n except\ + \ gitlab.GitlabCreateError:\r\n logger.error(\"repo %s cannot\ + \ be forked\" % target_repo)\r\n raise RuntimeError(\"repo\ + \ %s not found\" % target_repo)\r\n\r\n return fork\r\n```" + closed_at: '2019-09-12T10:04:41Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/168/comments + created_at: '2019-09-06T07:20:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/168/events + html_url: https://github.com/packit/ogr/issues/168 + id: 490171633 labels: - color: d93f0b default: false @@ -96378,24 +124526,40 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - labels_url: https://api.github.com/repos/packit/ogr/issues/156/labels{/name} + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/168/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3NzMxMDE1 - number: 156 + node_id: MDU6SXNzdWU0OTAxNzE2MzM= + number: 168 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/156.diff - html_url: https://github.com/packit/ogr/pull/156 - patch_url: https://github.com/packit/ogr/pull/156.patch - url: https://api.github.com/repos/packit/ogr/pulls/156 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add gitlab to service mapping - updated_at: '2019-08-20T11:55:35Z' - url: https://api.github.com/repos/packit/ogr/issues/156 + title: Implement GitLab methods for forking + updated_at: '2019-09-12T10:04:41Z' + url: https://api.github.com/repos/packit/ogr/issues/168 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -96413,64 +124577,9 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Fixes #125 \r\nTests fail because test responses can't be saved." - closed_at: '2019-08-15T14:34:37Z' - comments: 28 - comments_url: https://api.github.com/repos/packit/ogr/issues/150/comments - created_at: '2019-08-13T13:16:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/150/events - html_url: https://github.com/packit/ogr/pull/150 - id: 480151584 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - labels_url: https://api.github.com/repos/packit/ogr/issues/150/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA2OTAyMTg4 - number: 150 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/150.diff - html_url: https://github.com/packit/ogr/pull/150 - patch_url: https://github.com/packit/ogr/pull/150.patch - url: https://api.github.com/repos/packit/ogr/pulls/150 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Functions for gitlab - updated_at: '2019-08-20T07:19:51Z' - url: https://api.github.com/repos/packit/ogr/issues/150 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -96489,7 +124598,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -96508,16 +124617,17 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "It would be nice to finally start implementing the GitLab support.\r\ - \n\r\nWe can probably combine the code from GitHub and the already present\ - \ code.\r\n\r\nThe documentation can be found here: https://python-gitlab.readthedocs.io/en/stable/" - closed_at: '2019-08-15T14:34:37Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/125/comments - created_at: '2019-07-18T07:17:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/125/events - html_url: https://github.com/packit/ogr/issues/125 - id: 469608368 + body: "```python\r\n def pr_close(self, pr_id: int) -> \"PullRequest\"\ + :\r\n pass\r\n\r\n def pr_merge(self, pr_id: int) -> \"PullRequest\"\ + :\r\n pass\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ + \n- https://docs.gitlab.com/ee/api/merge_requests.html" + closed_at: '2019-09-12T08:58:35Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/173/comments + created_at: '2019-09-06T07:23:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/173/events + html_url: https://github.com/packit/ogr/issues/173 + id: 490172801 labels: - color: d93f0b default: false @@ -96533,6 +124643,13 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -96540,19 +124657,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/125/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/173/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njk2MDgzNjg= - number: 125 + node_id: MDU6SXNzdWU0OTAxNzI4MDE= + number: 173 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitLab support - updated_at: '2019-08-15T14:34:37Z' - url: https://api.github.com/repos/packit/ogr/issues/125 + title: Implement GitLab methods for pr close/merge + updated_at: '2019-09-12T08:58:35Z' + url: https://api.github.com/repos/packit/ogr/issues/173 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -96570,37 +124687,108 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #173 + fix of get_pr_list and get_issue_list' + closed_at: '2019-09-12T08:58:35Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/191/comments + created_at: '2019-09-11T12:07:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/191/events + html_url: https://github.com/packit/ogr/pull/191 + id: 492196881 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/191/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE2NDE1MTM4 + number: 191 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/191.diff + html_url: https://github.com/packit/ogr/pull/191 + patch_url: https://github.com/packit/ogr/pull/191.patch + url: https://api.github.com/repos/packit/ogr/pulls/191 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: pr close, merge methods + updated_at: '2019-09-12T08:58:35Z' + url: https://api.github.com/repos/packit/ogr/issues/191 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Run zuul tests both on pip and rpm.' - closed_at: '2019-08-15T14:20:14Z' + body: "- Implement service.project_create for GitLab.\r\n\r\n\r\n(reason:\ + \ I would like to use OGR in my [figitool](https://gitlab.fi.muni.cz/xlachma1/figitool)\ + \ and this functionality is missing.)" + closed_at: '2019-09-12T08:09:14Z' comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/155/comments - created_at: '2019-08-15T09:27:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/155/events - html_url: https://github.com/packit/ogr/pull/155 - id: 481069480 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/155/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/189/comments + created_at: '2019-09-11T07:58:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/189/events + html_url: https://github.com/packit/ogr/pull/189 + id: 492077676 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/189/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3NjQwNzUy - number: 155 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2MzIwMzE0 + number: 189 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/155.diff - html_url: https://github.com/packit/ogr/pull/155 - patch_url: https://github.com/packit/ogr/pull/155.patch - url: https://api.github.com/repos/packit/ogr/pulls/155 + diff_url: https://github.com/packit/ogr/pull/189.diff + html_url: https://github.com/packit/ogr/pull/189 + patch_url: https://github.com/packit/ogr/pull/189.patch + url: https://api.github.com/repos/packit/ogr/pulls/189 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Run zuul for pip and rpm - updated_at: '2019-08-15T14:20:18Z' - url: https://api.github.com/repos/packit/ogr/issues/155 + title: Creating Gitlab projects + updated_at: '2019-09-12T08:09:18Z' + url: https://api.github.com/repos/packit/ogr/issues/189 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -96619,313 +124807,410 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "Don't use the api url when populating the data for an issue. Use\r\ - \nthe web url so that it can be used in a web browser.\r\n\r\nFixes\ - \ #146" - closed_at: '2019-08-15T07:11:16Z' - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/151/comments - created_at: '2019-08-13T18:06:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/151/events - html_url: https://github.com/packit/ogr/pull/151 - id: 480292368 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/151/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3MDE3Mjky - number: 151 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/151.diff - html_url: https://github.com/packit/ogr/pull/151 - patch_url: https://github.com/packit/ogr/pull/151.patch - url: https://api.github.com/repos/packit/ogr/pulls/151 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'pagure: use web url in issue' - updated_at: '2019-08-15T13:23:23Z' - url: https://api.github.com/repos/packit/ogr/issues/151 - user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 - events_url: https://api.github.com/users/dustymabe/events{/privacy} - followers_url: https://api.github.com/users/dustymabe/followers - following_url: https://api.github.com/users/dustymabe/following{/other_user} - gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + assignee: + 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/dustymabe - id: 4530030 - login: dustymabe - node_id: MDQ6VXNlcjQ1MzAwMzA= - organizations_url: https://api.github.com/users/dustymabe/orgs - received_events_url: https://api.github.com/users/dustymabe/received_events - repos_url: https://api.github.com/users/dustymabe/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + 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/dustymabe - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #123 ' - closed_at: '2019-08-15T08:12:06Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/154/comments - created_at: '2019-08-14T15:25:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/154/events - html_url: https://github.com/packit/ogr/pull/154 - id: 480744033 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/154/labels{/name} + url: https://api.github.com/users/lachmanfrantisek + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* changed sha\n* tests on\ + \ new repo\n* test fixed\n* raising exception\n* method get_sha_from_tag\n\ + * gitlab: project info methods\n* note added\n* method get_latest_release\n\ + * Fix some typing issues in factory.py\n* Not overwrite the gitlab token\ + \ when set on read-mode\n* Support GitlabAuthenticationError in response\ + \ files as well\n* fix backward compafibility for tests\n* Test creating\ + \ Pagure PRs and fix some username problems in Pagure tests\n* Creating\ + \ Pagure PRs calls upstream project url (not the url of fork)\n* Return\ + \ Gitlab specific release in get_latest_release in GitlabProject\n*\ + \ Remove create_from_remote_url since it is not used anywhere\n* Remove\ + \ unused+unrelated code from GitlabService class\n* Fix the naming issues\ + \ in GitLab API and add the skeleton of the non-implemented methods\n\ + * Fix API for update_pr_info\n* Update error msg with missing github-app\ + \ key as @TomasTomecek suggested\n* Improve handling of private-key\ + \ in github-app tests\n* Fix imports of the GitHub exceptions\n* Add\ + \ cryptography to dependencies to be able to authenticate as a github\ + \ app\n* Add test for github-app authentication\n* Add github_app_private_key_path\ + \ to GithubService\n* Document the `get_instances_from_dict`\n* Add\ + \ test for github app loading from dict\n* Improve __str__ for services\n\ + * Add method for loading services from dictionary\n* Add more gitlab\ + \ tests for service mapping\n* Remove repo specific methods from GitlabService\n\ + * Make the creation of gitlab objects lazy\n* Add tests for gitlab service-mapping\n\ + * Make the pagure service mapping more general\n* Add gitlab to service\ + \ mapping\n* Use non-None token for gitlab tests\n* tag tests added\n\ + * Save GitlabHttpError to response file\n* test responses added, test_nonexisting_file\ + \ fails\n* Fix loading of gitlab response files\n* Save responses for\ + \ gitlab\n* WIP: GitlabRelease, GitlabProject, GitlabUser added\n* WIP:\ + \ functions for gitlab\n* Run zuul tests both on pip and rpm\n* Remove\ + \ Jenkinsfile\n* [CONTRIBUTING.md] CentOS CI -> Zuul\n* pagure: use\ + \ web url in issue\n* [README.md] Zuul badge\n* removed Optional\n*\ + \ add suggested changes\n* edit_release as method, get_release changed\n\ + * add method edit_release\n* Rename get_pr_commits to get_all_pr_commits\n\ + * run tests on one repository\n* Better description\n* Add get_pr_commits\ + \ into abstract.py\n* Remove `assert commits` and check only first and\ + \ last commit\n* Update ogr/services/github.py\n* Add fnc for getting\ + \ all commits for PR\n* PersistenStorageException -> PersistentStorageException\n\ + * run pre-commit\n* git cherry-pick of PR#129 and make it works\n* Update\ + \ pagure.py\n* Update github.py\n* packit.yaml: propose_downstream:\ + \ s/_/-/\n\n\nYou can change it by editing `CHANGELOG.md` in the root\ + \ of this repository and pushing to `0.7.0-release` branch before merging\ + \ this PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-09-12T07:46:13Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/190/comments + created_at: '2019-09-11T07:59:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/190/events + html_url: https://github.com/packit/ogr/pull/190 + id: 492078119 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/190/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3MzgxNTAw - number: 154 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2MzIwNjY1 + number: 190 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/154.diff - html_url: https://github.com/packit/ogr/pull/154 - patch_url: https://github.com/packit/ogr/pull/154.patch - url: https://api.github.com/repos/packit/ogr/pulls/154 + diff_url: https://github.com/packit/ogr/pull/190.diff + html_url: https://github.com/packit/ogr/pull/190 + patch_url: https://github.com/packit/ogr/pull/190.patch + url: https://api.github.com/repos/packit/ogr/pulls/190 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Mention Zuul in CONTRIBUTING.md and remove Jenkinsfile - updated_at: '2019-08-15T08:12:10Z' - url: https://api.github.com/repos/packit/ogr/issues/154 + title: 0.7.0 release + updated_at: '2019-09-12T07:49:01Z' + url: https://api.github.com/repos/packit/ogr/issues/190 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Can we please update the contribution guide. Ogr now uses new zuul\ - \ CI (or softwarefactory-project-zuul). \r\n\r\nI'm a little bit stuck\ - \ on what should I do to make my tests passing when PR is opened. On\ - \ my localhost, everything is working in the \"old way\" and tests are\ - \ passing." - closed_at: '2019-08-15T08:12:06Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-09-11T07:59:58Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/123/comments - created_at: '2019-07-17T12:03:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/123/events - html_url: https://github.com/packit/ogr/issues/123 - id: 469153115 + comments_url: https://api.github.com/repos/packit/ogr/issues/188/comments + created_at: '2019-09-11T07:57:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/188/events + html_url: https://github.com/packit/ogr/issues/188 + id: 492077048 labels: - - color: 008672 - default: true - description: Extra attention is needed - id: 1160311265 - name: help wanted - node_id: MDU6TGFiZWwxMTYwMzExMjY1 - url: https://api.github.com/repos/packit/ogr/labels/help%20wanted - - color: f9d0c4 + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/123/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/188/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjkxNTMxMTU= - number: 123 + node_id: MDU6SXNzdWU0OTIwNzcwNDg= + number: 188 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: update contribution guide - updated_at: '2019-08-15T08:12:06Z' - url: https://api.github.com/repos/packit/ogr/issues/123 + title: new minor release + updated_at: '2019-09-11T07:59:58Z' + url: https://api.github.com/repos/packit/ogr/issues/188 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Just checking to see what is the desired behavior. I create an\ - \ issue and then print the url from the created issue. I'd then like\ - \ to open that url in a web browser and have it go to the graphical\ - \ UI and not the API.\r\n\r\nFor example:\r\n\r\n```\r\n>>> i = project.create_issue('TestIssue',\ - \ 'foo bar baz')\r\n>>> print(i.url)\r\nhttps://pagure.io/api/0/dusty/failed-composes/issue/2244\r\ - \n```\r\n\r\nBut what I really want is the url to the web frontent.\ - \ So `i.url.replace('api/0/','')`. What is the intended behavior? " - closed_at: '2019-08-15T07:11:15Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/146/comments - created_at: '2019-08-09T21:53:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/146/events - html_url: https://github.com/packit/ogr/issues/146 - id: 479180564 + body: I accidently deleted the testing repo, so I have regenerated the + tests on new repo [https://gitlab.com/packit-service/ogr-tests](url) + closed_at: '2019-09-11T06:44:23Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/187/comments + created_at: '2019-09-10T14:21:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/187/events + html_url: https://github.com/packit/ogr/pull/187 + id: 491705182 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff + - color: 0e8a16 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/146/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/187/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzkxODA1NjQ= - number: 146 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2MDIwMzM5 + number: 187 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/187.diff + html_url: https://github.com/packit/ogr/pull/187 + patch_url: https://github.com/packit/ogr/pull/187.patch + url: https://api.github.com/repos/packit/ogr/pulls/187 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: the url in an issue object is the API url - updated_at: '2019-08-15T07:11:15Z' - url: https://api.github.com/repos/packit/ogr/issues/146 + title: tests on new repo + updated_at: '2019-09-11T06:44:23Z' + url: https://api.github.com/repos/packit/ogr/issues/187 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 - events_url: https://api.github.com/users/dustymabe/events{/privacy} - followers_url: https://api.github.com/users/dustymabe/followers - following_url: https://api.github.com/users/dustymabe/following{/other_user} - gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + 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/dustymabe - id: 4530030 - login: dustymabe - node_id: MDQ6VXNlcjQ1MzAwMzA= - organizations_url: https://api.github.com/users/dustymabe/orgs - received_events_url: https://api.github.com/users/dustymabe/received_events - repos_url: https://api.github.com/users/dustymabe/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + 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/dustymabe + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: '' - closed_at: '2019-08-14T12:37:27Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/153/comments - created_at: '2019-08-14T12:22:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/153/events - html_url: https://github.com/packit/ogr/pull/153 - id: 480648599 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/153/labels{/name} + body: "```python\r\n def get_sha_from_tag(self, tag_name: str) -> str:\r\ + \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html" + closed_at: '2019-09-10T14:30:35Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/170/comments + created_at: '2019-09-06T07:21:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/170/events + html_url: https://github.com/packit/ogr/issues/170 + id: 490171969 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/170/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3MzA0MjMx - number: 153 + node_id: MDU6SXNzdWU0OTAxNzE5Njk= + number: 170 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/153.diff - html_url: https://github.com/packit/ogr/pull/153 - patch_url: https://github.com/packit/ogr/pull/153.patch - url: https://api.github.com/repos/packit/ogr/pulls/153 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[README.md] Zuul badge' - updated_at: '2019-08-14T15:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/153 + title: 'Implement GitLab method: get_sha_from_tag' + updated_at: '2019-09-10T14:30:35Z' + url: https://api.github.com/repos/packit/ogr/issues/170 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #127 ' - closed_at: '2019-08-13T07:27:51Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/137/comments - created_at: '2019-07-25T10:41:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/137/events - html_url: https://github.com/packit/ogr/pull/137 - id: 472793637 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/137/labels{/name} + author_association: CONTRIBUTOR + body: 'Fixes #170 ' + closed_at: '2019-09-10T14:30:35Z' + comments: 24 + comments_url: https://api.github.com/repos/packit/ogr/issues/186/comments + created_at: '2019-09-10T10:45:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/186/events + html_url: https://github.com/packit/ogr/pull/186 + id: 491594645 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/186/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzAxMDg1MDUw - number: 137 + node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTMwNzcy + number: 186 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/137.diff - html_url: https://github.com/packit/ogr/pull/137 - patch_url: https://github.com/packit/ogr/pull/137.patch - url: https://api.github.com/repos/packit/ogr/pulls/137 + diff_url: https://github.com/packit/ogr/pull/186.diff + html_url: https://github.com/packit/ogr/pull/186 + patch_url: https://github.com/packit/ogr/pull/186.patch + url: https://api.github.com/repos/packit/ogr/pulls/186 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add method edit_release - updated_at: '2019-08-13T07:27:52Z' - url: https://api.github.com/repos/packit/ogr/issues/137 + title: method get_sha_from_tag + updated_at: '2019-09-10T14:30:35Z' + url: https://api.github.com/repos/packit/ogr/issues/186 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -96945,7 +125230,7 @@ requests.sessions: url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -96964,7 +125249,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -96982,24 +125267,28 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions type: User url: https://api.github.com/users/lbarcziova - author_association: COLLABORATOR - body: Can we create a method for editing a release? We can use [this](https://pygithub.readthedocs.io/en/latest/github_objects/GitRelease.html#github.GitRelease.GitRelease.update_release) - for it. - closed_at: '2019-08-13T07:27:51Z' + author_association: MEMBER + body: "```python\r\n def get_description(self) -> str:\r\n #\ + \ Probably something like this:\r\n # return self.gitlab_repo.attributes[\"\ + description\"]\r\n raise NotImplementedError()\r\n\r\n def\ + \ get_git_urls(self) -> Dict[str, str]:\r\n pass\r\n```\r\n\r\ + \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \n- https://docs.gitlab.com/ce/api/projects.html" + closed_at: '2019-09-10T11:56:53Z' comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/127/comments - created_at: '2019-07-18T08:08:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/127/events - html_url: https://github.com/packit/ogr/issues/127 - id: 469627928 + comments_url: https://api.github.com/repos/packit/ogr/issues/175/comments + created_at: '2019-09-06T07:24:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/175/events + html_url: https://github.com/packit/ogr/issues/175 + id: 490173038 labels: - - color: '000000' + - color: d93f0b default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: a2eeef default: false description: New feature or a request for enhancement. @@ -97021,67 +125310,157 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/127/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/175/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njk2Mjc5Mjg= - number: 127 + node_id: MDU6SXNzdWU0OTAxNzMwMzg= + number: 175 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: edit Github release - updated_at: '2019-08-13T07:27:51Z' - url: https://api.github.com/repos/packit/ogr/issues/127 + title: Implement GitLab methods for project info + updated_at: '2019-09-10T11:56:53Z' + url: https://api.github.com/repos/packit/ogr/issues/175 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #124 ' - closed_at: '2019-08-13T07:11:39Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/136/comments - created_at: '2019-07-25T07:39:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/136/events - html_url: https://github.com/packit/ogr/pull/136 - id: 472712760 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/136/labels{/name} + author_association: CONTRIBUTOR + body: 'Fixes #175 ' + closed_at: '2019-09-10T11:56:53Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/184/comments + created_at: '2019-09-10T10:04:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/184/events + html_url: https://github.com/packit/ogr/pull/184 + id: 491575224 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/184/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzAxMDE5ODMy - number: 136 + node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTE0OTk4 + number: 184 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/136.diff - html_url: https://github.com/packit/ogr/pull/136 - patch_url: https://github.com/packit/ogr/pull/136.patch - url: https://api.github.com/repos/packit/ogr/pulls/136 + diff_url: https://github.com/packit/ogr/pull/184.diff + html_url: https://github.com/packit/ogr/pull/184 + patch_url: https://github.com/packit/ogr/pull/184.patch + url: https://api.github.com/repos/packit/ogr/pulls/184 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'gitlab: project info methods' + updated_at: '2019-09-10T11:56:53Z' + url: https://api.github.com/repos/packit/ogr/issues/184 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #176 ' + closed_at: '2019-09-10T11:44:36Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/185/comments + created_at: '2019-09-10T10:10:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/185/events + html_url: https://github.com/packit/ogr/pull/185 + id: 491578586 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/185/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTE3NzMx + number: 185 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/185.diff + html_url: https://github.com/packit/ogr/pull/185 + patch_url: https://github.com/packit/ogr/pull/185.patch + url: https://api.github.com/repos/packit/ogr/pulls/185 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: run tests on one repository - updated_at: '2019-08-13T07:11:39Z' - url: https://api.github.com/repos/packit/ogr/issues/136 + title: method get_latest_release + updated_at: '2019-09-10T11:44:36Z' + url: https://api.github.com/repos/packit/ogr/issues/185 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -97101,7 +125480,7 @@ requests.sessions: url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -97120,7 +125499,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -97139,31 +125518,31 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "- Try to have only one project for testing (ideally OGR itself\ - \ in case of GitHub).\r\n- Then it is easy for everyone to regenerate\ - \ the test responses." - closed_at: '2019-08-13T07:11:39Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/124/comments - created_at: '2019-07-18T07:15:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/124/events - html_url: https://github.com/packit/ogr/issues/124 - id: 469607471 + body: "```python\r\n def get_latest_release(self) -> GitlabRelease:\r\ + \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-releases\r\ + \n- https://docs.gitlab.com/ee/api/releases/" + closed_at: '2019-09-10T11:44:35Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/176/comments + created_at: '2019-09-06T07:24:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/176/events + html_url: https://github.com/packit/ogr/issues/176 + id: 490173186 labels: - - color: '000000' + - color: d93f0b default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -97171,20 +125550,6 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - color: 42e529 default: false description: This issue was already processed and well defined. @@ -97192,19 +125557,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/124/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/176/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njk2MDc0NzE= - number: 124 + node_id: MDU6SXNzdWU0OTAxNzMxODY= + number: 176 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Run tests on the OGR project itself - updated_at: '2019-08-13T07:11:39Z' - url: https://api.github.com/repos/packit/ogr/issues/124 + title: Implement GitLab method for latest release + updated_at: '2019-09-10T11:44:35Z' + url: https://api.github.com/repos/packit/ogr/issues/176 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -97226,271 +125591,511 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-08-10T14:24:33Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/148/comments - created_at: '2019-08-10T13:32:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/148/events - html_url: https://github.com/packit/ogr/pull/148 - id: 479267763 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/148/labels{/name} + body: "- Fix some typing issues in factory.py.\r\n\r\nReason: typing problems\ + \ in the packit code on top of it." + closed_at: '2019-09-10T11:00:14Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/183/comments + created_at: '2019-09-10T09:22:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/183/events + html_url: https://github.com/packit/ogr/pull/183 + id: 491553190 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/183/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA2MjEyNjI0 - number: 148 + node_id: MDExOlB1bGxSZXF1ZXN0MzE1ODk3MjEz + number: 183 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/148.diff - html_url: https://github.com/packit/ogr/pull/148 - patch_url: https://github.com/packit/ogr/pull/148.patch - url: https://api.github.com/repos/packit/ogr/pulls/148 + diff_url: https://github.com/packit/ogr/pull/183.diff + html_url: https://github.com/packit/ogr/pull/183 + patch_url: https://github.com/packit/ogr/pull/183.patch + url: https://api.github.com/repos/packit/ogr/pulls/183 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: testing - updated_at: '2019-08-10T14:30:25Z' - url: https://api.github.com/repos/packit/ogr/issues/148 + title: Fix typing in factory + updated_at: '2019-09-10T11:21:08Z' + url: https://api.github.com/repos/packit/ogr/issues/183 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ - \nBy PR #144 we add a bug. In `github.py` is mentioned https://github.com/packit-service/ogr/blob/master/ogr/services/github.py#L398\ - \ `get_all_pr_commits`.\r\n\r\nSuddenly it was not caught by PR review." - closed_at: '2019-08-09T14:48:39Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/145/comments - created_at: '2019-08-09T13:29:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/145/events - html_url: https://github.com/packit/ogr/pull/145 - id: 478987478 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/145/labels{/name} + author_association: MEMBER + body: '- Not overwrite the gitlab token when set on read-mode. + + - Support GitlabAuthenticationError in response files as well.' + closed_at: '2019-09-10T09:06:12Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/182/comments + created_at: '2019-09-09T10:59:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/182/events + html_url: https://github.com/packit/ogr/pull/182 + id: 491026784 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/182/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA1OTkwNTI1 - number: 145 + node_id: MDExOlB1bGxSZXF1ZXN0MzE1NDc0NDYw + number: 182 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/145.diff - html_url: https://github.com/packit/ogr/pull/145 - patch_url: https://github.com/packit/ogr/pull/145.patch - url: https://api.github.com/repos/packit/ogr/pulls/145 + diff_url: https://github.com/packit/ogr/pull/182.diff + html_url: https://github.com/packit/ogr/pull/182 + patch_url: https://github.com/packit/ogr/pull/182.patch + url: https://api.github.com/repos/packit/ogr/pulls/182 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Rename get_pr_commits to get_all_pr_commits in abstract.py - updated_at: '2019-08-09T14:48:39Z' - url: https://api.github.com/repos/packit/ogr/issues/145 + title: Support GitlabAuthenticationError + updated_at: '2019-09-10T09:07:59Z' + url: https://api.github.com/repos/packit/ogr/issues/182 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + 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/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + 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/phracek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ - \nAdd function `get_pr_commits` into `abstract.py`." - closed_at: '2019-08-08T14:03:49Z' + body: "fix the issue causing that older ogr does not know what is exception\ + \ in init.\r\ndo not store values what are empty" + closed_at: '2019-09-09T10:52:04Z' comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/144/comments - created_at: '2019-08-08T12:17:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/144/events - html_url: https://github.com/packit/ogr/pull/144 - id: 478434638 + comments_url: https://api.github.com/repos/packit/ogr/issues/179/comments + created_at: '2019-09-06T12:29:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/179/events + html_url: https://github.com/packit/ogr/pull/179 + id: 490300829 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/144/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/179/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA1NTQ5MTcw - number: 144 + node_id: MDExOlB1bGxSZXF1ZXN0MzE0OTMzMDEy + number: 179 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/144.diff - html_url: https://github.com/packit/ogr/pull/144 - patch_url: https://github.com/packit/ogr/pull/144.patch - url: https://api.github.com/repos/packit/ogr/pulls/144 + diff_url: https://github.com/packit/ogr/pull/179.diff + html_url: https://github.com/packit/ogr/pull/179 + patch_url: https://github.com/packit/ogr/pull/179.patch + url: https://api.github.com/repos/packit/ogr/pulls/179 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add get_pr_commits into abstract.py - updated_at: '2019-08-08T14:03:49Z' - url: https://api.github.com/repos/packit/ogr/issues/144 + title: fix backward compafibility for tests + updated_at: '2019-09-09T14:13:28Z' + url: https://api.github.com/repos/packit/ogr/issues/179 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/phracek + url: https://api.github.com/users/jscotka + _next: null + elapsed: 0.353328 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:54 GMT + ETag: W/"cbe66a9d1ef27c4f41d1222dd169ede31152c96fe58d2a0ec2d25b727be5a8bf" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F80F24:191CFCC:6075DC56 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4592' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '408' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=14: + - metadata: + latency: 0.37014007568359375 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Test creating Pagure PRs and fix some username problems in Pagure + tests. + + - Creating Pagure PRs calls upstream project url (not the url of fork). + + + Fixes: #161' + closed_at: '2019-09-09T08:16:38Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/180/comments + created_at: '2019-09-06T19:01:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/180/events + html_url: https://github.com/packit/ogr/pull/180 + id: 490477438 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + labels_url: https://api.github.com/repos/packit/ogr/issues/180/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE1MDc2NjUy + number: 180 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/180.diff + html_url: https://github.com/packit/ogr/pull/180 + patch_url: https://github.com/packit/ogr/pull/180.patch + url: https://api.github.com/repos/packit/ogr/pulls/180 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix creating Pagure PRs + updated_at: '2019-09-09T08:16:44Z' + url: https://api.github.com/repos/packit/ogr/issues/180 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ - \nPull request adds a function for getting all commits for specific\ - \ PR.\r\nIt is useful when the user adds a comment into `packit-service`\ - \ like `/packit copr-build` and we would like to get especially the\ - \ latest commit from the PR.\r\n\r\nA real example:\r\nhttps://github.com/packit-service/packit-service/blob/master/packit_service/worker/github_handlers.py#L92\ - \ `pr_event/base_ref` cannot by `pr/9` but reference to the latest commit\ - \ for a pull request.\r\n\r\n- [x] Pull Request contains info about\ - \ SHA of the latest commit.\r\n- [x] tests are covered." - closed_at: '2019-08-08T10:10:30Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/140/comments - created_at: '2019-08-05T10:56:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/140/events - html_url: https://github.com/packit/ogr/pull/140 - id: 476794481 + body: "https://src.stg.fedoraproject.org/api/0/#pull-requests\r\n\r\n\ + we just need to use the new fields such as repo_from which were added\ + \ to the API in order to create PRs from forks to parent repos.\r\n\r\ + \nfollow up to https://github.com/packit-service/packit/pull/496\r\n\ + blocks https://github.com/packit-service/packit.dev/pull/42\r\n\r\n\ + likely packit will need some code changes to support this" + closed_at: '2019-09-09T08:16:38Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/161/comments + created_at: '2019-08-29T09:31:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/161/events + html_url: https://github.com/packit/ogr/issues/161 + id: 486845482 labels: - - color: 18e033 + - color: 1d76db default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/140/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9e231 + default: false + description: High priority. + id: 1432779316 + name: high-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzE2 + url: https://api.github.com/repos/packit/ogr/labels/high-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/161/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA0MjQ5MTY2 - number: 140 + node_id: MDU6SXNzdWU0ODY4NDU0ODI= + number: 161 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'pagure: support new way of creating PRs from forks' + updated_at: '2019-09-09T08:16:38Z' + url: https://api.github.com/repos/packit/ogr/issues/161 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Fix the naming issues in GitLab API and add the skeleton of the + non-implemented methods. + + - Fix API for update_pr_info.' + closed_at: '2019-09-06T08:20:46Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/167/comments + created_at: '2019-09-06T06:33:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/167/events + html_url: https://github.com/packit/ogr/pull/167 + id: 490155512 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/167/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE0ODE1OTI3 + number: 167 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/140.diff - html_url: https://github.com/packit/ogr/pull/140 - patch_url: https://github.com/packit/ogr/pull/140.patch - url: https://api.github.com/repos/packit/ogr/pulls/140 + diff_url: https://github.com/packit/ogr/pull/167.diff + html_url: https://github.com/packit/ogr/pull/167 + patch_url: https://github.com/packit/ogr/pull/167.patch + url: https://api.github.com/repos/packit/ogr/pulls/167 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Function for getting all commits from specific PR. - updated_at: '2019-08-08T10:10:30Z' - url: https://api.github.com/repos/packit/ogr/issues/140 + title: Fix the inconsistences in the GitLab API + updated_at: '2019-09-06T08:20:50Z' + url: https://api.github.com/repos/packit/ogr/issues/167 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + 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/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + 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/phracek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: I checked it's not used anywhere else. - closed_at: '2019-08-06T11:03:47Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/142/comments - created_at: '2019-08-06T10:20:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/142/events - html_url: https://github.com/packit/ogr/pull/142 - id: 477295662 + body: 'Fixes #162' + closed_at: '2019-09-05T09:00:25Z' + comments: 31 + comments_url: https://api.github.com/repos/packit/ogr/issues/163/comments + created_at: '2019-09-02T12:37:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/163/events + html_url: https://github.com/packit/ogr/pull/163 + id: 488169691 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/142/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/163/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA0NjQ3NzYz - number: 142 + node_id: MDExOlB1bGxSZXF1ZXN0MzEzMjQ4MzIz + number: 163 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/142.diff - html_url: https://github.com/packit/ogr/pull/142 - patch_url: https://github.com/packit/ogr/pull/142.patch - url: https://api.github.com/repos/packit/ogr/pulls/142 + diff_url: https://github.com/packit/ogr/pull/163.diff + html_url: https://github.com/packit/ogr/pull/163 + patch_url: https://github.com/packit/ogr/pull/163.patch + url: https://api.github.com/repos/packit/ogr/pulls/163 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: PersistenStorageException -> PersistentStorageException - updated_at: '2019-08-06T11:03:50Z' - url: https://api.github.com/repos/packit/ogr/issues/142 + title: Be able to set private key path for GitHub app + updated_at: '2019-09-05T09:00:29Z' + url: https://api.github.com/repos/packit/ogr/issues/163 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: '' - closed_at: '2019-08-06T07:30:48Z' - comments: 23 - comments_url: https://api.github.com/repos/packit/ogr/issues/129/comments - created_at: '2019-07-18T17:29:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/129/events - html_url: https://github.com/packit/ogr/pull/129 - id: 469897903 + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: MEMBER + body: "When authenticating as a GitHub-app we currently need a private_key\ + \ as a string.\r\n\r\nIt would be very convenient (and very usefull\ + \ when having #160 ) to have another attribute for the private-key path.\r\ + \n\r\nThe code can be moved/stolen [from packit](https://github.com/packit-service/packit/blob/master/packit/upstream.py#L88).\r\ + \n" + closed_at: '2019-09-05T09:00:25Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/162/comments + created_at: '2019-09-02T09:12:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/162/events + html_url: https://github.com/packit/ogr/issues/162 + id: 488085461 labels: - color: '000000' default: false @@ -97499,13 +126104,6 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: a2eeef default: false description: New feature or a request for enhancement. @@ -97513,462 +126111,411 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/129/labels{/name} + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/162/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk5MDE3NDM2 - number: 129 + node_id: MDU6SXNzdWU0ODgwODU0NjE= + number: 162 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/129.diff - html_url: https://github.com/packit/ogr/pull/129 - patch_url: https://github.com/packit/ogr/pull/129.patch - url: https://api.github.com/repos/packit/ogr/pulls/129 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Fix Issue #126, implemented get_email' - updated_at: '2019-08-06T07:30:49Z' - url: https://api.github.com/repos/packit/ogr/issues/129 + title: Be able to use path to private_key for GitHub app authentication + updated_at: '2019-09-05T09:00:25Z' + url: https://api.github.com/repos/packit/ogr/issues/162 user: - avatar_url: https://avatars1.githubusercontent.com/u/38399871?v=4 - events_url: https://api.github.com/users/yzhang2907/events{/privacy} - followers_url: https://api.github.com/users/yzhang2907/followers - following_url: https://api.github.com/users/yzhang2907/following{/other_user} - gists_url: https://api.github.com/users/yzhang2907/gists{/gist_id} + 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/yzhang2907 - id: 38399871 - login: yzhang2907 - node_id: MDQ6VXNlcjM4Mzk5ODcx - organizations_url: https://api.github.com/users/yzhang2907/orgs - received_events_url: https://api.github.com/users/yzhang2907/received_events - repos_url: https://api.github.com/users/yzhang2907/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/yzhang2907/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/yzhang2907/subscriptions + 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/yzhang2907 + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "I made `git cherry-pick` of all @yzhang2907 commits in PR #129\ - \ which solves #126. I also found out that there is no current way how\ - \ to get the user's email from Pagure API and @yzhang2907 code wouldn't\ - \ work for Pagure. However, the code for Github is fine now. \r\n\r\n" - closed_at: '2019-08-06T07:27:43Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/141/comments - created_at: '2019-08-05T12:28:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/141/events - html_url: https://github.com/packit/ogr/pull/141 - id: 476831775 + author_association: MEMBER + body: '- Add method for loading services from dictionary. + + - Tests included. + + + Fixes: #159' + closed_at: '2019-09-02T10:30:19Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/160/comments + created_at: '2019-08-21T08:47:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/160/events + html_url: https://github.com/packit/ogr/pull/160 + id: 483284044 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/141/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/160/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA0Mjc5NjI3 - number: 141 + node_id: MDExOlB1bGxSZXF1ZXN0MzA5Mzg5NjA4 + number: 160 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/141.diff - html_url: https://github.com/packit/ogr/pull/141 - patch_url: https://github.com/packit/ogr/pull/141.patch - url: https://api.github.com/repos/packit/ogr/pulls/141 + diff_url: https://github.com/packit/ogr/pull/160.diff + html_url: https://github.com/packit/ogr/pull/160 + patch_url: https://github.com/packit/ogr/pull/160.patch + url: https://api.github.com/repos/packit/ogr/pulls/160 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get-email - updated_at: '2019-08-06T07:27:43Z' - url: https://api.github.com/repos/packit/ogr/issues/141 + title: Loading services from dict + updated_at: '2019-09-02T10:47:59Z' + url: https://api.github.com/repos/packit/ogr/issues/160 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: https://packit.dev/docs/configuration/#supported-jobs - closed_at: '2019-07-30T10:59:00Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/138/comments - created_at: '2019-07-30T07:31:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/138/events - html_url: https://github.com/packit/ogr/pull/138 - id: 474421629 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/138/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzAyMzY2NTU5 - number: 138 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/138.diff - html_url: https://github.com/packit/ogr/pull/138 - patch_url: https://github.com/packit/ogr/pull/138.patch - url: https://api.github.com/repos/packit/ogr/pulls/138 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'packit.yaml: propose_downstream: s/_/-/' - updated_at: '2019-07-30T14:27:13Z' - url: https://api.github.com/repos/packit/ogr/issues/138 - user: - avatar_url: https://avatars0.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} + assignee: + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=11: - - metadata: - latency: 0.4797964096069336 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/lachmanfrantisek + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* method _pr_from_github_object\ - \ differentiate closed and merged status\n* allow usage of PRStatus.merged\ - \ for github pull requests\n* add get_latest_release(), create Releases\ - \ class in test_github.py\n* Simplify imports\n* Split mocking and persistent_storage\n\ - * Fix github-app authentication\n* Rename env-var for mocking and allow\ - \ setting response file from RESPONSE_FILE env-var\n* Use PersistentObjectStorage\ - \ as a Singleton\n* Split mocking and read_only from mocking\n* Set\ - \ persistent storage only via class\n* Update mocking of GithubIntegration\ - \ from PyGithub\n* Improve mocking and add support for authentication\ - \ as a github-app\n* improve tests from previous commit\n* add labeling\ - \ github pull requests\n* mistake fixed\n* PRFlag changed back to PRStatus\n\ - * CommitStatus, PRStatus renamed to CommitFlag, PRFlag\n* use zuul for\ - \ realz now\n* test changed\n* method create release for github created\n\ - * add zuul config\n* bump base image to F30\n* add get_releses for Pagure\n\ - * unused functions removed\n* add get_releases/get_release into abstract.py\n\ - * add who_can_marge_pr and who_can_close_issue\n* delete obsolete comments\n\ - * fix review notes, add can_close_issue and can_merge_pr, remove who_can_close_issue\ - \ and who_can_merge_pr\n* fix mypy errors\n* get project's owners and\ - \ permissions of various users\n* split test_get_tag_from_tag_name\n\ - * value of git_tag in github Release set\n* link to GitTag from Release\ - \ added\n* collections.Hashable -> collections.abc.Hashable\n* Make\ - \ PersistentObjectStorage.__init__() backwards compatible\n* in get_file_content\ - \ catch only 404\n* subprocess.run fix\n* unify external command invocation\ - \ by subprocess.run\n* Add integration tests for factory and add more\ - \ unit tests\n* Add docstrings to factory and types to parsing\n* Add\ - \ get_project and get_service_class to global imports\n* Add tests for\ - \ parsing\n* Add tests for factory\n* Add __eq__ for projects and services\n\ - * Save more attributes about parsed url\n* [github] Be lazy with github_repo\ - \ object from pygithub\n* Fix __str__ after rebase\n* Add support for\ - \ services-mapping update\n* Import services in ogr/__init__.py to see\ - \ it in the mapping\n* Add method for creating projects from url\n*\ - \ Get project from url\n* fix code format issues\n* add tests, fix review\ - \ notes\n* creating/closing/commenting Pagure Issues\n* Fix formating\ - \ for __str__ methods\n* Changes requested to_str_method of classes\n\ - * Added instantiation-like syntax\n* Added __str__ method to classes\n\ - * Added __str__ method to classes\n\n\nYou can change it by editing\ - \ `CHANGELOG.md` in the root of this repository and pushing to `0.6.0-release`\ - \ branch before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2019-07-25T07:48:18Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/135/comments - created_at: '2019-07-23T11:55:07Z' - events_url: https://api.github.com/repos/packit/ogr/issues/135/events - html_url: https://github.com/packit/ogr/pull/135 - id: 471653597 + body: "In [packit](https://github.com/packit-service/packit) and [upsint](https://github.com/packit-service/upsint/),\ + \ we need to load authentication for services from files.\r\n\r\nIt\ + \ would be nice to have a method for loading instances from `dict` so\ + \ we can use it from multiple projects.\r\n\r\n```python\r\n>>> from\ + \ ogr import get_instances_from_dict\r\n>>> get_instances_from_dict({\r\ + \n... \"github.com\": {\"token\": \"abcd\"},\r\n... \"pagure.io\"\ + : {\"token\": \"defg\"},\r\n... \"src.fedoraproject.org\": {\"token\"\ + : \"asdasdasda\"},\r\n... })\r\n[\r\n GithubService(token=\"abcd\"\ + ),\r\n PagureService(instance_url=\"https://pagure.io\", token=\"\ + defg\"),\r\n PagureService(instance_url=\"https://src.fedoraproject.org\"\ + , token=\"asdasdasda\"),\r\n]\r\n```\r\n\r\n\r\n" + closed_at: '2019-09-02T10:30:19Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/159/comments + created_at: '2019-08-20T12:11:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/159/events + html_url: https://github.com/packit/ogr/issues/159 + id: 482822700 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: a2eeef default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/135/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/159/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzAwMjYxMzU3 - number: 135 + node_id: MDU6SXNzdWU0ODI4MjI3MDA= + number: 159 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/135.diff - html_url: https://github.com/packit/ogr/pull/135 - patch_url: https://github.com/packit/ogr/pull/135.patch - url: https://api.github.com/repos/packit/ogr/pulls/135 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.6.0 release - updated_at: '2019-07-25T07:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/135 + title: Add method for loading instances from dict + updated_at: '2019-09-02T10:30:19Z' + url: https://api.github.com/repos/packit/ogr/issues/159 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Based on our discussion in PR #128 this code makes consistency\ - \ in `get_pr_list(status)` between Pagure and Github. We can use `PRStatus.merged`\ - \ for Github now.\r\n\r\nCan we close #128 without merging? It was easier\ - \ to create a new branch since the code is completely different.\r\n" - closed_at: '2019-07-23T11:51:08Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/130/comments - created_at: '2019-07-21T13:19:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/130/events - html_url: https://github.com/packit/ogr/pull/130 - id: 470780887 + author_association: MEMBER + body: "- Remove repo specific methods from GitlabService.\r\n- Make the\ + \ creation of gitlab objects lazy.\r\n- Add tests for gitlab service-mapping.\r\ + \n- Make the pagure service mapping more general.\r\n- Add gitlab to\ + \ service mapping." + closed_at: '2019-08-20T11:55:31Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/156/comments + created_at: '2019-08-15T14:37:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/156/events + html_url: https://github.com/packit/ogr/pull/156 + id: 481182139 labels: - - color: '000000' + - color: d93f0b default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/130/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + labels_url: https://api.github.com/repos/packit/ogr/issues/156/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk5NjM1NzU2 - number: 130 + node_id: MDExOlB1bGxSZXF1ZXN0MzA3NzMxMDE1 + number: 156 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/130.diff - html_url: https://github.com/packit/ogr/pull/130 - patch_url: https://github.com/packit/ogr/pull/130.patch - url: https://api.github.com/repos/packit/ogr/pulls/130 + diff_url: https://github.com/packit/ogr/pull/156.diff + html_url: https://github.com/packit/ogr/pull/156 + patch_url: https://github.com/packit/ogr/pull/156.patch + url: https://api.github.com/repos/packit/ogr/pulls/156 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: allow usage of PRStatus.merged for Github get_pr_list(status) - updated_at: '2019-07-23T12:16:08Z' - url: https://api.github.com/repos/packit/ogr/issues/130 + title: Add gitlab to service mapping + updated_at: '2019-08-20T11:55:35Z' + url: https://api.github.com/repos/packit/ogr/issues/156 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "It's pretty common looking for the latest release only. It would\ - \ be useful to have a fast method for it without looking for some identifier\ - \ or getting all releases. Here it is. \r\n\r\nI also think that tests\ - \ for releases were in the incorrect class. Release tests which are\ - \ increasing deserve its own class. " - closed_at: '2019-07-23T11:01:50Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/131/comments - created_at: '2019-07-21T15:22:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/131/events - html_url: https://github.com/packit/ogr/pull/131 - id: 470793486 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/131/labels{/name} + author_association: CONTRIBUTOR + body: "Fixes #125 \r\nTests fail because test responses can't be saved." + closed_at: '2019-08-15T14:34:37Z' + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/150/comments + created_at: '2019-08-13T13:16:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/150/events + html_url: https://github.com/packit/ogr/pull/150 + id: 480151584 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + labels_url: https://api.github.com/repos/packit/ogr/issues/150/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk5NjQ0MzIy - number: 131 + node_id: MDExOlB1bGxSZXF1ZXN0MzA2OTAyMTg4 + number: 150 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/131.diff - html_url: https://github.com/packit/ogr/pull/131 - patch_url: https://github.com/packit/ogr/pull/131.patch - url: https://api.github.com/repos/packit/ogr/pulls/131 + diff_url: https://github.com/packit/ogr/pull/150.diff + html_url: https://github.com/packit/ogr/pull/150 + patch_url: https://github.com/packit/ogr/pull/150.patch + url: https://api.github.com/repos/packit/ogr/pulls/150 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add get_latest_release(), create Releases class in test_github.py - updated_at: '2019-07-23T12:12:58Z' - url: https://api.github.com/repos/packit/ogr/issues/131 + title: Functions for gitlab + updated_at: '2019-08-20T07:19:51Z' + url: https://api.github.com/repos/packit/ogr/issues/150 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: '' - closed_at: '2019-07-23T11:55:10Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/134/comments - created_at: '2019-07-23T11:52:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/134/events - html_url: https://github.com/packit/ogr/issues/134 - id: 471652493 + body: "It would be nice to finally start implementing the GitLab support.\r\ + \n\r\nWe can probably combine the code from GitHub and the already present\ + \ code.\r\n\r\nThe documentation can be found here: https://python-gitlab.readthedocs.io/en/stable/" + closed_at: '2019-08-15T14:34:37Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/125/comments + created_at: '2019-07-18T07:17:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/125/events + html_url: https://github.com/packit/ogr/issues/125 + id: 469608368 labels: - - color: ededed + - color: d93f0b default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/134/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/125/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzE2NTI0OTM= - number: 134 + node_id: MDU6SXNzdWU0Njk2MDgzNjg= + number: 125 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-07-23T11:55:10Z' - url: https://api.github.com/repos/packit/ogr/issues/134 + title: GitLab support + updated_at: '2019-08-15T14:34:37Z' + url: https://api.github.com/repos/packit/ogr/issues/125 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -97989,110 +126536,173 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "`PullRequest` class in abstract.py already has `status` field.\ - \ \r\n\r\nIn the case of Github, the set of values from API for this\ - \ field is `open`/`closed`/`all` and therefore there is missing value\ - \ `merged`. I added `is_merged` field into `PullRequest` class (since\ - \ it causes bugs in release-bot).\r\n\r\nI set the new `is_merged` field\ - \ also for Pagure." - closed_at: '2019-07-23T07:43:52Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/128/comments - created_at: '2019-07-18T10:12:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/128/events - html_url: https://github.com/packit/ogr/pull/128 - id: 469685206 + author_association: MEMBER + body: '- Run zuul tests both on pip and rpm.' + closed_at: '2019-08-15T14:20:14Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/155/comments + created_at: '2019-08-15T09:27:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/155/events + html_url: https://github.com/packit/ogr/pull/155 + id: 481069480 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/128/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/155/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk4ODQ0ODYy - number: 128 + node_id: MDExOlB1bGxSZXF1ZXN0MzA3NjQwNzUy + number: 155 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/128.diff - html_url: https://github.com/packit/ogr/pull/128 - patch_url: https://github.com/packit/ogr/pull/128.patch - url: https://api.github.com/repos/packit/ogr/pulls/128 + diff_url: https://github.com/packit/ogr/pull/155.diff + html_url: https://github.com/packit/ogr/pull/155 + patch_url: https://github.com/packit/ogr/pull/155.patch + url: https://api.github.com/repos/packit/ogr/pulls/155 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add is_merged field into PullRequest - updated_at: '2019-07-23T07:43:52Z' - url: https://api.github.com/repos/packit/ogr/issues/128 + title: Run zuul for pip and rpm + updated_at: '2019-08-15T14:20:18Z' + url: https://api.github.com/repos/packit/ogr/issues/155 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Don't use the api url when populating the data for an issue. Use\r\ + \nthe web url so that it can be used in a web browser.\r\n\r\nFixes\ + \ #146" + closed_at: '2019-08-15T07:11:16Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/151/comments + created_at: '2019-08-13T18:06:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/151/events + html_url: https://github.com/packit/ogr/pull/151 + id: 480292368 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/151/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA3MDE3Mjky + number: 151 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/151.diff + html_url: https://github.com/packit/ogr/pull/151 + patch_url: https://github.com/packit/ogr/pull/151.patch + url: https://api.github.com/repos/packit/ogr/pulls/151 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'pagure: use web url in issue' + updated_at: '2019-08-15T13:23:23Z' + url: https://api.github.com/repos/packit/ogr/issues/151 + user: + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 + events_url: https://api.github.com/users/dustymabe/events{/privacy} + followers_url: https://api.github.com/users/dustymabe/followers + following_url: https://api.github.com/users/dustymabe/following{/other_user} + gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dustymabe + id: 4530030 + login: dustymabe + node_id: MDQ6VXNlcjQ1MzAwMzA= + organizations_url: https://api.github.com/users/dustymabe/orgs + received_events_url: https://api.github.com/users/dustymabe/received_events + repos_url: https://api.github.com/users/dustymabe/repos + site_admin: false + starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + type: User + url: https://api.github.com/users/dustymabe - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Improve saving responses.\r\n - Use Singleton for `PersistentObjectStorage`.\r\ - \n - Enable saving responses by env-var (`RECORD_REQUESTS`).\r\n\ - - Add support for authentication as a github-app.\r\n\r\n\r\n-----\r\ - \n\r\n### Usage:\r\n- Set `RECORD_REQUESTS` env. variable to turn it\ - \ on and import services directly from ogr.\r\n - Use `from ogr import\ - \ PagureService`, not `from ogr.services.pagure import PagureService`.\r\ - \n - You can use the following code in the `__init__.py` to enable\ - \ mocking for whole module:\r\n ```python\r\n import os\r\n \ - \ os.environ[\"RECORD_REQUESTS\"] = \"TRUE\"\r\n ```\r\n- Set the\ - \ storage file name before the test:\r\n ```python\r\n PersistentObjectStorage().storage_file\ - \ = persistent_data_file\r\n ```\r\n - In OGR we are using file\ - \ per test -- we have the following code in the `setUp` in `TestCase`:\r\ - \n ```python\r\n test_name = self.id() or \"all\"\r\n \ - \ persistent_data_file = os.path.join(\r\n PERSISTENT_DATA_PREFIX,\ - \ f\"test_github_data_{test_name}.yaml\"\r\n )\r\n PersistentObjectStorage().storage_file\ - \ = persistent_data_file\r\n ```\r\n- You can use `PersistentObjectStorage().is_write_mode`\ - \ to check the mode.\r\n\r\n-----\r\n\r\nTODO:\r\n\r\n\r\n- [x] less\ - \ magic in ogr/__init__.py\r\n- ~~[ ] docs~~ will make a new PR\r\n\ - - ~~[ ] fix the test for github-app~~ I am having some problems with\ - \ python-crypto -- I can fix that later to not leave that here for so\ - \ long." - closed_at: '2019-07-23T07:42:32Z' - comments: 22 - comments_url: https://api.github.com/repos/packit/ogr/issues/113/comments - created_at: '2019-07-11T10:58:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/113/events - html_url: https://github.com/packit/ogr/pull/113 - id: 466821422 + body: 'Fixes #123 ' + closed_at: '2019-08-15T08:12:06Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/154/comments + created_at: '2019-08-14T15:25:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/154/events + html_url: https://github.com/packit/ogr/pull/154 + id: 480744033 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/154/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA3MzgxNTAw + number: 154 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/154.diff + html_url: https://github.com/packit/ogr/pull/154 + patch_url: https://github.com/packit/ogr/pull/154.patch + url: https://api.github.com/repos/packit/ogr/pulls/154 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Mention Zuul in CONTRIBUTING.md and remove Jenkinsfile + updated_at: '2019-08-15T08:12:10Z' + url: https://api.github.com/repos/packit/ogr/issues/154 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Can we please update the contribution guide. Ogr now uses new zuul\ + \ CI (or softwarefactory-project-zuul). \r\n\r\nI'm a little bit stuck\ + \ on what should I do to make my tests passing when PR is opened. On\ + \ my localhost, everything is working in the \"old way\" and tests are\ + \ passing." + closed_at: '2019-08-15T08:12:06Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/123/comments + created_at: '2019-07-17T12:03:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/123/events + html_url: https://github.com/packit/ogr/issues/123 + id: 469153115 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 008672 + default: true + description: Extra attention is needed + id: 1160311265 + name: help wanted + node_id: MDU6TGFiZWwxMTYwMzExMjY1 + url: https://api.github.com/repos/packit/ogr/labels/help%20wanted - color: f9d0c4 default: false description: Tests are impacted. @@ -98100,63 +126710,19 @@ requests.sessions: name: testing node_id: MDU6TGFiZWwxNDMyNzc5NDE5 url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/113/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/123/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2NTkxMzkx - number: 113 + node_id: MDU6SXNzdWU0NjkxNTMxMTU= + number: 123 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/113.diff - html_url: https://github.com/packit/ogr/pull/113 - patch_url: https://github.com/packit/ogr/pull/113.patch - url: https://api.github.com/repos/packit/ogr/pulls/113 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Authentication as a github app and mocking upgrade - updated_at: '2019-07-23T07:42:46Z' - url: https://api.github.com/repos/packit/ogr/issues/113 + title: update contribution guide + updated_at: '2019-08-15T08:12:06Z' + url: https://api.github.com/repos/packit/ogr/issues/123 user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -98174,25 +126740,25 @@ requests.sessions: subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User url: https://api.github.com/users/marusinm - author_association: MEMBER - body: "It would be useful to have a method for getting the owner(s) of\ - \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ - \ `get_owners` and return list of strings." - closed_at: '2019-07-18T07:11:53Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments - created_at: '2019-06-26T07:44:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/88/events - html_url: https://github.com/packit/ogr/issues/88 - id: 460813032 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Just checking to see what is the desired behavior. I create an\ + \ issue and then print the url from the created issue. I'd then like\ + \ to open that url in a web browser and have it go to the graphical\ + \ UI and not the API.\r\n\r\nFor example:\r\n\r\n```\r\n>>> i = project.create_issue('TestIssue',\ + \ 'foo bar baz')\r\n>>> print(i.url)\r\nhttps://pagure.io/api/0/dusty/failed-composes/issue/2244\r\ + \n```\r\n\r\nBut what I really want is the url to the web frontent.\ + \ So `i.url.replace('api/0/','')`. What is the intended behavior? " + closed_at: '2019-08-15T07:11:15Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/146/comments + created_at: '2019-08-09T21:53:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/146/events + html_url: https://github.com/packit/ogr/issues/146 + id: 479180564 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: 1d76db default: false description: Related to Pagure implementation. @@ -98200,13 +126766,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug - color: 7057ff default: false description: Good for newcomers @@ -98214,136 +126780,115 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/146/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA4MTMwMzI= - number: 88 + node_id: MDU6SXNzdWU0NzkxODA1NjQ= + number: 146 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add get_owner/get_owners method to project classes - updated_at: '2019-07-18T07:11:53Z' - url: https://api.github.com/repos/packit/ogr/issues/88 + title: the url in an issue object is the API url + updated_at: '2019-08-15T07:11:15Z' + url: https://api.github.com/repos/packit/ogr/issues/146 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 + events_url: https://api.github.com/users/dustymabe/events{/privacy} + followers_url: https://api.github.com/users/dustymabe/followers + following_url: https://api.github.com/users/dustymabe/following{/other_user} + gists_url: https://api.github.com/users/dustymabe/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/dustymabe + id: 4530030 + login: dustymabe + node_id: MDQ6VXNlcjQ1MzAwMzA= + organizations_url: https://api.github.com/users/dustymabe/orgs + received_events_url: https://api.github.com/users/dustymabe/received_events + repos_url: https://api.github.com/users/dustymabe/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dustymabe/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/dustymabe - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: Just copied labeling from issues and create the same for pull requests. - closed_at: '2019-07-18T05:03:03Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/122/comments - created_at: '2019-07-17T11:08:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/122/events - html_url: https://github.com/packit/ogr/pull/122 - id: 469130471 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/122/labels{/name} + author_association: MEMBER + body: '' + closed_at: '2019-08-14T12:37:27Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/153/comments + created_at: '2019-08-14T12:22:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/153/events + html_url: https://github.com/packit/ogr/pull/153 + id: 480648599 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/153/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk4NDE5MTM2 - number: 122 + node_id: MDExOlB1bGxSZXF1ZXN0MzA3MzA0MjMx + number: 153 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/122.diff - html_url: https://github.com/packit/ogr/pull/122 - patch_url: https://github.com/packit/ogr/pull/122.patch - url: https://api.github.com/repos/packit/ogr/pulls/122 + diff_url: https://github.com/packit/ogr/pull/153.diff + html_url: https://github.com/packit/ogr/pull/153 + patch_url: https://github.com/packit/ogr/pull/153.patch + url: https://api.github.com/repos/packit/ogr/pulls/153 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add labeling github pull requests - updated_at: '2019-07-18T05:03:03Z' - url: https://api.github.com/repos/packit/ogr/issues/122 + title: '[README.md] Zuul badge' + updated_at: '2019-08-14T15:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/153 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #73 ' - closed_at: '2019-07-17T12:52:02Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/118/comments - created_at: '2019-07-15T08:21:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/118/events - html_url: https://github.com/packit/ogr/pull/118 - id: 467997614 + author_association: CONTRIBUTOR + body: 'Fixes #127 ' + closed_at: '2019-08-13T07:27:51Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/137/comments + created_at: '2019-07-25T10:41:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/137/events + html_url: https://github.com/packit/ogr/pull/137 + id: 472793637 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/118/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/137/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTE0NDAy - number: 118 + node_id: MDExOlB1bGxSZXF1ZXN0MzAxMDg1MDUw + number: 137 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/118.diff - html_url: https://github.com/packit/ogr/pull/118 - patch_url: https://github.com/packit/ogr/pull/118.patch - url: https://api.github.com/repos/packit/ogr/pulls/118 + diff_url: https://github.com/packit/ogr/pull/137.diff + html_url: https://github.com/packit/ogr/pull/137 + patch_url: https://github.com/packit/ogr/pull/137.patch + url: https://api.github.com/repos/packit/ogr/pulls/137 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: CommitStatus, PRStatus renamed to CommitFlag, PRFlag - updated_at: '2019-07-17T12:52:02Z' - url: https://api.github.com/repos/packit/ogr/issues/118 + title: add method edit_release + updated_at: '2019-08-13T07:27:52Z' + url: https://api.github.com/repos/packit/ogr/issues/137 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -98362,19 +126907,69 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "What about changing `CommitStatus`/`PullRequestStatus` to `CommitFlag`/`PullRequestFlag`?\r\ - \n\r\n_Original discussion: https://github.com/packit-service/ogr/pull/71#pullrequestreview-240461635_" - closed_at: '2019-07-17T12:52:02Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/73/comments - created_at: '2019-05-29T07:10:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/73/events - html_url: https://github.com/packit/ogr/issues/73 - id: 449635096 + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: COLLABORATOR + body: Can we create a method for editing a release? We can use [this](https://pygithub.readthedocs.io/en/latest/github_objects/GitRelease.html#github.GitRelease.GitRelease.update_release) + for it. + closed_at: '2019-08-13T07:27:51Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/127/comments + created_at: '2019-07-18T08:08:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/127/events + html_url: https://github.com/packit/ogr/issues/127 + id: 469627928 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -98382,13 +126977,6 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - color: 42e529 default: false description: This issue was already processed and well defined. @@ -98396,143 +126984,39 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/73/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NDk2MzUwOTY= - number: 73 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Change "Status" to "Flag" in the class names - updated_at: '2019-07-17T12:52:02Z' - url: https://api.github.com/repos/packit/ogr/issues/73 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "EDIT (jpopelka): https://zuul-ci.org/docs/zuul/user/config.html#project\r\ - \nEDIT2 (jpopelka): http://post-office.corp.redhat.com/archives/user-cont/2019-July/msg00086.html" - closed_at: '2019-07-17T08:25:26Z' - comments: 28 - comments_url: https://api.github.com/repos/packit/ogr/issues/120/comments - created_at: '2019-07-15T11:53:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/120/events - html_url: https://github.com/packit/ogr/pull/120 - id: 468084884 - labels: - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/120/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTg1NDQ5 - number: 120 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/120.diff - html_url: https://github.com/packit/ogr/pull/120 - patch_url: https://github.com/packit/ogr/pull/120.patch - url: https://api.github.com/repos/packit/ogr/pulls/120 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: add zuul config - updated_at: '2019-07-17T12:32:37Z' - url: https://api.github.com/repos/packit/ogr/issues/120 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #111 ' - closed_at: '2019-07-17T07:14:35Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/114/comments - created_at: '2019-07-11T14:09:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/114/events - html_url: https://github.com/packit/ogr/pull/114 - id: 466916976 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/114/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/127/labels{/name} locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2NjcwNDMw - number: 114 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/114.diff - html_url: https://github.com/packit/ogr/pull/114 - patch_url: https://github.com/packit/ogr/pull/114.patch - url: https://api.github.com/repos/packit/ogr/pulls/114 + milestone: null + node_id: MDU6SXNzdWU0Njk2Mjc5Mjg= + number: 127 + performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: method create release for github created - updated_at: '2019-07-17T07:14:36Z' - url: https://api.github.com/repos/packit/ogr/issues/114 + title: edit Github release + updated_at: '2019-08-13T07:27:51Z' + url: https://api.github.com/repos/packit/ogr/issues/127 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -98551,7 +127035,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -98570,16 +127054,16 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "For `Github` we can get the releases:\r\nhttps://github.com/packit-service/ogr/blob/master/ogr/services/github.py#L571\r\ - \n\r\nWe need to also create a new release from API.\r\n\r\n---\r\n\r\ - \nRelevant documentation:\r\nhttps://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_git_release" - closed_at: '2019-07-17T07:14:35Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/111/comments - created_at: '2019-07-11T08:20:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/111/events - html_url: https://github.com/packit/ogr/issues/111 - id: 466738216 + body: "- Try to have only one project for testing (ideally OGR itself\ + \ in case of GitHub).\r\n- Then it is easy for everyone to regenerate\ + \ the test responses." + closed_at: '2019-08-13T07:11:39Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/124/comments + created_at: '2019-07-18T07:15:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/124/events + html_url: https://github.com/packit/ogr/issues/124 + id: 469607471 labels: - color: '000000' default: false @@ -98588,13 +127072,13 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef + - color: 1d76db default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: 7057ff default: false description: Good for newcomers @@ -98602,6 +127086,20 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing - color: 42e529 default: false description: This issue was already processed and well defined. @@ -98609,19 +127107,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/111/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/124/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjY3MzgyMTY= - number: 111 + node_id: MDU6SXNzdWU0Njk2MDc0NzE= + number: 124 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Allow creating releases - updated_at: '2019-07-17T07:14:35Z' - url: https://api.github.com/repos/packit/ogr/issues/111 + title: Run tests on the OGR project itself + updated_at: '2019-08-13T07:11:39Z' + url: https://api.github.com/repos/packit/ogr/issues/124 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -98642,34 +127140,34 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #103 ' - closed_at: '2019-07-16T13:56:45Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/119/comments - created_at: '2019-07-15T10:07:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/119/events - html_url: https://github.com/packit/ogr/pull/119 - id: 468043834 + author_association: CONTRIBUTOR + body: 'Fixes #124 ' + closed_at: '2019-08-13T07:11:39Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/136/comments + created_at: '2019-07-25T07:39:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/136/events + html_url: https://github.com/packit/ogr/pull/136 + id: 472712760 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/119/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/136/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTUxNjYx - number: 119 + node_id: MDExOlB1bGxSZXF1ZXN0MzAxMDE5ODMy + number: 136 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/119.diff - html_url: https://github.com/packit/ogr/pull/119 - patch_url: https://github.com/packit/ogr/pull/119.patch - url: https://api.github.com/repos/packit/ogr/pulls/119 + diff_url: https://github.com/packit/ogr/pull/136.diff + html_url: https://github.com/packit/ogr/pull/136 + patch_url: https://github.com/packit/ogr/pull/136.patch + url: https://api.github.com/repos/packit/ogr/pulls/136 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: unused functions in utils.py removed - updated_at: '2019-07-16T13:56:45Z' - url: https://api.github.com/repos/packit/ogr/issues/119 + title: run tests on one repository + updated_at: '2019-08-13T07:11:39Z' + url: https://api.github.com/repos/packit/ogr/issues/136 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -98691,405 +127189,271 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "In #102, I've realized that most of the functions in [utils.py](https://github.com/packit-service/ogr/blob/master/ogr/utils.py)\ - \ are never used.\r\n\r\nWe need to go through the functions and check\ - \ if they are not used anywhere (please, control the packit codebase\ - \ as well) and remove the unused ones.\r\n\r\n----\r\n\r\nIn the other\ - \ hand, we can move here the [LocalProject](https://github.com/packit-service/packit/blob/master/packit/local_project.py)\ - \ or other git-related code from the Packit. Do we want OGR to be only\ - \ remote API or git-helper?" - closed_at: '2019-07-16T13:56:45Z' + body: '' + closed_at: '2019-08-10T14:24:33Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/103/comments - created_at: '2019-07-09T09:27:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/103/events - html_url: https://github.com/packit/ogr/issues/103 - id: 465672061 - labels: - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/103/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/148/comments + created_at: '2019-08-10T13:32:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/148/events + html_url: https://github.com/packit/ogr/pull/148 + id: 479267763 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/148/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjU2NzIwNjE= - number: 103 + node_id: MDExOlB1bGxSZXF1ZXN0MzA2MjEyNjI0 + number: 148 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/148.diff + html_url: https://github.com/packit/ogr/pull/148 + patch_url: https://github.com/packit/ogr/pull/148.patch + url: https://api.github.com/repos/packit/ogr/pulls/148 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Clean the ogr/utils.py - updated_at: '2019-07-16T13:56:45Z' - url: https://api.github.com/repos/packit/ogr/issues/103 + title: testing + updated_at: '2019-08-10T14:30:25Z' + url: https://api.github.com/repos/packit/ogr/issues/148 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Functions `get_release` and `get_releases` implemented in services/github.py\ - \ were missing in the abstract.py. I also fixed notes from PR #101 which\ - \ was added after PR was merged. \r\n\r\n**Edit:** I also added functionality\ - \ `get_releases` for Pagure in the second commit." - closed_at: '2019-07-15T11:44:25Z' + author_association: CONTRIBUTOR + body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ + \nBy PR #144 we add a bug. In `github.py` is mentioned https://github.com/packit-service/ogr/blob/master/ogr/services/github.py#L398\ + \ `get_all_pr_commits`.\r\n\r\nSuddenly it was not caught by PR review." + closed_at: '2019-08-09T14:48:39Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/117/comments - created_at: '2019-07-15T08:12:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/117/events - html_url: https://github.com/packit/ogr/pull/117 - id: 467994039 + comments_url: https://api.github.com/repos/packit/ogr/issues/145/comments + created_at: '2019-08-09T13:29:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/145/events + html_url: https://github.com/packit/ogr/pull/145 + id: 478987478 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/117/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/145/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTExNTgx - number: 117 + node_id: MDExOlB1bGxSZXF1ZXN0MzA1OTkwNTI1 + number: 145 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/117.diff - html_url: https://github.com/packit/ogr/pull/117 - patch_url: https://github.com/packit/ogr/pull/117.patch - url: https://api.github.com/repos/packit/ogr/pulls/117 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: add get_release/get_releases into abstract.py - updated_at: '2019-07-15T11:44:25Z' - url: https://api.github.com/repos/packit/ogr/issues/117 - user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - - active_lock_reason: null - assignee: null - assignees: [] - author_association: COLLABORATOR - body: "In the case of Github, it is possible to get a repository's file\ - \ content via [API](https://developer.github.com/v3/repos/contents/#get-contents)\ - \ or [PyGithub lib](https://pygithub.readthedocs.io/en/latest/github_objects/ContentFile.html).\ - \ In the case of Pagure, I am not sure if it is possible. \r\n\r\n(I\ - \ need this for release-bot, I can hack it for now, but would be wonderful\ - \ to have such feature in ogr.)" - closed_at: '2019-07-13T18:50:35Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/115/comments - created_at: '2019-07-12T14:05:06Z' - events_url: https://api.github.com/repos/packit/ogr/issues/115/events - html_url: https://github.com/packit/ogr/issues/115 - id: 467432493 - labels: - - color: e4e669 - default: true - description: This doesn't seem right. - id: 1160311267 - name: invalid - node_id: MDU6TGFiZWwxMTYwMzExMjY3 - url: https://api.github.com/repos/packit/ogr/labels/invalid - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/115/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0Njc0MzI0OTM= - number: 115 - performed_via_github_app: null + diff_url: https://github.com/packit/ogr/pull/145.diff + html_url: https://github.com/packit/ogr/pull/145 + patch_url: https://github.com/packit/ogr/pull/145.patch + url: https://api.github.com/repos/packit/ogr/pulls/145 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Missing functionality for getting content of a file. - updated_at: '2019-07-13T18:50:35Z' - url: https://api.github.com/repos/packit/ogr/issues/115 + title: Rename get_pr_commits to get_all_pr_commits in abstract.py + updated_at: '2019-08-09T14:48:39Z' + url: https://api.github.com/repos/packit/ogr/issues/145 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions type: User - url: https://api.github.com/users/marusinm + url: https://api.github.com/users/phracek - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: services.github.py already can [list all releases](https://github.com/packit-service/ogr/blob/badeddd87032da354d411fff3365bb02e260571b/ogr/services/github.py#L656). - We need this for Pagure too. - closed_at: '2019-07-12T21:58:49Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/116/comments - created_at: '2019-07-12T14:55:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/116/events - html_url: https://github.com/packit/ogr/issues/116 - id: 467458155 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: cfd3d7 - default: true - description: This issue or pull request already exists - id: 1160311263 - name: duplicate - node_id: MDU6TGFiZWwxMTYwMzExMjYz - url: https://api.github.com/repos/packit/ogr/labels/duplicate - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/116/labels{/name} + author_association: CONTRIBUTOR + body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ + \nAdd function `get_pr_commits` into `abstract.py`." + closed_at: '2019-08-08T14:03:49Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/144/comments + created_at: '2019-08-08T12:17:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/144/events + html_url: https://github.com/packit/ogr/pull/144 + id: 478434638 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/144/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njc0NTgxNTU= - number: 116 + node_id: MDExOlB1bGxSZXF1ZXN0MzA1NTQ5MTcw + number: 144 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/144.diff + html_url: https://github.com/packit/ogr/pull/144 + patch_url: https://github.com/packit/ogr/pull/144.patch + url: https://api.github.com/repos/packit/ogr/pulls/144 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get_releases for Pagure - updated_at: '2019-07-12T21:59:06Z' - url: https://api.github.com/repos/packit/ogr/issues/116 + title: Add get_pr_commits into abstract.py + updated_at: '2019-08-08T14:03:49Z' + url: https://api.github.com/repos/packit/ogr/issues/144 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions type: User - url: https://api.github.com/users/marusinm + url: https://api.github.com/users/phracek - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Implementation of getting project owners related to #88. \r\nAnd\ - \ getting users with permission for closing Issues and merging PR based\ - \ on [Github permissions](https://help.github.com/en/articles/repository-permission-levels-for-an-organization)\ - \ and [Pagure permissions](https://docs.pagure.org/pagure/usage/project_acls.html)\ - \ related to issue #100." - closed_at: '2019-07-12T07:51:41Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/101/comments - created_at: '2019-07-08T13:03:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/101/events - html_url: https://github.com/packit/ogr/pull/101 - id: 465245940 + author_association: CONTRIBUTOR + body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ + \nPull request adds a function for getting all commits for specific\ + \ PR.\r\nIt is useful when the user adds a comment into `packit-service`\ + \ like `/packit copr-build` and we would like to get especially the\ + \ latest commit from the PR.\r\n\r\nA real example:\r\nhttps://github.com/packit-service/packit-service/blob/master/packit_service/worker/github_handlers.py#L92\ + \ `pr_event/base_ref` cannot by `pr/9` but reference to the latest commit\ + \ for a pull request.\r\n\r\n- [x] Pull Request contains info about\ + \ SHA of the latest commit.\r\n- [x] tests are covered." + closed_at: '2019-08-08T10:10:30Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/140/comments + created_at: '2019-08-05T10:56:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/140/events + html_url: https://github.com/packit/ogr/pull/140 + id: 476794481 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef + - color: 18e033 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/101/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/140/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk1MzI1ODUx - number: 101 + node_id: MDExOlB1bGxSZXF1ZXN0MzA0MjQ5MTY2 + number: 140 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/101.diff - html_url: https://github.com/packit/ogr/pull/101 - patch_url: https://github.com/packit/ogr/pull/101.patch - url: https://api.github.com/repos/packit/ogr/pulls/101 + diff_url: https://github.com/packit/ogr/pull/140.diff + html_url: https://github.com/packit/ogr/pull/140 + patch_url: https://github.com/packit/ogr/pull/140.patch + url: https://api.github.com/repos/packit/ogr/pulls/140 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get project's owners and permissions of various users - updated_at: '2019-07-12T12:44:34Z' - url: https://api.github.com/repos/packit/ogr/issues/101 + title: Function for getting all commits from specific PR. + updated_at: '2019-08-08T10:10:30Z' + url: https://api.github.com/repos/packit/ogr/issues/140 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions type: User - url: https://api.github.com/users/marusinm + url: https://api.github.com/users/phracek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #74' - closed_at: '2019-07-11T08:48:44Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/106/comments - created_at: '2019-07-10T07:38:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/106/events - html_url: https://github.com/packit/ogr/pull/106 - id: 466149524 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/106/labels{/name} + body: I checked it's not used anywhere else. + closed_at: '2019-08-06T11:03:47Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/142/comments + created_at: '2019-08-06T10:20:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/142/events + html_url: https://github.com/packit/ogr/pull/142 + id: 477295662 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/142/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDQ2Mjc3 - number: 106 + node_id: MDExOlB1bGxSZXF1ZXN0MzA0NjQ3NzYz + number: 142 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/106.diff - html_url: https://github.com/packit/ogr/pull/106 - patch_url: https://github.com/packit/ogr/pull/106.patch - url: https://api.github.com/repos/packit/ogr/pulls/106 + diff_url: https://github.com/packit/ogr/pull/142.diff + html_url: https://github.com/packit/ogr/pull/142 + patch_url: https://github.com/packit/ogr/pull/142.patch + url: https://api.github.com/repos/packit/ogr/pulls/142 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: link to GitTag from Release added - updated_at: '2019-07-11T08:48:44Z' - url: https://api.github.com/repos/packit/ogr/issues/106 + title: PersistenStorageException -> PersistentStorageException + updated_at: '2019-08-06T11:03:50Z' + url: https://api.github.com/repos/packit/ogr/issues/142 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ - \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" - closed_at: '2019-07-11T08:48:44Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments - created_at: '2019-05-29T07:12:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/74/events - html_url: https://github.com/packit/ogr/issues/74 - id: 449635655 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-08-06T07:30:48Z' + comments: 23 + comments_url: https://api.github.com/repos/packit/ogr/issues/129/comments + created_at: '2019-07-18T17:29:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/129/events + html_url: https://github.com/packit/ogr/pull/129 + id: 469897903 labels: - color: '000000' default: false @@ -99112,247 +127476,256 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/129/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDk2MzU2NTU= - number: 74 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk5MDE3NDM2 + number: 129 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/129.diff + html_url: https://github.com/packit/ogr/pull/129 + patch_url: https://github.com/packit/ogr/pull/129.patch + url: https://api.github.com/repos/packit/ogr/pulls/129 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add a link to `GitTag` from `Release`. - updated_at: '2019-07-11T08:48:44Z' - url: https://api.github.com/repos/packit/ogr/issues/74 + title: 'Fix Issue #126, implemented get_email' + updated_at: '2019-08-06T07:30:49Z' + url: https://api.github.com/repos/packit/ogr/issues/129 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/38399871?v=4 + events_url: https://api.github.com/users/yzhang2907/events{/privacy} + followers_url: https://api.github.com/users/yzhang2907/followers + following_url: https://api.github.com/users/yzhang2907/following{/other_user} + gists_url: https://api.github.com/users/yzhang2907/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/yzhang2907 + id: 38399871 + login: yzhang2907 + node_id: MDQ6VXNlcjM4Mzk5ODcx + organizations_url: https://api.github.com/users/yzhang2907/orgs + received_events_url: https://api.github.com/users/yzhang2907/received_events + repos_url: https://api.github.com/users/yzhang2907/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/yzhang2907/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/yzhang2907/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/yzhang2907 - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Fixes\r\n_DeprecationWarning: Using or importing the ABCs from\ - \ 'collections' instead of from 'collections.abc' is deprecated, and\ - \ in 3.8 it will stop working_" - closed_at: '2019-07-11T07:03:27Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/109/comments - created_at: '2019-07-10T14:24:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/109/events - html_url: https://github.com/packit/ogr/pull/109 - id: 466340777 + author_association: COLLABORATOR + body: "I made `git cherry-pick` of all @yzhang2907 commits in PR #129\ + \ which solves #126. I also found out that there is no current way how\ + \ to get the user's email from Pagure API and @yzhang2907 code wouldn't\ + \ work for Pagure. However, the code for Github is fine now. \r\n\r\n" + closed_at: '2019-08-06T07:27:43Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/141/comments + created_at: '2019-08-05T12:28:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/141/events + html_url: https://github.com/packit/ogr/pull/141 + id: 476831775 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/109/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/141/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MTk4Nzc4 - number: 109 + node_id: MDExOlB1bGxSZXF1ZXN0MzA0Mjc5NjI3 + number: 141 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/109.diff - html_url: https://github.com/packit/ogr/pull/109 - patch_url: https://github.com/packit/ogr/pull/109.patch - url: https://api.github.com/repos/packit/ogr/pulls/109 + diff_url: https://github.com/packit/ogr/pull/141.diff + html_url: https://github.com/packit/ogr/pull/141 + patch_url: https://github.com/packit/ogr/pull/141.patch + url: https://api.github.com/repos/packit/ogr/pulls/141 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: collections.Hashable -> collections.abc.Hashable - updated_at: '2019-07-11T07:53:20Z' - url: https://api.github.com/repos/packit/ogr/issues/109 + title: get-email + updated_at: '2019-08-06T07:27:43Z' + url: https://api.github.com/repos/packit/ogr/issues/141 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: See https://github.com/packit-service/packit/pull/407 - closed_at: '2019-07-10T12:56:20Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/108/comments - created_at: '2019-07-10T12:47:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/108/events - html_url: https://github.com/packit/ogr/pull/108 - id: 466289238 + author_association: CONTRIBUTOR + body: https://packit.dev/docs/configuration/#supported-jobs + closed_at: '2019-07-30T10:59:00Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/138/comments + created_at: '2019-07-30T07:31:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/138/events + html_url: https://github.com/packit/ogr/pull/138 + id: 474421629 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/108/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/138/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MTU3NzYy - number: 108 + node_id: MDExOlB1bGxSZXF1ZXN0MzAyMzY2NTU5 + number: 138 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/108.diff - html_url: https://github.com/packit/ogr/pull/108 - patch_url: https://github.com/packit/ogr/pull/108.patch - url: https://api.github.com/repos/packit/ogr/pulls/108 + diff_url: https://github.com/packit/ogr/pull/138.diff + html_url: https://github.com/packit/ogr/pull/138 + patch_url: https://github.com/packit/ogr/pull/138.patch + url: https://api.github.com/repos/packit/ogr/pulls/138 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Make PersistentObjectStorage.__init__() backwards compatible - updated_at: '2019-07-10T12:56:33Z' - url: https://api.github.com/repos/packit/ogr/issues/108 + title: 'packit.yaml: propose_downstream: s/_/-/' + updated_at: '2019-07-30T14:27:13Z' + url: https://api.github.com/repos/packit/ogr/issues/138 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #52' - closed_at: '2019-07-10T07:35:48Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/105/comments - created_at: '2019-07-10T07:09:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/105/events - html_url: https://github.com/packit/ogr/pull/105 - id: 466138321 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/105/labels{/name} + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* method _pr_from_github_object\ + \ differentiate closed and merged status\n* allow usage of PRStatus.merged\ + \ for github pull requests\n* add get_latest_release(), create Releases\ + \ class in test_github.py\n* Simplify imports\n* Split mocking and persistent_storage\n\ + * Fix github-app authentication\n* Rename env-var for mocking and allow\ + \ setting response file from RESPONSE_FILE env-var\n* Use PersistentObjectStorage\ + \ as a Singleton\n* Split mocking and read_only from mocking\n* Set\ + \ persistent storage only via class\n* Update mocking of GithubIntegration\ + \ from PyGithub\n* Improve mocking and add support for authentication\ + \ as a github-app\n* improve tests from previous commit\n* add labeling\ + \ github pull requests\n* mistake fixed\n* PRFlag changed back to PRStatus\n\ + * CommitStatus, PRStatus renamed to CommitFlag, PRFlag\n* use zuul for\ + \ realz now\n* test changed\n* method create release for github created\n\ + * add zuul config\n* bump base image to F30\n* add get_releses for Pagure\n\ + * unused functions removed\n* add get_releases/get_release into abstract.py\n\ + * add who_can_marge_pr and who_can_close_issue\n* delete obsolete comments\n\ + * fix review notes, add can_close_issue and can_merge_pr, remove who_can_close_issue\ + \ and who_can_merge_pr\n* fix mypy errors\n* get project's owners and\ + \ permissions of various users\n* split test_get_tag_from_tag_name\n\ + * value of git_tag in github Release set\n* link to GitTag from Release\ + \ added\n* collections.Hashable -> collections.abc.Hashable\n* Make\ + \ PersistentObjectStorage.__init__() backwards compatible\n* in get_file_content\ + \ catch only 404\n* subprocess.run fix\n* unify external command invocation\ + \ by subprocess.run\n* Add integration tests for factory and add more\ + \ unit tests\n* Add docstrings to factory and types to parsing\n* Add\ + \ get_project and get_service_class to global imports\n* Add tests for\ + \ parsing\n* Add tests for factory\n* Add __eq__ for projects and services\n\ + * Save more attributes about parsed url\n* [github] Be lazy with github_repo\ + \ object from pygithub\n* Fix __str__ after rebase\n* Add support for\ + \ services-mapping update\n* Import services in ogr/__init__.py to see\ + \ it in the mapping\n* Add method for creating projects from url\n*\ + \ Get project from url\n* fix code format issues\n* add tests, fix review\ + \ notes\n* creating/closing/commenting Pagure Issues\n* Fix formating\ + \ for __str__ methods\n* Changes requested to_str_method of classes\n\ + * Added instantiation-like syntax\n* Added __str__ method to classes\n\ + * Added __str__ method to classes\n\n\nYou can change it by editing\ + \ `CHANGELOG.md` in the root of this repository and pushing to `0.6.0-release`\ + \ branch before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2019-07-25T07:48:18Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/135/comments + created_at: '2019-07-23T11:55:07Z' + events_url: https://api.github.com/repos/packit/ogr/issues/135/events + html_url: https://github.com/packit/ogr/pull/135 + id: 471653597 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/135/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDM3NjM1 - number: 105 + node_id: MDExOlB1bGxSZXF1ZXN0MzAwMjYxMzU3 + number: 135 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/105.diff - html_url: https://github.com/packit/ogr/pull/105 - patch_url: https://github.com/packit/ogr/pull/105.patch - url: https://api.github.com/repos/packit/ogr/pulls/105 + diff_url: https://github.com/packit/ogr/pull/135.diff + html_url: https://github.com/packit/ogr/pull/135 + patch_url: https://github.com/packit/ogr/pull/135.patch + url: https://api.github.com/repos/packit/ogr/pulls/135 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: in get_file_content catch only 404 - updated_at: '2019-07-10T07:40:13Z' - url: https://api.github.com/repos/packit/ogr/issues/105 + title: 0.6.0 release + updated_at: '2019-07-25T07:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/135 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "Just spent some time debugging an issue where packit.yaml was not\ - \ found while being 100 % it's in there.\r\n\r\nIt turned out that my\ - \ token was incorrect and github kept throwing 401: that should bubble\ - \ up, we should catch 404 only. " - closed_at: '2019-07-10T07:35:48Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/52/comments - created_at: '2019-03-27T21:00:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/52/events - html_url: https://github.com/packit/ogr/issues/52 - id: 426181525 + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Based on our discussion in PR #128 this code makes consistency\ + \ in `get_pr_list(status)` between Pagure and Github. We can use `PRStatus.merged`\ + \ for Github now.\r\n\r\nCan we close #128 without merging? It was easier\ + \ to create a new branch since the code is completely different.\r\n" + closed_at: '2019-07-23T11:51:08Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/130/comments + created_at: '2019-07-21T13:19:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/130/events + html_url: https://github.com/packit/ogr/pull/130 + id: 470780887 labels: - color: '000000' default: false @@ -99368,72 +127741,24 @@ requests.sessions: name: bug node_id: MDU6TGFiZWwxMTYwMzExMjYy url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/52/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/130/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjYxODE1MjU= - number: 52 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk5NjM1NzU2 + number: 130 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/130.diff + html_url: https://github.com/packit/ogr/pull/130 + patch_url: https://github.com/packit/ogr/pull/130.patch + url: https://api.github.com/repos/packit/ogr/pulls/130 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'get_file_content: catch only 404, raise everything else' - updated_at: '2019-07-10T07:35:48Z' - url: https://api.github.com/repos/packit/ogr/issues/52 + title: allow usage of PRStatus.merged for Github get_pr_list(status) + updated_at: '2019-07-23T12:16:08Z' + url: https://api.github.com/repos/packit/ogr/issues/130 user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -99451,37 +127776,100 @@ requests.sessions: subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User url: https://api.github.com/users/marusinm + _next: null + elapsed: 0.363989 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:57 GMT + ETag: W/"4e061d285d91dee14dc246554ce62666d598493ec8e7d020ba1561b621d020f4" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F8115E:191D337:6075DC58 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4578' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '422' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=15: + - metadata: + latency: 0.48427534103393555 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] author_association: COLLABORATOR - body: 'Based on our discussion on Issue #79, there is no functionality - in ogr for commenting on Github/Pagure issues.' - closed_at: '2019-07-10T06:57:03Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/80/comments - created_at: '2019-06-19T07:21:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/80/events - html_url: https://github.com/packit/ogr/issues/80 - id: 457847996 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/80/labels{/name} + body: "It's pretty common looking for the latest release only. It would\ + \ be useful to have a fast method for it without looking for some identifier\ + \ or getting all releases. Here it is. \r\n\r\nI also think that tests\ + \ for releases were in the incorrect class. Release tests which are\ + \ increasing deserve its own class. " + closed_at: '2019-07-23T11:01:50Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/131/comments + created_at: '2019-07-21T15:22:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/131/events + html_url: https://github.com/packit/ogr/pull/131 + id: 470793486 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/131/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTc4NDc5OTY= - number: 80 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk5NjQ0MzIy + number: 131 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/131.diff + html_url: https://github.com/packit/ogr/pull/131 + patch_url: https://github.com/packit/ogr/pull/131.patch + url: https://api.github.com/repos/packit/ogr/pulls/131 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Commenting on Issues - updated_at: '2019-07-10T06:57:03Z' - url: https://api.github.com/repos/packit/ogr/issues/80 + title: add get_latest_release(), create Releases class in test_github.py + updated_at: '2019-07-23T12:12:58Z' + url: https://api.github.com/repos/packit/ogr/issues/131 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -99500,89 +127888,45 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos - site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions - type: User - url: https://api.github.com/users/shreyanshrs44 - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos - site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions - type: User - url: https://api.github.com/users/shreyanshrs44 + assignee: null + assignees: [] author_association: MEMBER - body: It would be nice to implement `__str__` methods for all classes - (e.g. `GithubProject`, `Issue`,...). - closed_at: '2019-07-10T06:51:37Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments - created_at: '2019-06-27T10:29:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/90/events - html_url: https://github.com/packit/ogr/issues/90 - id: 461449910 + body: '' + closed_at: '2019-07-23T11:55:10Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/134/comments + created_at: '2019-07-23T11:52:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/134/events + html_url: https://github.com/packit/ogr/issues/134 + id: 471652493 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db + - color: ededed default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/134/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE0NDk5MTA= - number: 90 + node_id: MDU6SXNzdWU0NzE2NTI0OTM= + number: 134 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: String representations for classes - updated_at: '2019-07-10T06:51:37Z' - url: https://api.github.com/repos/packit/ogr/issues/90 + title: new minor release + updated_at: '2019-07-23T11:55:10Z' + url: https://api.github.com/repos/packit/ogr/issues/134 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -99603,155 +127947,96 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-07-09T13:56:31Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/104/comments - created_at: '2019-07-09T11:05:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/104/events - html_url: https://github.com/packit/ogr/pull/104 - id: 465717381 + author_association: COLLABORATOR + body: "`PullRequest` class in abstract.py already has `status` field.\ + \ \r\n\r\nIn the case of Github, the set of values from API for this\ + \ field is `open`/`closed`/`all` and therefore there is missing value\ + \ `merged`. I added `is_merged` field into `PullRequest` class (since\ + \ it causes bugs in release-bot).\r\n\r\nI set the new `is_merged` field\ + \ also for Pagure." + closed_at: '2019-07-23T07:43:52Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/128/comments + created_at: '2019-07-18T10:12:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/128/events + html_url: https://github.com/packit/ogr/pull/128 + id: 469685206 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/104/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/128/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk1NzAyNDc0 - number: 104 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk4ODQ0ODYy + number: 128 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/104.diff - html_url: https://github.com/packit/ogr/pull/104 - patch_url: https://github.com/packit/ogr/pull/104.patch - url: https://api.github.com/repos/packit/ogr/pulls/104 + diff_url: https://github.com/packit/ogr/pull/128.diff + html_url: https://github.com/packit/ogr/pull/128 + patch_url: https://github.com/packit/ogr/pull/128.patch + url: https://api.github.com/repos/packit/ogr/pulls/128 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: unify external command invocation - fix - updated_at: '2019-07-09T13:56:31Z' - url: https://api.github.com/repos/packit/ogr/issues/104 + title: add is_merged field into PullRequest + updated_at: '2019-07-23T07:43:52Z' + url: https://api.github.com/repos/packit/ogr/issues/128 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #33 ' - closed_at: '2019-07-09T09:29:53Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/102/comments - created_at: '2019-07-09T08:49:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/102/events - html_url: https://github.com/packit/ogr/pull/102 - id: 465652910 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/102/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk1NjUwMTA5 - number: 102 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/102.diff - html_url: https://github.com/packit/ogr/pull/102 - patch_url: https://github.com/packit/ogr/pull/102.patch - url: https://api.github.com/repos/packit/ogr/pulls/102 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: unify external command invocation - updated_at: '2019-07-09T10:49:16Z' - url: https://api.github.com/repos/packit/ogr/issues/102 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "utils.py uses several different approaches to invoke an external\ - \ command:\r\n\r\n* [subprocess.Popen](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L103)\r\ - \n* [subprocess.check_call](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L122)\r\ - \n* [subprocess.check_output](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L171)\r\ - \n\r\nThe recommended approach (since Python 3.5) is to use [subprocess.run](https://docs.python.org/3/library/subprocess.html#subprocess.run).\r\ - \n\r\nAlso, there's lots of external libraries for this use case:\r\n\ - * http://amoffat.github.io/sh/\r\n* https://www.pyinvoke.org/\r\n* https://plumbum.readthedocs.io\r\ - \n* https://pexpect.readthedocs.io" - closed_at: '2019-07-09T09:29:53Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/33/comments - created_at: '2019-03-14T13:51:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/33/events - html_url: https://github.com/packit/ogr/issues/33 - id: 421030116 + body: "- Improve saving responses.\r\n - Use Singleton for `PersistentObjectStorage`.\r\ + \n - Enable saving responses by env-var (`RECORD_REQUESTS`).\r\n\ + - Add support for authentication as a github-app.\r\n\r\n\r\n-----\r\ + \n\r\n### Usage:\r\n- Set `RECORD_REQUESTS` env. variable to turn it\ + \ on and import services directly from ogr.\r\n - Use `from ogr import\ + \ PagureService`, not `from ogr.services.pagure import PagureService`.\r\ + \n - You can use the following code in the `__init__.py` to enable\ + \ mocking for whole module:\r\n ```python\r\n import os\r\n \ + \ os.environ[\"RECORD_REQUESTS\"] = \"TRUE\"\r\n ```\r\n- Set the\ + \ storage file name before the test:\r\n ```python\r\n PersistentObjectStorage().storage_file\ + \ = persistent_data_file\r\n ```\r\n - In OGR we are using file\ + \ per test -- we have the following code in the `setUp` in `TestCase`:\r\ + \n ```python\r\n test_name = self.id() or \"all\"\r\n \ + \ persistent_data_file = os.path.join(\r\n PERSISTENT_DATA_PREFIX,\ + \ f\"test_github_data_{test_name}.yaml\"\r\n )\r\n PersistentObjectStorage().storage_file\ + \ = persistent_data_file\r\n ```\r\n- You can use `PersistentObjectStorage().is_write_mode`\ + \ to check the mode.\r\n\r\n-----\r\n\r\nTODO:\r\n\r\n\r\n- [x] less\ + \ magic in ogr/__init__.py\r\n- ~~[ ] docs~~ will make a new PR\r\n\ + - ~~[ ] fix the test for github-app~~ I am having some problems with\ + \ python-crypto -- I can fix that later to not leave that here for so\ + \ long." + closed_at: '2019-07-23T07:42:32Z' + comments: 22 + comments_url: https://api.github.com/repos/packit/ogr/issues/113/comments + created_at: '2019-07-11T10:58:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/113/events + html_url: https://github.com/packit/ogr/pull/113 + id: 466821422 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: a2eeef default: false description: New feature or a request for enhancement. @@ -99759,133 +128044,105 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: c2ef58 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/33/labels{/name} + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/113/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjEwMzAxMTY= - number: 33 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2NTkxMzkx + number: 113 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/113.diff + html_url: https://github.com/packit/ogr/pull/113 + patch_url: https://github.com/packit/ogr/pull/113.patch + url: https://api.github.com/repos/packit/ogr/pulls/113 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Unify external command invocation - updated_at: '2019-07-09T09:29:53Z' - url: https://api.github.com/repos/packit/ogr/issues/33 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + title: Authentication as a github app and mocking upgrade + updated_at: '2019-07-23T07:42:46Z' + url: https://api.github.com/repos/packit/ogr/issues/113 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=12: - - metadata: - latency: 0.6146814823150635 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] + assignee: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm author_association: MEMBER - body: "- Add method for creating projects from url.\r\n- Get project from\ - \ url.\r\n\r\n\r\nTODO:\r\n\r\n- [x] add a way to use existing service\ - \ classes\r\n- [x] add a way to update mapping by user\r\n- [ ] consider\ - \ implementing API checks if we cannot find a match in mapping\r\n-\ - \ [x] tests\r\n - [x] make the `github_repo` lazy for easier testing\r\ - \n - [x] tests for geting project/service class from url\r\n -\ - \ [x] tests for parsing\r\n\r\n----\r\n\r\nHow to test?\r\n\r\n```python\r\ - \nfrom ogr import get_service_class\r\n\r\nget_service_class(url=\"\ - github.com/packit-service/ogr\")\r\nget_service_class(url=\"src.fedoraproject.org/rpms/python-ogr\"\ - )\r\n```\r\n```python\r\nfrom ogr import get_project\r\nfrom ogr import\ - \ GithubService, PagureService\r\n\r\nget_project(\r\n url=\"src.fedoraproject.org/rpms/python-ogr\"\ - ,\r\n custom_instances=[\r\n GithubService(token=\"asda\"\ - ),\r\n PagureService(instance_url=\"pagure.io\", token=\"qwe\"\ - ),\r\n PagureService(instance_url=\"src.fedoraproject.org\",\ - \ token=\"asdaasda\"),\r\n ],\r\n)\r\n\r\n```" - closed_at: '2019-07-03T13:12:23Z' - comments: 13 - comments_url: https://api.github.com/repos/packit/ogr/issues/95/comments - created_at: '2019-06-28T08:30:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/95/events - html_url: https://github.com/packit/ogr/pull/95 - id: 461920354 + body: "It would be useful to have a method for getting the owner(s) of\ + \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ + \ `get_owners` and return list of strings." + closed_at: '2019-07-18T07:11:53Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments + created_at: '2019-06-26T07:44:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/88/events + html_url: https://github.com/packit/ogr/issues/88 + id: 460813032 labels: - color: '000000' default: false @@ -99908,24 +128165,33 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/95/labels{/name} + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyNzM4MzEx - number: 95 + node_id: MDU6SXNzdWU0NjA4MTMwMzI= + number: 88 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/95.diff - html_url: https://github.com/packit/ogr/pull/95 - patch_url: https://github.com/packit/ogr/pull/95.patch - url: https://api.github.com/repos/packit/ogr/pulls/95 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Methods for creating projects from url - updated_at: '2019-07-03T13:20:09Z' - url: https://api.github.com/repos/packit/ogr/issues/95 + title: Add get_owner/get_owners method to project classes + updated_at: '2019-07-18T07:11:53Z' + url: https://api.github.com/repos/packit/ogr/issues/88 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -99947,37 +128213,47 @@ requests.sessions: assignee: null assignees: [] author_association: COLLABORATOR - body: "Related to #80\r\n\r\nThis PR contains functionality for Pagure\ - \ issues except for tagging issues. I had some problems with tagging,\ - \ therefore, I'll create separated PR for it.\r\n\r\nIf I am right I\ - \ have to set Pagure token for creating yaml test-files. We can manage\ - \ that in private chat, then I'll add tests." - closed_at: '2019-07-02T11:56:47Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/99/comments - created_at: '2019-06-30T21:39:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/99/events - html_url: https://github.com/packit/ogr/pull/99 - id: 462449449 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/99/labels{/name} + body: Just copied labeling from issues and create the same for pull requests. + closed_at: '2019-07-18T05:03:03Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/122/comments + created_at: '2019-07-17T11:08:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/122/events + html_url: https://github.com/packit/ogr/pull/122 + id: 469130471 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/122/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkzMTM0Mjcw - number: 99 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk4NDE5MTM2 + number: 122 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/99.diff - html_url: https://github.com/packit/ogr/pull/99 - patch_url: https://github.com/packit/ogr/pull/99.patch - url: https://api.github.com/repos/packit/ogr/pulls/99 + diff_url: https://github.com/packit/ogr/pull/122.diff + html_url: https://github.com/packit/ogr/pull/122 + patch_url: https://github.com/packit/ogr/pull/122.patch + url: https://api.github.com/repos/packit/ogr/pulls/122 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: creating/closing/commenting Pagure Issues - updated_at: '2019-07-02T11:56:47Z' - url: https://api.github.com/repos/packit/ogr/issues/99 + title: add labeling github pull requests + updated_at: '2019-07-18T05:03:03Z' + url: https://api.github.com/repos/packit/ogr/issues/122 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -99999,84 +128275,50 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-06-11T15:21:02Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/78/comments - created_at: '2019-06-11T14:33:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/78/events - html_url: https://github.com/packit/ogr/pull/78 - id: 454727768 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/78/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjg3MTIwMTYy - number: 78 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/78.diff - html_url: https://github.com/packit/ogr/pull/78 - patch_url: https://github.com/packit/ogr/pull/78.patch - url: https://api.github.com/repos/packit/ogr/pulls/78 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[spec] bump to 0.4.0' - updated_at: '2019-07-01T13:06:37Z' - url: https://api.github.com/repos/packit/ogr/issues/78 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "- Fix formating for __str__ methods.\r\n- Changes requested to_str_method\ - \ of classes. @shreyanshrs44\r\n- Added instantiation-like syntax. @shreyanshrs44\r\ - \n- Added __str__ method to classes. @shreyanshrs44\r\n- Added __str__\ - \ method to classes. @shreyanshrs44\r\n\r\nFixed version of #93 " - closed_at: '2019-06-28T13:26:06Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/98/comments - created_at: '2019-06-28T12:20:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/98/events - html_url: https://github.com/packit/ogr/pull/98 - id: 462007848 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/98/labels{/name} + body: "What about changing `CommitStatus`/`PullRequestStatus` to `CommitFlag`/`PullRequestFlag`?\r\ + \n\r\n_Original discussion: https://github.com/packit-service/ogr/pull/71#pullrequestreview-240461635_" + closed_at: '2019-07-17T12:52:02Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/73/comments + created_at: '2019-05-29T07:10:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/73/events + html_url: https://github.com/packit/ogr/issues/73 + id: 449635096 + labels: + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/73/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyODA5MjI0 - number: 98 + node_id: MDU6SXNzdWU0NDk2MzUwOTY= + number: 73 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/98.diff - html_url: https://github.com/packit/ogr/pull/98 - patch_url: https://github.com/packit/ogr/pull/98.patch - url: https://api.github.com/repos/packit/ogr/pulls/98 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Added __str__ method to classes. (new) - updated_at: '2019-06-28T13:26:15Z' - url: https://api.github.com/repos/packit/ogr/issues/98 + title: Change "Status" to "Flag" in the class names + updated_at: '2019-07-17T12:52:02Z' + url: https://api.github.com/repos/packit/ogr/issues/73 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -100097,222 +128339,138 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: "I have added __str__ method to classes in /ogr/services/github.py\ - \ , /ogr/services/gitlab.py, /ogr/services/pagure.py.\r\nPlease have\ - \ a look and give feedback on necessary changes.\r\nI have not touched\ - \ the classes inside /ogr/abstract.py as it containes __str__ method\ - \ for most of classes in it. " - closed_at: '2019-06-28T12:23:38Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/93/comments - created_at: '2019-06-27T12:17:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/93/events - html_url: https://github.com/packit/ogr/pull/93 - id: 461495461 + author_association: CONTRIBUTOR + body: 'Fixes #73 ' + closed_at: '2019-07-17T12:52:02Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/118/comments + created_at: '2019-07-15T08:21:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/118/events + html_url: https://github.com/packit/ogr/pull/118 + id: 467997614 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/93/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyNDA3Mjc3 - number: 93 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/93.diff - html_url: https://github.com/packit/ogr/pull/93 - patch_url: https://github.com/packit/ogr/pull/93.patch - url: https://api.github.com/repos/packit/ogr/pulls/93 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Added __str__ method to classes. - updated_at: '2019-06-28T12:23:38Z' - url: https://api.github.com/repos/packit/ogr/issues/93 - user: - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos - site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions - type: User - url: https://api.github.com/users/shreyanshrs44 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Add response file for\ - \ test_update_pr_info for github\n* Skip the update_pr for pagure, since\ - \ we have no token for generating response files\n* exceptions changed\n\ - * update_pr_info methods created, wip\n* Add MIT headers to code files\n\ - * Add tests for creating forks\n* Allow saving multiple responses\n\ - * Add get_projects/get_forks to user; add get_forks to project\n* [pagure]\ - \ Fix fork tests\n* [pagure] Fix user in fork part of url\n* Better\ - \ get_fork for pagure\n* Better get_fork for github\n* Fix formating\ - \ from the previous PR\n* [pagure] Use empty dict as a default header\n\ - * creating, closing, labeling Github Issues\n* get info and comment\ - \ Github Issues\n* Document the test generation\n* Add Makefile targets\ - \ for removing response files\n* Determine forcewrite mode from file\ - \ existance\n* Rename @readonly to @if_readonly\n* [spec] bump to 0.4.0\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.5.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-06-28T09:40:08Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/97/comments - created_at: '2019-06-28T08:43:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/97/events - html_url: https://github.com/packit/ogr/pull/97 - id: 461925608 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/97/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/118/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyNzQyNDQ2 - number: 97 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTE0NDAy + number: 118 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/97.diff - html_url: https://github.com/packit/ogr/pull/97 - patch_url: https://github.com/packit/ogr/pull/97.patch - url: https://api.github.com/repos/packit/ogr/pulls/97 + diff_url: https://github.com/packit/ogr/pull/118.diff + html_url: https://github.com/packit/ogr/pull/118 + patch_url: https://github.com/packit/ogr/pull/118.patch + url: https://api.github.com/repos/packit/ogr/pulls/118 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.5.0 release - updated_at: '2019-06-28T09:45:09Z' - url: https://api.github.com/repos/packit/ogr/issues/97 + title: CommitStatus, PRStatus renamed to CommitFlag, PRFlag + updated_at: '2019-07-17T12:52:02Z' + url: https://api.github.com/repos/packit/ogr/issues/118 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "ReleaseBot, we would like to release a new version.\r\n\r\nThanks\ - \ in advance!" - closed_at: '2019-06-28T08:43:29Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/96/comments - created_at: '2019-06-28T08:38:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/96/events - html_url: https://github.com/packit/ogr/issues/96 - id: 461923699 + author_association: CONTRIBUTOR + body: "EDIT (jpopelka): https://zuul-ci.org/docs/zuul/user/config.html#project\r\ + \nEDIT2 (jpopelka): http://post-office.corp.redhat.com/archives/user-cont/2019-July/msg00086.html" + closed_at: '2019-07-17T08:25:26Z' + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/120/comments + created_at: '2019-07-15T11:53:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/120/events + html_url: https://github.com/packit/ogr/pull/120 + id: 468084884 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 18e033 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/96/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/120/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE5MjM2OTk= - number: 96 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTg1NDQ5 + number: 120 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/120.diff + html_url: https://github.com/packit/ogr/pull/120 + patch_url: https://github.com/packit/ogr/pull/120.patch + url: https://api.github.com/repos/packit/ogr/pulls/120 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-06-28T08:43:29Z' - url: https://api.github.com/repos/packit/ogr/issues/96 + title: add zuul config + updated_at: '2019-07-17T12:32:37Z' + url: https://api.github.com/repos/packit/ogr/issues/120 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #87' - closed_at: '2019-06-28T06:51:21Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/92/comments - created_at: '2019-06-27T11:54:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/92/events - html_url: https://github.com/packit/ogr/pull/92 - id: 461485336 + author_association: CONTRIBUTOR + body: 'Fixes #111 ' + closed_at: '2019-07-17T07:14:35Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/114/comments + created_at: '2019-07-11T14:09:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/114/events + html_url: https://github.com/packit/ogr/pull/114 + id: 466916976 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/92/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/114/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyMzk4ODk2 - number: 92 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2NjcwNDMw + number: 114 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/92.diff - html_url: https://github.com/packit/ogr/pull/92 - patch_url: https://github.com/packit/ogr/pull/92.patch - url: https://api.github.com/repos/packit/ogr/pulls/92 + diff_url: https://github.com/packit/ogr/pull/114.diff + html_url: https://github.com/packit/ogr/pull/114 + patch_url: https://github.com/packit/ogr/pull/114.patch + url: https://api.github.com/repos/packit/ogr/pulls/114 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: update_pr_info methods created - updated_at: '2019-06-28T06:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/92 + title: method create release for github created + updated_at: '2019-07-17T07:14:36Z' + url: https://api.github.com/repos/packit/ogr/issues/114 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -100332,7 +128490,7 @@ requests.sessions: url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -100351,7 +128509,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -100370,17 +128528,16 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: "Add methods to `GithubProject`/`PagureProject` for editing title\ - \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ - \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ - \ information " - closed_at: '2019-06-28T06:51:21Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments - created_at: '2019-06-26T07:17:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/87/events - html_url: https://github.com/packit/ogr/issues/87 - id: 460802132 + body: "For `Github` we can get the releases:\r\nhttps://github.com/packit-service/ogr/blob/master/ogr/services/github.py#L571\r\ + \n\r\nWe need to also create a new release from API.\r\n\r\n---\r\n\r\ + \nRelevant documentation:\r\nhttps://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_git_release" + closed_at: '2019-07-17T07:14:35Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/111/comments + created_at: '2019-07-11T08:20:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/111/events + html_url: https://github.com/packit/ogr/issues/111 + id: 466738216 labels: - color: '000000' default: false @@ -100389,13 +128546,6 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: a2eeef default: false description: New feature or a request for enhancement. @@ -100410,19 +128560,26 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/111/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA4MDIxMzI= - number: 87 + node_id: MDU6SXNzdWU0NjY3MzgyMTY= + number: 111 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ' Update pull-request information' - updated_at: '2019-06-28T06:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/87 + title: Allow creating releases + updated_at: '2019-07-17T07:14:35Z' + url: https://api.github.com/repos/packit/ogr/issues/111 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -100444,33 +128601,55 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- Add MIT headers to code files.' - closed_at: '2019-06-27T13:51:08Z' + body: "In #102, I've realized that most of the functions in [utils.py](https://github.com/packit-service/ogr/blob/master/ogr/utils.py)\ + \ are never used.\r\n\r\nWe need to go through the functions and check\ + \ if they are not used anywhere (please, control the packit codebase\ + \ as well) and remove the unused ones.\r\n\r\n----\r\n\r\nIn the other\ + \ hand, we can move here the [LocalProject](https://github.com/packit-service/packit/blob/master/packit/local_project.py)\ + \ or other git-related code from the Packit. Do we want OGR to be only\ + \ remote API or git-helper?" + closed_at: '2019-07-16T13:56:45Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/94/comments - created_at: '2019-06-27T13:15:24Z' - events_url: https://api.github.com/repos/packit/ogr/issues/94/events - html_url: https://github.com/packit/ogr/pull/94 - id: 461522977 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/94/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/103/comments + created_at: '2019-07-09T09:27:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/103/events + html_url: https://github.com/packit/ogr/issues/103 + id: 465672061 + labels: + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/103/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyNDI5NzM5 - number: 94 + node_id: MDU6SXNzdWU0NjU2NzIwNjE= + number: 103 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/94.diff - html_url: https://github.com/packit/ogr/pull/94 - patch_url: https://github.com/packit/ogr/pull/94.patch - url: https://api.github.com/repos/packit/ogr/pulls/94 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add license headers - updated_at: '2019-06-27T13:51:12Z' - url: https://api.github.com/repos/packit/ogr/issues/94 + title: Clean the ogr/utils.py + updated_at: '2019-07-16T13:56:45Z' + url: https://api.github.com/repos/packit/ogr/issues/103 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -100491,108 +128670,85 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\nHi, see lines in: https://github.com/packit-service/ogr/blob/master/tests/integration/test_github.py#L20\r\ - \nSo for regenereation these files, you have to use syntax eg:\r\n``FORCE_WRITE=yes\ - \ GITHUB_TOKEN=yourtoken GITHUB_USER=yourname pytest3 tests/integration/test_github.py``\r\ - \nor this will also work ``FORCE_WRITE=yes GITHUB_TOKEN=yourtoken GITHUB_USER=yourname\ - \ make check`` with make check, you have to have set PAGURE_TOKEN and\ - \ USER env vars\r\n```\r\n\r\n_Originally posted by @jscotka in https://github.com/packit-service/ogr/issues/80#issuecomment-503991164_\r\ - \n" - closed_at: '2019-06-27T12:56:06Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/82/comments - created_at: '2019-06-21T09:12:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/82/events - html_url: https://github.com/packit/ogr/issues/82 - id: 459096186 + author_association: CONTRIBUTOR + body: 'Fixes #103 ' + closed_at: '2019-07-16T13:56:45Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/119/comments + created_at: '2019-07-15T10:07:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/119/events + html_url: https://github.com/packit/ogr/pull/119 + id: 468043834 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/82/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/119/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTkwOTYxODY= - number: 82 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTUxNjYx + number: 119 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/119.diff + html_url: https://github.com/packit/ogr/pull/119 + patch_url: https://github.com/packit/ogr/pull/119.patch + url: https://api.github.com/repos/packit/ogr/pulls/119 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Document how to save HTTP sessions for sake of testing - updated_at: '2019-06-27T12:56:06Z' - url: https://api.github.com/repos/packit/ogr/issues/82 + title: unused functions in utils.py removed + updated_at: '2019-07-16T13:56:45Z' + url: https://api.github.com/repos/packit/ogr/issues/119 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] author_association: COLLABORATOR - body: "I'm trying to implement ogr into [release-bot](https://github.com/user-cont/release-bot)\ - \ and it's a little bit painful without documentation from ogr. \r\n\ - \r\nI was playing with ogr on my Github projects and everything is working\ - \ fine. When I tried to reimplement [release-bot's](https://github.com/user-cont/release-bot)\ - \ functionalities which communicate with Github via GraphQL or rest\ - \ API I got stuck. \r\n\r\nOne of the examples could be comments. I\ - \ want to implement commenting on Github issues and PRs via ogr. \r\n\ - - In [release-bot](https://github.com/user-cont/release-bot) it works\ - \ via graphQL and sending some `node_id` inside query which recognizes\ - \ a PR or an Issue. \r\n- In ogr there is `pr_comment` function in ogr/services/github.py.\ - \ If am I right this is an alternative I'm looking for. However, I don't\ - \ fully understand the function's parameters since it needs something\ - \ else then API query.\r\n\r\nI understand that this could be a very\ - \ complex problem since ogr need to preserve compatibility with all\ - \ git forges. I'm just looking for some starting point on how to change\ - \ GraphQL/rest API with ogr. Maybe I just misunderstand some ogr's fundamentals.\r\ - \n" - closed_at: '2019-06-27T12:40:34Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/79/comments - created_at: '2019-06-17T22:01:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/79/events - html_url: https://github.com/packit/ogr/issues/79 - id: 457168292 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/79/labels{/name} + body: "Functions `get_release` and `get_releases` implemented in services/github.py\ + \ were missing in the abstract.py. I also fixed notes from PR #101 which\ + \ was added after PR was merged. \r\n\r\n**Edit:** I also added functionality\ + \ `get_releases` for Pagure in the second commit." + closed_at: '2019-07-15T11:44:25Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/117/comments + created_at: '2019-07-15T08:12:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/117/events + html_url: https://github.com/packit/ogr/pull/117 + id: 467994039 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/117/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTcxNjgyOTI= - number: 79 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTExNTgx + number: 117 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/117.diff + html_url: https://github.com/packit/ogr/pull/117 + patch_url: https://github.com/packit/ogr/pull/117.patch + url: https://api.github.com/repos/packit/ogr/pulls/117 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add compatibility with Github's GraphQL API v4 and rest API v3 - updated_at: '2019-06-27T12:40:34Z' - url: https://api.github.com/repos/packit/ogr/issues/79 + title: add get_release/get_releases into abstract.py + updated_at: '2019-07-15T11:44:25Z' + url: https://api.github.com/repos/packit/ogr/issues/117 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -100613,105 +128769,146 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Better get_fork for pagure and github. (Fixes #58)\r\n\r\nTODO:\r\ - \n\r\n- [x] `get_forks` on project\r\n- [x] use `project.get_forks()`\ - \ in `project.get_fork`\r\n- [x] `get_forks` for user\r\n- [x] more\ - \ tests\r\n - [x] save sequence of responses\r\n - [x] tests for\ - \ creating fork" - closed_at: '2019-06-27T10:34:34Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/85/comments - created_at: '2019-06-25T11:05:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/85/events - html_url: https://github.com/packit/ogr/pull/85 - id: 460358105 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/85/labels{/name} + author_association: COLLABORATOR + body: "In the case of Github, it is possible to get a repository's file\ + \ content via [API](https://developer.github.com/v3/repos/contents/#get-contents)\ + \ or [PyGithub lib](https://pygithub.readthedocs.io/en/latest/github_objects/ContentFile.html).\ + \ In the case of Pagure, I am not sure if it is possible. \r\n\r\n(I\ + \ need this for release-bot, I can hack it for now, but would be wonderful\ + \ to have such feature in ogr.)" + closed_at: '2019-07-13T18:50:35Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/115/comments + created_at: '2019-07-12T14:05:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/115/events + html_url: https://github.com/packit/ogr/issues/115 + id: 467432493 + labels: + - color: e4e669 + default: true + description: This doesn't seem right. + id: 1160311267 + name: invalid + node_id: MDU6TGFiZWwxMTYwMzExMjY3 + url: https://api.github.com/repos/packit/ogr/labels/invalid + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/115/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkxNTAyODU2 - number: 85 + node_id: MDU6SXNzdWU0Njc0MzI0OTM= + number: 115 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/85.diff - html_url: https://github.com/packit/ogr/pull/85 - patch_url: https://github.com/packit/ogr/pull/85.patch - url: https://api.github.com/repos/packit/ogr/pulls/85 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Better fork handling - updated_at: '2019-06-27T10:34:38Z' - url: https://api.github.com/repos/packit/ogr/issues/85 + title: Missing functionality for getting content of a file. + updated_at: '2019-07-13T18:50:35Z' + url: https://api.github.com/repos/packit/ogr/issues/115 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/marusinm - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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} + assignee: null + assignees: [] + author_association: COLLABORATOR + body: services.github.py already can [list all releases](https://github.com/packit-service/ogr/blob/badeddd87032da354d411fff3365bb02e260571b/ogr/services/github.py#L656). + We need this for Pagure too. + closed_at: '2019-07-12T21:58:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/116/comments + created_at: '2019-07-12T14:55:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/116/events + html_url: https://github.com/packit/ogr/issues/116 + id: 467458155 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: cfd3d7 + default: true + description: This issue or pull request already exists + id: 1160311263 + name: duplicate + node_id: MDU6TGFiZWwxMTYwMzExMjYz + url: https://api.github.com/repos/packit/ogr/labels/duplicate + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/116/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Njc0NTgxNTU= + number: 116 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: get_releases for Pagure + updated_at: '2019-07-12T21:59:06Z' + url: https://api.github.com/repos/packit/ogr/issues/116 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - author_association: MEMBER - body: "FML!\r\n\r\nSo my fork of packit is named source-git, not packit.\r\ - \n\r\nWe should use an API call to obtain github forks, not a guess\ - \ work." - closed_at: '2019-06-27T10:34:34Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/58/comments - created_at: '2019-04-15T11:38:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/58/events - html_url: https://github.com/packit/ogr/issues/58 - id: 433234905 + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Implementation of getting project owners related to #88. \r\nAnd\ + \ getting users with permission for closing Issues and merging PR based\ + \ on [Github permissions](https://help.github.com/en/articles/repository-permission-levels-for-an-organization)\ + \ and [Pagure permissions](https://docs.pagure.org/pagure/usage/project_acls.html)\ + \ related to issue #100." + closed_at: '2019-07-12T07:51:41Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/101/comments + created_at: '2019-07-08T13:03:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/101/events + html_url: https://github.com/packit/ogr/pull/101 + id: 465245940 labels: - color: '000000' default: false @@ -100720,74 +128917,117 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/58/labels{/name} + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/101/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzMyMzQ5MDU= - number: 58 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk1MzI1ODUx + number: 101 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/101.diff + html_url: https://github.com/packit/ogr/pull/101 + patch_url: https://github.com/packit/ogr/pull/101.patch + url: https://api.github.com/repos/packit/ogr/pulls/101 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github: fork repository name may not match the upstream repo name' - updated_at: '2019-06-27T10:34:34Z' - url: https://api.github.com/repos/packit/ogr/issues/58 + title: get project's owners and permissions of various users + updated_at: '2019-07-12T12:44:34Z' + url: https://api.github.com/repos/packit/ogr/issues/101 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- [pagure] Use empty dict as a default header.' - closed_at: '2019-06-26T13:30:50Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/89/comments - created_at: '2019-06-26T12:51:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/89/events - html_url: https://github.com/packit/ogr/pull/89 - id: 460952659 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/89/labels{/name} + body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ + \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" + closed_at: '2019-07-11T08:48:44Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments + created_at: '2019-05-29T07:12:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/74/events + html_url: https://github.com/packit/ogr/issues/74 + id: 449635655 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkxOTc0MzU1 - number: 89 + node_id: MDU6SXNzdWU0NDk2MzU2NTU= + number: 74 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/89.diff - html_url: https://github.com/packit/ogr/pull/89 - patch_url: https://github.com/packit/ogr/pull/89.patch - url: https://api.github.com/repos/packit/ogr/pulls/89 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix pagure header without token - updated_at: '2019-06-26T13:30:53Z' - url: https://api.github.com/repos/packit/ogr/issues/89 + title: Add a link to `GitTag` from `Release`. + updated_at: '2019-07-11T08:48:44Z' + url: https://api.github.com/repos/packit/ogr/issues/74 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -100808,206 +129048,311 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Related to #80 \r\n\r\nI provided functionality for Github Issues\ - \ including `get_issue_info`, `get_issue_list`, `get_issue_comments`,\ - \ `issue_comment`. \r\n\r\nHowever, two tests for my new functionality\ - \ are failing. I cannot create .yaml files for them on path tests/integration/test-data.\ - \ When we solve this, I can finish functionality for labeling and closing\ - \ issues.\r\n\r\nthis PR also solves #79 - I assign pull-request number\ - \ into `PullRequest.id` in ogr/abstract.py. Before it was assigning\ - \ some \"global Github pull-request id\" instead \"pull-request number\"\ - \ which was incorrect. " - closed_at: '2019-06-26T11:37:09Z' - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/81/comments - created_at: '2019-06-20T13:59:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/81/events - html_url: https://github.com/packit/ogr/pull/81 - id: 458676227 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/81/labels{/name} + author_association: CONTRIBUTOR + body: 'Fixes #74' + closed_at: '2019-07-11T08:48:44Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/106/comments + created_at: '2019-07-10T07:38:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/106/events + html_url: https://github.com/packit/ogr/pull/106 + id: 466149524 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/106/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkwMjMwMDk0 - number: 81 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDQ2Mjc3 + number: 106 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/81.diff - html_url: https://github.com/packit/ogr/pull/81 - patch_url: https://github.com/packit/ogr/pull/81.patch - url: https://api.github.com/repos/packit/ogr/pulls/81 + diff_url: https://github.com/packit/ogr/pull/106.diff + html_url: https://github.com/packit/ogr/pull/106 + patch_url: https://github.com/packit/ogr/pull/106.patch + url: https://api.github.com/repos/packit/ogr/pulls/106 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get info and comment Github Issues - updated_at: '2019-06-26T11:37:09Z' - url: https://api.github.com/repos/packit/ogr/issues/81 + title: link to GitTag from Release added + updated_at: '2019-07-11T08:48:44Z' + url: https://api.github.com/repos/packit/ogr/issues/106 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "as integration tests needs regeneration stored yaml API communication.\r\ - \nWould be nice to add there target to be able to regenerate these files" - closed_at: '2019-06-25T14:47:44Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/61/comments - created_at: '2019-04-26T07:35:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/61/events - html_url: https://github.com/packit/ogr/issues/61 - id: 437538907 - labels: - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/61/labels{/name} + body: "Fixes\r\n_DeprecationWarning: Using or importing the ABCs from\ + \ 'collections' instead of from 'collections.abc' is deprecated, and\ + \ in 3.8 it will stop working_" + closed_at: '2019-07-11T07:03:27Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/109/comments + created_at: '2019-07-10T14:24:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/109/events + html_url: https://github.com/packit/ogr/pull/109 + id: 466340777 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/109/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Mzc1Mzg5MDc= - number: 61 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MTk4Nzc4 + number: 109 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/109.diff + html_url: https://github.com/packit/ogr/pull/109 + patch_url: https://github.com/packit/ogr/pull/109.patch + url: https://api.github.com/repos/packit/ogr/pulls/109 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: create target for makefile for regeneration testing yaml files - updated_at: '2019-06-25T14:47:44Z' - url: https://api.github.com/repos/packit/ogr/issues/61 + title: collections.Hashable -> collections.abc.Hashable + updated_at: '2019-07-11T07:53:20Z' + url: https://api.github.com/repos/packit/ogr/issues/109 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Hi,\r\nit is unbale to get or install ``ansible-bender`` for ``make\ - \ build`` target.\r\n\r\nIt is not part of Fedora-29.\r\n\r\nI've found\ - \ that @TomasTomecek done this: https://github.com/TomasTomecek/ansible-bender\r\ - \nbut it still failed:\r\n```\r\n12:43 $ sudo pip3 install ansible-bender\r\ - \nWARNING: Running pip install with root privileges is generally not\ - \ a good idea. Try `pip3 install --user` instead.\r\nCollecting ansible-bender\r\ - \n Downloading https://files.pythonhosted.org/packages/fa/5c/04c822b3ee6e2ff41eed372f15d954cccf164d0340341fbd0270d500bb83/ansible_bender-0.4.0-py2.py3-none-any.whl\r\ - \nRequirement already satisfied: PyYAML in /usr/lib64/python3.7/site-packages\ - \ (from ansible-bender) (4.2b4)\r\nCollecting tabulate (from ansible-bender)\r\ - \n Downloading https://files.pythonhosted.org/packages/c2/fd/202954b3f0eb896c53b7b6f07390851b1fd2ca84aa95880d7ae4f434c4ac/tabulate-0.8.3.tar.gz\ - \ (46kB)\r\n 100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ - \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ - \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ - | 51kB 2.0MB/s \r\nInstalling collected packages: tabulate, ansible-bender\r\ - \n Running setup.py install for tabulate ... done\r\nSuccessfully installed\ - \ ansible-bender-0.4.0 tabulate-0.8.3\r\n\u2714 ~/git/userspace-containerization/ogr\ - \ [tests1 L|\u202638] \r\n12:44 $ sudo make build \r\nsudo ansible-bender\ - \ build --build-volumes /home/jscotka/git/userspace-containerization/ogr:/src:Z\ - \ -- ./recipe.yaml registry.fedoraproject.org/fedora:29 ogr\r\nThere\ - \ was an error during execution: buildah command doesn't seem to be\ - \ available on your system. Please follow the upstream instructions\ - \ available at https://github.com/projectatomic/buildah/blob/master/install.md\r\ - \nmake: *** [Makefile:7: build] Error 2\r\n```\r\n\r\nafter installing:\ - \ ``sudo dnf install buildah `` it finally works." - closed_at: '2019-06-25T09:00:15Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/17/comments - created_at: '2019-02-18T11:46:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/17/events - html_url: https://github.com/packit/ogr/issues/17 - id: 411437302 + body: See https://github.com/packit-service/packit/pull/407 + closed_at: '2019-07-10T12:56:20Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/108/comments + created_at: '2019-07-10T12:47:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/108/events + html_url: https://github.com/packit/ogr/pull/108 + id: 466289238 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/17/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/108/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTE0MzczMDI= - number: 17 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MTU3NzYy + number: 108 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/108.diff + html_url: https://github.com/packit/ogr/pull/108 + patch_url: https://github.com/packit/ogr/pull/108.patch + url: https://api.github.com/repos/packit/ogr/pulls/108 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: missing ansible-bender dep for building - updated_at: '2019-06-25T09:00:15Z' - url: https://api.github.com/repos/packit/ogr/issues/17 + title: Make PersistentObjectStorage.__init__() backwards compatible + updated_at: '2019-07-10T12:56:33Z' + url: https://api.github.com/repos/packit/ogr/issues/108 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "* [x] don't fail when PAGURE_{TOKEN,USER} are not specified\r\n\ - * [x] mock remote API and write complete unit tests using those data\ - \ (or even have a single test suite and enable it to run against live\ - \ instance and mocked data)\r\n* [x] [tox](https://developer.fedoraproject.org/tech/languages/python/multiple-pythons.html)-ify\ - \ it (#27)" - closed_at: '2019-06-25T08:59:43Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/8/comments - created_at: '2019-01-30T10:19:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/8/events - html_url: https://github.com/packit/ogr/issues/8 - id: 404698352 + author_association: CONTRIBUTOR + body: 'Fixes #52' + closed_at: '2019-07-10T07:35:48Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/105/comments + created_at: '2019-07-10T07:09:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/105/events + html_url: https://github.com/packit/ogr/pull/105 + id: 466138321 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/8/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/105/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDM3NjM1 + number: 105 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/105.diff + html_url: https://github.com/packit/ogr/pull/105 + patch_url: https://github.com/packit/ogr/pull/105.patch + url: https://api.github.com/repos/packit/ogr/pulls/105 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: in get_file_content catch only 404 + updated_at: '2019-07-10T07:40:13Z' + url: https://api.github.com/repos/packit/ogr/issues/105 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: CONTRIBUTOR + body: "Just spent some time debugging an issue where packit.yaml was not\ + \ found while being 100 % it's in there.\r\n\r\nIt turned out that my\ + \ token was incorrect and github kept throwing 401: that should bubble\ + \ up, we should catch 404 only. " + closed_at: '2019-07-10T07:35:48Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/52/comments + created_at: '2019-03-27T21:00:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/52/events + html_url: https://github.com/packit/ogr/issues/52 + id: 426181525 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/52/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MDQ2OTgzNTI= - number: 8 + node_id: MDU6SXNzdWU0MjYxODE1MjU= + number: 52 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve testing - updated_at: '2019-06-25T08:59:43Z' - url: https://api.github.com/repos/packit/ogr/issues/8 + title: 'get_file_content: catch only 404, raise everything else' + updated_at: '2019-07-10T07:35:48Z' + url: https://api.github.com/repos/packit/ogr/issues/52 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -101026,19 +129371,54 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "we need this in packit this sprint when we start building in copr\r\ - \n\r\nthis should be implemented soonish and land in next release\r\n\ - \r\nrelevant code for github:\r\nhttps://github.com/packit-service/packit/blob/04793f16d5ced27b5e7fec7d963d650b065a4276/packit/watcher.py#L94" - closed_at: '2019-06-25T07:31:05Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/54/comments - created_at: '2019-04-04T14:24:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/54/events - html_url: https://github.com/packit/ogr/issues/54 - id: 429309114 + assignee: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + author_association: COLLABORATOR + body: 'Based on our discussion on Issue #79, there is no functionality + in ogr for commenting on Github/Pagure issues.' + closed_at: '2019-07-10T06:57:03Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/80/comments + created_at: '2019-06-19T07:21:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/80/events + html_url: https://github.com/packit/ogr/issues/80 + id: 457847996 labels: - color: a2eeef default: false @@ -101047,73 +129427,120 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/54/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/80/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjkzMDkxMTQ= - number: 54 + node_id: MDU6SXNzdWU0NTc4NDc5OTY= + number: 80 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add a way to set check results for a commit - updated_at: '2019-06-25T07:31:05Z' - url: https://api.github.com/repos/packit/ogr/issues/54 + title: Commenting on Issues + updated_at: '2019-07-10T06:57:03Z' + url: https://api.github.com/repos/packit/ogr/issues/80 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/marusinm - active_lock_reason: null - assignee: null - assignees: [] + assignee: + avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 author_association: MEMBER - body: "- Add Makefile targets for removing response files.\r\n- Determine\ - \ forcewrite mode from file existance.\r\n\r\n\r\nWhy?\r\n- less magic\r\ - \n- easier for newcomers:\r\n - When adding a new test, you need\ - \ to rerun the tests to generate the response files.\r\n - To update\ - \ a response file, you need to remove the file and rerun the tests.\r\ - \n\r\n\r\nTODO:\r\n\r\n- [x] describe the testing in the contribution\ - \ guide" - closed_at: '2019-06-24T14:55:24Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/84/comments - created_at: '2019-06-24T12:33:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/84/events - html_url: https://github.com/packit/ogr/pull/84 - id: 459865460 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/84/labels{/name} + body: It would be nice to implement `__str__` methods for all classes + (e.g. `GithubProject`, `Issue`,...). + closed_at: '2019-07-10T06:51:37Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments + created_at: '2019-06-27T10:29:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/90/events + html_url: https://github.com/packit/ogr/issues/90 + id: 461449910 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkxMTExNTU4 - number: 84 + node_id: MDU6SXNzdWU0NjE0NDk5MTA= + number: 90 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/84.diff - html_url: https://github.com/packit/ogr/pull/84 - patch_url: https://github.com/packit/ogr/pull/84.patch - url: https://api.github.com/repos/packit/ogr/pulls/84 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Forcewrite mode from file existance - updated_at: '2019-06-24T14:55:57Z' - url: https://api.github.com/repos/packit/ogr/issues/84 + title: String representations for classes + updated_at: '2019-07-10T06:51:37Z' + url: https://api.github.com/repos/packit/ogr/issues/90 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -101134,223 +129561,182 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Rename @readonly to @if_readonly. - - - - Fixes #56' - closed_at: '2019-06-24T14:46:14Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/83/comments - created_at: '2019-06-24T11:34:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/83/events - html_url: https://github.com/packit/ogr/pull/83 - id: 459840373 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-07-09T13:56:31Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/104/comments + created_at: '2019-07-09T11:05:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/104/events + html_url: https://github.com/packit/ogr/pull/104 + id: 465717381 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/83/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/104/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkxMDkxNDg4 - number: 83 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk1NzAyNDc0 + number: 104 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/83.diff - html_url: https://github.com/packit/ogr/pull/83 - patch_url: https://github.com/packit/ogr/pull/83.patch - url: https://api.github.com/repos/packit/ogr/pulls/83 + diff_url: https://github.com/packit/ogr/pull/104.diff + html_url: https://github.com/packit/ogr/pull/104 + patch_url: https://github.com/packit/ogr/pull/104.patch + url: https://api.github.com/repos/packit/ogr/pulls/104 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Rename readonly decorator - updated_at: '2019-06-24T14:46:47Z' - url: https://api.github.com/repos/packit/ogr/issues/83 + title: unify external command invocation - fix + updated_at: '2019-07-09T13:56:31Z' + url: https://api.github.com/repos/packit/ogr/issues/104 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "The `@readonly` decorator should be renamed as it can confuse newcomers\ - \ that the method itself is \"readonly\". The fact is that it has the\ - \ opposite meaning of the read-only.\r\n\r\nFeel free to add your ideas\ - \ as a single comment so we can easily vote.\r\n\r\n-----\r\n\r\nFollow-up\ - \ from #48" - closed_at: '2019-06-24T14:46:14Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/56/comments - created_at: '2019-04-09T08:17:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/56/events - html_url: https://github.com/packit/ogr/issues/56 - id: 430829968 + author_association: CONTRIBUTOR + body: 'Fixes #33 ' + closed_at: '2019-07-09T09:29:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/102/comments + created_at: '2019-07-09T08:49:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/102/events + html_url: https://github.com/packit/ogr/pull/102 + id: 465652910 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/56/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/102/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzA4Mjk5Njg= - number: 56 + node_id: MDExOlB1bGxSZXF1ZXN0Mjk1NjUwMTA5 + number: 102 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/102.diff + html_url: https://github.com/packit/ogr/pull/102 + patch_url: https://github.com/packit/ogr/pull/102.patch + url: https://api.github.com/repos/packit/ogr/pulls/102 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'better name for @readonly decorator ' - updated_at: '2019-06-24T14:46:14Z' - url: https://api.github.com/repos/packit/ogr/issues/56 + title: unify external command invocation + updated_at: '2019-07-09T10:49:16Z' + url: https://api.github.com/repos/packit/ogr/issues/102 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* enable calling dump()\ - \ after store()\n* packit.yaml: add a link to docs\n* packit: sync from\ - \ downstream & build in copr\n* Fix mypy errors\n* Dump RequestResponse\ - \ on our own\n* Fix old imports\n* Remove old Pagure tests\n* Fix tests\ - \ and regenerate test responses, do not save headers\n* Use custom response\ - \ class for Pagure\n* Add missing readonly decorator\n* Use self.get_raw_request\ - \ on cal_api\n* Add docstring for Pagure methods\n* Fix creation of\ - \ pr comments\n* Improve the request/response handling and fix authentication\ - \ header\n* Apply suggestions by @jpopelka from code review\n* Fix commit\ - \ flags/statuses\n* Remove libpagure from recipe\n* Methods for commit\ - \ statuses/flags and comments\n* Add methods for tags\n* Fix __str__\ - \ for PRComment and PullRequest\n* Remove libpagure from requirements\n\ - * Fix forking\n* Better response handling for Pagure API\n* Remove OurPagure\n\ - * Implement forking logic and PR methods\n* First part of implementing\ - \ the Pagure classes without libpagure\n* Add string representation\ - \ for PRComment and PullRequest\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.4.0-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2019-06-11T14:05:10Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/77/comments - created_at: '2019-06-11T13:18:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/77/events - html_url: https://github.com/packit/ogr/pull/77 - id: 454686226 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/77/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjg3MDg2Mzg1 - number: 77 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/77.diff - html_url: https://github.com/packit/ogr/pull/77 - patch_url: https://github.com/packit/ogr/pull/77.patch - url: https://api.github.com/repos/packit/ogr/pulls/77 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.4.0 release - updated_at: '2019-06-11T14:10:26Z' - url: https://api.github.com/repos/packit/ogr/issues/77 - user: - avatar_url: https://avatars1.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} + assignee: + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos 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 + 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/usercont-release-bot - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/lbarcziova + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: '' - closed_at: '2019-06-11T13:19:01Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/76/comments - created_at: '2019-06-11T13:18:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/76/events - html_url: https://github.com/packit/ogr/issues/76 - id: 454685925 + body: "utils.py uses several different approaches to invoke an external\ + \ command:\r\n\r\n* [subprocess.Popen](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L103)\r\ + \n* [subprocess.check_call](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L122)\r\ + \n* [subprocess.check_output](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L171)\r\ + \n\r\nThe recommended approach (since Python 3.5) is to use [subprocess.run](https://docs.python.org/3/library/subprocess.html#subprocess.run).\r\ + \n\r\nAlso, there's lots of external libraries for this use case:\r\n\ + * http://amoffat.github.io/sh/\r\n* https://www.pyinvoke.org/\r\n* https://plumbum.readthedocs.io\r\ + \n* https://pexpect.readthedocs.io" + closed_at: '2019-07-09T09:29:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/33/comments + created_at: '2019-03-14T13:51:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/33/events + html_url: https://github.com/packit/ogr/issues/33 + id: 421030116 labels: - - color: ededed + - color: a2eeef default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/76/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/33/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTQ2ODU5MjU= - number: 76 + node_id: MDU6SXNzdWU0MjEwMzAxMTY= + number: 33 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-06-11T13:19:01Z' - url: https://api.github.com/repos/packit/ogr/issues/76 + title: Unify external command invocation + updated_at: '2019-07-09T09:29:53Z' + url: https://api.github.com/repos/packit/ogr/issues/33 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -101372,78 +129758,36 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '\+ packit.yaml: add a link to docs' - closed_at: '2019-05-29T14:23:24Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/72/comments - created_at: '2019-05-22T14:36:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/72/events - html_url: https://github.com/packit/ogr/pull/72 - id: 447175169 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/72/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjgxMjI1MTU2 - number: 72 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/72.diff - html_url: https://github.com/packit/ogr/pull/72 - patch_url: https://github.com/packit/ogr/pull/72.patch - url: https://api.github.com/repos/packit/ogr/pulls/72 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: dump() when store() is called - updated_at: '2019-05-29T14:23:28Z' - url: https://api.github.com/repos/packit/ogr/issues/72 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "- Remove OurPagure.\r\n- Implement forking logic and PR methods.\r\ - \n- First part of implementing the Pagure classes without libpagure.\r\ - \n- Add string representation for PRComment and PullRequest.\r\n\r\n\ - Fix #64\r\nFix #67\r\n\r\n---\r\n\r\nTODO:\r\n\r\n- [x] readonly mode\r\ - \n- [x] tests\r\n\r\n\r\n---\r\n\r\n## How to test?\r\n\r\n```python\r\ - \nfrom ogr.services.pagure import PagureService\r\nfrom ogr.abstract\ - \ import PRStatus\r\n\r\n\r\nservice = PagureService(token=\"???_PAGURE_TOKEN_???\"\ - )\r\n\r\n# Play with the API\r\n\r\nprint(service.user.get_username())\r\ - \nproject = service.get_project(repo=\"colin\", namespace=\"rpms\")\r\ - \nprint(project.get_commit_statuses(\"339a19b0bbc766d0c6cdbbc2ef5a32c0de9f7551\"\ - )[0])\r\nprint(project.get_tags())\r\n\r\nfork = project.get_fork()\r\ - \nprint(fork.exists())\r\n\r\nproject.fork_create()\r\n\r\nfor pr in\ - \ project.get_pr_list(status=PRStatus.all):\r\n print(pr)\r\n\r\n\ - pr = project.get_pr_info(3)\r\nprint(pr)\r\nfor c in project.get_pr_comments(3):\r\ - \n print(c)\r\n\r\nprint(fork.is_fork)\r\nprint(fork.is_forked())\r\ - \n```" - closed_at: '2019-05-29T07:46:28Z' - comments: 17 - comments_url: https://api.github.com/repos/packit/ogr/issues/71/comments - created_at: '2019-05-20T10:11:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/71/events - html_url: https://github.com/packit/ogr/pull/71 - id: 446033070 + body: "- Add method for creating projects from url.\r\n- Get project from\ + \ url.\r\n\r\n\r\nTODO:\r\n\r\n- [x] add a way to use existing service\ + \ classes\r\n- [x] add a way to update mapping by user\r\n- [ ] consider\ + \ implementing API checks if we cannot find a match in mapping\r\n-\ + \ [x] tests\r\n - [x] make the `github_repo` lazy for easier testing\r\ + \n - [x] tests for geting project/service class from url\r\n -\ + \ [x] tests for parsing\r\n\r\n----\r\n\r\nHow to test?\r\n\r\n```python\r\ + \nfrom ogr import get_service_class\r\n\r\nget_service_class(url=\"\ + github.com/packit-service/ogr\")\r\nget_service_class(url=\"src.fedoraproject.org/rpms/python-ogr\"\ + )\r\n```\r\n```python\r\nfrom ogr import get_project\r\nfrom ogr import\ + \ GithubService, PagureService\r\n\r\nget_project(\r\n url=\"src.fedoraproject.org/rpms/python-ogr\"\ + ,\r\n custom_instances=[\r\n GithubService(token=\"asda\"\ + ),\r\n PagureService(instance_url=\"pagure.io\", token=\"qwe\"\ + ),\r\n PagureService(instance_url=\"src.fedoraproject.org\",\ + \ token=\"asdaasda\"),\r\n ],\r\n)\r\n\r\n```" + closed_at: '2019-07-03T13:12:23Z' + comments: 13 + comments_url: https://api.github.com/repos/packit/ogr/issues/95/comments + created_at: '2019-06-28T08:30:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/95/events + html_url: https://github.com/packit/ogr/pull/95 + id: 461920354 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: 1d76db default: false description: Related to Pagure implementation. @@ -101451,24 +129795,31 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - labels_url: https://api.github.com/repos/packit/ogr/issues/71/labels{/name} + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/95/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjgwMzI0Njgx - number: 71 + node_id: MDExOlB1bGxSZXF1ZXN0MjkyNzM4MzEx + number: 95 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/71.diff - html_url: https://github.com/packit/ogr/pull/71 - patch_url: https://github.com/packit/ogr/pull/71.patch - url: https://api.github.com/repos/packit/ogr/pulls/71 + diff_url: https://github.com/packit/ogr/pull/95.diff + html_url: https://github.com/packit/ogr/pull/95 + patch_url: https://github.com/packit/ogr/pull/95.patch + url: https://api.github.com/repos/packit/ogr/pulls/95 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove libpagure - updated_at: '2019-05-29T11:00:10Z' - url: https://api.github.com/repos/packit/ogr/issues/71 + title: Methods for creating projects from url + updated_at: '2019-07-03T13:20:09Z' + url: https://api.github.com/repos/packit/ogr/issues/95 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -101489,229 +129840,98 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-05-29T08:31:09Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/75/comments - created_at: '2019-05-29T07:41:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/75/events - html_url: https://github.com/packit/ogr/pull/75 - id: 449647079 + author_association: COLLABORATOR + body: "Related to #80\r\n\r\nThis PR contains functionality for Pagure\ + \ issues except for tagging issues. I had some problems with tagging,\ + \ therefore, I'll create separated PR for it.\r\n\r\nIf I am right I\ + \ have to set Pagure token for creating yaml test-files. We can manage\ + \ that in private chat, then I'll add tests." + closed_at: '2019-07-02T11:56:47Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/99/comments + created_at: '2019-06-30T21:39:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/99/events + html_url: https://github.com/packit/ogr/pull/99 + id: 462449449 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/75/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/99/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjgzMTMxNzY3 - number: 75 + node_id: MDExOlB1bGxSZXF1ZXN0MjkzMTM0Mjcw + number: 99 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/75.diff - html_url: https://github.com/packit/ogr/pull/75 - patch_url: https://github.com/packit/ogr/pull/75.patch - url: https://api.github.com/repos/packit/ogr/pulls/75 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'packit: sync from downstream & build in copr' - updated_at: '2019-05-29T08:31:13Z' - url: https://api.github.com/repos/packit/ogr/issues/75 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ - \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ - \nhas to be adapted, currenly I've added dependency on lower version\ - \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ - \nto avoid this issue." - closed_at: '2019-05-29T07:46:28Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments - created_at: '2019-04-29T14:41:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/64/events - html_url: https://github.com/packit/ogr/issues/64 - id: 438351136 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0MzgzNTExMzY= - number: 64 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'libpagure has changed ' - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/64 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos - site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "While debugging https://github.com/packit-service/packit/issues/305\ - \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ - \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ - \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ attribute has a value `rpm/packit`, while libpagure probably expects\ - \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ - \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ - \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ - \ expects `/` in `self.repo`, which is probably not what `libpagure`\ - \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ - \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ - \ even more recently." - closed_at: '2019-05-29T07:46:28Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments - created_at: '2019-05-10T11:09:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/67/events - html_url: https://github.com/packit/ogr/issues/67 - id: 442664622 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NDI2NjQ2MjI= - number: 67 - performed_via_github_app: null + diff_url: https://github.com/packit/ogr/pull/99.diff + html_url: https://github.com/packit/ogr/pull/99 + patch_url: https://github.com/packit/ogr/pull/99.patch + url: https://api.github.com/repos/packit/ogr/pulls/99 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: libpagure.Pagure expects '/' not in repo attribute - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/67 + title: creating/closing/commenting Pagure Issues + updated_at: '2019-07-02T11:56:47Z' + url: https://api.github.com/repos/packit/ogr/issues/99 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.482518 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; + Date: Tue, 13 Apr 2021 18:00:59 GMT + ETag: W/"59938074a520cc9fc3b823114ba888981e4751e0dc43637513aa166871d7c625" + Link: ; + rel="prev", ; + rel="next", ; rel="last", ; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F8130C:191D5AC:6075DC5A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4569' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '431' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=13: + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=16: - metadata: - latency: 0.6306262016296387 + latency: 0.41854310035705566 module_call_list: - unittest.case - requre.online_replacing @@ -101733,32 +129953,32 @@ requests.sessions: assignees: [] author_association: MEMBER body: '' - closed_at: '2019-05-14T14:52:49Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/70/comments - created_at: '2019-05-14T14:49:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/70/events - html_url: https://github.com/packit/ogr/pull/70 - id: 443960153 + closed_at: '2019-06-11T15:21:02Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/78/comments + created_at: '2019-06-11T14:33:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/78/events + html_url: https://github.com/packit/ogr/pull/78 + id: 454727768 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/70/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/78/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjc4NzE5MTU5 - number: 70 + node_id: MDExOlB1bGxSZXF1ZXN0Mjg3MTIwMTYy + number: 78 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/70.diff - html_url: https://github.com/packit/ogr/pull/70 - patch_url: https://github.com/packit/ogr/pull/70.patch - url: https://api.github.com/repos/packit/ogr/pulls/70 + diff_url: https://github.com/packit/ogr/pull/78.diff + html_url: https://github.com/packit/ogr/pull/78 + patch_url: https://github.com/packit/ogr/pull/78.patch + url: https://api.github.com/repos/packit/ogr/pulls/78 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.3.1 release - updated_at: '2019-05-14T14:55:27Z' - url: https://api.github.com/repos/packit/ogr/issues/70 + title: '[spec] bump to 0.4.0' + updated_at: '2019-07-01T13:06:37Z' + url: https://api.github.com/repos/packit/ogr/issues/78 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -101775,45 +129995,138 @@ requests.sessions: 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 + url: https://api.github.com/users/jpopelka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Fix formating for __str__ methods.\r\n- Changes requested to_str_method\ + \ of classes. @shreyanshrs44\r\n- Added instantiation-like syntax. @shreyanshrs44\r\ + \n- Added __str__ method to classes. @shreyanshrs44\r\n- Added __str__\ + \ method to classes. @shreyanshrs44\r\n\r\nFixed version of #93 " + closed_at: '2019-06-28T13:26:06Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/98/comments + created_at: '2019-06-28T12:20:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/98/events + html_url: https://github.com/packit/ogr/pull/98 + id: 462007848 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/98/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkyODA5MjI0 + number: 98 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/98.diff + html_url: https://github.com/packit/ogr/pull/98 + patch_url: https://github.com/packit/ogr/pull/98.patch + url: https://api.github.com/repos/packit/ogr/pulls/98 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Added __str__ method to classes. (new) + updated_at: '2019-06-28T13:26:15Z' + url: https://api.github.com/repos/packit/ogr/issues/98 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "I have added __str__ method to classes in /ogr/services/github.py\ + \ , /ogr/services/gitlab.py, /ogr/services/pagure.py.\r\nPlease have\ + \ a look and give feedback on necessary changes.\r\nI have not touched\ + \ the classes inside /ogr/abstract.py as it containes __str__ method\ + \ for most of classes in it. " + closed_at: '2019-06-28T12:23:38Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/93/comments + created_at: '2019-06-27T12:17:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/93/events + html_url: https://github.com/packit/ogr/pull/93 + id: 461495461 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/93/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkyNDA3Mjc3 + number: 93 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/93.diff + html_url: https://github.com/packit/ogr/pull/93 + patch_url: https://github.com/packit/ogr/pull/93.patch + url: https://api.github.com/repos/packit/ogr/pulls/93 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Added __str__ method to classes. + updated_at: '2019-06-28T12:23:38Z' + url: https://api.github.com/repos/packit/ogr/issues/93 + user: + avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* add comment why there\ - \ is little bit confusing assigment\n* improve mock pf persistent objects\n\ - * use generic exception, to not fail when regenerating\n* raise filenotfound\ - \ exception in pagure method get_file_content\n* enable readonly tests\n\ - * enable some tests what were disabled when debugging various issues\n\ - * check write mode in dump function not in desctructor\n* do not flush\ - \ within desctructor, in case read mode\n* avoid to use default flow\ - \ style for yaml files\n* mock pagure classes\n* commit status\n* Regenerate\ - \ github test data\n* Implement adding PR comments\n* commit_comment:\ - \ Fix typo in docs\n* Implement adding commit comments\n* method GithubProject().get_sha_from_tag\ - \ in\n* rename github in mock to another name to fix the pypy test\n\ - * fix integration test for github by skipping\n* add yaml dependency\ - \ to requirements\n* add there class attribute to be possible to use\ - \ ogr mocking in pagure\n* fixed using of open in destructor\n* fixed\ - \ using of open in destructor\n* rename write_mode to is_write_mode\ - \ to be more explicit that there is expected boolean primarily\n* add\ - \ doc strings and adapt PR review comments\n* pagure/get_urls: fill\ - \ in {username}\n* use internal keys also in github to be clearer\n\ - * mocking also pagure in simplier way\n* raise special exception in\ - \ case key is not in storage file\n* move storage class to mock_core\n\ - * mock via persistent storage: run integration tests with persistent\ - \ storage\n* adapt jpopelka suggestions from PR\n* adapt jpopelka suggestion\ - \ from PR\n* add read only helper and option to github and pagure classes\n\ + \ is the changelog I created:\n### Changes\n* Add response file for\ + \ test_update_pr_info for github\n* Skip the update_pr for pagure, since\ + \ we have no token for generating response files\n* exceptions changed\n\ + * update_pr_info methods created, wip\n* Add MIT headers to code files\n\ + * Add tests for creating forks\n* Allow saving multiple responses\n\ + * Add get_projects/get_forks to user; add get_forks to project\n* [pagure]\ + \ Fix fork tests\n* [pagure] Fix user in fork part of url\n* Better\ + \ get_fork for pagure\n* Better get_fork for github\n* Fix formating\ + \ from the previous PR\n* [pagure] Use empty dict as a default header\n\ + * creating, closing, labeling Github Issues\n* get info and comment\ + \ Github Issues\n* Document the test generation\n* Add Makefile targets\ + \ for removing response files\n* Determine forcewrite mode from file\ + \ existance\n* Rename @readonly to @if_readonly\n* [spec] bump to 0.4.0\n\ \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.3.0-release` branch before merging this\ + \ repository and pushing to `0.5.0-release` branch before merging this\ \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-05-14T10:16:08Z' + closed_at: '2019-06-28T09:40:08Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/69/comments - created_at: '2019-05-13T12:52:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/69/events - html_url: https://github.com/packit/ogr/pull/69 - id: 443381757 + comments_url: https://api.github.com/repos/packit/ogr/issues/97/comments + created_at: '2019-06-28T08:43:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/97/events + html_url: https://github.com/packit/ogr/pull/97 + id: 461925608 labels: - color: ededed default: false @@ -101829,24 +130142,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/69/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/97/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjc4MjYwMzM4 - number: 69 + node_id: MDExOlB1bGxSZXF1ZXN0MjkyNzQyNDQ2 + number: 97 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/69.diff - html_url: https://github.com/packit/ogr/pull/69 - patch_url: https://github.com/packit/ogr/pull/69.patch - url: https://api.github.com/repos/packit/ogr/pulls/69 + diff_url: https://github.com/packit/ogr/pull/97.diff + html_url: https://github.com/packit/ogr/pull/97 + patch_url: https://github.com/packit/ogr/pull/97.patch + url: https://api.github.com/repos/packit/ogr/pulls/97 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.3.0 release - updated_at: '2019-05-14T10:20:51Z' - url: https://api.github.com/repos/packit/ogr/issues/69 + title: 0.5.0 release + updated_at: '2019-06-28T09:45:09Z' + url: https://api.github.com/repos/packit/ogr/issues/97 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -101868,14 +130181,15 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-05-13T12:52:45Z' + body: "ReleaseBot, we would like to release a new version.\r\n\r\nThanks\ + \ in advance!" + closed_at: '2019-06-28T08:43:29Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/68/comments - created_at: '2019-05-13T12:50:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/68/events - html_url: https://github.com/packit/ogr/issues/68 - id: 443380561 + comments_url: https://api.github.com/repos/packit/ogr/issues/96/comments + created_at: '2019-06-28T08:38:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/96/events + html_url: https://github.com/packit/ogr/issues/96 + id: 461923699 labels: - color: ededed default: false @@ -101891,436 +130205,494 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/68/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/96/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDMzODA1NjE= - number: 68 + node_id: MDU6SXNzdWU0NjE5MjM2OTk= + number: 96 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed title: new minor release - updated_at: '2019-05-13T12:52:45Z' - url: https://api.github.com/repos/packit/ogr/issues/68 + updated_at: '2019-06-28T08:43:29Z' + url: https://api.github.com/repos/packit/ogr/issues/96 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: Improve mocking, to be easily able mock `packit` via passing `persistent_storage` - class variable - closed_at: '2019-05-02T12:42:40Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/66/comments - created_at: '2019-05-02T11:19:16Z' - events_url: https://api.github.com/repos/packit/ogr/issues/66/events - html_url: https://github.com/packit/ogr/pull/66 - id: 439539983 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/66/labels{/name} + body: "Add methods to `GithubProject`/`PagureProject` for editing title\ + \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ + \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ + \ information " + closed_at: '2019-06-28T06:51:21Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments + created_at: '2019-06-26T07:17:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/87/events + html_url: https://github.com/packit/ogr/issues/87 + id: 460802132 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjc1MzIyNTg2 - number: 66 + node_id: MDU6SXNzdWU0NjA4MDIxMzI= + number: 87 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/66.diff - html_url: https://github.com/packit/ogr/pull/66 - patch_url: https://github.com/packit/ogr/pull/66.patch - url: https://api.github.com/repos/packit/ogr/pulls/66 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve mock of persistent objects - updated_at: '2019-05-02T12:42:41Z' - url: https://api.github.com/repos/packit/ogr/issues/66 + title: ' Update pull-request information' + updated_at: '2019-06-28T06:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/87 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "now each integration test class contains right one file with stored\ - \ API data.\r\nWe could reconsider it, and maybe have file for each\ - \ test, to avoid to regenerate big file and have big commits.\r\nWe\ - \ have to solve several issues:\r\n * How to handle it per test, now\ - \ there is right one service pytest fixture function what contains it\r\ - \n * How to regenerate just relevant part \r\n * maybe remove some\ - \ timestamps, UIDs and similar objects what can change on every request\r\ - \n * or manually(semiautomatically) call just affected tests - ie:\ - \ run tests, find failures (key errors) and then try to just regenerate\ - \ files for failed tests" - closed_at: '2019-04-30T19:32:17Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/62/comments - created_at: '2019-04-26T13:21:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/62/events - html_url: https://github.com/packit/ogr/issues/62 - id: 437670314 + author_association: CONTRIBUTOR + body: 'Fixes #87' + closed_at: '2019-06-28T06:51:21Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/92/comments + created_at: '2019-06-27T11:54:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/92/events + html_url: https://github.com/packit/ogr/pull/92 + id: 461485336 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/62/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/92/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Mzc2NzAzMTQ= - number: 62 + node_id: MDExOlB1bGxSZXF1ZXN0MjkyMzk4ODk2 + number: 92 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/92.diff + html_url: https://github.com/packit/ogr/pull/92 + patch_url: https://github.com/packit/ogr/pull/92.patch + url: https://api.github.com/repos/packit/ogr/pulls/92 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'testing: split yaml files with data for each test to avoid regeneration - big file and big commits' - updated_at: '2019-04-30T19:32:17Z' - url: https://api.github.com/repos/packit/ogr/issues/62 + title: update_pr_info methods created + updated_at: '2019-06-28T06:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/92 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-04-30T13:49:40Z' + body: '- Add MIT headers to code files.' + closed_at: '2019-06-27T13:51:08Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/63/comments - created_at: '2019-04-26T13:21:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/63/events - html_url: https://github.com/packit/ogr/pull/63 - id: 437670526 + comments_url: https://api.github.com/repos/packit/ogr/issues/94/comments + created_at: '2019-06-27T13:15:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/94/events + html_url: https://github.com/packit/ogr/pull/94 + id: 461522977 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/63/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/94/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjczODk1Njc5 - number: 63 + node_id: MDExOlB1bGxSZXF1ZXN0MjkyNDI5NzM5 + number: 94 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/63.diff - html_url: https://github.com/packit/ogr/pull/63 - patch_url: https://github.com/packit/ogr/pull/63.patch - url: https://api.github.com/repos/packit/ogr/pulls/63 + diff_url: https://github.com/packit/ogr/pull/94.diff + html_url: https://github.com/packit/ogr/pull/94 + patch_url: https://github.com/packit/ogr/pull/94.patch + url: https://api.github.com/repos/packit/ogr/pulls/94 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: mock pagure classes - updated_at: '2019-04-30T13:49:40Z' - url: https://api.github.com/repos/packit/ogr/issues/63 + title: Add license headers + updated_at: '2019-06-27T13:51:12Z' + url: https://api.github.com/repos/packit/ogr/issues/94 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-04-30T10:41:00Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/65/comments - created_at: '2019-04-30T08:16:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/65/events - html_url: https://github.com/packit/ogr/pull/65 - id: 438653697 + author_association: CONTRIBUTOR + body: "```\r\nHi, see lines in: https://github.com/packit-service/ogr/blob/master/tests/integration/test_github.py#L20\r\ + \nSo for regenereation these files, you have to use syntax eg:\r\n``FORCE_WRITE=yes\ + \ GITHUB_TOKEN=yourtoken GITHUB_USER=yourname pytest3 tests/integration/test_github.py``\r\ + \nor this will also work ``FORCE_WRITE=yes GITHUB_TOKEN=yourtoken GITHUB_USER=yourname\ + \ make check`` with make check, you have to have set PAGURE_TOKEN and\ + \ USER env vars\r\n```\r\n\r\n_Originally posted by @jscotka in https://github.com/packit-service/ogr/issues/80#issuecomment-503991164_\r\ + \n" + closed_at: '2019-06-27T12:56:06Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/82/comments + created_at: '2019-06-21T09:12:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/82/events + html_url: https://github.com/packit/ogr/issues/82 + id: 459096186 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/65/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/82/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjc0NjM1NjI0 - number: 65 + node_id: MDU6SXNzdWU0NTkwOTYxODY= + number: 82 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/65.diff - html_url: https://github.com/packit/ogr/pull/65 - patch_url: https://github.com/packit/ogr/pull/65.patch - url: https://api.github.com/repos/packit/ogr/pulls/65 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: commit status - updated_at: '2019-04-30T10:41:00Z' - url: https://api.github.com/repos/packit/ogr/issues/65 + title: Document how to save HTTP sessions for sake of testing + updated_at: '2019-06-27T12:56:06Z' + url: https://api.github.com/repos/packit/ogr/issues/82 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-04-27T11:06:49Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/60/comments - created_at: '2019-04-24T13:58:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/60/events - html_url: https://github.com/packit/ogr/pull/60 - id: 436713552 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/60/labels{/name} + author_association: COLLABORATOR + body: "I'm trying to implement ogr into [release-bot](https://github.com/user-cont/release-bot)\ + \ and it's a little bit painful without documentation from ogr. \r\n\ + \r\nI was playing with ogr on my Github projects and everything is working\ + \ fine. When I tried to reimplement [release-bot's](https://github.com/user-cont/release-bot)\ + \ functionalities which communicate with Github via GraphQL or rest\ + \ API I got stuck. \r\n\r\nOne of the examples could be comments. I\ + \ want to implement commenting on Github issues and PRs via ogr. \r\n\ + - In [release-bot](https://github.com/user-cont/release-bot) it works\ + \ via graphQL and sending some `node_id` inside query which recognizes\ + \ a PR or an Issue. \r\n- In ogr there is `pr_comment` function in ogr/services/github.py.\ + \ If am I right this is an alternative I'm looking for. However, I don't\ + \ fully understand the function's parameters since it needs something\ + \ else then API query.\r\n\r\nI understand that this could be a very\ + \ complex problem since ogr need to preserve compatibility with all\ + \ git forges. I'm just looking for some starting point on how to change\ + \ GraphQL/rest API with ogr. Maybe I just misunderstand some ogr's fundamentals.\r\ + \n" + closed_at: '2019-06-27T12:40:34Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/79/comments + created_at: '2019-06-17T22:01:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/79/events + html_url: https://github.com/packit/ogr/issues/79 + id: 457168292 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/79/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjczMTQ0MTgw - number: 60 + node_id: MDU6SXNzdWU0NTcxNjgyOTI= + number: 79 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/60.diff - html_url: https://github.com/packit/ogr/pull/60 - patch_url: https://github.com/packit/ogr/pull/60.patch - url: https://api.github.com/repos/packit/ogr/pulls/60 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add method for creating comments on commits - updated_at: '2019-04-27T11:06:50Z' - url: https://api.github.com/repos/packit/ogr/issues/60 + title: Add compatibility with Github's GraphQL API v4 and rest API v3 + updated_at: '2019-06-27T12:40:34Z' + url: https://api.github.com/repos/packit/ogr/issues/79 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/dhodovsk + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Exsmple: https://github.com/dhodovsk/rsyslog/pull/1' - closed_at: '2019-04-27T11:05:13Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/59/comments - created_at: '2019-04-24T08:28:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/59/events - html_url: https://github.com/packit/ogr/pull/59 - id: 436563500 + body: "- Better get_fork for pagure and github. (Fixes #58)\r\n\r\nTODO:\r\ + \n\r\n- [x] `get_forks` on project\r\n- [x] use `project.get_forks()`\ + \ in `project.get_fork`\r\n- [x] `get_forks` for user\r\n- [x] more\ + \ tests\r\n - [x] save sequence of responses\r\n - [x] tests for\ + \ creating fork" + closed_at: '2019-06-27T10:34:34Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/85/comments + created_at: '2019-06-25T11:05:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/85/events + html_url: https://github.com/packit/ogr/pull/85 + id: 460358105 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/59/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/85/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjczMDI1OTcw - number: 59 + node_id: MDExOlB1bGxSZXF1ZXN0MjkxNTAyODU2 + number: 85 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/59.diff - html_url: https://github.com/packit/ogr/pull/59 - patch_url: https://github.com/packit/ogr/pull/59.patch - url: https://api.github.com/repos/packit/ogr/pulls/59 + diff_url: https://github.com/packit/ogr/pull/85.diff + html_url: https://github.com/packit/ogr/pull/85 + patch_url: https://github.com/packit/ogr/pull/85.patch + url: https://api.github.com/repos/packit/ogr/pulls/85 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement adding PR comments - updated_at: '2019-04-27T11:05:13Z' - url: https://api.github.com/repos/packit/ogr/issues/59 + title: Better fork handling + updated_at: '2019-06-27T10:34:38Z' + url: https://api.github.com/repos/packit/ogr/issues/85 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-04-25T09:08:30Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/55/comments - created_at: '2019-04-08T13:30:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/55/events - html_url: https://github.com/packit/ogr/pull/55 - id: 430453106 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/55/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY4MzM3Mjk1 - number: 55 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/55.diff - html_url: https://github.com/packit/ogr/pull/55 - patch_url: https://github.com/packit/ogr/pull/55.patch - url: https://api.github.com/repos/packit/ogr/pulls/55 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: persistent storage for github class for testing ogr and packit - updated_at: '2019-04-25T09:09:03Z' - url: https://api.github.com/repos/packit/ogr/issues/55 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + assignee: + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'https://pagure.io/pagure/issue/4427 - - - ``` - - $ pytest-3 -k test_fork - - === test session starts === - - platform linux -- Python 3.7.3, pytest-3.6.4, py-1.5.4, pluggy-0.6.0 - - rootdir: /home/tt/g/user-cont/ogr, inifile: - - plugins: cov-2.5.1 - - collected 76 items / 72 deselected - - - tests/integration/test_github.py s [ 25%] - - tests/integration/test_pagure.py .. [ 75%] - - tests/unit/test_pagure.py . [100%] - - - ==== 3 passed, 1 skipped, 72 deselected in 8.83 seconds === - - ```' - closed_at: '2019-04-15T14:09:04Z' + url: https://api.github.com/users/lachmanfrantisek + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR + body: "FML!\r\n\r\nSo my fork of packit is named source-git, not packit.\r\ + \n\r\nWe should use an API call to obtain github forks, not a guess\ + \ work." + closed_at: '2019-06-27T10:34:34Z' comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/57/comments - created_at: '2019-04-15T10:47:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/57/events - html_url: https://github.com/packit/ogr/pull/57 - id: 433214625 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/57/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/58/comments + created_at: '2019-04-15T11:38:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/58/events + html_url: https://github.com/packit/ogr/issues/58 + id: 433234905 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/58/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjcwNDYzNzQ2 - number: 57 + node_id: MDU6SXNzdWU0MzMyMzQ5MDU= + number: 58 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/57.diff - html_url: https://github.com/packit/ogr/pull/57 - patch_url: https://github.com/packit/ogr/pull/57.patch - url: https://api.github.com/repos/packit/ogr/pulls/57 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'pagure/get_urls: fill in {username}' - updated_at: '2019-04-15T14:09:10Z' - url: https://api.github.com/repos/packit/ogr/issues/57 + title: 'github: fork repository name may not match the upstream repo name' + updated_at: '2019-06-27T10:34:34Z' + url: https://api.github.com/repos/packit/ogr/issues/58 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -102342,317 +130714,253 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-04-09T07:38:57Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/48/comments - created_at: '2019-03-26T14:15:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/48/events - html_url: https://github.com/packit/ogr/pull/48 - id: 425444570 + body: '- [pagure] Use empty dict as a default header.' + closed_at: '2019-06-26T13:30:50Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/89/comments + created_at: '2019-06-26T12:51:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/89/events + html_url: https://github.com/packit/ogr/pull/89 + id: 460952659 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/48/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/89/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0NTM4MDgx - number: 48 + node_id: MDExOlB1bGxSZXF1ZXN0MjkxOTc0MzU1 + number: 89 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/48.diff - html_url: https://github.com/packit/ogr/pull/48 - patch_url: https://github.com/packit/ogr/pull/48.patch - url: https://api.github.com/repos/packit/ogr/pulls/48 + diff_url: https://github.com/packit/ogr/pull/89.diff + html_url: https://github.com/packit/ogr/pull/89 + patch_url: https://github.com/packit/ogr/pull/89.patch + url: https://api.github.com/repos/packit/ogr/pulls/89 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Ogr Read only mode support with simple test - updated_at: '2019-04-09T07:58:35Z' - url: https://api.github.com/repos/packit/ogr/issues/48 + title: Fix pagure header without token + updated_at: '2019-06-26T13:30:53Z' + url: https://api.github.com/repos/packit/ogr/issues/89 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-04-01T12:20:57Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/40/comments - created_at: '2019-03-20T14:58:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/40/events - html_url: https://github.com/packit/ogr/pull/40 - id: 423299795 + author_association: COLLABORATOR + body: "Related to #80 \r\n\r\nI provided functionality for Github Issues\ + \ including `get_issue_info`, `get_issue_list`, `get_issue_comments`,\ + \ `issue_comment`. \r\n\r\nHowever, two tests for my new functionality\ + \ are failing. I cannot create .yaml files for them on path tests/integration/test-data.\ + \ When we solve this, I can finish functionality for labeling and closing\ + \ issues.\r\n\r\nthis PR also solves #79 - I assign pull-request number\ + \ into `PullRequest.id` in ogr/abstract.py. Before it was assigning\ + \ some \"global Github pull-request id\" instead \"pull-request number\"\ + \ which was incorrect. " + closed_at: '2019-06-26T11:37:09Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/81/comments + created_at: '2019-06-20T13:59:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/81/events + html_url: https://github.com/packit/ogr/pull/81 + id: 458676227 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/40/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyOTAyNzA3 - number: 40 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/40.diff - html_url: https://github.com/packit/ogr/pull/40 - patch_url: https://github.com/packit/ogr/pull/40.patch - url: https://api.github.com/repos/packit/ogr/pulls/40 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'WIP: Simulation' - updated_at: '2019-04-01T12:20:57Z' - url: https://api.github.com/repos/packit/ogr/issues/40 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos - site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* [packit] sync from downstream\ - \ branch 'master'\n* tests,is_forked: comment why and test for return\ - \ type\n* Update ogr/services/github.py\n* forges may allow forks of\ - \ forks\n* is_forked to return bool again\n* gh: use HTML URL instead\ - \ of API URL\n* pagure/fork_create to return PagureProject\n* Jirka\ - \ can't live w/o pre-commit\n* _release_from_github_object: nicer docstring\n\ - * implement forking interface for github\n* upgrade fork API\n* [tox.ini]\ - \ code coverage\n* [Jenkinsfile] parallel tasks vol. 2\n* [Jenkinsfile]\ - \ Run tests & linters/checkers in parallel\n* [Jenkinsfile] run pre-commit\n\ - * utilize kwargs.setdefault\n* Jirka <3 pre-commit\n* add parent prop\ - \ into api\n* Apply suggestions from code review\n* CONTRIBUTING.md\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.2.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-03-28T09:20:22Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/51/comments - created_at: '2019-03-27T09:03:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/51/events - html_url: https://github.com/packit/ogr/pull/51 - id: 425837436 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/51/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/81/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0ODMyODQw - number: 51 + node_id: MDExOlB1bGxSZXF1ZXN0MjkwMjMwMDk0 + number: 81 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/51.diff - html_url: https://github.com/packit/ogr/pull/51 - patch_url: https://github.com/packit/ogr/pull/51.patch - url: https://api.github.com/repos/packit/ogr/pulls/51 + diff_url: https://github.com/packit/ogr/pull/81.diff + html_url: https://github.com/packit/ogr/pull/81 + patch_url: https://github.com/packit/ogr/pull/81.patch + url: https://api.github.com/repos/packit/ogr/pulls/81 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.2.0 release - updated_at: '2019-03-28T09:22:01Z' - url: https://api.github.com/repos/packit/ogr/issues/51 + title: get info and comment Github Issues + updated_at: '2019-06-26T11:37:09Z' + url: https://api.github.com/repos/packit/ogr/issues/81 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos 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 + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-03-27T09:03:50Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/50/comments - created_at: '2019-03-27T08:58:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/50/events - html_url: https://github.com/packit/ogr/issues/50 - id: 425835263 + author_association: CONTRIBUTOR + body: "as integration tests needs regeneration stored yaml API communication.\r\ + \nWould be nice to add there target to be able to regenerate these files" + closed_at: '2019-06-25T14:47:44Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/61/comments + created_at: '2019-04-26T07:35:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/61/events + html_url: https://github.com/packit/ogr/issues/61 + id: 437538907 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 7057ff default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/50/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/61/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjU4MzUyNjM= - number: 50 + node_id: MDU6SXNzdWU0Mzc1Mzg5MDc= + number: 61 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.2.0 release - updated_at: '2019-03-27T09:03:50Z' - url: https://api.github.com/repos/packit/ogr/issues/50 + title: create target for makefile for regeneration testing yaml files + updated_at: '2019-06-25T14:47:44Z' + url: https://api.github.com/repos/packit/ogr/issues/61 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '* implement forking interface for github - - * upgrade fork API - - - Fixes #31' - closed_at: '2019-03-26T16:18:24Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/44/comments - created_at: '2019-03-25T14:39:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/44/events - html_url: https://github.com/packit/ogr/pull/44 - id: 424938659 + author_association: CONTRIBUTOR + body: "Hi,\r\nit is unbale to get or install ``ansible-bender`` for ``make\ + \ build`` target.\r\n\r\nIt is not part of Fedora-29.\r\n\r\nI've found\ + \ that @TomasTomecek done this: https://github.com/TomasTomecek/ansible-bender\r\ + \nbut it still failed:\r\n```\r\n12:43 $ sudo pip3 install ansible-bender\r\ + \nWARNING: Running pip install with root privileges is generally not\ + \ a good idea. Try `pip3 install --user` instead.\r\nCollecting ansible-bender\r\ + \n Downloading https://files.pythonhosted.org/packages/fa/5c/04c822b3ee6e2ff41eed372f15d954cccf164d0340341fbd0270d500bb83/ansible_bender-0.4.0-py2.py3-none-any.whl\r\ + \nRequirement already satisfied: PyYAML in /usr/lib64/python3.7/site-packages\ + \ (from ansible-bender) (4.2b4)\r\nCollecting tabulate (from ansible-bender)\r\ + \n Downloading https://files.pythonhosted.org/packages/c2/fd/202954b3f0eb896c53b7b6f07390851b1fd2ca84aa95880d7ae4f434c4ac/tabulate-0.8.3.tar.gz\ + \ (46kB)\r\n 100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ + \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ + \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ + | 51kB 2.0MB/s \r\nInstalling collected packages: tabulate, ansible-bender\r\ + \n Running setup.py install for tabulate ... done\r\nSuccessfully installed\ + \ ansible-bender-0.4.0 tabulate-0.8.3\r\n\u2714 ~/git/userspace-containerization/ogr\ + \ [tests1 L|\u202638] \r\n12:44 $ sudo make build \r\nsudo ansible-bender\ + \ build --build-volumes /home/jscotka/git/userspace-containerization/ogr:/src:Z\ + \ -- ./recipe.yaml registry.fedoraproject.org/fedora:29 ogr\r\nThere\ + \ was an error during execution: buildah command doesn't seem to be\ + \ available on your system. Please follow the upstream instructions\ + \ available at https://github.com/projectatomic/buildah/blob/master/install.md\r\ + \nmake: *** [Makefile:7: build] Error 2\r\n```\r\n\r\nafter installing:\ + \ ``sudo dnf install buildah `` it finally works." + closed_at: '2019-06-25T09:00:15Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/17/comments + created_at: '2019-02-18T11:46:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/17/events + html_url: https://github.com/packit/ogr/issues/17 + id: 411437302 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/44/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/17/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0MTQ4NTky - number: 44 + node_id: MDU6SXNzdWU0MTE0MzczMDI= + number: 17 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/44.diff - html_url: https://github.com/packit/ogr/pull/44 - patch_url: https://github.com/packit/ogr/pull/44.patch - url: https://api.github.com/repos/packit/ogr/pulls/44 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: m0ar forking - updated_at: '2019-03-27T08:37:30Z' - url: https://api.github.com/repos/packit/ogr/issues/44 + title: missing ansible-bender dep for building + updated_at: '2019-06-25T09:00:15Z' + url: https://api.github.com/repos/packit/ogr/issues/17 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Downstream commit: 48f9c4254f4eb328740129f902c9836105cdc86c - - ' - closed_at: '2019-03-26T16:38:43Z' + author_association: CONTRIBUTOR + body: "* [x] don't fail when PAGURE_{TOKEN,USER} are not specified\r\n\ + * [x] mock remote API and write complete unit tests using those data\ + \ (or even have a single test suite and enable it to run against live\ + \ instance and mocked data)\r\n* [x] [tox](https://developer.fedoraproject.org/tech/languages/python/multiple-pythons.html)-ify\ + \ it (#27)" + closed_at: '2019-06-25T08:59:43Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/46/comments - created_at: '2019-03-25T22:24:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/46/events - html_url: https://github.com/packit/ogr/pull/46 - id: 425142588 + comments_url: https://api.github.com/repos/packit/ogr/issues/8/comments + created_at: '2019-01-30T10:19:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/8/events + html_url: https://github.com/packit/ogr/issues/8 + id: 404698352 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/46/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/8/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0MzA5NDgy - number: 46 + node_id: MDU6SXNzdWU0MDQ2OTgzNTI= + number: 8 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/46.diff - html_url: https://github.com/packit/ogr/pull/46 - patch_url: https://github.com/packit/ogr/pull/46.patch - url: https://api.github.com/repos/packit/ogr/pulls/46 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update from downstream branch 'master' - updated_at: '2019-03-27T08:36:53Z' - url: https://api.github.com/repos/packit/ogr/issues/46 + title: Improve testing + updated_at: '2019-06-25T08:59:43Z' + url: https://api.github.com/repos/packit/ogr/issues/8 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -102671,74 +130979,40 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - author_association: MEMBER - body: "```\r\n if req.status_code != 200:\r\n LOG.error(output)\r\ - \n if 'error_code' in output:\r\n> raise APIError(output['error'])\r\ - \nE libpagure.exceptions.APIError: Repo \"forks/ttomecek/sen\"\ - \ already exists \r\n```\r\n\r\n```\r\n/home/tt/.local/lib/python3.7/site-packages/ogr/services/pagure.py:151:\ - \ in fork_create\r\n self._pagure.create_fork()\r\n/home/tt/.local/lib/python3.7/site-packages/ogr/services/our_pagure.py:254:\ - \ in create_fork \ - \ \r\n data={\"repo\": self.repo_name,\ - \ \"namespace\": self.namespace, \"wait\": True},\r\n```\r\n\r\nWDYT?" - closed_at: '2019-03-26T16:18:24Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/31/comments - created_at: '2019-03-07T09:18:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/31/events - html_url: https://github.com/packit/ogr/issues/31 - id: 418203993 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/31/labels{/name} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "we need this in packit this sprint when we start building in copr\r\ + \n\r\nthis should be implemented soonish and land in next release\r\n\ + \r\nrelevant code for github:\r\nhttps://github.com/packit-service/packit/blob/04793f16d5ced27b5e7fec7d963d650b065a4276/packit/watcher.py#L94" + closed_at: '2019-06-25T07:31:05Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/54/comments + created_at: '2019-04-04T14:24:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/54/events + html_url: https://github.com/packit/ogr/issues/54 + id: 429309114 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/54/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTgyMDM5OTM= - number: 31 + node_id: MDU6SXNzdWU0MjkzMDkxMTQ= + number: 54 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: create_fork should not fail if the fork already exists - updated_at: '2019-03-26T16:18:24Z' - url: https://api.github.com/repos/packit/ogr/issues/31 + title: add a way to set check results for a commit + updated_at: '2019-06-25T07:31:05Z' + url: https://api.github.com/repos/packit/ogr/issues/54 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -102760,225 +131034,276 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-03-26T08:51:03Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/47/comments - created_at: '2019-03-26T06:53:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/47/events - html_url: https://github.com/packit/ogr/pull/47 - id: 425253987 + body: "- Add Makefile targets for removing response files.\r\n- Determine\ + \ forcewrite mode from file existance.\r\n\r\n\r\nWhy?\r\n- less magic\r\ + \n- easier for newcomers:\r\n - When adding a new test, you need\ + \ to rerun the tests to generate the response files.\r\n - To update\ + \ a response file, you need to remove the file and rerun the tests.\r\ + \n\r\n\r\nTODO:\r\n\r\n- [x] describe the testing in the contribution\ + \ guide" + closed_at: '2019-06-24T14:55:24Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/84/comments + created_at: '2019-06-24T12:33:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/84/events + html_url: https://github.com/packit/ogr/pull/84 + id: 459865460 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/47/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/84/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0Mzk0MTk2 - number: 47 + node_id: MDExOlB1bGxSZXF1ZXN0MjkxMTExNTU4 + number: 84 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/47.diff - html_url: https://github.com/packit/ogr/pull/47 - patch_url: https://github.com/packit/ogr/pull/47.patch - url: https://api.github.com/repos/packit/ogr/pulls/47 + diff_url: https://github.com/packit/ogr/pull/84.diff + html_url: https://github.com/packit/ogr/pull/84 + patch_url: https://github.com/packit/ogr/pull/84.patch + url: https://api.github.com/repos/packit/ogr/pulls/84 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[tox.ini] code coverage' - updated_at: '2019-03-26T08:51:06Z' - url: https://api.github.com/repos/packit/ogr/issues/47 + title: Forcewrite mode from file existance + updated_at: '2019-06-24T14:55:57Z' + url: https://api.github.com/repos/packit/ogr/issues/84 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-03-26T06:42:32Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/45/comments - created_at: '2019-03-25T17:06:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/45/events - html_url: https://github.com/packit/ogr/pull/45 - id: 425016622 + body: 'Rename @readonly to @if_readonly. + + + + Fixes #56' + closed_at: '2019-06-24T14:46:14Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/83/comments + created_at: '2019-06-24T11:34:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/83/events + html_url: https://github.com/packit/ogr/pull/83 + id: 459840373 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/45/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/83/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0MjEwMTc2 - number: 45 + node_id: MDExOlB1bGxSZXF1ZXN0MjkxMDkxNDg4 + number: 83 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/45.diff - html_url: https://github.com/packit/ogr/pull/45 - patch_url: https://github.com/packit/ogr/pull/45.patch - url: https://api.github.com/repos/packit/ogr/pulls/45 + diff_url: https://github.com/packit/ogr/pull/83.diff + html_url: https://github.com/packit/ogr/pull/83 + patch_url: https://github.com/packit/ogr/pull/83.patch + url: https://api.github.com/repos/packit/ogr/pulls/83 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[Jenkinsfile] run pre-commit' - updated_at: '2019-03-26T06:42:35Z' - url: https://api.github.com/repos/packit/ogr/issues/45 + title: Rename readonly decorator + updated_at: '2019-06-24T14:46:47Z' + url: https://api.github.com/repos/packit/ogr/issues/83 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: and implement it for github and pagure - closed_at: '2019-03-25T13:52:31Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/43/comments - created_at: '2019-03-23T20:58:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/43/events - html_url: https://github.com/packit/ogr/pull/43 - id: 424544327 + body: "The `@readonly` decorator should be renamed as it can confuse newcomers\ + \ that the method itself is \"readonly\". The fact is that it has the\ + \ opposite meaning of the read-only.\r\n\r\nFeel free to add your ideas\ + \ as a single comment so we can easily vote.\r\n\r\n-----\r\n\r\nFollow-up\ + \ from #48" + closed_at: '2019-06-24T14:46:14Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/56/comments + created_at: '2019-04-09T08:17:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/56/events + html_url: https://github.com/packit/ogr/issues/56 + id: 430829968 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/43/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/56/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYzODYxMDc4 - number: 43 + node_id: MDU6SXNzdWU0MzA4Mjk5Njg= + number: 56 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/43.diff - html_url: https://github.com/packit/ogr/pull/43 - patch_url: https://github.com/packit/ogr/pull/43.patch - url: https://api.github.com/repos/packit/ogr/pulls/43 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add parent prop into api - updated_at: '2019-03-25T13:52:57Z' - url: https://api.github.com/repos/packit/ogr/issues/43 + title: 'better name for @readonly decorator ' + updated_at: '2019-06-24T14:46:14Z' + url: https://api.github.com/repos/packit/ogr/issues/56 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-03-21T15:21:49Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/41/comments - created_at: '2019-03-21T14:47:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/41/events - html_url: https://github.com/packit/ogr/pull/41 - id: 423768837 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/41/labels{/name} + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* enable calling dump()\ + \ after store()\n* packit.yaml: add a link to docs\n* packit: sync from\ + \ downstream & build in copr\n* Fix mypy errors\n* Dump RequestResponse\ + \ on our own\n* Fix old imports\n* Remove old Pagure tests\n* Fix tests\ + \ and regenerate test responses, do not save headers\n* Use custom response\ + \ class for Pagure\n* Add missing readonly decorator\n* Use self.get_raw_request\ + \ on cal_api\n* Add docstring for Pagure methods\n* Fix creation of\ + \ pr comments\n* Improve the request/response handling and fix authentication\ + \ header\n* Apply suggestions by @jpopelka from code review\n* Fix commit\ + \ flags/statuses\n* Remove libpagure from recipe\n* Methods for commit\ + \ statuses/flags and comments\n* Add methods for tags\n* Fix __str__\ + \ for PRComment and PullRequest\n* Remove libpagure from requirements\n\ + * Fix forking\n* Better response handling for Pagure API\n* Remove OurPagure\n\ + * Implement forking logic and PR methods\n* First part of implementing\ + \ the Pagure classes without libpagure\n* Add string representation\ + \ for PRComment and PullRequest\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.4.0-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2019-06-11T14:05:10Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/77/comments + created_at: '2019-06-11T13:18:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/77/events + html_url: https://github.com/packit/ogr/pull/77 + id: 454686226 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/77/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYzMjY2NDE3 - number: 41 + node_id: MDExOlB1bGxSZXF1ZXN0Mjg3MDg2Mzg1 + number: 77 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/41.diff - html_url: https://github.com/packit/ogr/pull/41 - patch_url: https://github.com/packit/ogr/pull/41.patch - url: https://api.github.com/repos/packit/ogr/pulls/41 + diff_url: https://github.com/packit/ogr/pull/77.diff + html_url: https://github.com/packit/ogr/pull/77 + patch_url: https://github.com/packit/ogr/pull/77.patch + url: https://api.github.com/repos/packit/ogr/pulls/77 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: bump spec to 0.1.0 - updated_at: '2019-03-23T20:14:13Z' - url: https://api.github.com/repos/packit/ogr/issues/41 + title: 0.4.0 release + updated_at: '2019-06-11T14:10:26Z' + url: https://api.github.com/repos/packit/ogr/issues/77 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER body: '' - closed_at: '2019-03-22T14:08:51Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/42/comments - created_at: '2019-03-21T16:38:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/42/events - html_url: https://github.com/packit/ogr/pull/42 - id: 423829259 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/42/labels{/name} + closed_at: '2019-06-11T13:19:01Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/76/comments + created_at: '2019-06-11T13:18:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/76/events + html_url: https://github.com/packit/ogr/issues/76 + id: 454685925 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/76/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYzMzE0NzEw - number: 42 + node_id: MDU6SXNzdWU0NTQ2ODU5MjU= + number: 76 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/42.diff - html_url: https://github.com/packit/ogr/pull/42 - patch_url: https://github.com/packit/ogr/pull/42.patch - url: https://api.github.com/repos/packit/ogr/pulls/42 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: CONTRIBUTING.md - updated_at: '2019-03-22T14:08:54Z' - url: https://api.github.com/repos/packit/ogr/issues/42 + title: new minor release + updated_at: '2019-06-11T13:19:01Z' + url: https://api.github.com/repos/packit/ogr/issues/76 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -102999,34 +131324,34 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: With these changes, `packit srpm` should *just work*. - closed_at: '2019-03-18T14:00:44Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/35/comments - created_at: '2019-03-18T13:17:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/35/events - html_url: https://github.com/packit/ogr/pull/35 - id: 422212338 + author_association: CONTRIBUTOR + body: '\+ packit.yaml: add a link to docs' + closed_at: '2019-05-29T14:23:24Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/72/comments + created_at: '2019-05-22T14:36:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/72/events + html_url: https://github.com/packit/ogr/pull/72 + id: 447175169 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/35/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/72/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyMDUxMjgx - number: 35 + node_id: MDExOlB1bGxSZXF1ZXN0MjgxMjI1MTU2 + number: 72 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/35.diff - html_url: https://github.com/packit/ogr/pull/35 - patch_url: https://github.com/packit/ogr/pull/35.patch - url: https://api.github.com/repos/packit/ogr/pulls/35 + diff_url: https://github.com/packit/ogr/pull/72.diff + html_url: https://github.com/packit/ogr/pull/72 + patch_url: https://github.com/packit/ogr/pull/72.patch + url: https://api.github.com/repos/packit/ogr/pulls/72 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: update packit.yaml to reflect packit==0.2.0 - updated_at: '2019-03-18T18:34:17Z' - url: https://api.github.com/repos/packit/ogr/issues/35 + title: dump() when store() is called + updated_at: '2019-05-29T14:23:28Z' + url: https://api.github.com/repos/packit/ogr/issues/72 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -103048,128 +131373,103 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n\n### Other\n\n* Utilize\ - \ gitchangelog feature of r-bot. [Tomas Tomecek]\n\n* Merge pull request\ - \ #35 from TomasTomecek/update-packit-yaml. [Tomas Tomecek]\n\n update\ - \ packit.yaml to reflect packit==0.2.0\n\n* Update packit.yaml to reflect\ - \ packit==0.2.0. [Tomas Tomecek]\n\n* Merge pull request #34 from jpopelka/no-dimensions.\ - \ [Jiri Popelka]\n\n pre-commit config & black/Flake8/mypy fixes\n\n\ - * Black & Flake8 & mypy fixes. [Jiri Popelka]\n\n* .pre-commit-config.yaml.\ - \ [Jiri Popelka]\n\n* Merge pull request #32 from packit-service/releases.\ - \ [Jiri Popelka]\n\n Releases\n\n* Add test and docs for GitHub releases.\ - \ [Radoslav Pitonak]\n\n* Add releases for github. [Frantisek Lachman]\n\ - \n* Merge pull request #27 from jpopelka/ci. [Jiri Popelka]\n\n Tox\ - \ & Jenkinsfile\n\n* Jenkinsfile. [Jiri Popelka]\n\n* Tox. [Jiri Popelka]\n\ - \n* [Makefile] no sudo. [Jiri Popelka]\n\n* Enum -> IntEnum. [Jiri Popelka]\n\ - \n* Merge pull request #30 from jscotka/test_integration_skip. [Jiri\ - \ Popelka]\n\n [integration tests] skip whole module if not all env.\ - \ variables set\n\n* Move skip_tests() to conftest.py. [Jiri Popelka]\n\ - \n* Create better function to skip tests. [Jan Scotka]\n\n* Add skip\ - \ decorators to skip whole module in case of integration tests in case\ - \ env vars are not typed. [Jan Scotka]\n\n* Merge pull request #28 from\ - \ TomasTomecek/add-packit. [Tomas Tomecek]\n\n add packit config\n\n\ - * Add packit config. [Tomas Tomecek]\n\n\n\n\nYou can change it by editing\ - \ `CHANGELOG.md` in the root of this repository and pushing to `0.1.0-release`\ - \ branch before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2019-03-18T17:58:28Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/39/comments - created_at: '2019-03-18T17:45:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/39/events - html_url: https://github.com/packit/ogr/pull/39 - id: 422351830 + body: "- Remove OurPagure.\r\n- Implement forking logic and PR methods.\r\ + \n- First part of implementing the Pagure classes without libpagure.\r\ + \n- Add string representation for PRComment and PullRequest.\r\n\r\n\ + Fix #64\r\nFix #67\r\n\r\n---\r\n\r\nTODO:\r\n\r\n- [x] readonly mode\r\ + \n- [x] tests\r\n\r\n\r\n---\r\n\r\n## How to test?\r\n\r\n```python\r\ + \nfrom ogr.services.pagure import PagureService\r\nfrom ogr.abstract\ + \ import PRStatus\r\n\r\n\r\nservice = PagureService(token=\"???_PAGURE_TOKEN_???\"\ + )\r\n\r\n# Play with the API\r\n\r\nprint(service.user.get_username())\r\ + \nproject = service.get_project(repo=\"colin\", namespace=\"rpms\")\r\ + \nprint(project.get_commit_statuses(\"339a19b0bbc766d0c6cdbbc2ef5a32c0de9f7551\"\ + )[0])\r\nprint(project.get_tags())\r\n\r\nfork = project.get_fork()\r\ + \nprint(fork.exists())\r\n\r\nproject.fork_create()\r\n\r\nfor pr in\ + \ project.get_pr_list(status=PRStatus.all):\r\n print(pr)\r\n\r\n\ + pr = project.get_pr_info(3)\r\nprint(pr)\r\nfor c in project.get_pr_comments(3):\r\ + \n print(c)\r\n\r\nprint(fork.is_fork)\r\nprint(fork.is_forked())\r\ + \n```" + closed_at: '2019-05-29T07:46:28Z' + comments: 17 + comments_url: https://api.github.com/repos/packit/ogr/issues/71/comments + created_at: '2019-05-20T10:11:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/71/events + html_url: https://github.com/packit/ogr/pull/71 + id: 446033070 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 1d76db default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/39/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + labels_url: https://api.github.com/repos/packit/ogr/issues/71/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTYxMjI4 - number: 39 + node_id: MDExOlB1bGxSZXF1ZXN0MjgwMzI0Njgx + number: 71 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/39.diff - html_url: https://github.com/packit/ogr/pull/39 - patch_url: https://github.com/packit/ogr/pull/39.patch - url: https://api.github.com/repos/packit/ogr/pulls/39 + diff_url: https://github.com/packit/ogr/pull/71.diff + html_url: https://github.com/packit/ogr/pull/71 + patch_url: https://github.com/packit/ogr/pull/71.patch + url: https://api.github.com/repos/packit/ogr/pulls/71 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-18T18:00:48Z' - url: https://api.github.com/repos/packit/ogr/issues/39 + title: Remove libpagure + updated_at: '2019-05-29T11:00:10Z' + url: https://api.github.com/repos/packit/ogr/issues/71 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2019-03-18T17:45:29Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/36/comments - created_at: '2019-03-18T16:53:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/36/events - html_url: https://github.com/packit/ogr/issues/36 - id: 422327353 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/36/labels{/name} + closed_at: '2019-05-29T08:31:09Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/75/comments + created_at: '2019-05-29T07:41:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/75/events + html_url: https://github.com/packit/ogr/pull/75 + id: 449647079 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/75/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjIzMjczNTM= - number: 36 + node_id: MDExOlB1bGxSZXF1ZXN0MjgzMTMxNzY3 + number: 75 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/75.diff + html_url: https://github.com/packit/ogr/pull/75 + patch_url: https://github.com/packit/ogr/pull/75.patch + url: https://api.github.com/repos/packit/ogr/pulls/75 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-03-18T17:45:29Z' - url: https://api.github.com/repos/packit/ogr/issues/36 + title: 'packit: sync from downstream & build in copr' + updated_at: '2019-05-29T08:31:13Z' + url: https://api.github.com/repos/packit/ogr/issues/75 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -103190,172 +131490,164 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\nNo changelog provided\n\n\ - You can change it by editing `CHANGELOG.md` in the root of this repository\ - \ and pushing to `0.1.0-release` branch before merging this PR.\nI didn't\ - \ find any files where `__version__` is set." - closed_at: '2019-03-18T17:44:20Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/38/comments - created_at: '2019-03-18T17:28:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/38/events - html_url: https://github.com/packit/ogr/pull/38 - id: 422343992 + author_association: CONTRIBUTOR + body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ + \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ + \nhas to be adapted, currenly I've added dependency on lower version\ + \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ + \nto avoid this issue." + closed_at: '2019-05-29T07:46:28Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments + created_at: '2019-04-29T14:41:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/64/events + html_url: https://github.com/packit/ogr/issues/64 + id: 438351136 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 1d76db default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/38/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTU1MTM0 - number: 38 + node_id: MDU6SXNzdWU0MzgzNTExMzY= + number: 64 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/38.diff - html_url: https://github.com/packit/ogr/pull/38 - patch_url: https://github.com/packit/ogr/pull/38.patch - url: https://api.github.com/repos/packit/ogr/pulls/38 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-18T17:44:28Z' - url: https://api.github.com/repos/packit/ogr/issues/38 + title: 'libpagure has changed ' + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/64 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* update packit.yaml to\ - \ reflect packit==0.2.0\n* black & Flake8 & mypy fixes\n* .pre-commit-config.yaml\n\ - * add test and docs for GitHub releases\n* Add releases for github\n\ - * Jenkinsfile\n* Tox\n* [Makefile] no sudo\n* Enum -> IntEnum\n* Move\ - \ skip_tests() to conftest.py\n* create better function to skip tests.\n\ - * add skip decorators to skip whole module in case of integration tests\ - \ in case env vars are not typed\n* add packit config\n\n\nYou can change\ - \ it by editing `CHANGELOG.md` in the root of this repository and pushing\ - \ to `0.1.0-release` branch before merging this PR.\nI didn't find any\ - \ files where `__version__` is set." - closed_at: '2019-03-18T16:58:25Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/37/comments - created_at: '2019-03-18T16:54:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/37/events - html_url: https://github.com/packit/ogr/pull/37 - id: 422328099 + body: "While debugging https://github.com/packit-service/packit/issues/305\ + \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ + \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ + \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ attribute has a value `rpm/packit`, while libpagure probably expects\ + \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ + \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ + \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ + \ expects `/` in `self.repo`, which is probably not what `libpagure`\ + \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ + \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ + \ even more recently." + closed_at: '2019-05-29T07:46:28Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments + created_at: '2019-05-10T11:09:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/67/events + html_url: https://github.com/packit/ogr/issues/67 + id: 442664622 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 1d76db default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/37/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTQyNjc3 - number: 37 + node_id: MDU6SXNzdWU0NDI2NjQ2MjI= + number: 67 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/37.diff - html_url: https://github.com/packit/ogr/pull/37 - patch_url: https://github.com/packit/ogr/pull/37.patch - url: https://api.github.com/repos/packit/ogr/pulls/37 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-18T17:26:48Z' - url: https://api.github.com/repos/packit/ogr/issues/37 + title: libpagure.Pagure expects '/' not in repo attribute + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/67 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER body: '' - closed_at: '2019-03-15T13:51:22Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/34/comments - created_at: '2019-03-15T11:27:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/34/events - html_url: https://github.com/packit/ogr/pull/34 - id: 421473951 + closed_at: '2019-05-14T14:52:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/70/comments + created_at: '2019-05-14T14:49:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/70/events + html_url: https://github.com/packit/ogr/pull/70 + id: 443960153 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/34/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/70/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYxNTE1NjA5 - number: 34 + node_id: MDExOlB1bGxSZXF1ZXN0Mjc4NzE5MTU5 + number: 70 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/34.diff - html_url: https://github.com/packit/ogr/pull/34 - patch_url: https://github.com/packit/ogr/pull/34.patch - url: https://api.github.com/repos/packit/ogr/pulls/34 + diff_url: https://github.com/packit/ogr/pull/70.diff + html_url: https://github.com/packit/ogr/pull/70 + patch_url: https://github.com/packit/ogr/pull/70.patch + url: https://api.github.com/repos/packit/ogr/pulls/70 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: pre-commit config & black/Flake8/mypy fixes - updated_at: '2019-03-15T13:51:25Z' - url: https://api.github.com/repos/packit/ogr/issues/34 + title: 0.3.1 release + updated_at: '2019-05-14T14:55:27Z' + url: https://api.github.com/repos/packit/ogr/issues/70 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -103376,100 +131668,134 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Added object representation for GitHub releases.\r\n- What about\ - \ pagure? Is there anything that can be used?" - closed_at: '2019-03-15T09:41:59Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/32/comments - created_at: '2019-03-12T13:35:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/32/events - html_url: https://github.com/packit/ogr/pull/32 - id: 419989710 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/32/labels{/name} + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* add comment why there\ + \ is little bit confusing assigment\n* improve mock pf persistent objects\n\ + * use generic exception, to not fail when regenerating\n* raise filenotfound\ + \ exception in pagure method get_file_content\n* enable readonly tests\n\ + * enable some tests what were disabled when debugging various issues\n\ + * check write mode in dump function not in desctructor\n* do not flush\ + \ within desctructor, in case read mode\n* avoid to use default flow\ + \ style for yaml files\n* mock pagure classes\n* commit status\n* Regenerate\ + \ github test data\n* Implement adding PR comments\n* commit_comment:\ + \ Fix typo in docs\n* Implement adding commit comments\n* method GithubProject().get_sha_from_tag\ + \ in\n* rename github in mock to another name to fix the pypy test\n\ + * fix integration test for github by skipping\n* add yaml dependency\ + \ to requirements\n* add there class attribute to be possible to use\ + \ ogr mocking in pagure\n* fixed using of open in destructor\n* fixed\ + \ using of open in destructor\n* rename write_mode to is_write_mode\ + \ to be more explicit that there is expected boolean primarily\n* add\ + \ doc strings and adapt PR review comments\n* pagure/get_urls: fill\ + \ in {username}\n* use internal keys also in github to be clearer\n\ + * mocking also pagure in simplier way\n* raise special exception in\ + \ case key is not in storage file\n* move storage class to mock_core\n\ + * mock via persistent storage: run integration tests with persistent\ + \ storage\n* adapt jpopelka suggestions from PR\n* adapt jpopelka suggestion\ + \ from PR\n* add read only helper and option to github and pagure classes\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.3.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-05-14T10:16:08Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/69/comments + created_at: '2019-05-13T12:52:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/69/events + html_url: https://github.com/packit/ogr/pull/69 + id: 443381757 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/69/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYwMzY1NTk1 - number: 32 + node_id: MDExOlB1bGxSZXF1ZXN0Mjc4MjYwMzM4 + number: 69 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/32.diff - html_url: https://github.com/packit/ogr/pull/32 - patch_url: https://github.com/packit/ogr/pull/32.patch - url: https://api.github.com/repos/packit/ogr/pulls/32 + diff_url: https://github.com/packit/ogr/pull/69.diff + html_url: https://github.com/packit/ogr/pull/69 + patch_url: https://github.com/packit/ogr/pull/69.patch + url: https://api.github.com/repos/packit/ogr/pulls/69 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Releases - updated_at: '2019-03-15T09:42:04Z' - url: https://api.github.com/repos/packit/ogr/issues/32 + title: 0.3.0 release + updated_at: '2019-05-14T10:20:51Z' + url: https://api.github.com/repos/packit/ogr/issues/69 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/usercont-release-bot _next: null - elapsed: 0.2 + elapsed: 0.418087 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; + Date: Tue, 13 Apr 2021 18:01:02 GMT + ETag: W/"809bc254fc26ebf54a89d8ef9e1a13cd93dccfc445e030507c6d85d51d8383e6" + Link: ; + rel="prev", ; + rel="next", ; rel="last", ; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F815DF:191DA47:6075DC5D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4556' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '444' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=14: + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=17: - metadata: - latency: 0.5051980018615723 + latency: 0.4213831424713135 module_call_list: - unittest.case - requre.online_replacing @@ -103491,32 +131817,41 @@ requests.sessions: assignees: [] author_association: MEMBER body: '' - closed_at: '2019-03-05T17:01:01Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/27/comments - created_at: '2019-03-01T16:03:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/27/events - html_url: https://github.com/packit/ogr/pull/27 - id: 416169456 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/27/labels{/name} + closed_at: '2019-05-13T12:52:45Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/68/comments + created_at: '2019-05-13T12:50:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/68/events + html_url: https://github.com/packit/ogr/issues/68 + id: 443380561 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/68/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3NDk2Mjcz - number: 27 + node_id: MDU6SXNzdWU0NDMzODA1NjE= + number: 68 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/27.diff - html_url: https://github.com/packit/ogr/pull/27 - patch_url: https://github.com/packit/ogr/pull/27.patch - url: https://api.github.com/repos/packit/ogr/pulls/27 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Tox & Jenkinsfile - updated_at: '2019-03-05T17:01:04Z' - url: https://api.github.com/repos/packit/ogr/issues/27 + title: new minor release + updated_at: '2019-05-13T12:52:45Z' + url: https://api.github.com/repos/packit/ogr/issues/68 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -103537,35 +131872,35 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-03-05T15:25:00Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/30/comments - created_at: '2019-03-04T14:02:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/30/events - html_url: https://github.com/packit/ogr/pull/30 - id: 416815413 + author_association: CONTRIBUTOR + body: Improve mocking, to be easily able mock `packit` via passing `persistent_storage` + class variable + closed_at: '2019-05-02T12:42:40Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/66/comments + created_at: '2019-05-02T11:19:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/66/events + html_url: https://github.com/packit/ogr/pull/66 + id: 439539983 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/30/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/66/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3OTUzMjI1 - number: 30 + node_id: MDExOlB1bGxSZXF1ZXN0Mjc1MzIyNTg2 + number: 66 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/30.diff - html_url: https://github.com/packit/ogr/pull/30 - patch_url: https://github.com/packit/ogr/pull/30.patch - url: https://api.github.com/repos/packit/ogr/pulls/30 + diff_url: https://github.com/packit/ogr/pull/66.diff + html_url: https://github.com/packit/ogr/pull/66 + patch_url: https://github.com/packit/ogr/pull/66.patch + url: https://api.github.com/repos/packit/ogr/pulls/66 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[integration tests] skip whole module if not all env. variables - set' - updated_at: '2019-03-05T15:25:01Z' - url: https://api.github.com/repos/packit/ogr/issues/30 + title: improve mock of persistent objects + updated_at: '2019-05-02T12:42:41Z' + url: https://api.github.com/repos/packit/ogr/issues/66 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -103586,403 +131921,354 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-03-01T17:19:12Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/28/comments - created_at: '2019-03-01T16:44:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/28/events - html_url: https://github.com/packit/ogr/pull/28 - id: 416187270 + author_association: CONTRIBUTOR + body: "now each integration test class contains right one file with stored\ + \ API data.\r\nWe could reconsider it, and maybe have file for each\ + \ test, to avoid to regenerate big file and have big commits.\r\nWe\ + \ have to solve several issues:\r\n * How to handle it per test, now\ + \ there is right one service pytest fixture function what contains it\r\ + \n * How to regenerate just relevant part \r\n * maybe remove some\ + \ timestamps, UIDs and similar objects what can change on every request\r\ + \n * or manually(semiautomatically) call just affected tests - ie:\ + \ run tests, find failures (key errors) and then try to just regenerate\ + \ files for failed tests" + closed_at: '2019-04-30T19:32:17Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/62/comments + created_at: '2019-04-26T13:21:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/62/events + html_url: https://github.com/packit/ogr/issues/62 + id: 437670314 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/28/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/62/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3NTEwNDk4 - number: 28 + node_id: MDU6SXNzdWU0Mzc2NzAzMTQ= + number: 62 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/28.diff - html_url: https://github.com/packit/ogr/pull/28 - patch_url: https://github.com/packit/ogr/pull/28.patch - url: https://api.github.com/repos/packit/ogr/pulls/28 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add packit config - updated_at: '2019-03-01T17:19:16Z' - url: https://api.github.com/repos/packit/ogr/issues/28 + title: 'testing: split yaml files with data for each test to avoid regeneration + big file and big commits' + updated_at: '2019-04-30T19:32:17Z' + url: https://api.github.com/repos/packit/ogr/issues/62 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\nNo changelog provided\n\n\ - You can change it by editing `CHANGELOG.md` in the root of this repository\ - \ and pushing to `0.1.0-release` branch before merging this PR.\nI didn't\ - \ find any files where `__version__` is set." - closed_at: '2019-03-01T16:41:07Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-30T13:49:40Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/26/comments - created_at: '2019-03-01T15:56:24Z' - events_url: https://api.github.com/repos/packit/ogr/issues/26/events - html_url: https://github.com/packit/ogr/pull/26 - id: 416166108 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/26/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/63/comments + created_at: '2019-04-26T13:21:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/63/events + html_url: https://github.com/packit/ogr/pull/63 + id: 437670526 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/63/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3NDkzNTkx - number: 26 + node_id: MDExOlB1bGxSZXF1ZXN0MjczODk1Njc5 + number: 63 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/26.diff - html_url: https://github.com/packit/ogr/pull/26 - patch_url: https://github.com/packit/ogr/pull/26.patch - url: https://api.github.com/repos/packit/ogr/pulls/26 + diff_url: https://github.com/packit/ogr/pull/63.diff + html_url: https://github.com/packit/ogr/pull/63 + patch_url: https://github.com/packit/ogr/pull/63.patch + url: https://api.github.com/repos/packit/ogr/pulls/63 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-01T16:49:43Z' - url: https://api.github.com/repos/packit/ogr/issues/26 + title: mock pagure classes + updated_at: '2019-04-30T13:49:40Z' + url: https://api.github.com/repos/packit/ogr/issues/63 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos 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 + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "we need this b/c 0.0.2 doesn't have specfile\r\n\r\nand I want\ - \ to use packit to bring the release to fedora" - closed_at: '2019-03-01T15:56:25Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/25/comments - created_at: '2019-03-01T15:52:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/25/events - html_url: https://github.com/packit/ogr/issues/25 - id: 416164397 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/25/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-30T10:41:00Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/65/comments + created_at: '2019-04-30T08:16:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/65/events + html_url: https://github.com/packit/ogr/pull/65 + id: 438653697 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/65/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTYxNjQzOTc= - number: 25 + node_id: MDExOlB1bGxSZXF1ZXN0Mjc0NjM1NjI0 + number: 65 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/65.diff + html_url: https://github.com/packit/ogr/pull/65 + patch_url: https://github.com/packit/ogr/pull/65.patch + url: https://api.github.com/repos/packit/ogr/pulls/65 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-01T16:19:00Z' - url: https://api.github.com/repos/packit/ogr/issues/25 + title: commit status + updated_at: '2019-04-30T10:41:00Z' + url: https://api.github.com/repos/packit/ogr/issues/65 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* add RPM spec file\n* [release-conf.yaml]\ - \ remove deprecated python_versions\n* Remove dataclasses\n* Use strings\ - \ for type annotations\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.0.3-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2019-02-28T11:45:58Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/24/comments - created_at: '2019-02-28T10:42:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/24/events - html_url: https://github.com/packit/ogr/pull/24 - id: 415557542 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/24/labels{/name} + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-27T11:06:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/60/comments + created_at: '2019-04-24T13:58:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/60/events + html_url: https://github.com/packit/ogr/pull/60 + id: 436713552 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/60/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3MDE3MDgz - number: 24 + node_id: MDExOlB1bGxSZXF1ZXN0MjczMTQ0MTgw + number: 60 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/24.diff - html_url: https://github.com/packit/ogr/pull/24 - patch_url: https://github.com/packit/ogr/pull/24.patch - url: https://api.github.com/repos/packit/ogr/pulls/24 + diff_url: https://github.com/packit/ogr/pull/60.diff + html_url: https://github.com/packit/ogr/pull/60 + patch_url: https://github.com/packit/ogr/pull/60.patch + url: https://api.github.com/repos/packit/ogr/pulls/60 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.0.3 release - updated_at: '2019-02-28T12:07:04Z' - url: https://api.github.com/repos/packit/ogr/issues/24 + title: Add method for creating comments on commits + updated_at: '2019-04-27T11:06:50Z' + url: https://api.github.com/repos/packit/ogr/issues/60 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos 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 + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Release bot, please! - closed_at: '2019-02-28T10:42:18Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/23/comments - created_at: '2019-02-28T10:39:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/23/events - html_url: https://github.com/packit/ogr/issues/23 - id: 415556376 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/23/labels{/name} + author_association: CONTRIBUTOR + body: 'Exsmple: https://github.com/dhodovsk/rsyslog/pull/1' + closed_at: '2019-04-27T11:05:13Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/59/comments + created_at: '2019-04-24T08:28:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/59/events + html_url: https://github.com/packit/ogr/pull/59 + id: 436563500 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/59/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTU1NTYzNzY= - number: 23 + node_id: MDExOlB1bGxSZXF1ZXN0MjczMDI1OTcw + number: 59 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/59.diff + html_url: https://github.com/packit/ogr/pull/59 + patch_url: https://github.com/packit/ogr/pull/59.patch + url: https://api.github.com/repos/packit/ogr/pulls/59 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.0.3 release - updated_at: '2019-02-28T10:42:18Z' - url: https://api.github.com/repos/packit/ogr/issues/23 + title: Implement adding PR comments + updated_at: '2019-04-27T11:05:13Z' + url: https://api.github.com/repos/packit/ogr/issues/59 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "# how to test\r\n```\r\ngit checkout 0.0.2\r\npython3 ./setup.py\ - \ sdist\r\nmv ./dist/ogr-0.0.2.tar.gz .\r\nrpmbuild ./*.spec --define\ - \ \"_sourcedir ${PWD}\" --define \"_specdir ${PWD}\" --define \"_builddir\ - \ ${PWD}\" --define \"_srcrpmdir ${PWD}\" --define \"_rpmdir ${PWD}\"\ - \ -bs\r\nfedora-review -n python-ogr -m fedora-29-x86_64\r\n```\r\n\r\ - \nOnce merged, I'll open a Fedora review for ogr. Franta could do it\ - \ so he can get the pkgr perms." - closed_at: '2019-02-27T11:38:20Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/22/comments - created_at: '2019-02-26T17:11:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/22/events - html_url: https://github.com/packit/ogr/pull/22 - id: 414722729 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-25T09:08:30Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/55/comments + created_at: '2019-04-08T13:30:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/55/events + html_url: https://github.com/packit/ogr/pull/55 + id: 430453106 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/22/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/55/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU2MzcxNDM2 - number: 22 + node_id: MDExOlB1bGxSZXF1ZXN0MjY4MzM3Mjk1 + number: 55 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/22.diff - html_url: https://github.com/packit/ogr/pull/22 - patch_url: https://github.com/packit/ogr/pull/22.patch - url: https://api.github.com/repos/packit/ogr/pulls/22 + diff_url: https://github.com/packit/ogr/pull/55.diff + html_url: https://github.com/packit/ogr/pull/55 + patch_url: https://github.com/packit/ogr/pull/55.patch + url: https://api.github.com/repos/packit/ogr/pulls/55 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add RPM spec file - updated_at: '2019-02-27T11:38:24Z' - url: https://api.github.com/repos/packit/ogr/issues/22 + title: persistent storage for github class for testing ogr and packit + updated_at: '2019-04-25T09:09:03Z' + url: https://api.github.com/repos/packit/ogr/issues/55 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\n138 Bytecompiling .py files below /builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6\ - \ using /usr/bin/python3.6\r\n139 *** Error compiling '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/abstract.py'...\r\ - \n140 File \"/usr/lib/python3.6/abstract.py\", line 1\r\n141 SyntaxError:\ - \ future feature annotations is not defined\r\n142 *** Error compiling\ - \ '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/services/github.py'...\r\ - \n143 File \"/usr/lib/python3.6/github.py\", line 1\r\n144 SyntaxError:\ - \ future feature annotations is not defined\r\n145 *** Error compiling\ - \ '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/services/pagure.py'...\r\ - \n146 File \"/usr/lib/python3.6/pagure.py\", line 1\r\n147 SyntaxError:\ - \ future feature annotations is not defined\r\n```\r\n" - closed_at: '2019-02-27T08:38:17Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/21/comments - created_at: '2019-02-26T17:08:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/21/events - html_url: https://github.com/packit/ogr/issues/21 - id: 414721039 - labels: - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/21/labels{/name} + author_association: CONTRIBUTOR + body: 'https://pagure.io/pagure/issue/4427 + + + ``` + + $ pytest-3 -k test_fork + + === test session starts === + + platform linux -- Python 3.7.3, pytest-3.6.4, py-1.5.4, pluggy-0.6.0 + + rootdir: /home/tt/g/user-cont/ogr, inifile: + + plugins: cov-2.5.1 + + collected 76 items / 72 deselected + + + tests/integration/test_github.py s [ 25%] + + tests/integration/test_pagure.py .. [ 75%] + + tests/unit/test_pagure.py . [100%] + + + ==== 3 passed, 1 skipped, 72 deselected in 8.83 seconds === + + ```' + closed_at: '2019-04-15T14:09:04Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/57/comments + created_at: '2019-04-15T10:47:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/57/events + html_url: https://github.com/packit/ogr/pull/57 + id: 433214625 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/57/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTQ3MjEwMzk= - number: 21 + node_id: MDExOlB1bGxSZXF1ZXN0MjcwNDYzNzQ2 + number: 57 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/57.diff + html_url: https://github.com/packit/ogr/pull/57 + patch_url: https://github.com/packit/ogr/pull/57.patch + url: https://api.github.com/repos/packit/ogr/pulls/57 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ogr doesn't work with python3.6 - updated_at: '2019-02-27T08:38:17Z' - url: https://api.github.com/repos/packit/ogr/issues/21 + title: 'pagure/get_urls: fill in {username}' + updated_at: '2019-04-15T14:09:10Z' + url: https://api.github.com/repos/packit/ogr/issues/57 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -104003,132 +132289,82 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2019-02-26T10:21:46Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/20/comments - created_at: '2019-02-26T08:21:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/20/events - html_url: https://github.com/packit/ogr/pull/20 - id: 414485102 + closed_at: '2019-04-09T07:38:57Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/48/comments + created_at: '2019-03-26T14:15:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/48/events + html_url: https://github.com/packit/ogr/pull/48 + id: 425444570 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/20/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/48/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU2MTgzNjIz - number: 20 + node_id: MDExOlB1bGxSZXF1ZXN0MjY0NTM4MDgx + number: 48 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/20.diff - html_url: https://github.com/packit/ogr/pull/20 - patch_url: https://github.com/packit/ogr/pull/20.patch - url: https://api.github.com/repos/packit/ogr/pulls/20 + diff_url: https://github.com/packit/ogr/pull/48.diff + html_url: https://github.com/packit/ogr/pull/48 + patch_url: https://github.com/packit/ogr/pull/48.patch + url: https://api.github.com/repos/packit/ogr/pulls/48 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[release-conf.yaml] remove deprecated python_versions' - updated_at: '2019-02-26T10:21:48Z' - url: https://api.github.com/repos/packit/ogr/issues/20 + title: Ogr Read only mode support with simple test + updated_at: '2019-04-09T07:58:35Z' + url: https://api.github.com/repos/packit/ogr/issues/48 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Remove future import for annotations => python3.6 compatibility.\r\ - \n\r\nResolves #13 " - closed_at: '2019-02-19T14:31:38Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/18/comments - created_at: '2019-02-19T07:24:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/18/events - html_url: https://github.com/packit/ogr/pull/18 - id: 411781030 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-01T12:20:57Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/40/comments + created_at: '2019-03-20T14:58:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/40/events + html_url: https://github.com/packit/ogr/pull/40 + id: 423299795 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/18/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/40/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU0MTQyMzQ0 - number: 18 + node_id: MDExOlB1bGxSZXF1ZXN0MjYyOTAyNzA3 + number: 40 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/18.diff - html_url: https://github.com/packit/ogr/pull/18 - patch_url: https://github.com/packit/ogr/pull/18.patch - url: https://api.github.com/repos/packit/ogr/pulls/18 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Use strings for type annotations - updated_at: '2019-02-19T14:35:24Z' - url: https://api.github.com/repos/packit/ogr/issues/18 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "after installing `ogr` via ``pip3 install .``\r\nI wanted to run\ - \ make check ``PYTHONPATH=`pwd` pytest-3 -v ./tests/``\r\n\r\nit leads\ - \ to errors like:\r\n```\r\nE File \"/home/jscotka/git/userspace-containerization/ogr/ogr/abstract.py\"\ - , line 1\r\nE from __future__ import annotations\r\nE \ - \ ^\r\nE SyntaxError: future feature\ - \ annotations is not defined\r\n```\r\n\r\nseems that annotations module\ - \ is not accessible in ``python3-3.6.8-1.fc28.x86_64`` by default\r\n" - closed_at: '2019-02-19T14:31:38Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/13/comments - created_at: '2019-02-15T12:46:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/13/events - html_url: https://github.com/packit/ogr/issues/13 - id: 410754451 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/13/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0MTA3NTQ0NTE= - number: 13 - performed_via_github_app: null + diff_url: https://github.com/packit/ogr/pull/40.diff + html_url: https://github.com/packit/ogr/pull/40 + patch_url: https://github.com/packit/ogr/pull/40.patch + url: https://api.github.com/repos/packit/ogr/pulls/40 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: missing annotations library for testing - updated_at: '2019-02-19T14:31:38Z' - url: https://api.github.com/repos/packit/ogr/issues/13 + title: 'WIP: Simulation' + updated_at: '2019-04-01T12:20:57Z' + url: https://api.github.com/repos/packit/ogr/issues/40 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -104149,31 +132385,29 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* 0.0.2 release\n* 0.0.2\ - \ release\n* 0.0.2 release\n* [README] Requirements\n* [make check]\ - \ colors & showlocals\n* Add release-conf.yaml\n* Add new url\n* Fix\ - \ the name meaning\n* Move 'packages' from setup.py to setup.cfg\n*\ - \ Rename confusing pagure parameter\n* Fix some styling\n* Correct get_file_content\n\ - * Correct Pagure tests\n* Add API for file content\n* Add tests for\ - \ github\n* Rework github implementation\n* Fix tests and cyclic imports\n\ - * Remove duplicated test\n* Add annotations\n* Do not use pagure instance\ - \ publically\n* Add change_token for Servise and Project classes\n*\ - \ Add unit tests for comment filter/search functions\n* Extract comment\ - \ filter/search methods\n* Add integration tests for pr-comments and\ - \ skip test_create_fork\n* Improve pr-comments API\n* Add method for\ - \ filtering comments in pr\n* Fix pr_info and pr_comment content\n\n\ - \nYou can change it by editing `CHANGELOG.md` in the root of this repository\ - \ and pushing to `0.0.2-release` branch before merging this PR.\nI didn't\ - \ find any files where `__version__` is set." - closed_at: '2019-02-19T04:56:59Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/16/comments - created_at: '2019-02-18T09:07:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/16/events - html_url: https://github.com/packit/ogr/pull/16 - id: 411369684 + \ is the changelog I created:\n### Changes\n* [packit] sync from downstream\ + \ branch 'master'\n* tests,is_forked: comment why and test for return\ + \ type\n* Update ogr/services/github.py\n* forges may allow forks of\ + \ forks\n* is_forked to return bool again\n* gh: use HTML URL instead\ + \ of API URL\n* pagure/fork_create to return PagureProject\n* Jirka\ + \ can't live w/o pre-commit\n* _release_from_github_object: nicer docstring\n\ + * implement forking interface for github\n* upgrade fork API\n* [tox.ini]\ + \ code coverage\n* [Jenkinsfile] parallel tasks vol. 2\n* [Jenkinsfile]\ + \ Run tests & linters/checkers in parallel\n* [Jenkinsfile] run pre-commit\n\ + * utilize kwargs.setdefault\n* Jirka <3 pre-commit\n* add parent prop\ + \ into api\n* Apply suggestions from code review\n* CONTRIBUTING.md\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.2.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-03-28T09:20:22Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/51/comments + created_at: '2019-03-27T09:03:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/51/events + html_url: https://github.com/packit/ogr/pull/51 + id: 425837436 labels: - color: ededed default: false @@ -104189,24 +132423,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/16/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/51/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUzODMzNjM0 - number: 16 + node_id: MDExOlB1bGxSZXF1ZXN0MjY0ODMyODQw + number: 51 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/16.diff - html_url: https://github.com/packit/ogr/pull/16 - patch_url: https://github.com/packit/ogr/pull/16.patch - url: https://api.github.com/repos/packit/ogr/pulls/16 + diff_url: https://github.com/packit/ogr/pull/51.diff + html_url: https://github.com/packit/ogr/pull/51 + patch_url: https://github.com/packit/ogr/pull/51.patch + url: https://api.github.com/repos/packit/ogr/pulls/51 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.0.2 release - updated_at: '2019-02-19T05:01:47Z' - url: https://api.github.com/repos/packit/ogr/issues/16 + title: 0.2.0 release + updated_at: '2019-03-28T09:22:01Z' + url: https://api.github.com/repos/packit/ogr/issues/51 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -104227,15 +132461,15 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Thank you in advance! - closed_at: '2019-02-18T09:07:33Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/15/comments - created_at: '2019-02-18T08:29:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/15/events - html_url: https://github.com/packit/ogr/issues/15 - id: 411355216 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-27T09:03:50Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/50/comments + created_at: '2019-03-27T08:58:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/50/events + html_url: https://github.com/packit/ogr/issues/50 + id: 425835263 labels: - color: ededed default: false @@ -104251,211 +132485,256 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/15/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/50/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTEzNTUyMTY= - number: 15 + node_id: MDU6SXNzdWU0MjU4MzUyNjM= + number: 50 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.0.2 release - updated_at: '2019-02-18T09:07:33Z' - url: https://api.github.com/repos/packit/ogr/issues/15 + title: 0.2.0 release + updated_at: '2019-03-27T09:03:50Z' + url: https://api.github.com/repos/packit/ogr/issues/50 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-02-15T16:54:17Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/12/comments - created_at: '2019-02-15T10:33:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/12/events - html_url: https://github.com/packit/ogr/pull/12 - id: 410703936 + author_association: CONTRIBUTOR + body: '* implement forking interface for github + + * upgrade fork API + + + Fixes #31' + closed_at: '2019-03-26T16:18:24Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/44/comments + created_at: '2019-03-25T14:39:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/44/events + html_url: https://github.com/packit/ogr/pull/44 + id: 424938659 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/12/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/44/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUzMzgwNjA0 - number: 12 + node_id: MDExOlB1bGxSZXF1ZXN0MjY0MTQ4NTky + number: 44 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/12.diff - html_url: https://github.com/packit/ogr/pull/12 - patch_url: https://github.com/packit/ogr/pull/12.patch - url: https://api.github.com/repos/packit/ogr/pulls/12 + diff_url: https://github.com/packit/ogr/pull/44.diff + html_url: https://github.com/packit/ogr/pull/44 + patch_url: https://github.com/packit/ogr/pull/44.patch + url: https://api.github.com/repos/packit/ogr/pulls/44 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add release-conf.yaml - updated_at: '2019-02-15T17:12:14Z' - url: https://api.github.com/repos/packit/ogr/issues/12 + title: m0ar forking + updated_at: '2019-03-27T08:37:30Z' + url: https://api.github.com/repos/packit/ogr/issues/44 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-02-15T16:55:04Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/14/comments - created_at: '2019-02-15T13:30:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/14/events - html_url: https://github.com/packit/ogr/pull/14 - id: 410770447 + author_association: CONTRIBUTOR + body: 'Downstream commit: 48f9c4254f4eb328740129f902c9836105cdc86c + + ' + closed_at: '2019-03-26T16:38:43Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/46/comments + created_at: '2019-03-25T22:24:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/46/events + html_url: https://github.com/packit/ogr/pull/46 + id: 425142588 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/14/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/46/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUzNDI5MTA2 - number: 14 + node_id: MDExOlB1bGxSZXF1ZXN0MjY0MzA5NDgy + number: 46 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/14.diff - html_url: https://github.com/packit/ogr/pull/14 - patch_url: https://github.com/packit/ogr/pull/14.patch - url: https://api.github.com/repos/packit/ogr/pulls/14 + diff_url: https://github.com/packit/ogr/pull/46.diff + html_url: https://github.com/packit/ogr/pull/46 + patch_url: https://github.com/packit/ogr/pull/46.patch + url: https://api.github.com/repos/packit/ogr/pulls/46 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: README & Makefile - updated_at: '2019-02-15T17:12:10Z' - url: https://api.github.com/repos/packit/ogr/issues/14 + title: Update from downstream branch 'master' + updated_at: '2019-03-27T08:36:53Z' + url: https://api.github.com/repos/packit/ogr/issues/46 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Resolves #4' - closed_at: '2019-02-14T13:28:27Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/11/comments - created_at: '2019-02-14T13:11:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/11/events - html_url: https://github.com/packit/ogr/pull/11 - id: 410292447 + assignee: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + author_association: CONTRIBUTOR + body: "```\r\n if req.status_code != 200:\r\n LOG.error(output)\r\ + \n if 'error_code' in output:\r\n> raise APIError(output['error'])\r\ + \nE libpagure.exceptions.APIError: Repo \"forks/ttomecek/sen\"\ + \ already exists \r\n```\r\n\r\n```\r\n/home/tt/.local/lib/python3.7/site-packages/ogr/services/pagure.py:151:\ + \ in fork_create\r\n self._pagure.create_fork()\r\n/home/tt/.local/lib/python3.7/site-packages/ogr/services/our_pagure.py:254:\ + \ in create_fork \ + \ \r\n data={\"repo\": self.repo_name,\ + \ \"namespace\": self.namespace, \"wait\": True},\r\n```\r\n\r\nWDYT?" + closed_at: '2019-03-26T16:18:24Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/31/comments + created_at: '2019-03-07T09:18:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/31/events + html_url: https://github.com/packit/ogr/issues/31 + id: 418203993 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/11/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/31/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUzMDY2MjY3 - number: 11 + node_id: MDU6SXNzdWU0MTgyMDM5OTM= + number: 31 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/11.diff - html_url: https://github.com/packit/ogr/pull/11 - patch_url: https://github.com/packit/ogr/pull/11.patch - url: https://api.github.com/repos/packit/ogr/pulls/11 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix the name meaning and prepare for the move to packit-service - updated_at: '2019-02-14T13:28:27Z' - url: https://api.github.com/repos/packit/ogr/issues/11 + title: create_fork should not fail if the fork already exists + updated_at: '2019-03-26T16:18:24Z' + url: https://api.github.com/repos/packit/ogr/issues/31 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER body: '' - closed_at: '2019-02-11T12:22:48Z' + closed_at: '2019-03-26T08:51:03Z' comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/10/comments - created_at: '2019-02-11T11:44:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/10/events - html_url: https://github.com/packit/ogr/pull/10 - id: 408743900 + comments_url: https://api.github.com/repos/packit/ogr/issues/47/comments + created_at: '2019-03-26T06:53:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/47/events + html_url: https://github.com/packit/ogr/pull/47 + id: 425253987 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/10/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/47/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUxODg0MTc2 - number: 10 + node_id: MDExOlB1bGxSZXF1ZXN0MjY0Mzk0MTk2 + number: 47 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/10.diff - html_url: https://github.com/packit/ogr/pull/10 - patch_url: https://github.com/packit/ogr/pull/10.patch - url: https://api.github.com/repos/packit/ogr/pulls/10 + diff_url: https://github.com/packit/ogr/pull/47.diff + html_url: https://github.com/packit/ogr/pull/47 + patch_url: https://github.com/packit/ogr/pull/47.patch + url: https://api.github.com/repos/packit/ogr/pulls/47 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Move 'packages' from setup.py to setup.cfg - updated_at: '2019-02-11T13:08:26Z' - url: https://api.github.com/repos/packit/ogr/issues/10 + title: '[tox.ini] code coverage' + updated_at: '2019-03-26T08:51:06Z' + url: https://api.github.com/repos/packit/ogr/issues/47 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -104471,740 +132750,512 @@ requests.sessions: 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Rework github implementation. - - - Add tests for github. - - - Add API for file content. - - - Correct Pagure tests.' - closed_at: '2019-02-04T16:55:46Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/9/comments - created_at: '2019-02-04T13:48:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/9/events - html_url: https://github.com/packit/ogr/pull/9 - id: 406337577 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/9/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUwMDU3NDI2 - number: 9 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/9.diff - html_url: https://github.com/packit/ogr/pull/9 - patch_url: https://github.com/packit/ogr/pull/9.patch - url: https://api.github.com/repos/packit/ogr/pulls/9 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: github support - updated_at: '2019-02-04T16:55:50Z' - url: https://api.github.com/repos/packit/ogr/issues/9 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Remove duplicated test. - - - Add annotations.' - closed_at: '2019-01-30T10:16:18Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/7/comments - created_at: '2019-01-29T16:26:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/7/events - html_url: https://github.com/packit/ogr/pull/7 - id: 404374671 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/7/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQ4NTcxNTc3 - number: 7 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/7.diff - html_url: https://github.com/packit/ogr/pull/7 - patch_url: https://github.com/packit/ogr/pull/7.patch - url: https://api.github.com/repos/packit/ogr/pulls/7 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add type annotations and fix create_pr - updated_at: '2019-01-30T10:32:30Z' - url: https://api.github.com/repos/packit/ogr/issues/7 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "- Add change_token for Servise and Project classes.\r\n- Do not\ - \ use pagure instance publically." - closed_at: '2019-01-25T14:25:58Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/6/comments - created_at: '2019-01-24T11:21:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/6/events - html_url: https://github.com/packit/ogr/pull/6 - id: 402660658 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/6/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQ3MjkxODEx - number: 6 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/6.diff - html_url: https://github.com/packit/ogr/pull/6 - patch_url: https://github.com/packit/ogr/pull/6.patch - url: https://api.github.com/repos/packit/ogr/pulls/6 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: change_token methods - updated_at: '2019-01-28T10:53:41Z' - url: https://api.github.com/repos/packit/ogr/issues/6 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "- Add method for filtering comments in pr.\r\n- Fix pr_info and\ - \ pr_comment content.\r\n\r\n- TODO:\r\n - [x] searching in comments/description\r\ - \n - [x] unit tests\r\n - [x] integration tests" - closed_at: '2019-01-18T12:40:24Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/5/comments - created_at: '2019-01-17T10:52:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/5/events - html_url: https://github.com/packit/ogr/pull/5 - id: 400218175 + type: User + url: https://api.github.com/users/jpopelka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-03-26T06:42:32Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/45/comments + created_at: '2019-03-25T17:06:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/45/events + html_url: https://github.com/packit/ogr/pull/45 + id: 425016622 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/5/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/45/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQ1NDU1OTU0 - number: 5 + node_id: MDExOlB1bGxSZXF1ZXN0MjY0MjEwMTc2 + number: 45 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/5.diff - html_url: https://github.com/packit/ogr/pull/5 - patch_url: https://github.com/packit/ogr/pull/5.patch - url: https://api.github.com/repos/packit/ogr/pulls/5 + diff_url: https://github.com/packit/ogr/pull/45.diff + html_url: https://github.com/packit/ogr/pull/45 + patch_url: https://github.com/packit/ogr/pull/45.patch + url: https://api.github.com/repos/packit/ogr/pulls/45 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pr info and comments - updated_at: '2019-01-18T13:02:36Z' - url: https://api.github.com/repos/packit/ogr/issues/5 + title: '[Jenkinsfile] run pre-commit' + updated_at: '2019-03-26T06:42:35Z' + url: https://api.github.com/repos/packit/ogr/issues/45 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- add MIT license - - - use setuptools-scm - - - add Makefile target for image and pypi-checking' - closed_at: '2019-01-11T14:15:26Z' + author_association: CONTRIBUTOR + body: and implement it for github and pagure + closed_at: '2019-03-25T13:52:31Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/3/comments - created_at: '2019-01-10T15:31:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/3/events - html_url: https://github.com/packit/ogr/pull/3 - id: 397883535 + comments_url: https://api.github.com/repos/packit/ogr/issues/43/comments + created_at: '2019-03-23T20:58:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/43/events + html_url: https://github.com/packit/ogr/pull/43 + id: 424544327 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/3/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/43/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQzNzI4NTQ0 - number: 3 + node_id: MDExOlB1bGxSZXF1ZXN0MjYzODYxMDc4 + number: 43 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/3.diff - html_url: https://github.com/packit/ogr/pull/3 - patch_url: https://github.com/packit/ogr/pull/3.patch - url: https://api.github.com/repos/packit/ogr/pulls/3 + diff_url: https://github.com/packit/ogr/pull/43.diff + html_url: https://github.com/packit/ogr/pull/43 + patch_url: https://github.com/packit/ogr/pull/43.patch + url: https://api.github.com/repos/packit/ogr/pulls/43 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Introduce packaging - updated_at: '2019-01-12T14:24:24Z' - url: https://api.github.com/repos/packit/ogr/issues/3 + title: add parent prop into api + updated_at: '2019-03-25T13:52:57Z' + url: https://api.github.com/repos/packit/ogr/issues/43 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Add tests for Pagure and OurPagure. - - - Update the API and Pagure implementation.' - closed_at: '2019-01-10T13:50:20Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/2/comments - created_at: '2019-01-10T11:16:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/2/events - html_url: https://github.com/packit/ogr/pull/2 - id: 397783096 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-21T15:21:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/41/comments + created_at: '2019-03-21T14:47:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/41/events + html_url: https://github.com/packit/ogr/pull/41 + id: 423768837 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/2/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/41/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQzNjQ4ODM2 - number: 2 + node_id: MDExOlB1bGxSZXF1ZXN0MjYzMjY2NDE3 + number: 41 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/2.diff - html_url: https://github.com/packit/ogr/pull/2 - patch_url: https://github.com/packit/ogr/pull/2.patch - url: https://api.github.com/repos/packit/ogr/pulls/2 + diff_url: https://github.com/packit/ogr/pull/41.diff + html_url: https://github.com/packit/ogr/pull/41 + patch_url: https://github.com/packit/ogr/pull/41.patch + url: https://api.github.com/repos/packit/ogr/pulls/41 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update API and Pagure - updated_at: '2019-01-10T13:52:06Z' - url: https://api.github.com/repos/packit/ogr/issues/2 + title: bump spec to 0.1.0 + updated_at: '2019-03-23T20:14:13Z' + url: https://api.github.com/repos/packit/ogr/issues/41 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=2: - - metadata: - latency: 0.6246769428253174 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "This is needed for Python 3.10+.\r\n\r\nSee devel-list message\ - \ for details:\r\n\r\nhttps://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/PQIGCQCRNBYNXBX2ICWEM3PLDLNOG2ZT/\r\ - \n\r\nSigned-off-by: Hunor Csomort\xE1ni " - closed_at: '2020-06-30T07:33:05Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/430/comments - created_at: '2020-06-30T07:12:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/430/events - html_url: https://github.com/packit/ogr/pull/430 - id: 647926952 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/430/labels{/name} + body: '' + closed_at: '2019-03-22T14:08:51Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/42/comments + created_at: '2019-03-21T16:38:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/42/events + html_url: https://github.com/packit/ogr/pull/42 + id: 423829259 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/42/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQxODMwMDgy - number: 430 + node_id: MDExOlB1bGxSZXF1ZXN0MjYzMzE0NzEw + number: 42 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/430.diff - html_url: https://github.com/packit/ogr/pull/430 - patch_url: https://github.com/packit/ogr/pull/430.patch - url: https://api.github.com/repos/packit/ogr/pulls/430 + diff_url: https://github.com/packit/ogr/pull/42.diff + html_url: https://github.com/packit/ogr/pull/42 + patch_url: https://github.com/packit/ogr/pull/42.patch + url: https://api.github.com/repos/packit/ogr/pulls/42 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Replace Python version glob with macro - updated_at: '2020-06-30T07:33:06Z' - url: https://api.github.com/repos/packit/ogr/issues/430 + title: CONTRIBUTING.md + updated_at: '2019-03-22T14:08:54Z' + url: https://api.github.com/repos/packit/ogr/issues/42 user: - avatar_url: https://avatars0.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} + 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/csomh - id: 11816497 - login: csomh - node_id: MDQ6VXNlcjExODE2NDk3 - organizations_url: https://api.github.com/users/csomh/orgs - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + 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/csomh + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "The object [gitlab.v4.objects.ProjectFile](https://python-gitlab.readthedocs.io/en/stable/api/gitlab.v4.html#gitlab.v4.objects.ProjectFile)\ - \ with the function [decode()](https://python-gitlab.readthedocs.io/en/stable/api/gitlab.v4.html#gitlab.v4.objects.ProjectFile.decode)\ - \ will return bytes -\r\n\r\n`b'---\\nspecfile_path: hello.spec\\nsynced_files:\\\ - n - hello.spec\\n# actions:\\n# post-upstream-clone: \"python3 setup.py\ - \ sdist --dist-dir .\"\\n# current_version_command: [\"python3\", \"\ - setup.py\", \"--version\"]\\n# create_tarball_command: [\"python3\"\ - , \"setup.py\", \"sdist\", \"--dist-dir\", \".\"]\\njobs:\\n- job: copr_build\\\ - n trigger: pull_request\\n metadata:\\n targets:\\n - fedora-30-x86_64'`\r\ - \n\r\nExpected string - \r\n\r\n```\r\n---\r\nspecfile_path: hello.spec\r\ - \nsynced_files:\r\n - hello.spec\r\n# actions:\r\n# post-upstream-clone:\ - \ \"python3 setup.py sdist --dist-dir .\"\r\n# current_version_command:\ - \ [\"python3\", \"setup.py\", \"--version\"]\r\n# create_tarball_command:\ - \ [\"python3\", \"setup.py\", \"sdist\", \"--dist-dir\", \".\"]\r\n\ - jobs:\r\n- job: copr_build\r\n trigger: pull_request\r\n metadata:\r\ - \n targets:\r\n - fedora-30-x86_64\r\n```\r\n" - closed_at: '2020-06-29T12:03:35Z' + body: With these changes, `packit srpm` should *just work*. + closed_at: '2019-03-18T14:00:44Z' comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/429/comments - created_at: '2020-06-28T21:32:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/429/events - html_url: https://github.com/packit/ogr/pull/429 - id: 647009475 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/429/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/35/comments + created_at: '2019-03-18T13:17:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/35/events + html_url: https://github.com/packit/ogr/pull/35 + id: 422212338 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/35/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQxMTE3MTUw - number: 429 + node_id: MDExOlB1bGxSZXF1ZXN0MjYyMDUxMjgx + number: 35 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/429.diff - html_url: https://github.com/packit/ogr/pull/429 - patch_url: https://github.com/packit/ogr/pull/429.patch - url: https://api.github.com/repos/packit/ogr/pulls/429 + diff_url: https://github.com/packit/ogr/pull/35.diff + html_url: https://github.com/packit/ogr/pull/35 + patch_url: https://github.com/packit/ogr/pull/35.patch + url: https://api.github.com/repos/packit/ogr/pulls/35 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix get_file_content() returning bytes - updated_at: '2020-06-29T12:03:35Z' - url: https://api.github.com/repos/packit/ogr/issues/429 + title: update packit.yaml to reflect packit==0.2.0 + updated_at: '2019-03-18T18:34:17Z' + url: https://api.github.com/repos/packit/ogr/issues/35 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Build in Copr for master commits and releases.\r\n- We are using\ - \ same copr projects as we do for packit.\r\n- Relates to https://github.com/packit-service/ogr/pull/428." - closed_at: '2020-06-26T12:08:08Z' + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n\n### Other\n\n* Utilize\ + \ gitchangelog feature of r-bot. [Tomas Tomecek]\n\n* Merge pull request\ + \ #35 from TomasTomecek/update-packit-yaml. [Tomas Tomecek]\n\n update\ + \ packit.yaml to reflect packit==0.2.0\n\n* Update packit.yaml to reflect\ + \ packit==0.2.0. [Tomas Tomecek]\n\n* Merge pull request #34 from jpopelka/no-dimensions.\ + \ [Jiri Popelka]\n\n pre-commit config & black/Flake8/mypy fixes\n\n\ + * Black & Flake8 & mypy fixes. [Jiri Popelka]\n\n* .pre-commit-config.yaml.\ + \ [Jiri Popelka]\n\n* Merge pull request #32 from packit-service/releases.\ + \ [Jiri Popelka]\n\n Releases\n\n* Add test and docs for GitHub releases.\ + \ [Radoslav Pitonak]\n\n* Add releases for github. [Frantisek Lachman]\n\ + \n* Merge pull request #27 from jpopelka/ci. [Jiri Popelka]\n\n Tox\ + \ & Jenkinsfile\n\n* Jenkinsfile. [Jiri Popelka]\n\n* Tox. [Jiri Popelka]\n\ + \n* [Makefile] no sudo. [Jiri Popelka]\n\n* Enum -> IntEnum. [Jiri Popelka]\n\ + \n* Merge pull request #30 from jscotka/test_integration_skip. [Jiri\ + \ Popelka]\n\n [integration tests] skip whole module if not all env.\ + \ variables set\n\n* Move skip_tests() to conftest.py. [Jiri Popelka]\n\ + \n* Create better function to skip tests. [Jan Scotka]\n\n* Add skip\ + \ decorators to skip whole module in case of integration tests in case\ + \ env vars are not typed. [Jan Scotka]\n\n* Merge pull request #28 from\ + \ TomasTomecek/add-packit. [Tomas Tomecek]\n\n add packit config\n\n\ + * Add packit config. [Tomas Tomecek]\n\n\n\n\nYou can change it by editing\ + \ `CHANGELOG.md` in the root of this repository and pushing to `0.1.0-release`\ + \ branch before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2019-03-18T17:58:28Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/428/comments - created_at: '2020-06-26T08:42:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/428/events - html_url: https://github.com/packit/ogr/pull/428 - id: 646108018 + comments_url: https://api.github.com/repos/packit/ogr/issues/39/comments + created_at: '2019-03-18T17:45:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/39/events + html_url: https://github.com/packit/ogr/pull/39 + id: 422351830 labels: - - color: 0e8a16 + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 7cf4be + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: Weekend is coming! - id: 2162576221 - name: "\U0001F31E Friday \U0001F91F" - node_id: MDU6TGFiZWwyMTYyNTc2MjIx - url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F - labels_url: https://api.github.com/repos/packit/ogr/issues/428/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/39/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQwNDU5MTk2 - number: 428 + node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTYxMjI4 + number: 39 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/428.diff - html_url: https://github.com/packit/ogr/pull/428 - patch_url: https://github.com/packit/ogr/pull/428.patch - url: https://api.github.com/repos/packit/ogr/pulls/428 + diff_url: https://github.com/packit/ogr/pull/39.diff + html_url: https://github.com/packit/ogr/pull/39 + patch_url: https://github.com/packit/ogr/pull/39.patch + url: https://api.github.com/repos/packit/ogr/pulls/39 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Copr build for master and releases - updated_at: '2020-06-26T12:13:35Z' - url: https://api.github.com/repos/packit/ogr/issues/428 + title: 0.1.0 release + updated_at: '2019-03-18T18:00:48Z' + url: https://api.github.com/repos/packit/ogr/issues/39 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "By looking at the code I noticed there are no tests for creating\ - \ pull requests in different scenarios (like Github has) and also the\ - \ code doesn't seem to be compliant to the documentation of ogr.\r\n\ - \r\n- [ ] Add tests\r\n- [ ] Fix the implementation\r\n\r\nMay be\ - \ blocked by #412" - closed_at: '2020-06-25T10:41:12Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/414/comments - created_at: '2020-05-20T21:34:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/414/events - html_url: https://github.com/packit/ogr/issues/414 - id: 622098916 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-18T17:45:29Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/36/comments + created_at: '2019-03-18T16:53:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/36/events + html_url: https://github.com/packit/ogr/issues/36 + id: 422327353 labels: - - color: d93f0b + - color: ededed default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/414/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/36/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjIwOTg5MTY= - number: 414 + node_id: MDU6SXNzdWU0MjIzMjczNTM= + number: 36 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pull requests on Gitlab projects - updated_at: '2020-06-25T10:41:12Z' - url: https://api.github.com/repos/packit/ogr/issues/414 + title: new minor release + updated_at: '2019-03-18T17:45:29Z' + url: https://api.github.com/repos/packit/ogr/issues/36 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-06-23T15:27:42Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/427/comments - created_at: '2020-06-23T14:34:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/427/events - html_url: https://github.com/packit/ogr/pull/427 - id: 643894847 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\nNo changelog provided\n\n\ + You can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.1.0-release` branch before merging this PR.\nI didn't\ + \ find any files where `__version__` is set." + closed_at: '2019-03-18T17:44:20Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/38/comments + created_at: '2019-03-18T17:28:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/38/events + html_url: https://github.com/packit/ogr/pull/38 + id: 422343992 labels: - - color: 0e8a16 + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/427/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/38/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDM4NjEzNzgx - number: 427 + node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTU1MTM0 + number: 38 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/427.diff - html_url: https://github.com/packit/ogr/pull/427 - patch_url: https://github.com/packit/ogr/pull/427.patch - url: https://api.github.com/repos/packit/ogr/pulls/427 + diff_url: https://github.com/packit/ogr/pull/38.diff + html_url: https://github.com/packit/ogr/pull/38 + patch_url: https://github.com/packit/ogr/pull/38.patch + url: https://api.github.com/repos/packit/ogr/pulls/38 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Zuul & pre-commit related changes - updated_at: '2020-06-24T08:10:43Z' - url: https://api.github.com/repos/packit/ogr/issues/427 + title: 0.1.0 release + updated_at: '2019-03-18T17:44:28Z' + url: https://api.github.com/repos/packit/ogr/issues/38 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "* We first to need to create an abstraction on top of all forges\r\ - \n* and then implement it for each\r\n\r\nThis is an example how pagure\ - \ does it:\r\n```python\r\nmod_acls = {\r\n 'user_type': 'group',\r\ - \n 'name': 'git-packit-team',\r\n 'acl': 'admin',\r\n\ - }\r\n\r\nreq = requests.post(\r\n url + 'source-git/%s/git/modifyacls'\ - \ % (project),\r\n headers=headers,\r\n verify=False,\r\ - \n data=mod_acls\r\n)\r\n```" - closed_at: '2020-06-22T13:36:26Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/364/comments - created_at: '2020-03-25T12:55:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/364/events - html_url: https://github.com/packit/ogr/issues/364 - id: 587676376 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* update packit.yaml to\ + \ reflect packit==0.2.0\n* black & Flake8 & mypy fixes\n* .pre-commit-config.yaml\n\ + * add test and docs for GitHub releases\n* Add releases for github\n\ + * Jenkinsfile\n* Tox\n* [Makefile] no sudo\n* Enum -> IntEnum\n* Move\ + \ skip_tests() to conftest.py\n* create better function to skip tests.\n\ + * add skip decorators to skip whole module in case of integration tests\ + \ in case env vars are not typed\n* add packit config\n\n\nYou can change\ + \ it by editing `CHANGELOG.md` in the root of this repository and pushing\ + \ to `0.1.0-release` branch before merging this PR.\nI didn't find any\ + \ files where `__version__` is set." + closed_at: '2019-03-18T16:58:25Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/37/comments + created_at: '2019-03-18T16:54:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/37/events + html_url: https://github.com/packit/ogr/pull/37 + id: 422328099 labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: '000000' + - color: ededed default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/364/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/37/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODc2NzYzNzY= - number: 364 + node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTQyNjc3 + number: 37 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/37.diff + html_url: https://github.com/packit/ogr/pull/37 + patch_url: https://github.com/packit/ogr/pull/37.patch + url: https://api.github.com/repos/packit/ogr/pulls/37 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: provide a way to modify ACLs of repositories - updated_at: '2020-06-22T13:36:27Z' - url: https://api.github.com/repos/packit/ogr/issues/364 + title: 0.1.0 release + updated_at: '2019-03-18T17:26:48Z' + url: https://api.github.com/repos/packit/ogr/issues/37 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -105226,33 +133277,33 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: Needed in https://github.com/packit-service/packit-service/pull/662 - closed_at: '2020-06-11T07:53:09Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/425/comments - created_at: '2020-06-08T10:16:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/425/events - html_url: https://github.com/packit/ogr/pull/425 - id: 634481719 + body: '' + closed_at: '2019-03-15T13:51:22Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/34/comments + created_at: '2019-03-15T11:27:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/34/events + html_url: https://github.com/packit/ogr/pull/34 + id: 421473951 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/425/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/34/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDMxMDI4NDEw - number: 425 + node_id: MDExOlB1bGxSZXF1ZXN0MjYxNTE1NjA5 + number: 34 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/425.diff - html_url: https://github.com/packit/ogr/pull/425 - patch_url: https://github.com/packit/ogr/pull/425.patch - url: https://api.github.com/repos/packit/ogr/pulls/425 + diff_url: https://github.com/packit/ogr/pull/34.diff + html_url: https://github.com/packit/ogr/pull/34 + patch_url: https://github.com/packit/ogr/pull/34.patch + url: https://api.github.com/repos/packit/ogr/pulls/34 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement PagurePullRequest.get_flags() - updated_at: '2020-06-11T07:53:14Z' - url: https://api.github.com/repos/packit/ogr/issues/425 + title: pre-commit config & black/Flake8/mypy fixes + updated_at: '2019-03-15T13:51:25Z' + url: https://api.github.com/repos/packit/ogr/issues/34 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -105274,248 +133325,271 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Use literal style (|) in the YAML string, in order to keep new-lines\ - \ and\r\nhave a better formatting.\r\n\r\nBe explicit about the dates.\r\ - \n\r\nBe more English (hopefully).\r\n\r\nSigned-off-by: Hunor Csomort\xE1\ - ni " - closed_at: '2020-06-10T13:35:30Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/426/comments - created_at: '2020-06-10T06:41:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/426/events - html_url: https://github.com/packit/ogr/pull/426 - id: 635974319 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/426/labels{/name} + body: "- Added object representation for GitHub releases.\r\n- What about\ + \ pagure? Is there anything that can be used?" + closed_at: '2019-03-15T09:41:59Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/32/comments + created_at: '2019-03-12T13:35:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/32/events + html_url: https://github.com/packit/ogr/pull/32 + id: 419989710 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/32/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDMyMjM2NzY4 - number: 426 + node_id: MDExOlB1bGxSZXF1ZXN0MjYwMzY1NTk1 + number: 32 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/426.diff - html_url: https://github.com/packit/ogr/pull/426 - patch_url: https://github.com/packit/ogr/pull/426.patch - url: https://api.github.com/repos/packit/ogr/pulls/426 + diff_url: https://github.com/packit/ogr/pull/32.diff + html_url: https://github.com/packit/ogr/pull/32 + patch_url: https://github.com/packit/ogr/pull/32.patch + url: https://api.github.com/repos/packit/ogr/pulls/32 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve the message when marking issues as stale - updated_at: '2020-06-10T13:35:30Z' - url: https://api.github.com/repos/packit/ogr/issues/426 + title: Releases + updated_at: '2019-03-15T09:42:04Z' + url: https://api.github.com/repos/packit/ogr/issues/32 user: - avatar_url: https://avatars0.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} + 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/csomh - id: 11816497 - login: csomh - node_id: MDQ6VXNlcjExODE2NDk3 - organizations_url: https://api.github.com/users/csomh/orgs - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + 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/csomh + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: "During pre-commit I'm getting the following issues (Trying to solve\ - \ #338 )\r\n```\r\nogr/abstract.py:731: error: Too many arguments\r\n\ - ogr/services/github/service.py:172: error: Too many arguments\r\n```" - closed_at: '2020-06-08T19:38:15Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/362/comments - created_at: '2020-03-24T15:41:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/362/events - html_url: https://github.com/packit/ogr/pull/362 - id: 587056910 - labels: - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/362/labels{/name} + author_association: MEMBER + body: '' + closed_at: '2019-03-05T17:01:01Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/27/comments + created_at: '2019-03-01T16:03:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/27/events + html_url: https://github.com/packit/ogr/pull/27 + id: 416169456 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/27/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzkzMDcwNzg0 - number: 362 + node_id: MDExOlB1bGxSZXF1ZXN0MjU3NDk2Mjcz + number: 27 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/362.diff - html_url: https://github.com/packit/ogr/pull/362 - patch_url: https://github.com/packit/ogr/pull/362.patch - url: https://api.github.com/repos/packit/ogr/pulls/362 + diff_url: https://github.com/packit/ogr/pull/27.diff + html_url: https://github.com/packit/ogr/pull/27 + patch_url: https://github.com/packit/ogr/pull/27.patch + url: https://api.github.com/repos/packit/ogr/pulls/27 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: adding hostname property - updated_at: '2020-06-08T19:38:15Z' - url: https://api.github.com/repos/packit/ogr/issues/362 + title: Tox & Jenkinsfile + updated_at: '2019-03-05T17:01:04Z' + url: https://api.github.com/repos/packit/ogr/issues/27 user: - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} + 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/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions + 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/dinolinjob + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Fixes #406\r\n\r\n- [x] Fix unit tests" - closed_at: '2020-05-26T09:47:07Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/411/comments - created_at: '2020-05-15T09:31:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/411/events - html_url: https://github.com/packit/ogr/pull/411 - id: 618832407 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/411/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-05T15:25:00Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/30/comments + created_at: '2019-03-04T14:02:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/30/events + html_url: https://github.com/packit/ogr/pull/30 + id: 416815413 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/30/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDE4NDgxODAx - number: 411 + node_id: MDExOlB1bGxSZXF1ZXN0MjU3OTUzMjI1 + number: 30 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/411.diff - html_url: https://github.com/packit/ogr/pull/411 - patch_url: https://github.com/packit/ogr/pull/411.patch - url: https://api.github.com/repos/packit/ogr/pulls/411 + diff_url: https://github.com/packit/ogr/pull/30.diff + html_url: https://github.com/packit/ogr/pull/30 + patch_url: https://github.com/packit/ogr/pull/30.patch + url: https://api.github.com/repos/packit/ogr/pulls/30 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Creating PRs from `fork` to `other-fork` on Github - updated_at: '2020-06-07T18:05:12Z' - url: https://api.github.com/repos/packit/ogr/issues/411 + title: '[integration tests] skip whole module if not all env. variables + set' + updated_at: '2019-03-05T15:25:01Z' + url: https://api.github.com/repos/packit/ogr/issues/30 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/jscotka + _next: null + elapsed: 0.420965 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:05 GMT + ETag: W/"d30ffa897dc63af9afe612acef4a78e50a508e60faa7d835070203d355cdc7f9" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F819C2:191E029:6075DC61 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4542' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '458' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=18: + - metadata: + latency: 0.5118918418884277 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- [ ] should be thoroughly checked (`Project`, `Service`, `User`, - `Release` should be fine)' - closed_at: '2020-06-05T15:20:24Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/311/comments - created_at: '2020-01-24T22:31:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/311/events - html_url: https://github.com/packit/ogr/pull/311 - id: 554985894 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/311/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-01T17:19:12Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/28/comments + created_at: '2019-03-01T16:44:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/28/events + html_url: https://github.com/packit/ogr/pull/28 + id: 416187270 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/28/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY3MDQxOTA2 - number: 311 + node_id: MDExOlB1bGxSZXF1ZXN0MjU3NTEwNDk4 + number: 28 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/311.diff - html_url: https://github.com/packit/ogr/pull/311 - patch_url: https://github.com/packit/ogr/pull/311.patch - url: https://api.github.com/repos/packit/ogr/pulls/311 + diff_url: https://github.com/packit/ogr/pull/28.diff + html_url: https://github.com/packit/ogr/pull/28 + patch_url: https://github.com/packit/ogr/pull/28.patch + url: https://api.github.com/repos/packit/ogr/pulls/28 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add compatibility table - updated_at: '2020-06-05T15:36:55Z' - url: https://api.github.com/repos/packit/ogr/issues/311 + title: add packit config + updated_at: '2019-03-01T17:19:16Z' + url: https://api.github.com/repos/packit/ogr/issues/28 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Fix unit tests for Github\ - \ PRs\n* Implement creating PRs fork->other-fork on Github\n* Use custom_instances\ - \ to provide custom_mapping\n* Add PullRequest.patch property\n* GitHub:\ - \ query only one user when telling if a user can merge PRs\n* Adding\ - \ tests for add_user\n* Adding collaborators to projects - (Github,\ - \ Gitlab)\n\n\nYou can change it by editing `CHANGELOG.md` in the root\ - \ of this repository and pushing to `0.12.1-release` branch before merging\ - \ this PR.\nI didn't find any files where `__version__` is set." - closed_at: '2020-05-27T13:46:01Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/422/comments - created_at: '2020-05-26T15:00:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/422/events - html_url: https://github.com/packit/ogr/pull/422 - id: 624951772 + \ is the changelog I created:\n### Changes\nNo changelog provided\n\n\ + You can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.1.0-release` branch before merging this PR.\nI didn't\ + \ find any files where `__version__` is set." + closed_at: '2019-03-01T16:41:07Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/26/comments + created_at: '2019-03-01T15:56:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/26/events + html_url: https://github.com/packit/ogr/pull/26 + id: 416166108 labels: - color: ededed default: false @@ -105531,24 +133605,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/422/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/26/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDIzMjYxMzM2 - number: 422 + node_id: MDExOlB1bGxSZXF1ZXN0MjU3NDkzNTkx + number: 26 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/422.diff - html_url: https://github.com/packit/ogr/pull/422 - patch_url: https://github.com/packit/ogr/pull/422.patch - url: https://api.github.com/repos/packit/ogr/pulls/422 + diff_url: https://github.com/packit/ogr/pull/26.diff + html_url: https://github.com/packit/ogr/pull/26 + patch_url: https://github.com/packit/ogr/pull/26.patch + url: https://api.github.com/repos/packit/ogr/pulls/26 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.12.1 release - updated_at: '2020-05-27T13:47:20Z' - url: https://api.github.com/repos/packit/ogr/issues/422 + title: 0.1.0 release + updated_at: '2019-03-01T16:49:43Z' + url: https://api.github.com/repos/packit/ogr/issues/26 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -105569,15 +133643,16 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-05-26T15:00:38Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/421/comments - created_at: '2020-05-26T14:59:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/421/events - html_url: https://github.com/packit/ogr/issues/421 - id: 624950979 + author_association: CONTRIBUTOR + body: "we need this b/c 0.0.2 doesn't have specfile\r\n\r\nand I want\ + \ to use packit to bring the release to fedora" + closed_at: '2019-03-01T15:56:25Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/25/comments + created_at: '2019-03-01T15:52:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/25/events + html_url: https://github.com/packit/ogr/issues/25 + id: 416164397 labels: - color: ededed default: false @@ -105593,304 +133668,144 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/421/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/25/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjQ5NTA5Nzk= - number: 421 + node_id: MDU6SXNzdWU0MTYxNjQzOTc= + number: 25 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New patch release - updated_at: '2020-05-26T15:00:38Z' - url: https://api.github.com/repos/packit/ogr/issues/421 + title: 0.1.0 release + updated_at: '2019-03-01T16:19:00Z' + url: https://api.github.com/repos/packit/ogr/issues/25 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "After merging #404 there's no support only for creating PR from\ - \ one fork to different fork.\r\n\r\nPyGithub (GitHub API respectively)\ - \ doesn't allow creating pull requests on a repository we're \"merging\"\ - \ from.\r\n\r\n- [ ] implement getting other fork repository when creating\ - \ PR against it (internal Repository should be enough)\r\n - [ ]\ - \ handle non-existing fork" - closed_at: '2020-05-26T09:47:07Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/406/comments - created_at: '2020-05-05T10:19:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/406/events - html_url: https://github.com/packit/ogr/issues/406 - id: 612492491 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* add RPM spec file\n* [release-conf.yaml]\ + \ remove deprecated python_versions\n* Remove dataclasses\n* Use strings\ + \ for type annotations\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.0.3-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2019-02-28T11:45:58Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/24/comments + created_at: '2019-02-28T10:42:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/24/events + html_url: https://github.com/packit/ogr/pull/24 + id: 415557542 labels: - - color: '000000' + - color: ededed default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - labels_url: https://api.github.com/repos/packit/ogr/issues/406/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MTI0OTI0OTE= - number: 406 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Creating pull requests from fork to other fork - updated_at: '2020-05-26T09:47:07Z' - url: https://api.github.com/repos/packit/ogr/issues/406 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Update `custom_mapping` with the info provided in the `custom_instances`. - - - Fixes: https://github.com/packit-service/ogr/issues/417' - closed_at: '2020-05-26T05:56:28Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/418/comments - created_at: '2020-05-25T09:11:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/418/events - html_url: https://github.com/packit/ogr/pull/418 - id: 624162285 - labels: - - color: 0e8a16 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/418/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/24/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDIyNjM4Mzc4 - number: 418 + node_id: MDExOlB1bGxSZXF1ZXN0MjU3MDE3MDgz + number: 24 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/418.diff - html_url: https://github.com/packit/ogr/pull/418 - patch_url: https://github.com/packit/ogr/pull/418.patch - url: https://api.github.com/repos/packit/ogr/pulls/418 + diff_url: https://github.com/packit/ogr/pull/24.diff + html_url: https://github.com/packit/ogr/pull/24 + patch_url: https://github.com/packit/ogr/pull/24.patch + url: https://api.github.com/repos/packit/ogr/pulls/24 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix factory.get_project - updated_at: '2020-05-26T05:57:27Z' - url: https://api.github.com/repos/packit/ogr/issues/418 + title: 0.0.3 release + updated_at: '2019-02-28T12:07:04Z' + url: https://api.github.com/repos/packit/ogr/issues/24 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: "I want to enhance the-new-hotness with the ability to file PRs\ - \ directly to dist-git projects instead of attaching patches to bugzilla.\ - \ I started to work on it in this PR [here](https://github.com/fedora-infra/the-new-hotness/pull/235).\ - \ All the packit related code could be find in https://github.com/fedora-infra/the-new-hotness/pull/235/files#diff-d74ad19fb2d5a66e5bdf8eec8555ca1d\r\ - \n\r\nI'm using only the dist-git module from the packit itself and\ - \ my use case should work like this:\r\n1. Create fork of the target\ - \ repository\r\n2. Update branch\r\n3. Create PR against the specific\ - \ branch in target repository\r\n\r\nWith my current code it needs kerberos\ - \ ticket and user must be in packager group. I tried to do the same\ - \ using dist-git web interface and only thing I need to execute the\ - \ above scenario is the FAS account. \r\nThis should be doable with\ - \ only the pagure token, which allows both forking and creating PR." - closed_at: '2020-05-26T05:56:28Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/417/comments - created_at: '2020-01-28T14:53:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/417/events - html_url: https://github.com/packit/ogr/issues/417 - id: 624162109 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/417/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MjQxNjIxMDk= - number: 417 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[use-case] the-new-hotness dist-git pull request creation' - updated_at: '2020-05-26T05:56:28Z' - url: https://api.github.com/repos/packit/ogr/issues/417 - user: - avatar_url: https://avatars3.githubusercontent.com/u/6943409?v=4 - events_url: https://api.github.com/users/Zlopez/events{/privacy} - followers_url: https://api.github.com/users/Zlopez/followers - following_url: https://api.github.com/users/Zlopez/following{/other_user} - gists_url: https://api.github.com/users/Zlopez/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/Zlopez - id: 6943409 - login: Zlopez - node_id: MDQ6VXNlcjY5NDM0MDk= - organizations_url: https://api.github.com/users/Zlopez/orgs - received_events_url: https://api.github.com/users/Zlopez/received_events - repos_url: https://api.github.com/users/Zlopez/repos - site_admin: false - starred_url: https://api.github.com/users/Zlopez/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/Zlopez/subscriptions - type: User - url: https://api.github.com/users/Zlopez - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.githubusercontent.com/u/20343475?v=4 - events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} - followers_url: https://api.github.com/users/RafayGhafoor/followers - following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} - gists_url: https://api.github.com/users/RafayGhafoor/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/RafayGhafoor - id: 20343475 - login: RafayGhafoor - node_id: MDQ6VXNlcjIwMzQzNDc1 - organizations_url: https://api.github.com/users/RafayGhafoor/orgs - received_events_url: https://api.github.com/users/RafayGhafoor/received_events - repos_url: https://api.github.com/users/RafayGhafoor/repos - site_admin: false - starred_url: https://api.github.com/users/RafayGhafoor/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/RafayGhafoor/subscriptions - type: User - url: https://api.github.com/users/RafayGhafoor - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/20343475?v=4 - events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} - followers_url: https://api.github.com/users/RafayGhafoor/followers - following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} - gists_url: https://api.github.com/users/RafayGhafoor/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/RafayGhafoor - id: 20343475 - login: RafayGhafoor - node_id: MDQ6VXNlcjIwMzQzNDc1 - organizations_url: https://api.github.com/users/RafayGhafoor/orgs - received_events_url: https://api.github.com/users/RafayGhafoor/received_events - repos_url: https://api.github.com/users/RafayGhafoor/repos - site_admin: false - starred_url: https://api.github.com/users/RafayGhafoor/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/RafayGhafoor/subscriptions - type: User - url: https://api.github.com/users/RafayGhafoor - author_association: MEMBER - body: "We have some URLs in the tests -- it would be nice to validate\ - \ them.\r\n\r\n*Originally reported by @jscotka :*\r\n> Maybe one note,\ - \ would be nice to test in tests that URLs are valid for github/gitlba/pagure,\ - \ eg. via urllib download the diff and check if there are few expected\ - \ lines." - closed_at: '2020-05-25T14:18:31Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/342/comments - created_at: '2020-02-26T09:49:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/342/events - html_url: https://github.com/packit/ogr/issues/342 - id: 571202848 - labels: - - color: fbca04 - default: false - description: Reserved for the participants/applicants of the Google - Summer of Code. - id: 1867054141 - name: GSOC - node_id: MDU6TGFiZWwxODY3MDU0MTQx - url: https://api.github.com/repos/packit/ogr/labels/GSOC - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - - color: f9d0c4 + author_association: MEMBER + body: Release bot, please! + closed_at: '2019-02-28T10:42:18Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/23/comments + created_at: '2019-02-28T10:39:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/23/events + html_url: https://github.com/packit/ogr/issues/23 + id: 415556376 + labels: + - color: ededed default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/342/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/23/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NzEyMDI4NDg= - number: 342 + node_id: MDU6SXNzdWU0MTU1NTYzNzY= + number: 23 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Validate the urls - updated_at: '2020-05-25T14:18:31Z' - url: https://api.github.com/repos/packit/ogr/issues/342 + title: 0.0.3 release + updated_at: '2019-02-28T10:42:18Z' + url: https://api.github.com/repos/packit/ogr/issues/23 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -105911,43 +133826,154 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Currently implemented only for PagurePullRequest.\r\n\r\nIt returns\ - \ bytes in case there's some binary blob in the patch.\r\n\r\nI'd like\ - \ to use this in https://github.com/packit-service/packit-service/pull/627" - closed_at: '2020-05-22T17:27:23Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/415/comments - created_at: '2020-05-22T11:43:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/415/events - html_url: https://github.com/packit/ogr/pull/415 - id: 623151328 + author_association: CONTRIBUTOR + body: "# how to test\r\n```\r\ngit checkout 0.0.2\r\npython3 ./setup.py\ + \ sdist\r\nmv ./dist/ogr-0.0.2.tar.gz .\r\nrpmbuild ./*.spec --define\ + \ \"_sourcedir ${PWD}\" --define \"_specdir ${PWD}\" --define \"_builddir\ + \ ${PWD}\" --define \"_srcrpmdir ${PWD}\" --define \"_rpmdir ${PWD}\"\ + \ -bs\r\nfedora-review -n python-ogr -m fedora-29-x86_64\r\n```\r\n\r\ + \nOnce merged, I'll open a Fedora review for ogr. Franta could do it\ + \ so he can get the pkgr perms." + closed_at: '2019-02-27T11:38:20Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/22/comments + created_at: '2019-02-26T17:11:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/22/events + html_url: https://github.com/packit/ogr/pull/22 + id: 414722729 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/22/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjU2MzcxNDM2 + number: 22 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/22.diff + html_url: https://github.com/packit/ogr/pull/22 + patch_url: https://github.com/packit/ogr/pull/22.patch + url: https://api.github.com/repos/packit/ogr/pulls/22 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add RPM spec file + updated_at: '2019-02-27T11:38:24Z' + url: https://api.github.com/repos/packit/ogr/issues/22 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n138 Bytecompiling .py files below /builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6\ + \ using /usr/bin/python3.6\r\n139 *** Error compiling '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/abstract.py'...\r\ + \n140 File \"/usr/lib/python3.6/abstract.py\", line 1\r\n141 SyntaxError:\ + \ future feature annotations is not defined\r\n142 *** Error compiling\ + \ '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/services/github.py'...\r\ + \n143 File \"/usr/lib/python3.6/github.py\", line 1\r\n144 SyntaxError:\ + \ future feature annotations is not defined\r\n145 *** Error compiling\ + \ '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/services/pagure.py'...\r\ + \n146 File \"/usr/lib/python3.6/pagure.py\", line 1\r\n147 SyntaxError:\ + \ future feature annotations is not defined\r\n```\r\n" + closed_at: '2019-02-27T08:38:17Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/21/comments + created_at: '2019-02-26T17:08:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/21/events + html_url: https://github.com/packit/ogr/issues/21 + id: 414721039 labels: - - color: 0e8a16 + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/415/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/21/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDIxODc0NDAw - number: 415 + node_id: MDU6SXNzdWU0MTQ3MjEwMzk= + number: 21 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: ogr doesn't work with python3.6 + updated_at: '2019-02-27T08:38:17Z' + url: https://api.github.com/repos/packit/ogr/issues/21 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-02-26T10:21:46Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/20/comments + created_at: '2019-02-26T08:21:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/20/events + html_url: https://github.com/packit/ogr/pull/20 + id: 414485102 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/20/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjU2MTgzNjIz + number: 20 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/415.diff - html_url: https://github.com/packit/ogr/pull/415 - patch_url: https://github.com/packit/ogr/pull/415.patch - url: https://api.github.com/repos/packit/ogr/pulls/415 + diff_url: https://github.com/packit/ogr/pull/20.diff + html_url: https://github.com/packit/ogr/pull/20 + patch_url: https://github.com/packit/ogr/pull/20.patch + url: https://api.github.com/repos/packit/ogr/pulls/20 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add PullRequest.patch property - updated_at: '2020-05-25T09:38:26Z' - url: https://api.github.com/repos/packit/ogr/issues/415 + title: '[release-conf.yaml] remove deprecated python_versions' + updated_at: '2019-02-26T10:21:48Z' + url: https://api.github.com/repos/packit/ogr/issues/20 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -105968,186 +133994,219 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f30` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is dirty.This - is not supported.` | - - | `f31` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.12.0.tar.gz. - Reason: ''Not Found''. ` | - - | `f32` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is dirty.This - is not supported.` | - - | `master` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is - dirty.This is not supported.` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-05-21T11:58:35Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/409/comments - created_at: '2020-05-06T15:57:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/409/events - html_url: https://github.com/packit/ogr/issues/409 - id: 613430701 + author_association: MEMBER + body: "- Remove future import for annotations => python3.6 compatibility.\r\ + \n\r\nResolves #13 " + closed_at: '2019-02-19T14:31:38Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/18/comments + created_at: '2019-02-19T07:24:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/18/events + html_url: https://github.com/packit/ogr/pull/18 + id: 411781030 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/409/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/18/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MTM0MzA3MDE= - number: 409 + node_id: MDExOlB1bGxSZXF1ZXN0MjU0MTQyMzQ0 + number: 18 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/18.diff + html_url: https://github.com/packit/ogr/pull/18 + patch_url: https://github.com/packit/ogr/pull/18.patch + url: https://api.github.com/repos/packit/ogr/pulls/18 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.12.0' - updated_at: '2020-05-21T11:58:35Z' - url: https://api.github.com/repos/packit/ogr/issues/409 + title: Use strings for type annotations + updated_at: '2019-02-19T14:35:24Z' + url: https://api.github.com/repos/packit/ogr/issues/18 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + 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/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + 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 - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 - events_url: https://api.github.com/users/TomasJani/events{/privacy} - followers_url: https://api.github.com/users/TomasJani/followers - following_url: https://api.github.com/users/TomasJani/following{/other_user} - gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "after installing `ogr` via ``pip3 install .``\r\nI wanted to run\ + \ make check ``PYTHONPATH=`pwd` pytest-3 -v ./tests/``\r\n\r\nit leads\ + \ to errors like:\r\n```\r\nE File \"/home/jscotka/git/userspace-containerization/ogr/ogr/abstract.py\"\ + , line 1\r\nE from __future__ import annotations\r\nE \ + \ ^\r\nE SyntaxError: future feature\ + \ annotations is not defined\r\n```\r\n\r\nseems that annotations module\ + \ is not accessible in ``python3-3.6.8-1.fc28.x86_64`` by default\r\n" + closed_at: '2019-02-19T14:31:38Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/13/comments + created_at: '2019-02-15T12:46:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/13/events + html_url: https://github.com/packit/ogr/issues/13 + id: 410754451 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/13/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MTA3NTQ0NTE= + number: 13 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: missing annotations library for testing + updated_at: '2019-02-19T14:31:38Z' + url: https://api.github.com/repos/packit/ogr/issues/13 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/TomasJani - id: 21237576 - login: TomasJani - node_id: MDQ6VXNlcjIxMjM3NTc2 - organizations_url: https://api.github.com/users/TomasJani/orgs - received_events_url: https://api.github.com/users/TomasJani/received_events - repos_url: https://api.github.com/users/TomasJani/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/TomasJani - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 - events_url: https://api.github.com/users/TomasJani/events{/privacy} - followers_url: https://api.github.com/users/TomasJani/followers - following_url: https://api.github.com/users/TomasJani/following{/other_user} - gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* 0.0.2 release\n* 0.0.2\ + \ release\n* 0.0.2 release\n* [README] Requirements\n* [make check]\ + \ colors & showlocals\n* Add release-conf.yaml\n* Add new url\n* Fix\ + \ the name meaning\n* Move 'packages' from setup.py to setup.cfg\n*\ + \ Rename confusing pagure parameter\n* Fix some styling\n* Correct get_file_content\n\ + * Correct Pagure tests\n* Add API for file content\n* Add tests for\ + \ github\n* Rework github implementation\n* Fix tests and cyclic imports\n\ + * Remove duplicated test\n* Add annotations\n* Do not use pagure instance\ + \ publically\n* Add change_token for Servise and Project classes\n*\ + \ Add unit tests for comment filter/search functions\n* Extract comment\ + \ filter/search methods\n* Add integration tests for pr-comments and\ + \ skip test_create_fork\n* Improve pr-comments API\n* Add method for\ + \ filtering comments in pr\n* Fix pr_info and pr_comment content\n\n\ + \nYou can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.0.2-release` branch before merging this PR.\nI didn't\ + \ find any files where `__version__` is set." + closed_at: '2019-02-19T04:56:59Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/16/comments + created_at: '2019-02-18T09:07:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/16/events + html_url: https://github.com/packit/ogr/pull/16 + id: 411369684 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/16/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjUzODMzNjM0 + number: 16 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/16.diff + html_url: https://github.com/packit/ogr/pull/16 + patch_url: https://github.com/packit/ogr/pull/16.patch + url: https://api.github.com/repos/packit/ogr/pulls/16 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.0.2 release + updated_at: '2019-02-19T05:01:47Z' + url: https://api.github.com/repos/packit/ogr/issues/16 + 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/TomasJani - id: 21237576 - login: TomasJani - node_id: MDQ6VXNlcjIxMjM3NTc2 - organizations_url: https://api.github.com/users/TomasJani/orgs - received_events_url: https://api.github.com/users/TomasJani/received_events - repos_url: https://api.github.com/users/TomasJani/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + 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/TomasJani + url: https://api.github.com/users/usercont-release-bot + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "- [x] add the `created` and `edited` properties to the commit flag\ - \ classes\r\n - [x] abstract class\r\n - [x] github:\r\n - https://pygithub.readthedocs.io/en/latest/github_objects/Commit.html#github.Commit.Commit.get_statuses\r\ - \n - [ ] gitlab:\r\n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status\r\ - \n - https://docs.gitlab.com/ce/api/commits.html\r\n - pagure:\r\ - \n - https://src.fedoraproject.org/api/0/ -> `Flags for a commit`\r\ - \n- [x] tests for all implementations" - closed_at: '2020-05-16T16:37:40Z' + body: Thank you in advance! + closed_at: '2019-02-18T09:07:33Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/344/comments - created_at: '2020-03-02T11:25:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/344/events - html_url: https://github.com/packit/ogr/issues/344 - id: 573909124 + comments_url: https://api.github.com/repos/packit/ogr/issues/15/comments + created_at: '2019-02-18T08:29:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/15/events + html_url: https://github.com/packit/ogr/issues/15 + id: 411355216 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/344/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/15/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NzM5MDkxMjQ= - number: 344 + node_id: MDU6SXNzdWU0MTEzNTUyMTY= + number: 15 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add datetime to commit flags - updated_at: '2020-05-18T08:05:17Z' - url: https://api.github.com/repos/packit/ogr/issues/344 + title: 0.0.2 release + updated_at: '2019-02-18T09:07:33Z' + url: https://api.github.com/repos/packit/ogr/issues/15 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -106169,229 +134228,129 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "When telling if a user can merge PRs in a GitHub repo, ask GitHub\ - \ for\r\nthe user's permission on the repo instead of checking if the\ - \ user is in\r\nthe list of collaborators.\r\n\r\nThis should lead to\ - \ fewer API calls in cases when the full list of\r\ncollaborators is\ - \ not needed, but it also returns better results: the\r\nlist of collaborators\ - \ does not seem to be always up to date when queries\r\nare done using\ - \ GitHub App tokens.\r\n\r\nRelates to packit-service/packit-service#612.\r\ - \n\r\nSigned-off-by: Hunor Csomort\xE1ni " - closed_at: '2020-05-12T10:44:25Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/410/comments - created_at: '2020-05-11T13:29:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/410/events - html_url: https://github.com/packit/ogr/pull/410 - id: 615885823 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/410/labels{/name} + body: '' + closed_at: '2019-02-15T16:54:17Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/12/comments + created_at: '2019-02-15T10:33:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/12/events + html_url: https://github.com/packit/ogr/pull/12 + id: 410703936 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/12/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDE2MTA1NjQy - number: 410 + node_id: MDExOlB1bGxSZXF1ZXN0MjUzMzgwNjA0 + number: 12 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/410.diff - html_url: https://github.com/packit/ogr/pull/410 - patch_url: https://github.com/packit/ogr/pull/410.patch - url: https://api.github.com/repos/packit/ogr/pulls/410 + diff_url: https://github.com/packit/ogr/pull/12.diff + html_url: https://github.com/packit/ogr/pull/12 + patch_url: https://github.com/packit/ogr/pull/12.patch + url: https://api.github.com/repos/packit/ogr/pulls/12 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'GitHub: query only one user when telling if a user can merge PRs' - updated_at: '2020-05-12T10:44:25Z' - url: https://api.github.com/repos/packit/ogr/issues/410 + title: Add release-conf.yaml + updated_at: '2019-02-15T17:12:14Z' + url: https://api.github.com/repos/packit/ogr/issues/12 user: - avatar_url: https://avatars0.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} + 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/csomh - id: 11816497 - login: csomh - node_id: MDQ6VXNlcjExODE2NDk3 - organizations_url: https://api.github.com/users/csomh/orgs - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + 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/csomh + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Fixes #216 \r\n\r\nAdded to Github and Gitlab, Pagure is still\ - \ left to do." - closed_at: '2020-05-11T19:45:01Z' - comments: 26 - comments_url: https://api.github.com/repos/packit/ogr/issues/376/comments - created_at: '2020-04-09T16:55:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/376/events - html_url: https://github.com/packit/ogr/pull/376 - id: 597420110 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/376/labels{/name} + author_association: MEMBER + body: '' + closed_at: '2019-02-15T16:55:04Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/14/comments + created_at: '2019-02-15T13:30:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/14/events + html_url: https://github.com/packit/ogr/pull/14 + id: 410770447 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/14/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAxNTM3MTMx - number: 376 + node_id: MDExOlB1bGxSZXF1ZXN0MjUzNDI5MTA2 + number: 14 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/376.diff - html_url: https://github.com/packit/ogr/pull/376 - patch_url: https://github.com/packit/ogr/pull/376.patch - url: https://api.github.com/repos/packit/ogr/pulls/376 + diff_url: https://github.com/packit/ogr/pull/14.diff + html_url: https://github.com/packit/ogr/pull/14 + patch_url: https://github.com/packit/ogr/pull/14.patch + url: https://api.github.com/repos/packit/ogr/pulls/14 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Adding collaborators to projects - (Github, Gitlab, Pagure) - updated_at: '2020-05-11T19:45:01Z' - url: https://api.github.com/repos/packit/ogr/issues/376 + title: README & Makefile + updated_at: '2019-02-15T17:12:10Z' + url: https://api.github.com/repos/packit/ogr/issues/14 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi + url: https://api.github.com/users/jpopelka - active_lock_reason: null - assignee: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos - site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions - type: User - url: https://api.github.com/users/shreyaspapi - assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos - site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions - type: User - url: https://api.github.com/users/shreyaspapi + assignee: null + assignees: [] author_association: MEMBER - body: "- [ ] Add the `add_to_collaborators` method to `abstract.GitProject`.\ - \ (And raise `NotImplementedError`.)\r\n- [ ] Implement the method for\ - \ all forges (GitHub, GitLab, Pagure).\r\n- [ ] Add tests for this method.\r\ - \n\r\nDocumentation:\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-members\r\ - \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ - \n- https://pagure.io/api/0/ ( > Modify ACLs on a project ?)\r\n" - closed_at: '2020-05-11T19:45:01Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/216/comments - created_at: '2019-09-20T05:52:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/216/events - html_url: https://github.com/packit/ogr/issues/216 - id: 496159491 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/216/labels{/name} + body: 'Resolves #4' + closed_at: '2019-02-14T13:28:27Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/11/comments + created_at: '2019-02-14T13:11:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/11/events + html_url: https://github.com/packit/ogr/pull/11 + id: 410292447 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/11/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTYxNTk0OTE= - number: 216 + node_id: MDExOlB1bGxSZXF1ZXN0MjUzMDY2MjY3 + number: 11 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/11.diff + html_url: https://github.com/packit/ogr/pull/11 + patch_url: https://github.com/packit/ogr/pull/11.patch + url: https://api.github.com/repos/packit/ogr/pulls/11 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Adding collaborators to projects - updated_at: '2020-05-11T19:45:01Z' - url: https://api.github.com/repos/packit/ogr/issues/216 + title: Fix the name meaning and prepare for the move to packit-service + updated_at: '2019-02-14T13:28:27Z' + url: https://api.github.com/repos/packit/ogr/issues/11 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -106413,121 +134372,87 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Declare repositories on\ - \ git.centos.org not private\n* Create PR works for Github and fixed\ - \ test\n* Refactor getting projects internally\n* Add tests for `source_project`\ - \ on PullRequest\n* Implement `source_project` on PullRequest\n* Add\ - \ source/target_project to PullRequest\n* Fix tests after requre update\n\ - * Implement `head_commit` for GitHub and GitLab\n* Make tests for `head_commit`\ - \ on PullRequest\n* spec: don't do python_provide on F33+\n\n\nYou can\ - \ change it by editing `CHANGELOG.md` in the root of this repository\ - \ and pushing to `0.12.0-release` branch before merging this PR.\nI\ - \ didn't find any files where `__version__` is set." - closed_at: '2020-05-06T15:53:24Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/408/comments - created_at: '2020-05-06T13:34:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/408/events - html_url: https://github.com/packit/ogr/pull/408 - id: 613324595 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/408/labels{/name} + body: '' + closed_at: '2019-02-11T12:22:48Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/10/comments + created_at: '2019-02-11T11:44:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/10/events + html_url: https://github.com/packit/ogr/pull/10 + id: 408743900 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/10/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDE0MTAwMTc4 - number: 408 + node_id: MDExOlB1bGxSZXF1ZXN0MjUxODg0MTc2 + number: 10 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/408.diff - html_url: https://github.com/packit/ogr/pull/408 - patch_url: https://github.com/packit/ogr/pull/408.patch - url: https://api.github.com/repos/packit/ogr/pulls/408 + diff_url: https://github.com/packit/ogr/pull/10.diff + html_url: https://github.com/packit/ogr/pull/10 + patch_url: https://github.com/packit/ogr/pull/10.patch + url: https://api.github.com/repos/packit/ogr/pulls/10 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.12.0 release - updated_at: '2020-05-06T15:57:57Z' - url: https://api.github.com/repos/packit/ogr/issues/408 + title: Move 'packages' from setup.py to setup.cfg + updated_at: '2019-02-11T13:08:26Z' + url: https://api.github.com/repos/packit/ogr/issues/10 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: Let's create a new release! - closed_at: '2020-05-06T13:34:20Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/407/comments - created_at: '2020-05-06T13:32:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/407/events - html_url: https://github.com/packit/ogr/issues/407 - id: 613323657 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/407/labels{/name} + body: '- Rework github implementation. + + - Add tests for github. + + - Add API for file content. + + - Correct Pagure tests.' + closed_at: '2019-02-04T16:55:46Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/9/comments + created_at: '2019-02-04T13:48:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/9/events + html_url: https://github.com/packit/ogr/pull/9 + id: 406337577 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/9/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MTMzMjM2NTc= - number: 407 + node_id: MDExOlB1bGxSZXF1ZXN0MjUwMDU3NDI2 + number: 9 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/9.diff + html_url: https://github.com/packit/ogr/pull/9 + patch_url: https://github.com/packit/ogr/pull/9.patch + url: https://api.github.com/repos/packit/ogr/pulls/9 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New minor release - updated_at: '2020-05-06T13:34:20Z' - url: https://api.github.com/repos/packit/ogr/issues/407 + title: github support + updated_at: '2019-02-04T16:55:50Z' + url: https://api.github.com/repos/packit/ogr/issues/9 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -106548,362 +134473,237 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Related to #307 \r\nIf the fork_name arg is passed, PR is created\ - \ on the forked repo.\r\nIf the fork_name arg is not passed PR is made\ - \ to parent repo. \r\n\r\nTested for (fork-fork, fork-upstream, upstream-upstream)" - closed_at: '2020-05-05T07:34:36Z' - comments: 16 - comments_url: https://api.github.com/repos/packit/ogr/issues/404/comments - created_at: '2020-05-01T20:16:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/404/events - html_url: https://github.com/packit/ogr/pull/404 - id: 610947143 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/404/labels{/name} + author_association: MEMBER + body: '- Remove duplicated test. + + - Add annotations.' + closed_at: '2019-01-30T10:16:18Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/7/comments + created_at: '2019-01-29T16:26:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/7/events + html_url: https://github.com/packit/ogr/pull/7 + id: 404374671 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/7/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDEyMjg0MDE0 - number: 404 + node_id: MDExOlB1bGxSZXF1ZXN0MjQ4NTcxNTc3 + number: 7 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/404.diff - html_url: https://github.com/packit/ogr/pull/404 - patch_url: https://github.com/packit/ogr/pull/404.patch - url: https://api.github.com/repos/packit/ogr/pulls/404 + diff_url: https://github.com/packit/ogr/pull/7.diff + html_url: https://github.com/packit/ogr/pull/7 + patch_url: https://github.com/packit/ogr/pull/7.patch + url: https://api.github.com/repos/packit/ogr/pulls/7 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Create PR's to forked Repo fixed for Github - updated_at: '2020-05-05T12:36:03Z' - url: https://api.github.com/repos/packit/ogr/issues/404 - user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 - events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} - followers_url: https://api.github.com/users/saisankargochhayat/followers - following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} - gists_url: https://api.github.com/users/saisankargochhayat/gists{/gist_id} + title: Add type annotations and fix create_pr + updated_at: '2019-01-30T10:32:30Z' + url: https://api.github.com/repos/packit/ogr/issues/7 + 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/saisankargochhayat - id: 9396452 - login: saisankargochhayat - node_id: MDQ6VXNlcjkzOTY0NTI= - organizations_url: https://api.github.com/users/saisankargochhayat/orgs - received_events_url: https://api.github.com/users/saisankargochhayat/received_events - repos_url: https://api.github.com/users/saisankargochhayat/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions + 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/saisankargochhayat + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "I am looking at this code:\r\n\r\nhttps://github.com/packit-service/ogr/blob/b7c5333c4df64ecdf854a5375c207a789ca51a01/ogr/services/github/pull_request.py#L111\r\ - \n\r\nwhat if I want to create a PR against my fork and not the upstream\ - \ project?" - closed_at: '2020-05-05T10:14:22Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/307/comments - created_at: '2020-01-14T11:20:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/307/events - html_url: https://github.com/packit/ogr/issues/307 - id: 549501262 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/307/labels{/name} + body: "- Add change_token for Servise and Project classes.\r\n- Do not\ + \ use pagure instance publically." + closed_at: '2019-01-25T14:25:58Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/6/comments + created_at: '2019-01-24T11:21:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/6/events + html_url: https://github.com/packit/ogr/pull/6 + id: 402660658 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/6/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDk1MDEyNjI= - number: 307 + node_id: MDExOlB1bGxSZXF1ZXN0MjQ3MjkxODEx + number: 6 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/6.diff + html_url: https://github.com/packit/ogr/pull/6 + patch_url: https://github.com/packit/ogr/pull/6.patch + url: https://api.github.com/repos/packit/ogr/pulls/6 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: how can I create a PR against my fork - updated_at: '2020-05-05T10:14:22Z' - url: https://api.github.com/repos/packit/ogr/issues/307 + title: change_token methods + updated_at: '2019-01-28T10:53:41Z' + url: https://api.github.com/repos/packit/ogr/issues/6 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "The best solution though would be to make this list configurable.\ - \ But I'm in a hurry now :slightly_smiling_face: \r\n\r\nSigned-off-by:\ - \ Hunor Csomort\xE1ni " - closed_at: '2020-05-05T09:54:09Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/405/comments - created_at: '2020-05-05T09:34:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/405/events - html_url: https://github.com/packit/ogr/pull/405 - id: 612468201 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/405/labels{/name} + body: "- Add method for filtering comments in pr.\r\n- Fix pr_info and\ + \ pr_comment content.\r\n\r\n- TODO:\r\n - [x] searching in comments/description\r\ + \n - [x] unit tests\r\n - [x] integration tests" + closed_at: '2019-01-18T12:40:24Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/5/comments + created_at: '2019-01-17T10:52:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/5/events + html_url: https://github.com/packit/ogr/pull/5 + id: 400218175 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/5/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDEzNDA2MjI3 - number: 405 + node_id: MDExOlB1bGxSZXF1ZXN0MjQ1NDU1OTU0 + number: 5 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/405.diff - html_url: https://github.com/packit/ogr/pull/405 - patch_url: https://github.com/packit/ogr/pull/405.patch - url: https://api.github.com/repos/packit/ogr/pulls/405 + diff_url: https://github.com/packit/ogr/pull/5.diff + html_url: https://github.com/packit/ogr/pull/5 + patch_url: https://github.com/packit/ogr/pull/5.patch + url: https://api.github.com/repos/packit/ogr/pulls/5 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Declare repositories on git.centos.org not private - updated_at: '2020-05-05T09:54:09Z' - url: https://api.github.com/repos/packit/ogr/issues/405 + title: Pr info and comments + updated_at: '2019-01-18T13:02:36Z' + url: https://api.github.com/repos/packit/ogr/issues/5 user: - avatar_url: https://avatars0.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} + 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/csomh - id: 11816497 - login: csomh - node_id: MDQ6VXNlcjExODE2NDk3 - organizations_url: https://api.github.com/users/csomh/orgs - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + 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/csomh + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Closes #400\r\n\r\n# TODO\r\n\r\n(copied from issue)\r\n\r\n- [x]\ - \ add `source_project` property (abstract and implementations) returning\ - \ the project with the source branch\r\n- [x] create tests:\r\n - [x]\ - \ basic PR from `fork` to `upstream`\r\n - [x] renamed `fork`\r\n \ - \ - [x] renamed `upstream`\r\n - [x] PR from `fork` to `fork`\r\n \ - \ - [x] PR from `upstream` to `upstream`\r\n- [x] ? `target_project`\ - \ property that will replace the current `project` one to make it clear\r\ - \n - [x] don't forget to support both and deprecate the old one\r\n\ - - [x] squash commits\r\n- [x] check getting projects by internal representation\ - \ (github: creating from github.Repository, gitlab: from project_id)\r\ - \n - [x] Github: project uses almost the same way of initializing\ - \ `GithubProject` in `L129, L172, L385, L564`\r\n\r\n# Discussion\r\n\ - \r\n- [x] deprecating `.project`\r\n - [x] provide `.project` as\ - \ a property?\r\n - [ ] if so, do we need setters for them outside\ - \ class?\r\n- [ ] consider having `GithubProject.from_github_repository`,\ - \ which would take just the github repo from PyGithub and return new\ - \ project\r\n- [ ] consider creating GitLab projects just from _project\ - \ id_ (python-gitlab doesn't offer any way to get to source project\ - \ than ID)" - closed_at: '2020-04-30T16:23:19Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/401/comments - created_at: '2020-04-27T20:33:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/401/events - html_url: https://github.com/packit/ogr/pull/401 - id: 607834495 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/401/labels{/name} + body: '- add MIT license + + - use setuptools-scm + + - add Makefile target for image and pypi-checking' + closed_at: '2019-01-11T14:15:26Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/3/comments + created_at: '2019-01-10T15:31:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/3/events + html_url: https://github.com/packit/ogr/pull/3 + id: 397883535 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/3/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA5NzMxMzg3 - number: 401 + node_id: MDExOlB1bGxSZXF1ZXN0MjQzNzI4NTQ0 + number: 3 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/401.diff - html_url: https://github.com/packit/ogr/pull/401 - patch_url: https://github.com/packit/ogr/pull/401.patch - url: https://api.github.com/repos/packit/ogr/pulls/401 + diff_url: https://github.com/packit/ogr/pull/3.diff + html_url: https://github.com/packit/ogr/pull/3 + patch_url: https://github.com/packit/ogr/pull/3.patch + url: https://api.github.com/repos/packit/ogr/pulls/3 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Enhance project references in pull requests - updated_at: '2020-04-30T16:34:07Z' - url: https://api.github.com/repos/packit/ogr/issues/401 + title: Introduce packaging + updated_at: '2019-01-12T14:24:24Z' + url: https://api.github.com/repos/packit/ogr/issues/3 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "Now, we have only `project` property in the PR class, but it's\ - \ hard to get the source project. (It can be sometimes very tricky to\ - \ pick the right repo from the OGR's user perspective.)\r\n\r\n- [ ]\ - \ add `source_project` property (abstract and implementations) returning\ - \ the project with the source branch\r\n- [ ] create tests:\r\n - [\ - \ ] basic PR from `fork` to `upstream`\r\n - [ ] renamed `fork`\r\n\ - \ - [ ] renamed `upstream`\r\n - [ ] PR from `fork` to `fork`\r\n\ - \ - [ ] PR from `upstream` to `upstream`\r\n- [ ] ? `target_project`\ - \ property that will replace the current `project` one to make it clear\r\ - \n - [ ] don't forget to support both and deprecate the old one" - closed_at: '2020-04-30T16:23:19Z' + body: '- Add tests for Pagure and OurPagure. + + - Update the API and Pagure implementation.' + closed_at: '2019-01-10T13:50:20Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/400/comments - created_at: '2020-04-27T15:09:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/400/events - html_url: https://github.com/packit/ogr/issues/400 - id: 607627181 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/400/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/2/comments + created_at: '2019-01-10T11:16:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/2/events + html_url: https://github.com/packit/ogr/pull/2 + id: 397783096 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/2/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDc2MjcxODE= - number: 400 + node_id: MDExOlB1bGxSZXF1ZXN0MjQzNjQ4ODM2 + number: 2 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/2.diff + html_url: https://github.com/packit/ogr/pull/2 + patch_url: https://github.com/packit/ogr/pull/2.patch + url: https://api.github.com/repos/packit/ogr/pulls/2 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: source_project property for PR class - updated_at: '2020-04-30T16:23:19Z' - url: https://api.github.com/repos/packit/ogr/issues/400 + title: Update API and Pagure + updated_at: '2019-01-10T13:52:06Z' + url: https://api.github.com/repos/packit/ogr/issues/2 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -106922,53 +134722,46 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.509914 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; + Date: Tue, 13 Apr 2021 18:01:06 GMT + ETag: W/"1b5e85099d3a0d1f4c9f7cb49beab6aedcf264b97d201c548f3976200c74224a" + Link: ; + rel="prev", ; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F81B4F:191E286:6075DC62 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4536' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '464' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=3: + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=2: - metadata: - latency: 0.4862682819366455 + latency: 0.6692438125610352 module_call_list: - unittest.case - requre.online_replacing @@ -106988,16 +134781,29 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-04-30T15:29:45Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/403/comments - created_at: '2020-04-30T15:05:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/403/events - html_url: https://github.com/packit/ogr/pull/403 - id: 610115589 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* https://github.com/packit-service\ + \ -> https://github.com/packit\n* Add Jupyter examples\n* fix create\ + \ issue in Github and add test\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.13.1-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-08-20T07:58:30Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/455/comments + created_at: '2020-08-19T11:07:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/455/events + html_url: https://github.com/packit/ogr/pull/455 + id: 681753984 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -107005,54 +134811,115 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/403/labels{/name} + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/455/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDExNjA3OTEx - number: 403 + node_id: MDExOlB1bGxSZXF1ZXN0NDcwMDkyNTEx + number: 455 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/403.diff - html_url: https://github.com/packit/ogr/pull/403 - patch_url: https://github.com/packit/ogr/pull/403.patch - url: https://api.github.com/repos/packit/ogr/pulls/403 + diff_url: https://github.com/packit/ogr/pull/455.diff + html_url: https://github.com/packit/ogr/pull/455 + patch_url: https://github.com/packit/ogr/pull/455.patch + url: https://api.github.com/repos/packit/ogr/pulls/455 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.13.1 release + updated_at: '2021-02-19T12:31:31Z' + url: https://api.github.com/repos/packit/ogr/issues/455 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Be able to run tests via tmt also locally.' + closed_at: '2021-02-18T18:31:30Z' + comments: 20 + comments_url: https://api.github.com/repos/packit/ogr/issues/358/comments + created_at: '2020-03-19T08:50:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/358/events + html_url: https://github.com/packit/ogr/pull/358 + id: 584255021 + labels: + - color: dd5f74 + default: false + description: Work in progress. + id: 1432779248 + name: do-not-merge + node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 + url: https://api.github.com/repos/packit/ogr/labels/do-not-merge + labels_url: https://api.github.com/repos/packit/ogr/issues/358/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzkwODczODYy + number: 358 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/358.diff + html_url: https://github.com/packit/ogr/pull/358 + patch_url: https://github.com/packit/ogr/pull/358.patch + url: https://api.github.com/repos/packit/ogr/pulls/358 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix tests after requre update - updated_at: '2020-04-30T15:36:23Z' - url: https://api.github.com/repos/packit/ogr/issues/403 + title: 'WIP: Tmt local run' + updated_at: '2021-02-19T10:30:11Z' + url: https://api.github.com/repos/packit/ogr/issues/358 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Closes #368\r\n\r\n- [x] Implements `head_commit` for Github and\ - \ Gitlab\r\n- [x] Integration tests for all implementations" - closed_at: '2020-04-30T13:57:52Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/402/comments - created_at: '2020-04-30T10:24:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/402/events - html_url: https://github.com/packit/ogr/pull/402 - id: 609796401 + body: "Fixes #310\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2021-02-15T20:48:43Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/539/comments + created_at: '2021-02-12T13:43:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/539/events + html_url: https://github.com/packit/ogr/pull/539 + id: 807247111 labels: - color: 0e8a16 default: false @@ -107061,24 +134928,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/402/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/539/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDExMzIzMDM3 - number: 402 + node_id: MDExOlB1bGxSZXF1ZXN0NTcyNTI4NDEy + number: 539 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/402.diff - html_url: https://github.com/packit/ogr/pull/402 - patch_url: https://github.com/packit/ogr/pull/402.patch - url: https://api.github.com/repos/packit/ogr/pulls/402 + diff_url: https://github.com/packit/ogr/pull/539.diff + html_url: https://github.com/packit/ogr/pull/539 + patch_url: https://github.com/packit/ogr/pull/539.patch + url: https://api.github.com/repos/packit/ogr/pulls/539 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Head commit on PRs - updated_at: '2020-04-30T14:06:58Z' - url: https://api.github.com/repos/packit/ogr/issues/402 + title: Implement get_files for Pagure + updated_at: '2021-02-15T20:55:37Z' + url: https://api.github.com/repos/packit/ogr/issues/539 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -107099,30 +134966,46 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Implement PullRequest.head_commit for github and gitlab - closed_at: '2020-04-30T13:57:51Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/368/comments - created_at: '2020-03-27T10:47:08Z' - events_url: https://api.github.com/repos/packit/ogr/issues/368/events - html_url: https://github.com/packit/ogr/issues/368 - id: 589045263 + author_association: CONTRIBUTOR + body: "Implement `get_files()` method in Pagure.\r\n\r\n- Structure can\ + \ be seen in the docstring of the code that implements that: https://pagure.io/pagure/blob/dd207ee/f/pagure/api/project.py#_709\r\ + \n- Example: https://pagure.io/api/0/pagure/tree\r\n" + closed_at: '2021-02-15T20:48:43Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/310/comments + created_at: '2020-01-21T12:50:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/310/events + html_url: https://github.com/packit/ogr/issues/310 + id: 552856957 labels: - - color: '000000' + - color: be8fd8 default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -107137,103 +135020,128 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/368/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/310/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODkwNDUyNjM= - number: 368 + node_id: MDU6SXNzdWU1NTI4NTY5NTc= + number: 310 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement PullRequest.head_commit for github and gitlab - updated_at: '2020-04-30T13:57:51Z' - url: https://api.github.com/repos/packit/ogr/issues/368 + title: Support get_files() in Pagure + updated_at: '2021-02-15T20:48:43Z' + url: https://api.github.com/repos/packit/ogr/issues/310 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'packaging guidelines say this is automatic since F33 and we should - - disable it - - - https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_provides' - closed_at: '2020-04-27T17:21:08Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/399/comments - created_at: '2020-04-27T10:25:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/399/events - html_url: https://github.com/packit/ogr/pull/399 - id: 607427901 + author_association: NONE + body: "Sentry Issue: [RED-HAT-0P-2PA](https://sentry.io/organizations/red-hat-0p/issues/1785839618/?referrer=github_integration)\n\ + \n```\nRemoteDisconnected: Remote end closed connection without response\n\ + (2 additional frame(s) were not displayed)\n...\n File \"\"\ + , line 3, in raise_from\n # Permission is hereby granted, free of\ + \ charge, to any person obtaining a copy\n File \"urllib3/connectionpool.py\"\ + , line 416, in _make_request\n httplib_response = conn.getresponse()\n\ + \ File \"http/client.py\", line 1369, in getresponse\n response.begin()\n\ + \ File \"http/client.py\", line 310, in begin\n version, status,\ + \ reason = self._read_status()\n File \"http/client.py\", line 279,\ + \ in _read_status\n raise RemoteDisconnected(\"Remote end closed\ + \ connection without\"\n\nProtocolError: ('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))\n(6 additional frame(s)\ + \ were not displayed)\n...\n File \"\", line 3, in raise_from\n\ + \ # Permission is hereby granted, free of charge, to any person obtaining\ + \ a copy\n File \"urllib3/connectionpool.py\", line 416, in _make_request\n\ + \ httplib_response = conn.getresponse()\n File \"http/client.py\"\ + , line 1369, in getresponse\n response.begin()\n File \"http/client.py\"\ + , line 310, in begin\n version, status, reason = self._read_status()\n\ + \ File \"http/client.py\", line 279, in _read_status\n raise RemoteDisconnected(\"\ + Remote end closed connection without\"\n\nConnectionError: ('Connection\ + \ aborted.', RemoteDisconnected('Remote end closed connection without\ + \ response'))\n File \"ogr/services/pagure/service.py\", line 168,\ + \ in call_api_raw\n method=method, url=url, params=params, data=data\n\ + \ File \"ogr/services/pagure/service.py\", line 186, in get_raw_request\n\ + \ verify=not self.insecure,\n File \"requests/sessions.py\", line\ + \ 533, in request\n resp = self.send(prep, **send_kwargs)\n File\ + \ \"requests/sessions.py\", line 646, in send\n r = adapter.send(request,\ + \ **kwargs)\n File \"requests/adapters.py\", line 498, in send\n \ + \ raise ConnectionError(err, request=request)\n\nPagureAPIException:\ + \ (\"Cannot connect to url: 'https://git.stg.centos.org/api/0/source-git/acl/c/48d4feb54ebcb47cb593ab3c304ec36b755e8769/flag'.\"\ + , ConnectionError(ProtocolError('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))))\n(11 additional frame(s)\ + \ were not displayed)\n...\n File \"ogr/services/pagure/project.py\"\ + , line 464, in set_commit_status\n uid=uid,\n File \"ogr/services/pagure/flag.py\"\ + , line 88, in set\n \"c\", commit, \"flag\", method=\"POST\", data=data\n\ + \ File \"ogr/services/pagure/project.py\", line 129, in _call_project_api\n\ + \ url=request_url, method=method, params=params, data=data\n File\ + \ \"ogr/services/pagure/service.py\", line 128, in call_api\n response\ + \ = self.call_api_raw(url=url, method=method, params=params, data=data)\n\ + \ File \"ogr/services/pagure/service.py\", line 173, in call_api_raw\n\ + \ raise PagureAPIException(f\"Cannot connect to url: '{url}'.\",\ + \ er)\n```" + closed_at: '2021-02-12T12:22:11Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/464/comments + created_at: '2020-09-16T07:25:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/464/events + html_url: https://github.com/packit/ogr/issues/464 + id: 702525467 labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 + - color: 1d76db default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/399/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + labels_url: https://api.github.com/repos/packit/ogr/issues/464/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA5NDAzNjI3 - number: 399 + node_id: MDU6SXNzdWU3MDI1MjU0Njc= + number: 464 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/399.diff - html_url: https://github.com/packit/ogr/pull/399 - patch_url: https://github.com/packit/ogr/pull/399.patch - url: https://api.github.com/repos/packit/ogr/pulls/399 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'spec: don''t do python_provide on F33+' - updated_at: '2020-04-28T08:16:08Z' - url: https://api.github.com/repos/packit/ogr/issues/399 + title: '[Pagure] ProtocolError: (''Connection aborted.'', RemoteDisconnected(''Remote + end closed connection without response''))' + updated_at: '2021-02-12T12:22:11Z' + url: https://api.github.com/repos/packit/ogr/issues/464 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 + events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers + following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/sentry-io + id: 39604003 + login: sentry-io[bot] + node_id: MDM6Qm90Mzk2MDQwMDM= + organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events + repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/sentry-io%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] @@ -107245,45 +135153,39 @@ requests.sessions: | --------------- | ----- | - | `f30` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.3.tar.gz. - Reason: ''Not Found''. ` | - - | `f31` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This - is not supported.` | - - | `f32` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This - is not supported.` | + | `epel8` | `[Errno 2] No such file or directory: ''/tmp/packit-dist-gitl5r40_6q/sources''` + | - | `master` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is - dirty.This is not supported.` | + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. ' - closed_at: '2020-04-27T10:09:07Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/398/comments - created_at: '2020-04-27T09:59:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/398/events - html_url: https://github.com/packit/ogr/issues/398 - id: 607410636 + closed_at: '2021-02-12T12:21:06Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/530/comments + created_at: '2021-02-05T09:26:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/530/events + html_url: https://github.com/packit/ogr/issues/530 + id: 802000731 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/398/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/530/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDc0MTA2MzY= - number: 398 + node_id: MDU6SXNzdWU4MDIwMDA3MzE= + number: 530 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.11.3' - updated_at: '2020-04-27T10:11:01Z' - url: https://api.github.com/repos/packit/ogr/issues/398 + title: '[packit] Propose downstream failed for release 0.20.0' + updated_at: '2021-02-12T12:21:06Z' + url: https://api.github.com/repos/packit/ogr/issues/530 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -107305,29 +135207,19 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Fix pagination in GitLab\ - \ and add tests\n* Fix pagination for GitlabCommitFlag\n* Add tests\ - \ for PagureIssue setters\n* Implement Issue setters for Pagure\n* revert\ - \ rpmautospec\n* spec: dont hardcode name/version, use macros instead\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.11.3-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2020-04-27T09:58:02Z' + body: "# TODO\r\n\r\n- [ ] decide between `pdoc` and `pdoc3` (they seem\ + \ to be separate packages)\r\n oh, there's the tea https://github.com/mitmproxy/pdoc#pdoc-vs-pdoc3\r\ + \n- [ ] we currently use Sphinx markup that doesn't really work well\ + \ with either of `pdoc`s\r\n- [ ] since we use `__all__` it seems to\ + \ be harder to navigate the docs\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2021-02-09T11:16:41Z' comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/393/comments - created_at: '2020-04-24T07:15:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/393/events - html_url: https://github.com/packit/ogr/pull/393 - id: 606096113 + comments_url: https://api.github.com/repos/packit/ogr/issues/531/comments + created_at: '2021-02-05T10:53:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/531/events + html_url: https://github.com/packit/ogr/pull/531 + id: 802064566 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -107335,67 +135227,267 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 + - color: 7cf4be default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - - color: ededed + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/531/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTY4MjcwNTA2 + number: 531 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/531.diff + html_url: https://github.com/packit/ogr/pull/531 + patch_url: https://github.com/packit/ogr/pull/531.patch + url: https://api.github.com/repos/packit/ogr/pulls/531 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add autogeneration of docs + updated_at: '2021-02-12T11:43:27Z' + url: https://api.github.com/repos/packit/ogr/issues/531 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: FIRST_TIME_CONTRIBUTOR + body: "Implemented list projects for GitServices (#485 )\r\n\r\n@lachmanfrantisek " + closed_at: '2021-02-12T08:01:33Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/522/comments + created_at: '2021-01-24T03:23:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/522/events + html_url: https://github.com/packit/ogr/pull/522 + id: 792711474 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/522/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTYwNTM3ODc2 + number: 522 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/522.diff + html_url: https://github.com/packit/ogr/pull/522 + patch_url: https://github.com/packit/ogr/pull/522.patch + url: https://api.github.com/repos/packit/ogr/pulls/522 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implemented list projects for GitServices (#485) + updated_at: '2021-02-12T08:05:16Z' + url: https://api.github.com/repos/packit/ogr/issues/522 + user: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: This was amended in cf86074e to be compatible with both old/new + TF, but can be removed completely now since the old TF no longer exists. + closed_at: '2021-02-10T08:12:03Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/536/comments + created_at: '2021-02-09T14:51:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/536/events + html_url: https://github.com/packit/ogr/pull/536 + id: 804622682 + labels: + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/393/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/536/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA4Mzc0MDEw - number: 393 + node_id: MDExOlB1bGxSZXF1ZXN0NTcwMzU4OTIx + number: 536 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/393.diff - html_url: https://github.com/packit/ogr/pull/393 - patch_url: https://github.com/packit/ogr/pull/393.patch - url: https://api.github.com/repos/packit/ogr/pulls/393 + diff_url: https://github.com/packit/ogr/pull/536.diff + html_url: https://github.com/packit/ogr/pull/536 + patch_url: https://github.com/packit/ogr/pull/536.patch + url: https://api.github.com/repos/packit/ogr/pulls/536 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.11.3 release - updated_at: '2020-04-27T10:00:28Z' - url: https://api.github.com/repos/packit/ogr/issues/393 + title: '[ci.fmf] remove old TF specific code' + updated_at: '2021-02-10T08:56:36Z' + url: https://api.github.com/repos/packit/ogr/issues/536 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/jpopelka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "There is no documentation on how to use the library, currently.\ + \ A documentation will help people on how to use ogr, and showcase it's\ + \ features and functions.\r\n\r\nThis can be done by adding the wiki\ + \ pages (on Github), since the documentation might be quite long and\ + \ the Wiki will help in segregating several topics (for instance, how\ + \ to use ogr for GitHub, GitLab and Pagure).\r\n\r\n" + closed_at: '2021-02-09T14:13:50Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/53/comments + created_at: '2019-04-04T13:30:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/53/events + html_url: https://github.com/packit/ogr/issues/53 + id: 429280678 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: bf6b0b + default: false + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/53/labels{/name} + locked: false + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0MjkyODA2Nzg= + number: 53 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add a documentation for API + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/issues/53 + user: + avatar_url: https://avatars.githubusercontent.com/u/31067398?v=4 + events_url: https://api.github.com/users/Aniket-Pradhan/events{/privacy} + followers_url: https://api.github.com/users/Aniket-Pradhan/followers + following_url: https://api.github.com/users/Aniket-Pradhan/following{/other_user} + gists_url: https://api.github.com/users/Aniket-Pradhan/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Aniket-Pradhan + id: 31067398 + login: Aniket-Pradhan + node_id: MDQ6VXNlcjMxMDY3Mzk4 + organizations_url: https://api.github.com/users/Aniket-Pradhan/orgs + received_events_url: https://api.github.com/users/Aniket-Pradhan/received_events + repos_url: https://api.github.com/users/Aniket-Pradhan/repos + site_admin: false + starred_url: https://api.github.com/users/Aniket-Pradhan/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Aniket-Pradhan/subscriptions + type: User + url: https://api.github.com/users/Aniket-Pradhan - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #396' - closed_at: '2020-04-26T19:23:07Z' + body: "Fixes #413\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2021-01-22T13:24:40Z' comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/397/comments - created_at: '2020-04-25T11:55:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/397/events - html_url: https://github.com/packit/ogr/pull/397 - id: 606754068 + comments_url: https://api.github.com/repos/packit/ogr/issues/498/comments + created_at: '2020-11-27T09:47:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/498/events + html_url: https://github.com/packit/ogr/pull/498 + id: 752121082 labels: - color: 0e8a16 default: false @@ -107404,24 +135496,31 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/397/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/498/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA4ODk2ODgw - number: 397 + node_id: MDExOlB1bGxSZXF1ZXN0NTI4NTA2MjI4 + number: 498 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/397.diff - html_url: https://github.com/packit/ogr/pull/397 - patch_url: https://github.com/packit/ogr/pull/397.patch - url: https://api.github.com/repos/packit/ogr/pulls/397 + diff_url: https://github.com/packit/ogr/pull/498.diff + html_url: https://github.com/packit/ogr/pull/498 + patch_url: https://github.com/packit/ogr/pull/498.patch + url: https://api.github.com/repos/packit/ogr/pulls/498 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Switch backticks to apostrophes in Pagure errors - updated_at: '2020-04-27T09:06:09Z' - url: https://api.github.com/repos/packit/ogr/issues/397 + title: Change exception for edited on GitLab's commit flag + updated_at: '2021-02-05T11:56:48Z' + url: https://api.github.com/repos/packit/ogr/issues/498 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -107440,8 +135539,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + assignee: null + assignees: [] + author_association: MEMBER + body: "- Also fix other `__str__`s and reformat them\r\n\r\nSigned-off-by:\ + \ Matej Focko " + closed_at: '2020-12-09T12:38:35Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/505/comments + created_at: '2020-12-09T12:18:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/505/events + html_url: https://github.com/packit/ogr/pull/505 + id: 760280757 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/505/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTM1MTM5MDYz + number: 505 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/505.diff + html_url: https://github.com/packit/ogr/pull/505 + patch_url: https://github.com/packit/ogr/pull/505.patch + url: https://api.github.com/repos/packit/ogr/pulls/505 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add missing `__str__`s used in tests and format them + updated_at: '2021-02-05T11:56:45Z' + url: https://api.github.com/repos/packit/ogr/issues/505 + 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} @@ -107459,8 +135594,51 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Will fix #496\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2020-12-01T11:46:18Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/497/comments + created_at: '2020-11-27T09:13:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/497/events + html_url: https://github.com/packit/ogr/pull/497 + id: 752099361 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/497/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTI4NDg5MDYw + number: 497 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/497.diff + html_url: https://github.com/packit/ogr/pull/497 + patch_url: https://github.com/packit/ogr/pull/497.patch + url: https://api.github.com/repos/packit/ogr/pulls/497 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add more tests to parsing and improve parsing + updated_at: '2021-02-05T11:56:43Z' + url: https://api.github.com/repos/packit/ogr/issues/497 + 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} @@ -107478,62 +135656,20 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - author_association: MEMBER - body: "As can be seen in https://github.com/abrt/reportd/issues/10 both\ - \ [ogr](https://github.com/packit-service/ogr/blob/master/ogr/services/pagure/service.py#L150)\ - \ and [packit-service](https://github.com/packit-service/packit-service/blob/master/packit_service/worker/handlers/github_handlers.py#L179)\ - \ use backticks, which results in strange Github comments.\r\n\r\nCan\ - \ ogr use apostrophes instead?" - closed_at: '2020-04-26T19:23:07Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/396/comments - created_at: '2020-04-25T08:39:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/396/events - html_url: https://github.com/packit/ogr/issues/396 - id: 606721347 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/396/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MDY3MjEzNDc= - number: 396 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Use apostrophe rather than backtics in log messages. - updated_at: '2020-04-26T19:23:07Z' - url: https://api.github.com/repos/packit/ogr/issues/396 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-04-24T18:06:20Z' + body: "- Add an abstract class with `__repr__` definition\r\n - Enhances\ + \ debugging\r\n\r\nFixes #365\r\n\r\nSigned-off-by: Matej Focko \r\ + \n\r\n*Edit tt: added Fixes line*" + closed_at: '2020-12-09T11:20:42Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/395/comments - created_at: '2020-04-24T12:55:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/395/events - html_url: https://github.com/packit/ogr/pull/395 - id: 606292445 + comments_url: https://api.github.com/repos/packit/ogr/issues/504/comments + created_at: '2020-12-09T08:41:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/504/events + html_url: https://github.com/packit/ogr/pull/504 + id: 760127932 labels: - color: 0e8a16 default: false @@ -107542,24 +135678,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/395/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/504/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA4NTM0Mzk4 - number: 395 + node_id: MDExOlB1bGxSZXF1ZXN0NTM1MDExNjA2 + number: 504 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/395.diff - html_url: https://github.com/packit/ogr/pull/395 - patch_url: https://github.com/packit/ogr/pull/395.patch - url: https://api.github.com/repos/packit/ogr/pulls/395 + diff_url: https://github.com/packit/ogr/pull/504.diff + html_url: https://github.com/packit/ogr/pull/504 + patch_url: https://github.com/packit/ogr/pull/504.patch + url: https://api.github.com/repos/packit/ogr/pulls/504 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add is_fork and username to PagureProject __str__ - updated_at: '2020-04-24T18:25:00Z' - url: https://api.github.com/repos/packit/ogr/issues/395 + title: Add an abstract class with binding of repr to str + updated_at: '2021-02-05T11:56:41Z' + url: https://api.github.com/repos/packit/ogr/issues/504 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -107581,14 +135717,14 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-04-24T13:31:09Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/394/comments - created_at: '2020-04-24T10:45:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/394/events - html_url: https://github.com/packit/ogr/pull/394 - id: 606221125 + body: "Fixes #212\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2021-02-03T19:24:22Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/527/comments + created_at: '2021-02-03T15:09:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/527/events + html_url: https://github.com/packit/ogr/pull/527 + id: 800420217 labels: - color: 0e8a16 default: false @@ -107597,81 +135733,173 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/394/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/527/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA4NDc1OTAz - number: 394 + node_id: MDExOlB1bGxSZXF1ZXN0NTY2OTA4NDAw + number: 527 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/394.diff - html_url: https://github.com/packit/ogr/pull/394 - patch_url: https://github.com/packit/ogr/pull/394.patch - url: https://api.github.com/repos/packit/ogr/pulls/394 + diff_url: https://github.com/packit/ogr/pull/527.diff + html_url: https://github.com/packit/ogr/pull/527 + patch_url: https://github.com/packit/ogr/pull/527.patch + url: https://api.github.com/repos/packit/ogr/pulls/527 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Zuul related refactoring changes - updated_at: '2020-04-24T13:33:17Z' - url: https://api.github.com/repos/packit/ogr/issues/394 + title: Implement commits_url for pull requests + updated_at: '2021-02-05T11:56:32Z' + url: https://api.github.com/repos/packit/ogr/issues/527 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f33` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + | `main` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-02-05T09:28:13Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/529/comments + created_at: '2021-02-05T09:07:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/529/events + html_url: https://github.com/packit/ogr/issues/529 + id: 801987621 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/529/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MDE5ODc2MjE= + number: 529 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose downstream failed for release 0.20.0' + updated_at: '2021-02-05T09:28:13Z' + url: https://api.github.com/repos/packit/ogr/issues/529 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: Thanks in advance! - closed_at: '2020-04-24T07:15:34Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/385/comments - created_at: '2020-04-16T07:48:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/385/events - html_url: https://github.com/packit/ogr/issues/385 - id: 600821635 + body: "Currently, we can instantiate objects (i.e. GitProject), that does\ + \ not exist.\r\n\r\nWe probably need to agree on the common understanding\ + \ of this approach:\r\n\r\n1. allow creating non-existing objects\r\n\ + \ - add `exists() -> Bool` method\r\n - add `create() -> ????`\ + \ methods\r\n - we do not need to connect to servers on each instantiation\r\ + \n - due to laziness it can fail at not-predictable places\r\n2.\ + \ raise an exception in methods like `get_project`\r\n - easier implementation\r\ + \n - we need to connect to the remote service even when it is not\ + \ needed" + closed_at: '2020-10-30T23:47:21Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/214/comments + created_at: '2019-09-19T19:30:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/214/events + html_url: https://github.com/packit/ogr/issues/214 + id: 495986265 labels: - - color: ededed + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: ff9990 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + - color: '000000' default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/385/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/214/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDA4MjE2MzU= - number: 385 + node_id: MDU6SXNzdWU0OTU5ODYyNjU= + number: 214 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New patch release - updated_at: '2020-04-24T07:15:34Z' - url: https://api.github.com/repos/packit/ogr/issues/385 + title: '[question] Allow objects representing nonexisting objects' + updated_at: '2021-02-05T08:34:05Z' + url: https://api.github.com/repos/packit/ogr/issues/214 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -107693,59 +135921,33 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Create a class decorator that would iterate through members of\ - \ class and check if superclass has the same member with docstring,\ - \ if so, copy the docstring.\r\n\r\nReduces the unnecessary copy-pasting\ - \ of docstrings." - closed_at: '2020-04-23T11:37:34Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/271/comments - created_at: '2019-11-13T11:21:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/271/events - html_url: https://github.com/packit/ogr/issues/271 - id: 522140617 - labels: - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/271/labels{/name} + body: 'Signed-off-by: Matej Focko ' + closed_at: '2021-02-05T08:15:27Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/528/comments + created_at: '2021-02-04T15:33:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/528/events + html_url: https://github.com/packit/ogr/pull/528 + id: 801393596 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/528/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MjIxNDA2MTc= - number: 271 + node_id: MDExOlB1bGxSZXF1ZXN0NTY3NzE2ODUx + number: 528 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/528.diff + html_url: https://github.com/packit/ogr/pull/528 + patch_url: https://github.com/packit/ogr/pull/528.patch + url: https://api.github.com/repos/packit/ogr/pulls/528 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Inherit docstrings - updated_at: '2020-04-23T11:37:34Z' - url: https://api.github.com/repos/packit/ogr/issues/271 + title: Release 0.20.0 + updated_at: '2021-02-05T08:15:31Z' + url: https://api.github.com/repos/packit/ogr/issues/528 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -107763,125 +135965,250 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + + + You can retrigger the update by adding a comment (`/packit propose-update`) + into this issue. + + ' + closed_at: '2021-02-04T19:34:57Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/512/comments + created_at: '2020-12-10T11:18:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/512/events + html_url: https://github.com/packit/ogr/issues/512 + id: 761150482 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/512/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3NjExNTA0ODI= + number: 512 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.18.1' + updated_at: '2021-02-04T19:34:57Z' + url: https://api.github.com/repos/packit/ogr/issues/512 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Supposed to Fix #391 \r\n\r\nAs far as I understand the `python-gitlab`\ - \ package, they follow Gitlab's REST API with few additions like `list()`\ - \ methods on some objects.\r\n\r\n- [x] (#391) Branches API does neither\ - \ state returning paginated list or explicitly say it returns *all*\ - \ branches\r\n works with `all=True` even though it's not documented\ - \ in Gitlab API\r\n - [x] will have to try using it at some repository\ - \ with many branches (default pagination is 20 in other API endpoints)\ - \ or could you provide the repository that brought this issue to light?\ - \ ;)\r\n- [x] Repository tree - can't find `all` parameter in API,\ - \ it is used though and there is pagination => should look into that\r\ - \n same, works even though it's not in the API documentation\r\n-\ - \ [x] Releases list - by API it is paginated, there's no mention of\ - \ adjusting the count of releases per page nor `all`-parameter\r\n \ - \ same, no mention of `all` in docs\r\n- [x] Add tests" - closed_at: '2020-04-22T13:38:46Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/392/comments - created_at: '2020-04-22T08:59:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/392/events - html_url: https://github.com/packit/ogr/pull/392 - id: 604582696 + body: '' + closed_at: '2021-02-04T19:33:53Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/492/comments + created_at: '2020-10-27T12:41:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/492/events + html_url: https://github.com/packit/ogr/issues/492 + id: 730415953 labels: - - color: 0e8a16 + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/392/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/492/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA3MTQ5MDgy - number: 392 + node_id: MDU6SXNzdWU3MzA0MTU5NTM= + number: 492 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/392.diff - html_url: https://github.com/packit/ogr/pull/392 - patch_url: https://github.com/packit/ogr/pull/392.patch - url: https://api.github.com/repos/packit/ogr/pulls/392 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitLab pagination - updated_at: '2020-04-22T15:04:34Z' - url: https://api.github.com/repos/packit/ogr/issues/392 + title: New minor release + updated_at: '2021-02-04T19:33:53Z' + url: https://api.github.com/repos/packit/ogr/issues/492 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu assignees: - - avatar_url: https://avatars0.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} + - avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu + author_association: MEMBER + body: "We already have `exists` method implemented for Pagure and the\ + \ #479 adds the support for GitLab. GitHub is the last one missing.\r\ + \n\r\n- [ ] Look at the other implementations and add `exists` method\ + \ to the `GithubProject` class." + closed_at: '2021-02-04T19:32:54Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/480/comments + created_at: '2020-10-14T08:39:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/480/events + html_url: https://github.com/packit/ogr/issues/480 + id: 721260961 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/480/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MjEyNjA5NjE= + number: 480 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement project.exists for GitHub + updated_at: '2021-02-04T19:32:54Z' + url: https://api.github.com/repos/packit/ogr/issues/480 + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "By now, we get only 20 branches at max. Looks like a pagination\ - \ issue.\r\n\r\nWe need to tweak pagination to list all -- we already\ - \ have that on some other method." - closed_at: '2020-04-22T13:38:46Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/391/comments - created_at: '2020-04-21T11:18:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/391/events - html_url: https://github.com/packit/ogr/issues/391 - id: 603917055 + body: "When working with PRs, there are also URLs linking directly to\ + \ commit list tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the\ + \ `url_commits` and implement it.\r\n - Use API if possible, otherwise\ + \ \"guess\" the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\n\ + Examples:\r\n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/commits\r\ + \n- https://github.com/packit-service/ogr/pull/1/commits\r\n- https://pagure.io/ogr-tests/pull-request/7#commit_list\r\ + \n" + closed_at: '2021-02-03T19:24:22Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/212/comments + created_at: '2019-09-19T18:48:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/212/events + html_url: https://github.com/packit/ogr/issues/212 + id: 495968279 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -107889,13 +136216,27 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -107903,19 +136244,33 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/391/labels{/name} + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/212/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDM5MTcwNTU= - number: 391 + node_id: MDU6SXNzdWU0OTU5NjgyNzk= + number: 212 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Return all project branches from Gitlab ' - updated_at: '2020-04-22T13:38:46Z' - url: https://api.github.com/repos/packit/ogr/issues/391 + title: Add commits url to PullRequest class + updated_at: '2021-02-03T19:24:22Z' + url: https://api.github.com/repos/packit/ogr/issues/212 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -107936,15 +136291,16 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Fixes #302 \r\n\r\n- [x] Add tests" - closed_at: '2020-04-20T12:38:20Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/389/comments - created_at: '2020-04-20T08:44:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/389/events - html_url: https://github.com/packit/ogr/pull/389 - id: 603054798 + author_association: CONTRIBUTOR + body: "Implemented project.exists for GitHub. #480\r\n\r\n@lachmanfrantisek\ + \ Please review." + closed_at: '2021-02-03T12:07:09Z' + comments: 13 + comments_url: https://api.github.com/repos/packit/ogr/issues/521/comments + created_at: '2021-01-21T07:37:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/521/events + html_url: https://github.com/packit/ogr/pull/521 + id: 790781809 labels: - color: 0e8a16 default: false @@ -107953,135 +136309,108 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/389/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/521/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA1OTE2MDgx - number: 389 + node_id: MDExOlB1bGxSZXF1ZXN0NTU4OTM5ODMx + number: 521 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/389.diff - html_url: https://github.com/packit/ogr/pull/389 - patch_url: https://github.com/packit/ogr/pull/389.patch - url: https://api.github.com/repos/packit/ogr/pulls/389 + diff_url: https://github.com/packit/ogr/pull/521.diff + html_url: https://github.com/packit/ogr/pull/521 + patch_url: https://github.com/packit/ogr/pull/521.patch + url: https://api.github.com/repos/packit/ogr/pulls/521 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement Issue setters for Pagure - updated_at: '2020-04-20T12:43:44Z' - url: https://api.github.com/repos/packit/ogr/issues/389 + title: Implemented project.exists for GitHub (#480) + updated_at: '2021-02-03T12:07:09Z' + url: https://api.github.com/repos/packit/ogr/issues/521 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/path2himanshu - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Implement updating title and description of issue on Pagure when\ - \ the API allows it.\r\n\r\nBlocked by: [Pagure's issue](https://pagure.io/pagure/issue/4704)" - closed_at: '2020-04-20T12:38:20Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-02-01T17:50:58Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/302/comments - created_at: '2020-01-02T16:42:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/302/events - html_url: https://github.com/packit/ogr/issues/302 - id: 544654301 + comments_url: https://api.github.com/repos/packit/ogr/issues/526/comments + created_at: '2021-02-01T16:51:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/526/events + html_url: https://github.com/packit/ogr/pull/526 + id: 798530734 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: bc4812 - default: false - description: We are blocked! - id: 1432779229 - name: blocker - node_id: MDU6TGFiZWwxNDMyNzc5MjI5 - url: https://api.github.com/repos/packit/ogr/labels/blocker - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 8be567 + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/302/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/526/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDQ2NTQzMDE= - number: 302 + node_id: MDExOlB1bGxSZXF1ZXN0NTY1MzMxNzkz + number: 526 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/526.diff + html_url: https://github.com/packit/ogr/pull/526 + patch_url: https://github.com/packit/ogr/pull/526.patch + url: https://api.github.com/repos/packit/ogr/pulls/526 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Issue setters (Pagure) - updated_at: '2020-04-20T12:38:20Z' - url: https://api.github.com/repos/packit/ogr/issues/302 + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-02-01T17:51:01Z' + url: https://api.github.com/repos/packit/ogr/issues/526 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'I should read more carefully: rpmautospec is not in production - yet, - - should be only tested on staging: - - - https://lists.fedoraproject.org/archives/list/devel-announce@lists.fedoraproject.org/thread/LWE4URIRWVTEZKXKP7QOK5JXFNVJRUNW/ - - - Since we use this repository in packit''s tests, I''ll keep the spec - in a subdir so we can exercise this functionality while testing.' - closed_at: '2020-04-20T09:27:42Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/390/comments - created_at: '2020-04-20T09:09:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/390/events - html_url: https://github.com/packit/ogr/pull/390 - id: 603072599 + body: "Signed-off-by: Hunor Csomort\xE1ni " + closed_at: '2021-01-29T07:29:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/524/comments + created_at: '2021-01-28T17:13:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/524/events + html_url: https://github.com/packit/ogr/pull/524 + id: 796195674 labels: - color: 0e8a16 default: false @@ -108090,53 +136419,53 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/390/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/524/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA1OTMwMTIw - number: 390 + node_id: MDExOlB1bGxSZXF1ZXN0NTYzNDE0MjM0 + number: 524 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/390.diff - html_url: https://github.com/packit/ogr/pull/390 - patch_url: https://github.com/packit/ogr/pull/390.patch - url: https://api.github.com/repos/packit/ogr/pulls/390 + diff_url: https://github.com/packit/ogr/pull/524.diff + html_url: https://github.com/packit/ogr/pull/524 + patch_url: https://github.com/packit/ogr/pull/524.patch + url: https://api.github.com/repos/packit/ogr/pulls/524 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: revert rpmautospec - updated_at: '2020-04-20T12:28:41Z' - url: https://api.github.com/repos/packit/ogr/issues/390 + title: Remove 'master' from task name + updated_at: '2021-01-29T07:30:00Z' + url: https://api.github.com/repos/packit/ogr/issues/524 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: https://docs.pagure.org/Fedora-Infra.rpmautospec/principle.html - closed_at: '2020-04-15T08:48:11Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/378/comments - created_at: '2020-04-14T14:38:06Z' - events_url: https://api.github.com/repos/packit/ogr/issues/378/events - html_url: https://github.com/packit/ogr/pull/378 - id: 599623468 + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-01-26T09:20:19Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/523/comments + created_at: '2021-01-25T16:42:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/523/events + html_url: https://github.com/packit/ogr/pull/523 + id: 793540044 labels: - color: 0e8a16 default: false @@ -108145,53 +136474,55 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/378/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/523/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzMjI1MjMy - number: 378 + node_id: MDExOlB1bGxSZXF1ZXN0NTYxMjEwOTE4 + number: 523 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/378.diff - html_url: https://github.com/packit/ogr/pull/378 - patch_url: https://github.com/packit/ogr/pull/378.patch - url: https://api.github.com/repos/packit/ogr/pulls/378 + diff_url: https://github.com/packit/ogr/pull/523.diff + html_url: https://github.com/packit/ogr/pull/523 + patch_url: https://github.com/packit/ogr/pull/523.patch + url: https://api.github.com/repos/packit/ogr/pulls/523 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: use rpmautospec - updated_at: '2020-04-20T06:44:58Z' - url: https://api.github.com/repos/packit/ogr/issues/378 + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-01-26T09:20:21Z' + url: https://api.github.com/repos/packit/ogr/issues/523 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: my bad, didn't notice packit changed it and I committed it. - closed_at: '2020-04-17T06:44:16Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/388/comments - created_at: '2020-04-17T06:23:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/388/events - html_url: https://github.com/packit/ogr/pull/388 - id: 601732754 + body: "https://bugzilla.redhat.com/show_bug.cgi?id=1905223\r\n\r\nRequires\ + \ all the dependencies to be in epel-8 as well.\r\n\r\nSigned-off-by:\ + \ Frantisek Lachman " + closed_at: '2021-01-22T14:07:43Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/503/comments + created_at: '2020-12-08T08:10:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/503/events + html_url: https://github.com/packit/ogr/pull/503 + id: 759203132 labels: - color: 0e8a16 default: false @@ -108200,41 +136531,111 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/388/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/503/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA0OTQ1NTQx - number: 388 + node_id: MDExOlB1bGxSZXF1ZXN0NTM0MjQzOTM0 + number: 503 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/388.diff - html_url: https://github.com/packit/ogr/pull/388 - patch_url: https://github.com/packit/ogr/pull/388.patch - url: https://api.github.com/repos/packit/ogr/pulls/388 + diff_url: https://github.com/packit/ogr/pull/503.diff + html_url: https://github.com/packit/ogr/pull/503 + patch_url: https://github.com/packit/ogr/pull/503.patch + url: https://api.github.com/repos/packit/ogr/pulls/503 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'spec: dont hardcode name/version, use macros instead' - updated_at: '2020-04-17T08:24:33Z' - url: https://api.github.com/repos/packit/ogr/issues/388 + title: Enable build and test for epel-8 + updated_at: '2021-01-22T14:24:31Z' + url: https://api.github.com/repos/packit/ogr/issues/503 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Follow-up of #344 (PR: #374)\r\n\r\nAPI docs (https://docs.gitlab.com/ee/api/commits.html#post-the-build-status-to-a-commit):\r\ + \n> Adds or updates a build status of a commit.\r\n\r\nGitlab API suggests\ + \ that setting commit flag can update existing one, which could mean\ + \ this issue is blocked by API.\r\n\r\nUpdating could also mean:\r\n\ + 1. adding new commit flag that replaces old one\r\n2. adding new commit\ + \ flag, but keeping the old one\r\n\r\nExample output from docs doesn't\ + \ contain commit flag with same name." + closed_at: '2021-01-22T13:24:39Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/413/comments + created_at: '2020-05-20T21:27:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/413/events + html_url: https://github.com/packit/ogr/issues/413 + id: 622095374 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/413/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjIwOTUzNzQ= + number: 413 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: edited on Gitlab's commit flag + updated_at: '2021-01-22T13:24:39Z' + url: https://api.github.com/repos/packit/ogr/issues/413 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 - active_lock_reason: null assignee: null assignees: [] @@ -108246,169 +136647,79 @@ requests.sessions: | --------------- | ----- | - | `master` | `[Errno 2] No such file or directory: ''/tmp/packit-dist-git1w9t9eub/fedora/changelog''` - | + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + | `f34` | `Failed to init kerberos ticket:` | + | `master` | `Failed to init kerberos ticket:` | - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. ' - closed_at: '2020-04-16T14:27:25Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/387/comments - created_at: '2020-04-16T09:54:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/387/events - html_url: https://github.com/packit/ogr/issues/387 - id: 600905691 + closed_at: '2021-01-07T12:55:21Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/520/comments + created_at: '2021-01-07T12:07:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/520/events + html_url: https://github.com/packit/ogr/issues/520 + id: 781266150 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/387/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/520/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDA5MDU2OTE= - number: 387 + node_id: MDU6SXNzdWU3ODEyNjYxNTA= + number: 520 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.11.2' - updated_at: '2020-04-16T15:02:35Z' - url: https://api.github.com/repos/packit/ogr/issues/387 + title: '[packit] Propose downstream failed for release 0.19.0' + updated_at: '2021-01-07T12:55:21Z' + url: https://api.github.com/repos/packit/ogr/issues/520 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null - assignees: [] - author_association: MEMBER - body: 'we are setting this so we can use packit from ogr''s dist-git - - packit can''t know what''s the upstream name when running from distgit' - closed_at: '2020-04-16T06:54:10Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/382/comments - created_at: '2020-04-15T15:53:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/382/events - html_url: https://github.com/packit/ogr/pull/382 - id: 600404945 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/382/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzODQ1ODM3 - number: 382 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/382.diff - html_url: https://github.com/packit/ogr/pull/382 - patch_url: https://github.com/packit/ogr/pull/382.patch - url: https://api.github.com/repos/packit/ogr/pulls/382 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'packit.xml: set upstream_package_name' - updated_at: '2020-04-16T14:03:12Z' - url: https://api.github.com/repos/packit/ogr/issues/382 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - author_association: MEMBER + assignees: [] + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Add a method to set flags\ - \ on Pagure PRs\n* Annotate PagurePullRequest.head_commit's return type\n\ - * Remove test jobs from zuul gating jobs\n* packit.xml: set upstream_package_name\n\ - * added CentOS prod/stg instances to pagure service\n* use rpmautospec\n\ - * p.yaml: use new syntax for dist_git_branch\n* Add created/edited properties\ - \ to CommitFlag\n* print pagure API errors properly\n* revert change\n\ - * PR comment: use pagure pagination metadata\n* using pagination to\ - \ retrieve pagure issue list\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.11.2-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-04-16T09:53:01Z' + \ is the changelog I created:\n### Changes\n* [pre-commit.ci] pre-commit\ + \ autoupdate\n* [pre-commit.ci] pre-commit autoupdate\n* Regenerate\ + \ requre data\n* Add and implement GitProject.default_branch property\n\ + * [Makefile] fix remove-response-files-* targets\n* PagureService: Make\ + \ retries parametrizable\n* [pre-commit.ci] pre-commit autoupdate\n\ + * [.packit.yaml] Set copy_upstream_release_description to true\n\n\n\ + You can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.19.0-release` branch before merging this PR.\nI\ + \ didn't find any files where `__version__` is set." + closed_at: '2021-01-07T11:59:47Z' comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/386/comments - created_at: '2020-04-16T07:51:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/386/events - html_url: https://github.com/packit/ogr/pull/386 - id: 600823758 + comments_url: https://api.github.com/repos/packit/ogr/issues/518/comments + created_at: '2021-01-07T09:25:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/518/events + html_url: https://github.com/packit/ogr/pull/518 + id: 781163841 labels: - color: ededed default: false @@ -108431,24 +136742,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/386/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/518/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA0MTc5NDE0 - number: 386 + node_id: MDExOlB1bGxSZXF1ZXN0NTUwOTM0MTc5 + number: 518 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/386.diff - html_url: https://github.com/packit/ogr/pull/386 - patch_url: https://github.com/packit/ogr/pull/386.patch - url: https://api.github.com/repos/packit/ogr/pulls/386 + diff_url: https://github.com/packit/ogr/pull/518.diff + html_url: https://github.com/packit/ogr/pull/518 + patch_url: https://github.com/packit/ogr/pull/518.patch + url: https://api.github.com/repos/packit/ogr/pulls/518 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.11.2 release - updated_at: '2020-04-16T09:54:56Z' - url: https://api.github.com/repos/packit/ogr/issues/386 + title: 0.19.0 release + updated_at: '2021-01-07T12:04:13Z' + url: https://api.github.com/repos/packit/ogr/issues/518 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -108466,24 +136777,77 @@ requests.sessions: 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.668616 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:27 GMT + ETag: W/"5e9561be9a1c77990329e1354f645d49bb2e85de3d073c56294762737b3a67df" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7F89E:191AD83:6075DC3B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4731' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '269' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=3: + - metadata: + latency: 0.5778298377990723 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Flags on PRs are specific to Pagure.\r\n\r\nOther forges allow\ - \ setting flags/statuses only on commits and will\r\ndisplay the flags\ - \ for the PR head on the PR page, if any is set.\r\n\r\nDue to the above\ - \ this method is added only to PagurePullRequests, and we\r\nexpect\ - \ OGR library users to implement the \"show the flags of the last\r\n\ - commit for the PR\" behaviour for Pagure, in case they need it.\r\n\r\ - \nSigned-off-by: Hunor Csomort\xE1ni " - closed_at: '2020-04-16T07:44:45Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/381/comments - created_at: '2020-04-15T15:15:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/381/events - html_url: https://github.com/packit/ogr/pull/381 - id: 600376230 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-29T11:39:20Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/517/comments + created_at: '2020-12-28T16:36:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/517/events + html_url: https://github.com/packit/ogr/pull/517 + id: 775485168 labels: - color: 0e8a16 default: false @@ -108492,53 +136856,53 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/381/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/517/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzODIzNTY4 - number: 381 + node_id: MDExOlB1bGxSZXF1ZXN0NTQ2MTU3ODg5 + number: 517 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/381.diff - html_url: https://github.com/packit/ogr/pull/381 - patch_url: https://github.com/packit/ogr/pull/381.patch - url: https://api.github.com/repos/packit/ogr/pulls/381 + diff_url: https://github.com/packit/ogr/pull/517.diff + html_url: https://github.com/packit/ogr/pull/517 + patch_url: https://github.com/packit/ogr/pull/517.patch + url: https://api.github.com/repos/packit/ogr/pulls/517 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Set PR flags in Pagure - updated_at: '2020-04-16T07:46:43Z' - url: https://api.github.com/repos/packit/ogr/issues/381 + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2020-12-29T11:39:22Z' + url: https://api.github.com/repos/packit/ogr/issues/517 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/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 - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2020-04-16T07:14:48Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/380/comments - created_at: '2020-04-15T13:00:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/380/events - html_url: https://github.com/packit/ogr/pull/380 - id: 600279414 + closed_at: '2020-12-21T20:51:00Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/516/comments + created_at: '2020-12-21T16:46:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/516/events + html_url: https://github.com/packit/ogr/pull/516 + id: 772306910 labels: - color: 0e8a16 default: false @@ -108547,108 +136911,114 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/380/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/516/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzNzQ1MDM3 - number: 380 + node_id: MDExOlB1bGxSZXF1ZXN0NTQzNTk0NTEz + number: 516 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/380.diff - html_url: https://github.com/packit/ogr/pull/380 - patch_url: https://github.com/packit/ogr/pull/380.patch - url: https://api.github.com/repos/packit/ogr/pulls/380 + diff_url: https://github.com/packit/ogr/pull/516.diff + html_url: https://github.com/packit/ogr/pull/516 + patch_url: https://github.com/packit/ogr/pull/516.patch + url: https://api.github.com/repos/packit/ogr/pulls/516 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove test jobs from zuul gating jobs - updated_at: '2020-04-16T07:14:48Z' - url: https://api.github.com/repos/packit/ogr/issues/380 + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2020-12-21T20:51:04Z' + url: https://api.github.com/repos/packit/ogr/issues/516 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: added CentOS prod/stg instances to pagure service - closed_at: '2020-04-15T14:44:22Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/379/comments - created_at: '2020-04-15T08:59:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/379/events - html_url: https://github.com/packit/ogr/pull/379 - id: 600137338 + body: "All git forges support changing of a default branch of a repo/project.\r\ + \nAll newly created Github projects have had 'main' as a default branch\ + \ instead of 'master' since Oct 2020.\r\n\r\n- https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/changing-the-default-branch\r\ + \n- https://docs.gitlab.com/ee/user/project/repository/branches/#default-branch\r\ + \n- https://pagure.io/api/0/#projects-tab (List git branches)" + closed_at: '2020-12-18T12:01:05Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/515/comments + created_at: '2020-12-18T10:57:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/515/events + html_url: https://github.com/packit/ogr/pull/515 + id: 770791051 labels: - - color: 18e033 + - color: 0e8a16 default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/379/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/515/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzNjMwOTAx - number: 379 + node_id: MDExOlB1bGxSZXF1ZXN0NTQyNDY4ODM4 + number: 515 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/379.diff - html_url: https://github.com/packit/ogr/pull/379 - patch_url: https://github.com/packit/ogr/pull/379.patch - url: https://api.github.com/repos/packit/ogr/pulls/379 + diff_url: https://github.com/packit/ogr/pull/515.diff + html_url: https://github.com/packit/ogr/pull/515 + patch_url: https://github.com/packit/ogr/pull/515.patch + url: https://api.github.com/repos/packit/ogr/pulls/515 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: added CentOS prod/stg instances to pagure service - updated_at: '2020-04-15T14:44:22Z' - url: https://api.github.com/repos/packit/ogr/issues/379 + title: ' Add and implement GitProject.default_branch property' + updated_at: '2020-12-18T12:13:07Z' + url: https://api.github.com/repos/packit/ogr/issues/515 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: 'Add datetime to commit flags #344' - closed_at: '2020-04-14T16:09:59Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/374/comments - created_at: '2020-04-08T13:34:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/374/events - html_url: https://github.com/packit/ogr/pull/374 - id: 596583247 + author_association: MEMBER + body: "This way users of a PagureService object can control how failures\ + \ of API\r\ncalls are retried.\r\n\r\nSigned-off-by: Hunor Csomort\xE1\ + ni " + closed_at: '2020-12-15T09:03:00Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/514/comments + created_at: '2020-12-15T08:31:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/514/events + html_url: https://github.com/packit/ogr/pull/514 + id: 767320871 labels: - color: 0e8a16 default: false @@ -108657,128 +137027,108 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/374/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/514/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAwODUyNzQ0 - number: 374 + node_id: MDExOlB1bGxSZXF1ZXN0NTQwMDcyOTIw + number: 514 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/374.diff - html_url: https://github.com/packit/ogr/pull/374 - patch_url: https://github.com/packit/ogr/pull/374.patch - url: https://api.github.com/repos/packit/ogr/pulls/374 + diff_url: https://github.com/packit/ogr/pull/514.diff + html_url: https://github.com/packit/ogr/pull/514 + patch_url: https://github.com/packit/ogr/pull/514.patch + url: https://api.github.com/repos/packit/ogr/pulls/514 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add datetime to commitflags - updated_at: '2020-04-14T16:09:59Z' - url: https://api.github.com/repos/packit/ogr/issues/374 + title: 'PagureService: Make retries parametrizable' + updated_at: '2020-12-15T10:09:39Z' + url: https://api.github.com/repos/packit/ogr/issues/514 user: - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 - events_url: https://api.github.com/users/TomasJani/events{/privacy} - followers_url: https://api.github.com/users/TomasJani/followers - following_url: https://api.github.com/users/TomasJani/following{/other_user} - gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + 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/TomasJani - id: 21237576 - login: TomasJani - node_id: MDQ6VXNlcjIxMjM3NTc2 - organizations_url: https://api.github.com/users/TomasJani/orgs - received_events_url: https://api.github.com/users/TomasJani/received_events - repos_url: https://api.github.com/users/TomasJani/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + 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/TomasJani + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: PaureProject.get_files() not implemented. Maybe not possible because - pagure api doesnt provide any possiblity to get repository content. - closed_at: '2020-04-14T09:13:43Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-14T19:31:39Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/377/comments - created_at: '2020-04-14T07:44:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/377/events - html_url: https://github.com/packit/ogr/issues/377 - id: 599365195 + comments_url: https://api.github.com/repos/packit/ogr/issues/513/comments + created_at: '2020-12-14T16:39:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/513/events + html_url: https://github.com/packit/ogr/pull/513 + id: 766702566 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: cfd3d7 - default: true - description: This issue or pull request already exists - id: 1160311263 - name: duplicate - node_id: MDU6TGFiZWwxMTYwMzExMjYz - url: https://api.github.com/repos/packit/ogr/labels/duplicate - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: ff9990 + - color: 0e8a16 default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - labels_url: https://api.github.com/repos/packit/ogr/issues/377/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/513/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1OTkzNjUxOTU= - number: 377 + node_id: MDExOlB1bGxSZXF1ZXN0NTM5NjUyMzUy + number: 513 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/513.diff + html_url: https://github.com/packit/ogr/pull/513 + patch_url: https://github.com/packit/ogr/pull/513.patch + url: https://api.github.com/repos/packit/ogr/pulls/513 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: PaureProject.get_files() not implemented - updated_at: '2020-04-14T09:13:43Z' - url: https://api.github.com/repos/packit/ogr/issues/377 + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2020-12-14T19:31:42Z' + url: https://api.github.com/repos/packit/ogr/issues/513 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'the "errors" may not be set - - - Fixes #334' - closed_at: '2020-04-09T11:55:55Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/375/comments - created_at: '2020-04-09T10:00:07Z' - events_url: https://api.github.com/repos/packit/ogr/issues/375/events - html_url: https://github.com/packit/ogr/pull/375 - id: 597167333 + author_association: CONTRIBUTOR + body: Discussed in packit/packit-service#890 + closed_at: '2020-12-11T09:28:47Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/510/comments + created_at: '2020-12-10T11:04:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/510/events + html_url: https://github.com/packit/ogr/pull/510 + id: 761139932 labels: - color: 0e8a16 default: false @@ -108787,140 +137137,273 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/375/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/510/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAxMzI4NDE2 - number: 375 + node_id: MDExOlB1bGxSZXF1ZXN0NTM1ODUyMjY5 + number: 510 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/375.diff - html_url: https://github.com/packit/ogr/pull/375 - patch_url: https://github.com/packit/ogr/pull/375.patch - url: https://api.github.com/repos/packit/ogr/pulls/375 + diff_url: https://github.com/packit/ogr/pull/510.diff + html_url: https://github.com/packit/ogr/pull/510 + patch_url: https://github.com/packit/ogr/pull/510.patch + url: https://api.github.com/repos/packit/ogr/pulls/510 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: print pagure API errors properly - updated_at: '2020-04-09T11:58:14Z' - url: https://api.github.com/repos/packit/ogr/issues/375 + title: '[.packit.yaml] Set copy_upstream_release_description to true' + updated_at: '2020-12-11T09:28:47Z' + url: https://api.github.com/repos/packit/ogr/issues/510 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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} + assignee: null + assignees: [] + author_association: MEMBER + body: "Similar to how `get_tags()` return `GitTag` objects which also\ + \ store the commit sha, would be nice if `get_branches()` would return\ + \ `GitBranch` objects with a `head` attribute storing the commit sha\ + \ of the HEAD of the branch.\r\n\r\nMost probably related to #359." + closed_at: '2020-12-11T09:19:03Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/509/comments + created_at: '2020-12-09T14:16:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/509/events + html_url: https://github.com/packit/ogr/issues/509 + id: 760368277 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/509/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3NjAzNjgyNzc= + number: 509 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '`project.get_branches()` should also return the HEAD commits for + each branch' + updated_at: '2020-12-11T09:19:03Z' + url: https://api.github.com/repos/packit/ogr/issues/509 + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek - assignees: - - avatar_url: https://avatars0.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} + url: https://api.github.com/users/csomh + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `f34` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can retrigger the update by adding a comment (`/packit propose-update`) + into this issue. + + ' + closed_at: '2020-12-11T09:14:01Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/511/comments + created_at: '2020-12-10T11:17:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/511/events + html_url: https://github.com/packit/ogr/issues/511 + id: 761149749 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/511/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3NjExNDk3NDk= + number: 511 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.18.1' + updated_at: '2020-12-11T09:14:01Z' + url: https://api.github.com/repos/packit/ogr/issues/511 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add str for GitProject\ + \ (used in mocking tests)\n* Fix str representation of GitlabCommitFlag\n\ + * Add __str__ for CommitComment\n* Add an abstract class with binding\ + \ of repr to str\n* Trigger scratch koji build for fedora-devel on PRs\n\ + * [ci.fmf] there's no git-source/ in 'new' Testing Farm\n* Do not pass\ + \ username to the PagureProject if not fork\n* Fix parsing of ssh urls\ + \ and default to https protocol\n* Update parsing tests\n* Add more\ + \ tests to parsing\n* [pre-commit.ci] pre-commit autoupdate\n* Turn\ + \ off requre in pre-commit CI and move rebase to pre-push\n* Do not\ + \ skip bug and security issues by stalebot\n\n\nYou can change it by\ + \ editing `CHANGELOG.md` in the root of this repository and pushing\ + \ to `0.18.1-release` branch before merging this PR.\nI didn't find\ + \ any files where `__version__` is set." + closed_at: '2020-12-10T11:11:16Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/508/comments + created_at: '2020-12-09T13:27:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/508/events + html_url: https://github.com/packit/ogr/pull/508 + id: 760329639 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/508/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTM1MTc5NTEy + number: 508 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/508.diff + html_url: https://github.com/packit/ogr/pull/508 + patch_url: https://github.com/packit/ogr/pull/508.patch + url: https://api.github.com/repos/packit/ogr/pulls/508 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.18.1 release + updated_at: '2020-12-10T11:15:28Z' + url: https://api.github.com/repos/packit/ogr/issues/508 + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek - author_association: MEMBER - body: "edited by @lachmanfrantisek :\r\n\r\nTODO:\r\n- Add tests for https://github.com/packit-service/ogr/pull/333\ - \ (better pagure error messages)\r\n - e.g. wrong URL, wrong token,\ - \ not-found object,..." - closed_at: '2020-04-09T11:55:54Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/334/comments - created_at: '2020-02-19T13:50:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/334/events - html_url: https://github.com/packit/ogr/issues/334 - id: 567583973 + url: https://api.github.com/users/usercont-release-bot + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-09T13:27:43Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/507/comments + created_at: '2020-12-09T13:27:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/507/events + html_url: https://github.com/packit/ogr/issues/507 + id: 760329156 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9d0c4 + - color: ededed default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/334/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/507/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1Njc1ODM5NzM= - number: 334 + node_id: MDU6SXNzdWU3NjAzMjkxNTY= + number: 507 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve pagure unit tests - updated_at: '2020-04-09T11:55:54Z' - url: https://api.github.com/repos/packit/ogr/issues/334 + title: New patch release + updated_at: '2020-12-09T13:27:43Z' + url: https://api.github.com/repos/packit/ogr/issues/507 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -108941,34 +137424,48 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #334' - closed_at: '2020-04-09T09:43:45Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/373/comments - created_at: '2020-04-07T09:08:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/373/events - html_url: https://github.com/packit/ogr/pull/373 - id: 595713934 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/373/labels{/name} + author_association: CONTRIBUTOR + body: "```\r\n2020-12-09 12:32:08.652548 | container | /usr/local/lib/python3.8/site-packages/ogr/abstract.py:47:\ + \ in __repr__\r\n2020-12-09 12:32:08.652556 | container | return\ + \ f\"<{str(self)}>\"\r\n2020-12-09 12:32:08.652565 | container | \ + \ self = <[RecursionError('maximum recursion depth exceeded')\ + \ raised in repr()] GitProject object at 0x7f8380a9ca90>\r\n2020-12-09\ + \ 12:32:08.652574 | container | /usr/local/lib/python3.8/site-packages/ogr/abstract.py:47:\ + \ in __repr__\r\n2020-12-09 12:32:08.652582 | container | return\ + \ f\"<{str(self)}>\"\r\n2020-12-09 12:32:08.652591 | container | E \ + \ RecursionError: maximum recursion depth exceeded\r\n2020-12-09 12:32:08.652599\ + \ | container | self = <[RecursionError('maximum recursion\ + \ depth exceeded') raised in repr()] GitProject object at 0x7f8380a9ca90>\r\ + \n2020-12-09 12:32:08.652608 | container | !!! Recursion detected (same\ + \ locals & position)\r\n```\r\n\r\nhttps://softwarefactory-project.io/logs/70/970/b8e3aa6794ccc0999106539acb1829d5ea08d03b/check/reverse-dep-packit-service-tests/bc1e055/job-output.txt.gz" + closed_at: '2020-12-09T13:21:57Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/506/comments + created_at: '2020-12-09T13:19:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/506/events + html_url: https://github.com/packit/ogr/issues/506 + id: 760323336 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/506/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAwMTM4Nzgx - number: 373 + node_id: MDU6SXNzdWU3NjAzMjMzMzY= + number: 506 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/373.diff - html_url: https://github.com/packit/ogr/pull/373 - patch_url: https://github.com/packit/ogr/pull/373.patch - url: https://api.github.com/repos/packit/ogr/pulls/373 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'pagure: errors may be not set, add tests' - updated_at: '2020-04-09T09:43:45Z' - url: https://api.github.com/repos/packit/ogr/issues/373 + title: python doesn't like the new __repr__ + updated_at: '2020-12-09T13:21:57Z' + url: https://api.github.com/repos/packit/ogr/issues/506 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -108986,167 +137483,34 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=4: - - metadata: - latency: 0.6199748516082764 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - - active_lock_reason: null - assignee: null - assignees: [] - author_association: FIRST_TIMER - body: "Fixes #339 \r\nPagure's API allows [pagination with 100 issues\ - \ per page](https://pagure.io/api/0/#issues), this code iterates though\ - \ issues pages until reaching either max issues (default 1000) or last\ - \ issue.\r\n" - closed_at: '2020-04-07T12:06:30Z' - comments: 17 - comments_url: https://api.github.com/repos/packit/ogr/issues/361/comments - created_at: '2020-03-23T14:55:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/361/events - html_url: https://github.com/packit/ogr/pull/361 - id: 586272328 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/361/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzkyNDM2NTcw - number: 361 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/361.diff - html_url: https://github.com/packit/ogr/pull/361 - patch_url: https://github.com/packit/ogr/pull/361.patch - url: https://api.github.com/repos/packit/ogr/pulls/361 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Using pagination to retrieve pagure's full issue list - updated_at: '2020-04-07T12:06:30Z' - url: https://api.github.com/repos/packit/ogr/issues/361 - user: - avatar_url: https://avatars3.githubusercontent.com/u/28443421?v=4 - events_url: https://api.github.com/users/AdarLavi/events{/privacy} - followers_url: https://api.github.com/users/AdarLavi/followers - following_url: https://api.github.com/users/AdarLavi/following{/other_user} - gists_url: https://api.github.com/users/AdarLavi/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/AdarLavi - id: 28443421 - login: AdarLavi - node_id: MDQ6VXNlcjI4NDQzNDIx - organizations_url: https://api.github.com/users/AdarLavi/orgs - received_events_url: https://api.github.com/users/AdarLavi/received_events - repos_url: https://api.github.com/users/AdarLavi/repos - site_admin: false - starred_url: https://api.github.com/users/AdarLavi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/AdarLavi/subscriptions - type: User - url: https://api.github.com/users/AdarLavi - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Currently using a Pagure service the get_issue_list method returns\ - \ only the last 20 issues of a project. This is because Pagure paginate\ - \ the results, I have not looked at GitHub and GitLab but I guess it\ - \ works the same.\r\n\r\nIdeally `get_issue_list` should return a list\ - \ of all the issues for a project and the pagination should be transparent\ - \ to the user." - closed_at: '2020-04-07T12:06:30Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/339/comments - created_at: '2020-02-21T13:47:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/339/events - html_url: https://github.com/packit/ogr/issues/339 - id: 568965084 + body: "* [ ] Project\r\n* [ ] Service (**don't** include secrets)\r\n\ + * [ ] Release\r\n* [ ] PR\r\n* [ ] Issue" + closed_at: '2020-12-09T11:20:42Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/365/comments + created_at: '2020-03-25T13:23:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/365/events + html_url: https://github.com/packit/ogr/issues/365 + id: 587692896 labels: - - color: 1d76db + - color: be8fd8 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: a2eeef default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -109161,182 +137525,219 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/339/labels{/name} + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/365/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1Njg5NjUwODQ= - number: 339 + node_id: MDU6SXNzdWU1ODc2OTI4OTY= + number: 365 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: support pagination for get_issue_list - updated_at: '2020-04-07T12:06:30Z' - url: https://api.github.com/repos/packit/ogr/issues/339 + title: add __repr__ to classes + updated_at: '2020-12-09T11:20:42Z' + url: https://api.github.com/repos/packit/ogr/issues/365 user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 - events_url: https://api.github.com/users/cverna/events{/privacy} - followers_url: https://api.github.com/users/cverna/followers - following_url: https://api.github.com/users/cverna/following{/other_user} - gists_url: https://api.github.com/users/cverna/gists{/gist_id} + 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/cverna - id: 7237866 - login: cverna - node_id: MDQ6VXNlcjcyMzc4NjY= - organizations_url: https://api.github.com/users/cverna/orgs - received_events_url: https://api.github.com/users/cverna/received_events - repos_url: https://api.github.com/users/cverna/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/cverna/subscriptions + 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/cverna + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "similar to https://github.com/packit-service/requre/issues/29\r\ - \nplease add reverse dependency testing what will check that change\ - \ will not break ``packit`` and in case it is broken, will raise that\ - \ you have to create issue to packit to regenerate response files, or\ - \ that it found bug in ogr. " - closed_at: '2020-04-07T08:41:19Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/237/comments - created_at: '2019-10-09T05:48:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/237/events - html_url: https://github.com/packit/ogr/issues/237 - id: 504429863 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/237/labels{/name} + body: "This is partly a dog-fooding of packit.\r\n\r\nSigned-off-by: Frantisek\ + \ Lachman " + closed_at: '2020-12-04T15:49:58Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/502/comments + created_at: '2020-12-04T08:04:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/502/events + html_url: https://github.com/packit/ogr/pull/502 + id: 756894507 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/502/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDQ0Mjk4NjM= - number: 237 + node_id: MDExOlB1bGxSZXF1ZXN0NTMyMzYzOTMx + number: 502 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/502.diff + html_url: https://github.com/packit/ogr/pull/502 + patch_url: https://github.com/packit/ogr/pull/502.patch + url: https://api.github.com/repos/packit/ogr/pulls/502 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add reverse dependency testing to packit package - updated_at: '2020-04-07T08:41:19Z' - url: https://api.github.com/repos/packit/ogr/issues/237 + title: Trigger scratch koji build for fedora-devel on PRs + updated_at: '2020-12-07T07:16:31Z' + url: https://api.github.com/repos/packit/ogr/issues/502 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f30` | `The distgit repository /tmp/packit-dist-git8t1ct16f is dirty.This - is not supported.` | - - | `f31` | `The distgit repository /tmp/packit-dist-git8t1ct16f is dirty.This - is not supported.` | - - | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.1.tar.gz. - Reason: ''Not Found''. ` | - - | `master` | `The distgit repository /tmp/packit-dist-git8t1ct16f is - dirty.This is not supported.` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-04-01T13:27:44Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/372/comments - created_at: '2020-04-01T13:14:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/372/events - html_url: https://github.com/packit/ogr/issues/372 - id: 591906915 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/372/labels{/name} + author_association: MEMBER + body: '' + closed_at: '2020-12-03T17:40:16Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/501/comments + created_at: '2020-12-03T14:29:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/501/events + html_url: https://github.com/packit/ogr/pull/501 + id: 756245027 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/501/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1OTE5MDY5MTU= - number: 372 + node_id: MDExOlB1bGxSZXF1ZXN0NTMxODIwNTc1 + number: 501 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/501.diff + html_url: https://github.com/packit/ogr/pull/501 + patch_url: https://github.com/packit/ogr/pull/501.patch + url: https://api.github.com/repos/packit/ogr/pulls/501 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.11.1' - updated_at: '2020-04-01T13:27:44Z' - url: https://api.github.com/repos/packit/ogr/issues/372 + title: '[ci.fmf] there''s no git-source/ in ''new'' Testing Farm' + updated_at: '2020-12-04T08:50:31Z' + url: https://api.github.com/repos/packit/ogr/issues/501 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + 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/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + 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 - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* unnecessry pip/rpm install\ - \ removed\n* add last_commit property to Pagure project\n* github: raise\ - \ when we didn't obtain install id\n* whitespace: put space b/w words\n\ - * invoke tests directly with pytest\n* gitlab,get_forks: p-gitlab can't\ - \ process server's response\n* raise OperationNotSupported when gitlab\ - \ doesn't support releases\n* zuul: don't install twine, we don't need\ - \ it in CI\n* gitlab.members.all() turned into dict\n* github.repo.get_issues\ - \ wants GithubLabel, not str\n* split test_issue_permissions into two\n\ - * Fix and refactor packit rev-dep tests\n* Fix the descriptions in playbooks\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.11.1-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2020-04-01T13:11:44Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/371/comments - created_at: '2020-04-01T08:33:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/371/events - html_url: https://github.com/packit/ogr/pull/371 - id: 591729812 + author_association: CONTRIBUTOR + body: "```\r\nIn [1]: from ogr.parsing import parse_git_repo \r\n\r\n\ + In [2]: parse_git_repo(\"git@gitlab.com:packit-service/src/libvirt.git\"\ + ) \r\n\r\nIn [3]: :( \r\n ...: \r\n```" + closed_at: '2020-12-01T11:46:18Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/496/comments + created_at: '2020-11-26T14:01:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/496/events + html_url: https://github.com/packit/ogr/issues/496 + id: 751614853 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/496/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3NTE2MTQ4NTM= + number: 496 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: ogr can't parse a subnamespace in gitlab's URL + updated_at: '2020-12-03T12:08:10Z' + url: https://api.github.com/repos/packit/ogr/issues/496 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-01T08:33:48Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/500/comments + created_at: '2020-11-30T16:31:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/500/events + html_url: https://github.com/packit/ogr/pull/500 + id: 753623648 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -109344,172 +137745,179 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/371/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/500/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzk2ODQxOTA3 - number: 371 + node_id: MDExOlB1bGxSZXF1ZXN0NTI5NjY1Njgx + number: 500 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/371.diff - html_url: https://github.com/packit/ogr/pull/371 - patch_url: https://github.com/packit/ogr/pull/371.patch - url: https://api.github.com/repos/packit/ogr/pulls/371 + diff_url: https://github.com/packit/ogr/pull/500.diff + html_url: https://github.com/packit/ogr/pull/500 + patch_url: https://github.com/packit/ogr/pull/500.patch + url: https://api.github.com/repos/packit/ogr/pulls/500 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.11.1 release - updated_at: '2020-04-01T13:15:17Z' - url: https://api.github.com/repos/packit/ogr/issues/371 + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2020-12-01T08:33:52Z' + url: https://api.github.com/repos/packit/ogr/issues/500 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-04-01T08:33:46Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/370/comments - created_at: '2020-04-01T08:31:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/370/events - html_url: https://github.com/packit/ogr/issues/370 - id: 591728360 + body: "Turn off requre clean up in pre-commit CI since it times out.\r\ + \n\r\nSigned-off-by: Matej Focko \r\n\r\nnot sure\ + \ how much it changes running locally, I run manually and had to use\ + \ `pre-commit run --hook-stage manual --all`\r\n\r\n- [x] Check if is\ + \ not skipped in zuul; gotta add `--hook-stage manual` to zuul too\r\ + \n- [x] What's wrong with the rebase??? (no network)\r\n There\ + \ are no remotes in pre-commit CI?" + closed_at: '2020-11-30T13:45:59Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/499/comments + created_at: '2020-11-27T10:31:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/499/events + html_url: https://github.com/packit/ogr/pull/499 + id: 752149999 labels: - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 7cf4be default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/370/labels{/name} + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/499/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1OTE3MjgzNjA= - number: 370 + node_id: MDExOlB1bGxSZXF1ZXN0NTI4NTI5NDY4 + number: 499 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/499.diff + html_url: https://github.com/packit/ogr/pull/499 + patch_url: https://github.com/packit/ogr/pull/499.patch + url: https://api.github.com/repos/packit/ogr/pulls/499 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New patch release - updated_at: '2020-04-01T08:33:46Z' - url: https://api.github.com/repos/packit/ogr/issues/370 + title: Turn off requre in pre-commit CI + updated_at: '2020-11-30T14:31:49Z' + url: https://api.github.com/repos/packit/ogr/issues/499 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-04-01T08:28:05Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/366/comments - created_at: '2020-03-26T14:07:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/366/events - html_url: https://github.com/packit/ogr/pull/366 - id: 588448629 + body: "Introduced in #452 \r\n\r\nThere's a missing response for GitLab\ + \ (F31 version of python-gitlab) tests" + closed_at: '2020-11-30T08:37:14Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/472/comments + created_at: '2020-09-24T19:38:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/472/events + html_url: https://github.com/packit/ogr/issues/472 + id: 708425597 labels: - - color: 18e033 + - color: d93f0b default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/366/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/472/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzk0MTkyNzMy - number: 366 + node_id: MDU6SXNzdWU3MDg0MjU1OTc= + number: 472 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/366.diff - html_url: https://github.com/packit/ogr/pull/366 - patch_url: https://github.com/packit/ogr/pull/366.patch - url: https://api.github.com/repos/packit/ogr/pulls/366 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: added function to update mapping - updated_at: '2020-04-01T08:28:05Z' - url: https://api.github.com/repos/packit/ogr/issues/366 + title: Missing response for F31 + updated_at: '2020-11-30T08:37:14Z' + url: https://api.github.com/repos/packit/ogr/issues/472 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-03-27T16:27:42Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/367/comments - created_at: '2020-03-26T14:08:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/367/events - html_url: https://github.com/packit/ogr/pull/367 - id: 588448982 + body: 'Signed-off-by: Frantisek Lachman ' + closed_at: '2020-11-12T16:10:20Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/495/comments + created_at: '2020-11-12T14:51:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/495/events + html_url: https://github.com/packit/ogr/pull/495 + id: 741664481 labels: - color: 0e8a16 default: false @@ -109518,122 +137926,130 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/367/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/495/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzk0MTkzMDE1 - number: 367 + node_id: MDExOlB1bGxSZXF1ZXN0NTE5OTM3ODcy + number: 495 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/367.diff - html_url: https://github.com/packit/ogr/pull/367 - patch_url: https://github.com/packit/ogr/pull/367.patch - url: https://api.github.com/repos/packit/ogr/pulls/367 + diff_url: https://github.com/packit/ogr/pull/495.diff + html_url: https://github.com/packit/ogr/pull/495 + patch_url: https://github.com/packit/ogr/pull/495.patch + url: https://api.github.com/repos/packit/ogr/pulls/495 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add last_commit property to Pagure project - updated_at: '2020-03-27T16:27:42Z' - url: https://api.github.com/repos/packit/ogr/issues/367 + title: Do not skip bug and security issues by stalebot + updated_at: '2020-11-12T17:17:56Z' + url: https://api.github.com/repos/packit/ogr/issues/495 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "~~Blocked on #357~~\r\n\r\nReplaces an error like this:\r\n```\r\ - \ngithub.GithubException.GithubException: 401 {\"message\":\"'Issuer'\ - \ claim ('iss') must be an Integer\",\"documentation_url\":\"https://developer.github.com/v3\"\ - }\r\n```" - closed_at: '2020-03-18T13:13:11Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/352/comments - created_at: '2020-03-16T10:19:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/352/events - html_url: https://github.com/packit/ogr/pull/352 - id: 582171280 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/352/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-29T10:19:07Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/494/comments + created_at: '2020-10-29T09:59:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/494/events + html_url: https://github.com/packit/ogr/issues/494 + id: 732170676 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/494/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg5MTMwMDA2 - number: 352 + node_id: MDU6SXNzdWU3MzIxNzA2NzY= + number: 494 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/352.diff - html_url: https://github.com/packit/ogr/pull/352 - patch_url: https://github.com/packit/ogr/pull/352.patch - url: https://api.github.com/repos/packit/ogr/pulls/352 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github: raise when we didn''t obtain install id' - updated_at: '2020-03-18T14:55:12Z' - url: https://api.github.com/repos/packit/ogr/issues/352 + title: '[packit] Propose update failed for release 0.18.0' + updated_at: '2020-10-29T10:19:07Z' + url: https://api.github.com/repos/packit/ogr/issues/494 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #353 - - - Also fixes some test failures, let''s see...' - closed_at: '2020-03-18T12:37:13Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/357/comments - created_at: '2020-03-18T08:37:16Z' - events_url: https://api.github.com/repos/packit/ogr/issues/357/events - html_url: https://github.com/packit/ogr/pull/357 - id: 583559616 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Fix anonymous GitlabService\n\ + * Adding delete project functionality\n* Update pre-commit configuration\ + \ for prettier\n* Add assignees argument while creating issue\n\n\n\ + You can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.18.0-release` branch before merging this PR.\nI\ + \ didn't find any files where `__version__` is set." + closed_at: '2020-10-29T09:54:07Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/493/comments + created_at: '2020-10-27T12:42:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/493/events + html_url: https://github.com/packit/ogr/pull/493 + id: 730416075 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -109641,163 +138057,121 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/357/labels{/name} + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/493/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzkwMjk1MDIx - number: 357 + node_id: MDExOlB1bGxSZXF1ZXN0NTEwNzI0Mjkx + number: 493 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/357.diff - html_url: https://github.com/packit/ogr/pull/357 - patch_url: https://github.com/packit/ogr/pull/357.patch - url: https://api.github.com/repos/packit/ogr/pulls/357 + diff_url: https://github.com/packit/ogr/pull/493.diff + html_url: https://github.com/packit/ogr/pull/493 + patch_url: https://github.com/packit/ogr/pull/493.patch + url: https://api.github.com/repos/packit/ogr/pulls/493 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: invoke tests directly with pytest - updated_at: '2020-03-18T14:27:38Z' - url: https://api.github.com/repos/packit/ogr/issues/357 + title: 0.18.0 release + updated_at: '2020-10-29T09:57:53Z' + url: https://api.github.com/repos/packit/ogr/issues/493 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "```\r\n$ tox\r\nGLOB sdist-make: /home/tt/g/user-cont/ogr/setup.py\ - \ \r\npy36 inst-nodeps: /home/tt/g/user-cont/ogr/.tox/.tmp/package/1/ogr-0.11.1.dev4+g022e9df.zip\r\ - \nWARNING: Discarding $PYTHONPATH from environment, to override specify\ - \ PYTHONPATH in 'passenv' in your configuration.\r\npy36 installed:\ - \ amqp==2.5.0,-e git+git@github.com:TomasTomecek/ansible-bender.git@e3ef97fb7cdb4e19bb8f21266c09d6fdc5e76392#egg=ansible_bender,aspy.yaml==1.2.0,attrs==19.3.0,\r\ - \nbeanbag==1.9.2,billiard==3.6.0.0,celery==4.3.0,certifi==2019.11.28,cffi==1.14.0,cfgv==1.5.0,chardet==3.0.4,click==7.1.1,colin-redhat==0.0.2,conu==0.6.0,coverage==5.0.3,crypt\r\ - \nography==2.8,Deprecated==1.2.5,dnspython==1.16.0,dpath==1.4.2,eventlet==0.25.0,flexmock==0.10.4,frambo==0.0.3,generator==0.1.dev34+g6448aff,gevent==1.4.0,gitchangelog==3.0.4\r\ - \n,gitdb==4.0.2,GitPython==3.1.0,identify==1.4.0,idna==2.9,importlib-metadata==0.8,jsl==0.2.4,kobo==0.7.0,koji==1.16.0,kombu==4.6.3,kubernetes==8.0.2,monotonic==1.5,more-itert\r\ - \nools==8.2.0,nodeenv==1.3.3,numpy==1.17.2,-e git+git@github.com:TomasTomecek/ogr@022e9dff7fd02e2f4d34ca836ac298127d7f5694#egg=ogr,packaging==20.3,-e\ - \ git+git@github.com:TomasT\r\nomecek/packit.git@25a1ca9a2d746b493ee10aced1ce477cfd529653#egg=packitos,persistentdict==0.1.0,pluggy==0.13.1,pre-commit==1.14.4,py==1.8.1,pycparser==2.20,PyGithub==1.46,PyJW\r\ - \nT==1.7.1,pyparsing==2.4.6,pystache==0.5.4,pytest==5.4.1,pytest-cov==2.8.1,python-gitlab==2.1.2,PyYAML==5.3,raven==6.10.0,redis==3.2.1,requests==2.23.0,-e\ - \ git+git@github.com:\r\nTomasTomecek/requre.git@f5410b0095d31e2b0f27b92d7ca24e365b472d33#egg=requre,rlsbot-test==1.0.0,rpm-py-installer==0.8.0,-e\ - \ git+git@github.com:TomasTomecek/generator.git@65a43\r\n07bcd0d8f45b3c7ed8b757be5d44601a62d#egg=sandcastle,sentry-sdk==0.12.2,show-me==0.1.dev25+g72bc7ba,six==1.14.0,smmap==3.0.1,tool==0.1.0.dev0,ucho==0.1.0,-e\ - \ git+git@github.com\r\n:TomasTomecek/upsint.git@972ba36e63c8b44eedf291ac1d30f87954258ef6#egg=upsint,urllib3==1.25.8,vine==1.3.0,wcwidth==0.1.8,wrapt==1.11.1,zipp==0.3.3\r\ - \npy36 run-test-pre: PYTHONHASHSEED='2399286198'\r\npy36 run-test: commands[0]\ - \ | pytest --color=yes --verbose --showlocals --cov=ogr --cov-report=term-missing\r\ - \n============================================================================\ - \ test session starts ============================================================================\r\ - \nplatform linux -- Python 3.6.10, pytest-5.4.1, py-1.8.1, pluggy-0.13.1\ - \ -- /home/tt/g/user-cont/ogr/.tox/py36/bin/python\r\ncachedir: .tox/py36/.pytest_cache\r\ - \nrootdir: /home/tt/g/user-cont/ogr\r\nplugins: cov-2.8.1\r\ncollected\ - \ 255 items \ - \ \ - \ \r\n\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_github\ - \ FAILED \ - \ [ 0%]\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_gitlab\ - \ FAILED \ - \ [ 0%]\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_pagure\ - \ FAILED \ - \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments\ - \ FAILED \ - \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_author\ - \ FAILED \ - \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_author_regex\ - \ FAILED \ - \ [ 2%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_regex\ - \ FAILED \ - \ [ 2%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_regex_reversed\ - \ FAILED \ - \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_reversed\ - \ FAILED \ - \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_updates\ - \ FAILED \ - \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_pr_comments\ - \ FAILED \ - \ [ 4%]\r\ntests/integration/test_github.py::Comments::test_pr_comments_author\ - \ FAILED \ - \ [ 4%]\r\ntests/integration/test_github.py::Comments::test_pr_comments_author_regex\ - \ FAILED \ - \ [ 5%]\r\n```\r\n\r\n```\r\nE \ - \ requre.exceptions.ItemNotInStorage: Keys not in storage:/home/tt/g/user-cont/ogr/tests/integration/test_data/test_github/tests.integration.test_github.Ge\r\ - \nnericCommands.test_description.yaml Matched: ['SKIP tests.integration.test_github',\ - \ 'SKIP ogr.services.github.project', 'SKIP github.MainClass', 'SKIP\ - \ github.Requester', 'SK\r\nIP requests.sessions', 'SKIP requre.objects'],\ - \ Missing: ['requests.sessions', 'send']\r\n```\r\n\r\nHappens even\ - \ when I use older pygithub." - closed_at: '2020-03-18T12:37:12Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/353/comments - created_at: '2020-03-16T11:20:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/353/events - html_url: https://github.com/packit/ogr/issues/353 - id: 582211662 + body: "- Allows no-auth read-only access to GitLab\r\n - authenticates\ + \ only if provided token\r\n\r\nFixes #481\r\n\r\nSigned-off-by: Matej\ + \ Focko " + closed_at: '2020-10-21T12:44:59Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/488/comments + created_at: '2020-10-20T09:42:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/488/events + html_url: https://github.com/packit/ogr/pull/488 + id: 725402916 labels: - - color: f9d0c4 + - color: 0e8a16 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/353/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/488/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODIyMTE2NjI= - number: 353 + node_id: MDExOlB1bGxSZXF1ZXN0NTA2NjQxMTc1 + number: 488 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/488.diff + html_url: https://github.com/packit/ogr/pull/488 + patch_url: https://github.com/packit/ogr/pull/488.patch + url: https://api.github.com/repos/packit/ogr/pulls/488 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: most of the tests are failing on master now - updated_at: '2020-03-18T12:37:12Z' - url: https://api.github.com/repos/packit/ogr/issues/353 + title: Fix anonymous GitlabService + updated_at: '2020-10-21T15:42:48Z' + url: https://api.github.com/repos/packit/ogr/issues/488 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: 'I was wondering if OGR does support interacting with enterprise - versions of Gitlab, when provided with an private token. I think Gitlab - enterprise has the same set of API''s as the public version, so is there - a way to like provide the service url like for example - https://gitlab.cee.redhat.com - and it would then try accessing repo''s from that instead of publicly - hosted Gitlab. ' - closed_at: '2020-03-17T14:46:29Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/354/comments - created_at: '2020-03-16T16:10:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/354/events - html_url: https://github.com/packit/ogr/issues/354 - id: 582420398 + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "ogr allows creating GitHub service instances without any authentication\ + \ (provides read-only access)\r\n\r\nBased on testing for #479 it's\ + \ been found out that we cannot create GitLab instance without providing\ + \ token (as we can with GitHub) *even though* it is supported by `python-gitlab`\ + \ (https://python-gitlab.readthedocs.io/en/stable/api-usage.html#gitlab-gitlab-class)" + closed_at: '2020-10-21T12:44:59Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/481/comments + created_at: '2020-10-14T10:27:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/481/events + html_url: https://github.com/packit/ogr/issues/481 + id: 721337045 labels: - color: d93f0b default: false @@ -109806,48 +138180,62 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - labels_url: https://api.github.com/repos/packit/ogr/issues/354/labels{/name} + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/481/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODI0MjAzOTg= - number: 354 + node_id: MDU6SXNzdWU3MjEzMzcwNDU= + number: 481 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Supporting enterprise versions of Gitlab - updated_at: '2020-03-17T14:58:14Z' - url: https://api.github.com/repos/packit/ogr/issues/354 + title: GitLab service cannot be created without providing auth + updated_at: '2020-10-21T12:44:59Z' + url: https://api.github.com/repos/packit/ogr/issues/481 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 - events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} - followers_url: https://api.github.com/users/saisankargochhayat/followers - following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} - gists_url: https://api.github.com/users/saisankargochhayat/gists{/gist_id} + 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/saisankargochhayat - id: 9396452 - login: saisankargochhayat - node_id: MDQ6VXNlcjkzOTY0NTI= - organizations_url: https://api.github.com/users/saisankargochhayat/orgs - received_events_url: https://api.github.com/users/saisankargochhayat/received_events - repos_url: https://api.github.com/users/saisankargochhayat/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions + 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/saisankargochhayat + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Related #350 ' - closed_at: '2020-03-12T13:26:35Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/351/comments - created_at: '2020-03-11T08:26:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/351/events - html_url: https://github.com/packit/ogr/pull/351 - id: 579088221 + author_association: CONTRIBUTOR + body: "fixes #215 \r\n\r\n- [x] Added tests" + closed_at: '2020-10-21T11:18:40Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/489/comments + created_at: '2020-10-21T03:36:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/489/events + html_url: https://github.com/packit/ogr/pull/489 + id: 726103440 labels: - color: 0e8a16 default: false @@ -109856,144 +138244,281 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/351/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/489/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg2NTQ3NzEz - number: 351 + node_id: MDExOlB1bGxSZXF1ZXN0NTA3MjI1MTM2 + number: 489 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/351.diff - html_url: https://github.com/packit/ogr/pull/351 - patch_url: https://github.com/packit/ogr/pull/351.patch - url: https://api.github.com/repos/packit/ogr/pulls/351 + diff_url: https://github.com/packit/ogr/pull/489.diff + html_url: https://github.com/packit/ogr/pull/489 + patch_url: https://github.com/packit/ogr/pull/489.patch + url: https://api.github.com/repos/packit/ogr/pulls/489 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix and refactor packit rev-dep tests - updated_at: '2020-03-12T13:26:35Z' - url: https://api.github.com/repos/packit/ogr/issues/351 + title: Adding delete project functionality + updated_at: '2020-10-21T11:18:40Z' + url: https://api.github.com/repos/packit/ogr/issues/489 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "The [Fedora dist-git CI fails](https://fedora.softwarefactory-project.io/zuul/build/755e891747f145b8810a8933c37fef3a/logs)\ - \ with that error.\r\nI'm not sure where's the correct place to fix\ - \ it, but I'm creating this so that we don't forget about it since I\ - \ need to merge [that PR](https://src.fedoraproject.org/rpms/python-ogr/pull-request/159)." - closed_at: '2020-03-12T12:24:37Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/323/comments - created_at: '2020-02-05T12:03:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/323/events - html_url: https://github.com/packit/ogr/issues/323 - id: 560327796 + body: "Add method to project classes to delete a project.\r\n\r\nAC:\r\ + \n- [ ] In each implementation, add the `delete` method to project class\ + \ and implement it.\r\n - If possible/supported. (Document that if\ + \ it is not possible and raise an exception with a good message.)\r\n\ + - [ ] Add tests for that.\r\n\r\nLinks:\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ + \n- https://pagure.io/api/0/ (not found the possible API call for that\ + \ on the first look)" + closed_at: '2020-10-21T11:18:39Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/215/comments + created_at: '2019-09-20T05:36:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/215/events + html_url: https://github.com/packit/ogr/issues/215 + id: 496154927 labels: - - color: f9d0c4 + - color: '000000' default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/323/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/215/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NjAzMjc3OTY= - number: 323 + node_id: MDU6SXNzdWU0OTYxNTQ5Mjc= + number: 215 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'ModuleNotFoundError: No module named ''flexmock''' - updated_at: '2020-03-12T12:24:37Z' - url: https://api.github.com/repos/packit/ogr/issues/323 + title: Implement GitProject.delete() + updated_at: '2020-10-21T11:18:40Z' + url: https://api.github.com/repos/packit/ogr/issues/215 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Related to https://github.com/prettier/prettier/issues/9459\r\n\ + \r\nSigned-off-by: Matej Focko " + closed_at: '2020-10-21T10:11:54Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/491/comments + created_at: '2020-10-21T09:50:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/491/events + html_url: https://github.com/packit/ogr/pull/491 + id: 726321387 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/491/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTA3NDA0NDY3 + number: 491 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/491.diff + html_url: https://github.com/packit/ogr/pull/491 + patch_url: https://github.com/packit/ogr/pull/491.patch + url: https://api.github.com/repos/packit/ogr/pulls/491 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Update pre-commit configuration for prettier + updated_at: '2020-10-21T10:15:27Z' + url: https://api.github.com/repos/packit/ogr/issues/491 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 - active_lock_reason: null assignee: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/sakalosj + url: https://api.github.com/users/shreyaspapi assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/sakalosj - author_association: MEMBER - body: pagure provides more detailed error info stored under 'errors' key, - which is not currently not used in output - closed_at: '2020-03-12T12:16:11Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/331/comments - created_at: '2020-02-18T14:15:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/331/events - html_url: https://github.com/packit/ogr/issues/331 - id: 566921606 + url: https://api.github.com/users/shreyaspapi + author_association: CONTRIBUTOR + body: "Is it possible to assign Issues to particular user-names using\ + \ the issue object by any chance?\r\n\r\n#### Github\r\n- github-api:\ + \ https://developer.github.com/v3/issues/assignees/#add-assignees-to-an-issue\r\ + \n- pygithub: https://pygithub.readthedocs.io/en/latest/github_objects/Issue.html\r\ + \n\r\n#### Gitlab\r\n- gitlab-api: https://docs.gitlab.com/ee/api/issues.html#edit-issue\r\ + \n- python-gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ + \n- example of the code: https://gitlab.fi.muni.cz/xlachma1/figitool/blob/master/figitool/figitool.py#L576\r\ + \n```python\r\n user_id = gitlab_instance.users.list(username=login)[0].id\r\ + \n gitlab_mr.assignee_id = user_id\r\n gitlab_mr.save()\r\ + \n```\r\n\r\n#### Pagure:\r\n- https://src.fedoraproject.org/api/0/#issues\r\ + \n - -> Create a new issue\r\n - -> Assign an issue\r\n\r\n### TODO:\r\ + \n\r\n- [ ] add `assignee` argument to methods for creating the issue\r\ + \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ + \ tests for it\r\n- [ ] add the get/set property for the Issue classes\r\ + \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ + \ tests for it\r\n\r\n\r\nupdated by @lachmanfrantisek " + closed_at: '2020-10-20T14:41:14Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/329/comments + created_at: '2020-02-17T15:16:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/329/events + html_url: https://github.com/packit/ogr/issues/329 + id: 566364748 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -110001,133 +138526,70 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 8be567 + - color: a2eeef default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/331/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1NjY5MjE2MDY= - number: 331 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: pagure provides more detailed error info stored under 'errors' - key - updated_at: '2020-03-12T12:16:11Z' - url: https://api.github.com/repos/packit/ogr/issues/331 - user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos - site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'It seems that ogr-reverse-dep-packit-tests does not really test - packit with the ogr change, I broke the ogr and `ogr-reverse-dep-packit-tests - : SUCCESS in 8m 01s`.' - closed_at: '2020-03-11T08:27:40Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/350/comments - created_at: '2020-03-10T18:56:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/350/events - html_url: https://github.com/packit/ogr/pull/350 - id: 578793909 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/350/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/329/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg2MzA4Njk0 - number: 350 + node_id: MDU6SXNzdWU1NjYzNjQ3NDg= + number: 329 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/350.diff - html_url: https://github.com/packit/ogr/pull/350 - patch_url: https://github.com/packit/ogr/pull/350.patch - url: https://api.github.com/repos/packit/ogr/pulls/350 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Just testing the rev-dep tests - updated_at: '2020-03-11T08:27:40Z' - url: https://api.github.com/repos/packit/ogr/issues/350 + title: Assigning Issues to based on usernames. + updated_at: '2020-10-20T14:41:14Z' + url: https://api.github.com/repos/packit/ogr/issues/329 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 + events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} + followers_url: https://api.github.com/users/saisankargochhayat/followers + following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} + gists_url: https://api.github.com/users/saisankargochhayat/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/saisankargochhayat + id: 9396452 + login: saisankargochhayat + node_id: MDQ6VXNlcjkzOTY0NTI= + organizations_url: https://api.github.com/users/saisankargochhayat/orgs + received_events_url: https://api.github.com/users/saisankargochhayat/received_events + repos_url: https://api.github.com/users/saisankargochhayat/repos 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Add stage to expected\ - \ pagure instances\n* Set missing info in GitHub commit flags\n* Regenerate\ - \ responses for 'test_issue_list_label'\n* List all GitLab issues (ignore\ - \ pagination)\n* Allow to filter issues by labels.\n* enable getting\ - \ projects defined with SSH URLs\n* Add diff_url to the PR classes\n\ - * Add missing setters to abstract PR class\n* apply precommit changes\n\ - * simplify requre testcases and use requre base test class\n* Use only\ - \ first+last token/key character in the __str__ methods\n* updated PullRequest\ - \ depr message Co-Authored-By: lachmanfrantisek \n\ - * provide is_private method on GitProjects\n* improve pagure error response\n\ - * [.packit.yaml] remove no-longer needed keys & use aliases\n* [CONTRIBUTING.md]\ - \ update\n* Add support for tags when creating pagure issues.\n* Generate\ - \ standard .gitignore file\n* [Pre-commit] Use Prettier\n* [pre-commit]\ - \ autoupdate\n* Run setup-cfg-fmt\n* Strip trailing slash from URL,\ - \ if it exists\n* Add test for trailing slash in URL\n* github.pr.author:\ - \ use login instead of name\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.11.0-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-03-09T12:38:54Z' + starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions + type: User + url: https://api.github.com/users/saisankargochhayat + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "fixes #329 \r\n\r\n- [x] tests" + closed_at: '2020-10-20T14:41:14Z' comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/347/comments - created_at: '2020-03-07T06:10:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/347/events - html_url: https://github.com/packit/ogr/pull/347 - id: 577286080 + comments_url: https://api.github.com/repos/packit/ogr/issues/487/comments + created_at: '2020-10-17T14:29:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/487/events + html_url: https://github.com/packit/ogr/pull/487 + id: 723770962 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -110135,48 +138597,41 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/347/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/487/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg1MTA5ODI1 - number: 347 + node_id: MDExOlB1bGxSZXF1ZXN0NTA1MjkxMDUy + number: 487 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/347.diff - html_url: https://github.com/packit/ogr/pull/347 - patch_url: https://github.com/packit/ogr/pull/347.patch - url: https://api.github.com/repos/packit/ogr/pulls/347 + diff_url: https://github.com/packit/ogr/pull/487.diff + html_url: https://github.com/packit/ogr/pull/487 + patch_url: https://github.com/packit/ogr/pull/487.patch + url: https://api.github.com/repos/packit/ogr/pulls/487 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.11.0 release - updated_at: '2020-03-11T08:26:41Z' - url: https://api.github.com/repos/packit/ogr/issues/347 + title: Add assignees argument while creating issue + updated_at: '2020-10-20T14:41:14Z' + url: https://api.github.com/repos/packit/ogr/issues/487 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos 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 + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] @@ -110188,17 +138643,83 @@ requests.sessions: | --------------- | ----- | - | `f30` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This - is not supported.` | + | `f31` | `Failed to init kerberos ticket:` | - | `f31` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-19T07:46:55Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/486/comments + created_at: '2020-10-15T15:36:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/486/events + html_url: https://github.com/packit/ogr/issues/486 + id: 722446903 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/486/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MjI0NDY5MDM= + number: 486 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.17.0' + updated_at: '2020-10-19T07:46:55Z' + url: https://api.github.com/repos/packit/ogr/issues/486 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `The distgit repository /tmp/packit-dist-gitbut5ttez is dirty.This is not supported.` | - | `f32` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + | `f32` | `Cmd(''git'') failed due to: exit code(128) cmdline: git + reset --hard remotes/origin/0.17.0-f32-update stderr: ''fatal: ambiguous + argument ''remotes/origin/0.17.0-f32-update'': unknown revision or path + not in the working tree. Use ''--'' to separate paths from revisions, + like this: ''git [...] -- [...]''''` | + + | `f33` | `The distgit repository /tmp/packit-dist-gitbut5ttez is dirty.This is not supported.` | - | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.0.tar.gz. - Reason: ''Not Found''. ` | + | `master` | `The distgit repository /tmp/packit-dist-gitbut5ttez is + dirty.This is not supported.` | @@ -110206,27 +138727,27 @@ requests.sessions: the issue comment. ' - closed_at: '2020-03-09T14:02:41Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/348/comments - created_at: '2020-03-09T12:44:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/348/events - html_url: https://github.com/packit/ogr/issues/348 - id: 577881745 + closed_at: '2020-10-15T07:28:47Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/484/comments + created_at: '2020-10-15T06:05:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/484/events + html_url: https://github.com/packit/ogr/issues/484 + id: 722023608 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/348/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/484/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1Nzc4ODE3NDU= - number: 348 + node_id: MDU6SXNzdWU3MjIwMjM2MDg= + number: 484 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.11.0' - updated_at: '2020-03-10T09:57:32Z' - url: https://api.github.com/repos/packit/ogr/issues/348 + title: '[packit] Propose update failed for release 0.17.0' + updated_at: '2020-10-15T15:38:59Z' + url: https://api.github.com/repos/packit/ogr/issues/484 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -110244,19 +138765,91 @@ requests.sessions: subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + _next: null + elapsed: 0.577198 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:31 GMT + ETag: W/"e65bd45fdd295d8ec86b2e5575d880097f81f69cc089ca04992fd32841c80a11" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7FB91:191B20C:6075DC3E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4718' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '282' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=4: + - metadata: + latency: 0.3690457344055176 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-03-09T16:13:07Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/349/comments - created_at: '2020-03-09T15:12:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/349/events - html_url: https://github.com/packit/ogr/pull/349 - id: 577980538 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Implement project.exists\ + \ for GitLab\n* Raise better exception for user's email in Pagure\n\ + * Add description argument to all project_create methods\n\n\nYou can\ + \ change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.17.0-release` branch before merging this PR.\nI\ + \ didn't find any files where `__version__` is set." + closed_at: '2020-10-15T06:01:36Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/483/comments + created_at: '2020-10-14T15:44:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/483/events + html_url: https://github.com/packit/ogr/pull/483 + id: 721573177 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -110264,81 +138857,86 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/349/labels{/name} + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/483/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg1NjQ2MjU3 - number: 349 + node_id: MDExOlB1bGxSZXF1ZXN0NTAzNDY4NzQ4 + number: 483 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/349.diff - html_url: https://github.com/packit/ogr/pull/349 - patch_url: https://github.com/packit/ogr/pull/349.patch - url: https://api.github.com/repos/packit/ogr/pulls/349 + diff_url: https://github.com/packit/ogr/pull/483.diff + html_url: https://github.com/packit/ogr/pull/483 + patch_url: https://github.com/packit/ogr/pull/483.patch + url: https://api.github.com/repos/packit/ogr/pulls/483 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix the descriptions in playbooks - updated_at: '2020-03-09T16:13:07Z' - url: https://api.github.com/repos/packit/ogr/issues/349 + title: 0.17.0 release + updated_at: '2020-10-15T06:06:31Z' + url: https://api.github.com/repos/packit/ogr/issues/483 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-03-07T06:10:20Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/346/comments - created_at: '2020-03-07T06:08:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/346/events - html_url: https://github.com/packit/ogr/issues/346 - id: 577285921 + body: '`project_dir` has been [set by zuul base job](https://github.com/packit/packit-service-zuul/blob/master/zuul.d/jobs.yaml#L13).' + closed_at: '2020-10-14T16:46:10Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/482/comments + created_at: '2020-10-14T14:20:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/482/events + html_url: https://github.com/packit/ogr/pull/482 + id: 721504247 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/346/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/482/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NzcyODU5MjE= - number: 346 + node_id: MDExOlB1bGxSZXF1ZXN0NTAzNDExNDE2 + number: 482 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/482.diff + html_url: https://github.com/packit/ogr/pull/482 + patch_url: https://github.com/packit/ogr/pull/482.patch + url: https://api.github.com/repos/packit/ogr/pulls/482 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New minor release - updated_at: '2020-03-07T06:10:20Z' - url: https://api.github.com/repos/packit/ogr/issues/346 + title: Remove files/tasks/zuul-project-setup.yaml + updated_at: '2020-10-14T17:10:37Z' + url: https://api.github.com/repos/packit/ogr/issues/482 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -110361,277 +138959,78 @@ requests.sessions: assignees: [] author_association: MEMBER body: '' - closed_at: '2020-03-05T07:21:02Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/345/comments - created_at: '2020-03-04T16:38:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/345/events - html_url: https://github.com/packit/ogr/pull/345 - id: 575562256 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/345/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzgzNjkxODk5 - number: 345 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/345.diff - html_url: https://github.com/packit/ogr/pull/345 - patch_url: https://github.com/packit/ogr/pull/345.patch - url: https://api.github.com/repos/packit/ogr/pulls/345 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add stage to expected pagure instances - updated_at: '2020-03-05T07:21:02Z' - url: https://api.github.com/repos/packit/ogr/issues/345 - user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos - site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions - type: User - url: https://api.github.com/users/dhodovsk - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Set missing info in GitHub commit flags. - - - Test was improved to cover that.' - closed_at: '2020-03-04T09:57:25Z' + closed_at: '2020-10-14T15:44:17Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/343/comments - created_at: '2020-03-02T11:17:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/343/events - html_url: https://github.com/packit/ogr/pull/343 - id: 573904235 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/343/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzgyMzI1NTEz - number: 343 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/343.diff - html_url: https://github.com/packit/ogr/pull/343 - patch_url: https://github.com/packit/ogr/pull/343.patch - url: https://api.github.com/repos/packit/ogr/pulls/343 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Fix GitHub commit flags - updated_at: '2020-03-04T10:31:38Z' - url: https://api.github.com/repos/packit/ogr/issues/343 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "When working with PRs, there are also URLs linking directly to\ - \ diff tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the `url_diff`\ - \ and implement it.\r\n - Use API if possible, otherwise \"guess\"\ - \ the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\nExamples:\r\ - \n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/diffs\r\ - \n- https://github.com/packit-service/ogr/pull/1/files\r\n- https://pagure.io/ogr-tests/pull-request/7#request_diff\r\ - \n" - closed_at: '2020-03-03T15:49:36Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/211/comments - created_at: '2019-09-19T18:48:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/211/events - html_url: https://github.com/packit/ogr/issues/211 - id: 495968184 + comments_url: https://api.github.com/repos/packit/ogr/issues/473/comments + created_at: '2020-09-30T09:36:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/473/events + html_url: https://github.com/packit/ogr/issues/473 + id: 711792673 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 + - color: ededed default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - - color: '000000' + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/211/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0OTU5NjgxODQ= - number: 211 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add diff url to PullRequest class - updated_at: '2020-03-03T15:49:36Z' - url: https://api.github.com/repos/packit/ogr/issues/211 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Added object representation for GitHub releases. - - - What about pagure? Is there anything that can be used?' - closed_at: '2019-03-12T13:36:17Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/19/comments - created_at: '2019-02-21T15:14:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/19/events - html_url: https://github.com/packit/ogr/pull/19 - id: 412975574 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/19/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/473/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU1MDY0MDU2 - number: 19 + node_id: MDU6SXNzdWU3MTE3OTI2NzM= + number: 473 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/19.diff - html_url: https://github.com/packit/ogr/pull/19 - patch_url: https://github.com/packit/ogr/pull/19.patch - url: https://api.github.com/repos/packit/ogr/pulls/19 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Releases - updated_at: '2020-02-28T11:35:03Z' - url: https://api.github.com/repos/packit/ogr/issues/19 + title: New minor release + updated_at: '2020-10-14T15:44:17Z' + url: https://api.github.com/repos/packit/ogr/issues/473 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Do not use tokens/private_keys in the `__str__` methods.\n -\ - \ used `set`/`not set` instead\n - reason: We've started to show logs\ - \ publicly in the packit-service and it can be easy to forget about\ - \ this \"feature\"." - closed_at: '2020-02-21T12:13:33Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/336/comments - created_at: '2020-02-20T09:28:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/336/events - html_url: https://github.com/packit/ogr/pull/336 - id: 568163719 + body: 'Signed-off-by: Frantisek Lachman ' + closed_at: '2020-10-14T10:43:09Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/479/comments + created_at: '2020-10-14T08:34:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/479/events + html_url: https://github.com/packit/ogr/pull/479 + id: 721258049 labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -110639,24 +139038,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/336/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/479/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc3NjQzMzYy - number: 336 + node_id: MDExOlB1bGxSZXF1ZXN0NTAzMjA2NzU3 + number: 479 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/336.diff - html_url: https://github.com/packit/ogr/pull/336 - patch_url: https://github.com/packit/ogr/pull/336.patch - url: https://api.github.com/repos/packit/ogr/pulls/336 + diff_url: https://github.com/packit/ogr/pull/479.diff + html_url: https://github.com/packit/ogr/pull/479 + patch_url: https://github.com/packit/ogr/pull/479.patch + url: https://api.github.com/repos/packit/ogr/pulls/479 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Do not use tokens and keys in the __str__ methods - updated_at: '2020-02-28T11:34:56Z' - url: https://api.github.com/repos/packit/ogr/issues/336 + title: Implement project.exists for GitLab + updated_at: '2020-10-14T10:50:55Z' + url: https://api.github.com/repos/packit/ogr/issues/479 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -110674,79 +139073,20 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "This commit adds the possibility to provide\r\na list of labels\ - \ to filter the issues of a\r\nproject.\r\n\r\nSigned-off-by: Clement\ - \ Verna " - closed_at: '2020-02-28T10:13:37Z' - comments: 22 - comments_url: https://api.github.com/repos/packit/ogr/issues/340/comments - created_at: '2020-02-21T14:19:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/340/events - html_url: https://github.com/packit/ogr/pull/340 - id: 568983388 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/340/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc4MzA1ODAw - number: 340 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/340.diff - html_url: https://github.com/packit/ogr/pull/340 - patch_url: https://github.com/packit/ogr/pull/340.patch - url: https://api.github.com/repos/packit/ogr/pulls/340 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Allow to filter issues by labels. - updated_at: '2020-02-28T10:17:42Z' - url: https://api.github.com/repos/packit/ogr/issues/340 - user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 - events_url: https://api.github.com/users/cverna/events{/privacy} - followers_url: https://api.github.com/users/cverna/followers - following_url: https://api.github.com/users/cverna/following{/other_user} - gists_url: https://api.github.com/users/cverna/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/cverna - id: 7237866 - login: cverna - node_id: MDQ6VXNlcjcyMzc4NjY= - organizations_url: https://api.github.com/users/cverna/orgs - received_events_url: https://api.github.com/users/cverna/received_events - repos_url: https://api.github.com/users/cverna/repos - site_admin: false - starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/cverna/subscriptions - type: User - url: https://api.github.com/users/cverna - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #306 - - - Franto, we didn''t speak about this, but this how I expect it to work, - WDYT?' - closed_at: '2020-02-26T11:51:17Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/337/comments - created_at: '2020-02-20T21:27:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/337/events - html_url: https://github.com/packit/ogr/pull/337 - id: 568583084 + body: "Chosen as a better resolution to unsupported API (previously raised\ + \ an exception).\r\n\r\nSigned-off-by: Matej Focko \r\ + \n\r\nCloses #126" + closed_at: '2020-10-12T12:16:21Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/477/comments + created_at: '2020-10-08T19:30:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/477/events + html_url: https://github.com/packit/ogr/pull/477 + id: 717605937 labels: - color: 0e8a16 default: false @@ -110755,148 +139095,169 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/337/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/477/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc3OTgyODUz - number: 337 + node_id: MDExOlB1bGxSZXF1ZXN0NTAwMTM5MzYx + number: 477 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/337.diff - html_url: https://github.com/packit/ogr/pull/337 - patch_url: https://github.com/packit/ogr/pull/337.patch - url: https://api.github.com/repos/packit/ogr/pulls/337 + diff_url: https://github.com/packit/ogr/pull/477.diff + html_url: https://github.com/packit/ogr/pull/477 + patch_url: https://github.com/packit/ogr/pull/477.patch + url: https://api.github.com/repos/packit/ogr/pulls/477 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: enable getting projects defined with SSH URLs - updated_at: '2020-02-26T11:51:17Z' - url: https://api.github.com/repos/packit/ogr/issues/337 + title: Return `None` for user's email in Pagure + updated_at: '2020-10-12T12:23:41Z' + url: https://api.github.com/repos/packit/ogr/issues/477 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.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} + - 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek - author_association: MEMBER - body: 'see below: https://github.com/packit-service/ogr/issues/306#issuecomment-575204355' - closed_at: '2020-02-26T11:51:17Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/306/comments - created_at: '2020-01-10T15:38:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/306/events - html_url: https://github.com/packit/ogr/issues/306 - id: 548146892 + url: https://api.github.com/users/mfocko + author_association: COLLABORATOR + body: "We have `get_username` method in GitUser class. At the moment we\ + \ are missing method `get_email` for both ~~Github~~ and Pagure services.\r\ + \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" + closed_at: '2020-10-12T12:16:21Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments + created_at: '2019-07-18T07:56:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/126/events + html_url: https://github.com/packit/ogr/issues/126 + id: 469623000 labels: - - color: '000000' + - color: 1d76db default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/306/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/126/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDgxNDY4OTI= - number: 306 + node_id: MDU6SXNzdWU0Njk2MjMwMDA= + number: 126 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'ogr can''t figure out auth for SSH style of URL: git@github...' - updated_at: '2020-02-26T11:51:17Z' - url: https://api.github.com/repos/packit/ogr/issues/306 + title: get_email for GitUser + updated_at: '2020-10-12T12:16:21Z' + url: https://api.github.com/repos/packit/ogr/issues/126 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Add diff_url to the PR classes.\r\n- Add missing setters to abstract\ - \ PR class.\r\n\r\nA rebased version of https://github.com/packit-service/ogr/pull/280\ - \ ." - closed_at: '2020-02-26T09:52:29Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/335/comments - created_at: '2020-02-20T06:22:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/335/events - html_url: https://github.com/packit/ogr/pull/335 - id: 568078329 + body: '- Add description argument to all `project_create` methods.' + closed_at: '2020-10-12T08:13:58Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/476/comments + created_at: '2020-10-07T14:28:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/476/events + html_url: https://github.com/packit/ogr/pull/476 + id: 716582560 labels: - color: 0e8a16 default: false @@ -110905,31 +139266,31 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 + - color: 7cf4be default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/335/labels{/name} + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/476/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc3NTcyNzgz - number: 335 + node_id: MDExOlB1bGxSZXF1ZXN0NDk5MjkzOTk4 + number: 476 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/335.diff - html_url: https://github.com/packit/ogr/pull/335 - patch_url: https://github.com/packit/ogr/pull/335.patch - url: https://api.github.com/repos/packit/ogr/pulls/335 + diff_url: https://github.com/packit/ogr/pull/476.diff + html_url: https://github.com/packit/ogr/pull/476 + patch_url: https://github.com/packit/ogr/pull/476.patch + url: https://api.github.com/repos/packit/ogr/pulls/476 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: diff url for pull-requests - updated_at: '2020-02-26T10:14:51Z' - url: https://api.github.com/repos/packit/ogr/issues/335 + title: Unify project_create method + updated_at: '2020-10-12T08:47:46Z' + url: https://api.github.com/repos/packit/ogr/issues/476 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -110950,210 +139311,279 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-02-26T07:46:42Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/341/comments - created_at: '2020-02-25T13:21:16Z' - events_url: https://api.github.com/repos/packit/ogr/issues/341/events - html_url: https://github.com/packit/ogr/pull/341 - id: 570565436 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `The distgit repository /tmp/packit-dist-git9pvi9zgh is dirty.This + is not supported.` | + + | `f32` | `The distgit repository /tmp/packit-dist-git9pvi9zgh is dirty.This + is not supported.` | + + | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.13.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-06T12:06:10Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/448/comments + created_at: '2020-08-07T09:12:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/448/events + html_url: https://github.com/packit/ogr/issues/448 + id: 674879684 labels: - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/341/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/448/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc5NTc3NjE5 - number: 341 + node_id: MDU6SXNzdWU2NzQ4Nzk2ODQ= + number: 448 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/341.diff - html_url: https://github.com/packit/ogr/pull/341 - patch_url: https://github.com/packit/ogr/pull/341.patch - url: https://api.github.com/repos/packit/ogr/pulls/341 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: simplify requre testcases and use requre base test class - updated_at: '2020-02-26T07:46:42Z' - url: https://api.github.com/repos/packit/ogr/issues/341 + title: '[packit] Propose update failed for release 0.13.0' + updated_at: '2020-10-06T12:06:10Z' + url: https://api.github.com/repos/packit/ogr/issues/448 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=5: - - metadata: - latency: 0.5548856258392334 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-01T08:40:05Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/475/comments + created_at: '2020-09-30T19:27:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/475/events + html_url: https://github.com/packit/ogr/issues/475 + id: 712218395 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/475/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MTIyMTgzOTU= + number: 475 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.16.0' + updated_at: '2020-10-01T08:40:06Z' + url: https://api.github.com/repos/packit/ogr/issues/475 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Closes #211\r\n\r\nI added diff url to PullRequest.\r\n\r\nImplementation:\r\ - \n- [x] BasePullRequest\r\n- [x] Github\r\n- [x] Gitlab\r\n- [x] Pagure\r\ - \n\r\nBut I found diff url in api for github, so I \"guess\" url. \r\ - \nBut for github there are two option \"/files\" (consistent with other\ - \ services) or \".diff\" (consistent with Github api).\r\n\r\nFor example:\r\ - \nhttps://github.com/packit-service/ogr/pull/1/files\r\nand \r\nhttps://patch-diff.githubusercontent.com/raw/packit-service/ogr/pull/1.diff\r\ - \n\r\nI think \".files\" looks better and that option was in issue as\ - \ example, that why I chose this one. But if you want I can change to\ - \ github api option \".diff\" \r\n\r\nFor others services I couldn't\ - \ find in api, so I \"guess\" url. \r\n" - closed_at: '2020-02-20T08:39:54Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/280/comments - created_at: '2019-11-22T10:17:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/280/events - html_url: https://github.com/packit/ogr/pull/280 - id: 527108315 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/280/labels{/name} + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Update contribution guide\n\ + * Refactor Pagure and factory tests\n* Refactor GitLab tests\n* Refactor\ + \ GitHub tests\n* this is first draft how new tests could look like\n\ + * Add badge for pre-commit and black to README\n* Refactor `parse_git_repo`\n\ + * Use parenthesis for lru_cache decorator\n* Add hostname property to\ + \ service class\n* Fix inheritance of GitlabService from BaseGitService\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.16.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-09-30T19:24:44Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/474/comments + created_at: '2020-09-30T09:37:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/474/events + html_url: https://github.com/packit/ogr/pull/474 + id: 711793587 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/474/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ0NDQ0OTEz - number: 280 + node_id: MDExOlB1bGxSZXF1ZXN0NDk1MzgxMTcx + number: 474 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/280.diff - html_url: https://github.com/packit/ogr/pull/280 - patch_url: https://github.com/packit/ogr/pull/280.patch - url: https://api.github.com/repos/packit/ogr/pulls/280 + diff_url: https://github.com/packit/ogr/pull/474.diff + html_url: https://github.com/packit/ogr/pull/474 + patch_url: https://github.com/packit/ogr/pull/474.patch + url: https://api.github.com/repos/packit/ogr/pulls/474 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add url diff to PullRequest - updated_at: '2020-02-20T08:39:54Z' - url: https://api.github.com/repos/packit/ogr/issues/280 + title: 0.16.0 release + updated_at: '2020-09-30T19:26:46Z' + url: https://api.github.com/repos/packit/ogr/issues/474 user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 - events_url: https://api.github.com/users/pawelkopka/events{/privacy} - followers_url: https://api.github.com/users/pawelkopka/followers - following_url: https://api.github.com/users/pawelkopka/following{/other_user} - gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + 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/pawelkopka - id: 17784034 - login: pawelkopka - node_id: MDQ6VXNlcjE3Nzg0MDM0 - organizations_url: https://api.github.com/users/pawelkopka/orgs - received_events_url: https://api.github.com/users/pawelkopka/received_events - repos_url: https://api.github.com/users/pawelkopka/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + 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/pawelkopka + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-02-19T14:45:23Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/324/comments - created_at: '2020-02-10T13:09:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/324/events - html_url: https://github.com/packit/ogr/pull/324 - id: 562549831 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/324/labels{/name} + author_association: CONTRIBUTOR + body: "Shoudn't be this working?\r\n\r\nconfig:\r\n```\r\nauthentication:\r\ + \n git.stg.centos.org:\r\n instance_url: https://git.stg.centos.org\r\ + \n token: ---token---\r\n type: pagure\r\n```\r\nerror:\r\n```\r\ + \nAuthentication for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ + \ is missing in the config.\r\nTraceback (most recent call last):\r\n\ + \ File \"/home/sakalosj/projects/packit/packit/config/config.py\",\ + \ line 203, in _get_project\r\n url=url, custom_instances=self.services,\ + \ **get_project_kwargs\r\n File \"/home/sakalosj/projects/ogr/ogr/factory.py\"\ + , line 83, in get_project\r\n kls = get_service_class(url=url, service_mapping_update=service_mapping_update)\r\ + \n File \"/home/sakalosj/projects/ogr/ogr/factory.py\", line 144, in\ + \ get_service_class\r\n raise OgrException(\"No matching service\ + \ was found.\")\r\nogr.exceptions.OgrException: No matching service\ + \ was found.\r\n\r\nDuring handling of the above exception, another\ + \ exception occurred:\r\n\r\nTraceback (most recent call last):\r\n\ + \ File \"/home/sakalosj/projects/packit-service/tmp_local/runner.py\"\ + , line 63, in \r\n process_new_pr()\r\n File \"/home/sakalosj/projects/packit-service/tmp_local/runner.py\"\ + , line 22, in process_new_pr\r\n SteveJobs().process_message(event=new_pr,\ + \ source=\"centosmsg\")\r\n File \"/home/sakalosj/projects/packit-service/packit_service/worker/jobs.py\"\ + , line 320, in process_message\r\n if project:\r\n File \"/home/sakalosj/projects/packit/packit/config/config.py\"\ + , line 208, in _get_project\r\n raise PackitConfigException(msg,\ + \ ex)\r\npackit.exceptions.PackitConfigException: (\"Authentication\ + \ for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ + \ is missing in the config.\", OgrException('No matching service was\ + \ found.'))\r\n```" + closed_at: '2020-09-30T15:25:59Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/383/comments + created_at: '2020-04-15T21:50:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/383/events + html_url: https://github.com/packit/ogr/issues/383 + id: 600609280 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/383/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzczMTI1MDU5 - number: 324 + node_id: MDU6SXNzdWU2MDA2MDkyODA= + number: 383 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/324.diff - html_url: https://github.com/packit/ogr/pull/324 - patch_url: https://github.com/packit/ogr/pull/324.patch - url: https://api.github.com/repos/packit/ogr/pulls/324 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: updated PullRequest depr message - updated_at: '2020-02-19T14:52:32Z' - url: https://api.github.com/repos/packit/ogr/issues/324 + title: Initializing service via get_instances_from_dict() not working + as expected + updated_at: '2020-09-30T15:25:59Z' + url: https://api.github.com/repos/packit/ogr/issues/383 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -111175,14 +139605,14 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-02-19T13:32:13Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/328/comments - created_at: '2020-02-17T13:41:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/328/events - html_url: https://github.com/packit/ogr/pull/328 - id: 566306913 + body: "Closes #209 \r\n\r\nmerge after packit/contributing#1" + closed_at: '2020-09-24T20:15:17Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/471/comments + created_at: '2020-09-21T21:09:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/471/events + html_url: https://github.com/packit/ogr/pull/471 + id: 705918401 labels: - color: 0e8a16 default: false @@ -111191,171 +139621,241 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/328/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/471/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc2MTQyOTU3 - number: 328 + node_id: MDExOlB1bGxSZXF1ZXN0NDkwNTYxMzU3 + number: 471 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/328.diff - html_url: https://github.com/packit/ogr/pull/328 - patch_url: https://github.com/packit/ogr/pull/328.patch - url: https://api.github.com/repos/packit/ogr/pulls/328 + diff_url: https://github.com/packit/ogr/pull/471.diff + html_url: https://github.com/packit/ogr/pull/471 + patch_url: https://github.com/packit/ogr/pull/471.patch + url: https://api.github.com/repos/packit/ogr/pulls/471 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: provide is_private method on GitProjects - updated_at: '2020-02-19T13:36:04Z' - url: https://api.github.com/repos/packit/ogr/issues/328 + title: Extend contribution guide + updated_at: '2020-09-24T20:21:33Z' + url: https://api.github.com/repos/packit/ogr/issues/471 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: improve pagure error response to show additional info stored under - 'errors' key - closed_at: '2020-02-19T08:19:55Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/333/comments - created_at: '2020-02-18T15:47:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/333/events - html_url: https://github.com/packit/ogr/pull/333 - id: 566983390 + body: "It would be nice to add the following parts to CONTRIBUTING.md\r\ + \n\r\n- What is `git rebase` and how to rebase a pull-request.\r\n \ + \ - We want to have a git tree like this: \r\n![Sn\xEDmek z 2019-09-19\ + \ 11-43-15](https://user-images.githubusercontent.com/20214043/65233459-2712aa00-dad3-11e9-8849-6bb5babf75fe.png)\r\ + \n - not this: \r\n![Sn\xEDmek z 2019-09-19 11-43-51](https://user-images.githubusercontent.com/20214043/65233488-309c1200-dad3-11e9-93a9-b2b15e8a0f39.png)\r\ + \n\r\n- links to documentation we are using when implementing the code\ + \ for github, gitlab, pagure\r\n - https://src.fedoraproject.org/api/0/\r\ + \n - https://pagure.io/api/0/\r\n - https://pygithub.readthedocs.io/\r\ + \n - https://python-gitlab.readthedocs.io/\r\n - ...\r\n \r\n\ + - How to write a good git commit messages:\r\n - https://chris.beams.io/posts/git-commit/" + closed_at: '2020-09-24T20:15:17Z' + comments: 13 + comments_url: https://api.github.com/repos/packit/ogr/issues/209/comments + created_at: '2019-09-19T09:51:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/209/events + html_url: https://github.com/packit/ogr/issues/209 + id: 495693202 labels: - - color: 18e033 + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - - color: 8be567 + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/209/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTU2OTMyMDI= + number: 209 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add info about git workflow to contribution guide (and other suggestions) + updated_at: '2020-09-24T20:15:17Z' + url: https://api.github.com/repos/packit/ogr/issues/209 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: there is just one issue, and it is that __init__.py has to be clear, + because now it causes confusion, and try sto store keys with various + depth -> raise error. + closed_at: '2020-09-24T19:43:18Z' + comments: 29 + comments_url: https://api.github.com/repos/packit/ogr/issues/452/comments + created_at: '2020-08-13T13:44:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/452/events + html_url: https://github.com/packit/ogr/pull/452 + id: 678448961 + labels: + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/333/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/452/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc2NjkyMzc5 - number: 333 + node_id: MDExOlB1bGxSZXF1ZXN0NDY3Mzk1MTgz + number: 452 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/333.diff - html_url: https://github.com/packit/ogr/pull/333 - patch_url: https://github.com/packit/ogr/pull/333.patch - url: https://api.github.com/repos/packit/ogr/pulls/333 + diff_url: https://github.com/packit/ogr/pull/452.diff + html_url: https://github.com/packit/ogr/pull/452 + patch_url: https://github.com/packit/ogr/pull/452.patch + url: https://api.github.com/repos/packit/ogr/pulls/452 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve pagure error response - updated_at: '2020-02-19T08:19:55Z' - url: https://api.github.com/repos/packit/ogr/issues/333 + title: this is first draft how new tests could look like + updated_at: '2020-09-24T19:43:18Z' + url: https://api.github.com/repos/packit/ogr/issues/452 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/sakalosj + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'fixes #331 ' - closed_at: '2020-02-18T15:30:01Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/332/comments - created_at: '2020-02-18T14:53:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/332/events - html_url: https://github.com/packit/ogr/pull/332 - id: 566946268 + body: "Split tests into files like the implementations are.\r\n\r\nAs\ + \ @lachmanfrantisek suggested, it would be great to have both old tests\ + \ (checking that deprecated interfaces are still usable) and new ones,\ + \ but this would lead to keeping duplicates of test_data, since they\ + \ would check the same things, but each would need separate yaml for\ + \ responses.\r\n\r\nSo I suggest transition from old to new tests right\ + \ after 0.13.0 (or before 1.0.0, in case it will be released sooner)" + closed_at: '2020-09-24T19:43:18Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/295/comments + created_at: '2019-12-05T10:40:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/295/events + html_url: https://github.com/packit/ogr/issues/295 + id: 533267519 labels: - - color: 18e033 + - color: c2ef58 default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/332/labels{/name} + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/295/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc2NjYxODE0 - number: 332 + node_id: MDU6SXNzdWU1MzMyNjc1MTk= + number: 295 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/332.diff - html_url: https://github.com/packit/ogr/pull/332 - patch_url: https://github.com/packit/ogr/pull/332.patch - url: https://api.github.com/repos/packit/ogr/pulls/332 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve pagure error response - updated_at: '2020-02-18T15:38:49Z' - url: https://api.github.com/repos/packit/ogr/issues/332 + title: Restructure tests + updated_at: '2020-09-24T19:43:18Z' + url: https://api.github.com/repos/packit/ogr/issues/295 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-02-17T15:39:51Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/327/comments - created_at: '2020-02-17T13:24:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/327/events - html_url: https://github.com/packit/ogr/pull/327 - id: 566296821 + body: "[![black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\r\ + \n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)\r\ + \n\r\n- Add pre-commit and black badge.\r\n- README: https://github.com/packit/ogr/blob/8c3d9a3ddf2c69e211b5bbb44c3df08b70804a84/README.md" + closed_at: '2020-09-23T07:04:47Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/469/comments + created_at: '2020-09-18T12:18:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/469/events + html_url: https://github.com/packit/ogr/pull/469 + id: 704334311 labels: - color: 0e8a16 default: false @@ -111364,53 +139864,60 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/327/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/469/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc2MTM0NTY3 - number: 327 + node_id: MDExOlB1bGxSZXF1ZXN0NDg5Mjc5NjYw + number: 469 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/327.diff - html_url: https://github.com/packit/ogr/pull/327 - patch_url: https://github.com/packit/ogr/pull/327.patch - url: https://api.github.com/repos/packit/ogr/pulls/327 + diff_url: https://github.com/packit/ogr/pull/469.diff + html_url: https://github.com/packit/ogr/pull/469 + patch_url: https://github.com/packit/ogr/pull/469.patch + url: https://api.github.com/repos/packit/ogr/pulls/469 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[.packit.yaml] remove no-longer needed keys & use aliases' - updated_at: '2020-02-17T15:43:04Z' - url: https://api.github.com/repos/packit/ogr/issues/327 + title: pre-commit and black badge + updated_at: '2020-09-23T07:13:06Z' + url: https://api.github.com/repos/packit/ogr/issues/469 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER body: '' - closed_at: '2020-02-14T16:46:09Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/326/comments - created_at: '2020-02-14T15:50:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/326/events - html_url: https://github.com/packit/ogr/pull/326 - id: 565409429 + closed_at: '2020-09-22T15:17:15Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/467/comments + created_at: '2020-09-17T09:45:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/467/events + html_url: https://github.com/packit/ogr/pull/467 + id: 703433869 labels: - color: 0e8a16 default: false @@ -111419,134 +139926,113 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/326/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/467/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc1NDUzMzA5 - number: 326 + node_id: MDExOlB1bGxSZXF1ZXN0NDg4NTQyNjcz + number: 467 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/326.diff - html_url: https://github.com/packit/ogr/pull/326 - patch_url: https://github.com/packit/ogr/pull/326.patch - url: https://api.github.com/repos/packit/ogr/pulls/326 + diff_url: https://github.com/packit/ogr/pull/467.diff + html_url: https://github.com/packit/ogr/pull/467 + patch_url: https://github.com/packit/ogr/pull/467.patch + url: https://api.github.com/repos/packit/ogr/pulls/467 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[CONTRIBUTING.md] update' - updated_at: '2020-02-17T08:52:51Z' - url: https://api.github.com/repos/packit/ogr/issues/326 + title: Refactor `parse_git_repo` + updated_at: '2020-09-22T15:18:08Z' + url: https://api.github.com/repos/packit/ogr/issues/467 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Seeing this on prod:\r\n\r\n```\r\n | [2019-10-29 08:25:38,794:\ - \ INFO/MainProcess] Received task: task.steve_jobs.process_message[9b4d1ddc-72e3-4bd8-8ff9-fb2cf96d8efb]\r\ - \n\_ | [2019-10-29 08:25:38,810: INFO/ForkPoolWorker-1] Copr build event,\ - \ topic: org.fedoraproject.prod.copr.build.start\r\n\_ | [2019-10-29\ - \ 08:25:38,812: WARNING/ForkPoolWorker-1] Cannot get project for this\ - \ build id: 1081435\r\n\_ | [2019-10-29 08:25:38,819: ERROR/ForkPoolWorker-1]\ - \ Task task.steve_jobs.process_message[9b4d1ddc-72e3-4bd8-8ff9-fb2cf96d8efb]\ - \ raised unexpected: TypeError(\"argument of type 'NoneType' is not\ - \ iterable\")\r\n\_ | Traceback (most recent call last):\r\n\_ | File\ - \ \"/usr/lib/python3.7/site-packages/celery/app/trace.py\", line 382,\ - \ in trace_task\r\n\_ | R = retval = fun(*args, **kwargs)\r\n\_ | File\ - \ \"/usr/lib/python3.7/site-packages/celery/app/trace.py\", line 641,\ - \ in __protected_call__\r\n\_ | return self.run(*args, **kwargs)\r\n\ - \_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/celery.py\"\ - , line 155, in _inner\r\n\_ | reraise(*exc_info)\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/_compat.py\"\ - , line 57, in reraise\r\n\_ | raise value\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/celery.py\"\ - , line 150, in _inner\r\n\_ | return f(*args, **kwargs)\r\n\_ | File\ - \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ - , line 47, in process_message\r\n\_ | return SteveJobs().process_message(event=event,\ - \ topic=topic)\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 218, in process_message\r\n\_ | project\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/packit/config.py\"\ - , line 212, in _get_project\r\n\_ | project = get_project(url=url, custom_instances=self.services)\r\ - \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ - , line 83, in get_project\r\n\_ | kls = get_service_class(url=url, service_mapping_update=service_mapping_update)\r\ - \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ - , line 135, in get_service_class\r\n\_ | url=url, service_mapping_update=service_mapping_update\r\ - \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ - , line 118, in get_service_class_or_none\r\n\_ | if service in url:\r\ - \n\_ | TypeError: argument of type 'NoneType' is not iterable\r\n```\r\ - \n" - closed_at: '2020-02-16T09:26:02Z' + body: "- Use parenthesis for `lru_cache` decorator for backwards compatibility.\r\ + \n- Fixes problem found in packit PR: https://github.com/packit/packit-service/pull/820" + closed_at: '2020-09-21T09:19:28Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/261/comments - created_at: '2019-10-29T09:31:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/261/events - html_url: https://github.com/packit/ogr/issues/261 - id: 513793392 + comments_url: https://api.github.com/repos/packit/ogr/issues/470/comments + created_at: '2020-09-21T08:01:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/470/events + html_url: https://github.com/packit/ogr/pull/470 + id: 705378424 labels: - - color: '000000' + - color: 0e8a16 default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/261/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/470/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTM3OTMzOTI= - number: 261 + node_id: MDExOlB1bGxSZXF1ZXN0NDkwMTE3MDk0 + number: 470 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/470.diff + html_url: https://github.com/packit/ogr/pull/470 + patch_url: https://github.com/packit/ogr/pull/470.patch + url: https://api.github.com/repos/packit/ogr/pulls/470 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[get_service_class_or_none()] TypeError: argument of type ''NoneType'' - is not iterable' - updated_at: '2020-02-16T09:26:02Z' - url: https://api.github.com/repos/packit/ogr/issues/261 + title: Fix lru_cache decorator + updated_at: '2020-09-21T10:18:40Z' + url: https://api.github.com/repos/packit/ogr/issues/470 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "This commit allows to pass a list of tags to pagure's create_issue\ - \ method.\r\n\r\nSigned-off-by: Clement Verna " - closed_at: '2020-02-12T09:56:00Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/321/comments - created_at: '2020-01-31T19:31:24Z' - events_url: https://api.github.com/repos/packit/ogr/issues/321/events - html_url: https://github.com/packit/ogr/pull/321 - id: 558328639 + author_association: MEMBER + body: '- Add hostname property to service class. + + - Fix inheritance of `GitlabService` from `BaseGitService`. + + - Fixes: #338' + closed_at: '2020-09-18T14:55:56Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/468/comments + created_at: '2020-09-18T08:42:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/468/events + html_url: https://github.com/packit/ogr/pull/468 + id: 704201238 labels: - color: 0e8a16 default: false @@ -111555,173 +140041,276 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/321/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/468/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY5NzM3NjUy - number: 321 + node_id: MDExOlB1bGxSZXF1ZXN0NDg5MTY4MTQy + number: 468 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/321.diff - html_url: https://github.com/packit/ogr/pull/321 - patch_url: https://github.com/packit/ogr/pull/321.patch - url: https://api.github.com/repos/packit/ogr/pulls/321 + diff_url: https://github.com/packit/ogr/pull/468.diff + html_url: https://github.com/packit/ogr/pull/468 + patch_url: https://github.com/packit/ogr/pull/468.patch + url: https://api.github.com/repos/packit/ogr/pulls/468 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add support for tags when creating pagure issues. - updated_at: '2020-02-12T09:56:00Z' - url: https://api.github.com/repos/packit/ogr/issues/321 + title: Implement hostname property + updated_at: '2020-09-21T07:10:59Z' + url: https://api.github.com/repos/packit/ogr/issues/468 user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 - events_url: https://api.github.com/users/cverna/events{/privacy} - followers_url: https://api.github.com/users/cverna/followers - following_url: https://api.github.com/users/cverna/following{/other_user} - gists_url: https://api.github.com/users/cverna/gists{/gist_id} + 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/cverna - id: 7237866 - login: cverna - node_id: MDQ6VXNlcjcyMzc4NjY= - organizations_url: https://api.github.com/users/cverna/orgs - received_events_url: https://api.github.com/users/cverna/received_events - repos_url: https://api.github.com/users/cverna/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/cverna/subscriptions + 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/cverna + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "While working on #319, I noticed that there was no `.gitignore`\ - \ file in the repository.\r\n\r\nTo solve my _own_ pain points while\ - \ developing, I generated this one, which should ignore standard files\ - \ for MacOS, Windows, & Linux, and additionally ignore files that are\ - \ generally good to ignore in Python projects." - closed_at: '2020-02-11T09:08:13Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/320/comments - created_at: '2020-01-31T01:20:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/320/events - html_url: https://github.com/packit/ogr/pull/320 - id: 557854734 + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: MEMBER + body: "Multiple times in the code (mostly in the `parsing.py`), we need\ + \ to parse the hostname of the instance.\r\n\r\n```python\r\nservice_repo_url\ + \ = parse_git_repo(repo_url.get_instance_url())\r\nservice_repo_url.hostname\r\ + \n```\r\n\r\nIt would be useful to have a `hostame` property in service\ + \ classes`.\r\n\r\nTODO:\r\n- [ ] add the (read-only) property to the\ + \ `abstract.py`\r\n- [ ] implement the common behaviour in the `base.py`\ + \ (see the example above)\r\n - services with multiple instances possible\r\ + \n- [ ] hardcode the value for static instances (GitHub)\r\n- [ ] use\ + \ that property in places, where we are getting hostname of the instance\r\ + \n- [ ] create some unit tests for that" + closed_at: '2020-09-18T14:55:56Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/338/comments + created_at: '2020-02-21T08:57:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/338/events + html_url: https://github.com/packit/ogr/issues/338 + id: 568821401 labels: - - color: 0e8a16 + - color: fbca04 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/320/labels{/name} + description: Reserved for the participants/applicants of the Google + Summer of Code. + id: 1867054141 + name: GSOC + node_id: MDU6TGFiZWwxODY3MDU0MTQx + url: https://api.github.com/repos/packit/ogr/labels/GSOC + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/338/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY5MzY2NDA1 - number: 320 + node_id: MDU6SXNzdWU1Njg4MjE0MDE= + number: 338 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/320.diff - html_url: https://github.com/packit/ogr/pull/320 - patch_url: https://github.com/packit/ogr/pull/320.patch - url: https://api.github.com/repos/packit/ogr/pulls/320 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add `.gitignore` to repo - updated_at: '2020-02-11T09:08:13Z' - url: https://api.github.com/repos/packit/ogr/issues/320 + title: hostname property in the service classes + updated_at: '2020-09-18T14:55:56Z' + url: https://api.github.com/repos/packit/ogr/issues/338 user: - avatar_url: https://avatars3.githubusercontent.com/u/434063?v=4 - events_url: https://api.github.com/users/nickcannariato/events{/privacy} - followers_url: https://api.github.com/users/nickcannariato/followers - following_url: https://api.github.com/users/nickcannariato/following{/other_user} - gists_url: https://api.github.com/users/nickcannariato/gists{/gist_id} + 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/nickcannariato - id: 434063 - login: nickcannariato - node_id: MDQ6VXNlcjQzNDA2Mw== - organizations_url: https://api.github.com/users/nickcannariato/orgs - received_events_url: https://api.github.com/users/nickcannariato/received_events - repos_url: https://api.github.com/users/nickcannariato/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/nickcannariato/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nickcannariato/subscriptions + 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/nickcannariato + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Closes #308 ' - closed_at: '2020-01-24T19:51:49Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/309/comments - created_at: '2020-01-17T13:36:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/309/events - html_url: https://github.com/packit/ogr/pull/309 - id: 551419531 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/309/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-16T15:47:15Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/466/comments + created_at: '2020-09-16T15:33:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/466/events + html_url: https://github.com/packit/ogr/issues/466 + id: 702867074 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/466/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY0MTQ0OTky - number: 309 + node_id: MDU6SXNzdWU3MDI4NjcwNzQ= + number: 466 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/309.diff - html_url: https://github.com/packit/ogr/pull/309 - patch_url: https://github.com/packit/ogr/pull/309.patch - url: https://api.github.com/repos/packit/ogr/pulls/309 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add filtering of issues/PRs by author/assignee - updated_at: '2020-02-10T18:51:00Z' - url: https://api.github.com/repos/packit/ogr/issues/309 + title: '[packit] Propose update failed for release 0.15.0' + updated_at: '2020-09-16T15:47:15Z' + url: https://api.github.com/repos/packit/ogr/issues/466 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Hello there \U0001F44B \r\n\r\nThis came up in my `good-first-issue`\ - \ search and seemed like a fairly straightforward bug to fix.\r\n\r\n\ - I decided to treat it as a data problem and check for the existence\ - \ of a trailing slash in a simple if statement. It worked in the test\ - \ cases I passed it, and should be pretty straightforward to debug.\ - \ \r\n\r\nOpen to any/all criticism. Thanks for all you do!" - closed_at: '2020-02-06T12:58:10Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/319/comments - created_at: '2020-01-31T01:06:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/319/events - html_url: https://github.com/packit/ogr/pull/319 - id: 557850271 + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Support multi-part namespaces\ + \ in parsing\n* Validate commit flag state before setting\n* Add type\ + \ ignore to GitHub App auth\n* Update pre-commit configuration and fix\ + \ mypy remarks\n\n\nYou can change it by editing `CHANGELOG.md` in the\ + \ root of this repository and pushing to `0.15.0-release` branch before\ + \ merging this PR.\nI didn't find any files where `__version__` is\ + \ set." + closed_at: '2020-09-16T15:05:17Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/465/comments + created_at: '2020-09-16T13:15:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/465/events + html_url: https://github.com/packit/ogr/pull/465 + id: 702756388 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -111729,82 +140318,95 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/319/labels{/name} + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/465/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY5MzYzMTc2 - number: 319 + node_id: MDExOlB1bGxSZXF1ZXN0NDg3OTgxNzk4 + number: 465 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/319.diff - html_url: https://github.com/packit/ogr/pull/319 - patch_url: https://github.com/packit/ogr/pull/319.patch - url: https://api.github.com/repos/packit/ogr/pulls/319 + diff_url: https://github.com/packit/ogr/pull/465.diff + html_url: https://github.com/packit/ogr/pull/465 + patch_url: https://github.com/packit/ogr/pull/465.patch + url: https://api.github.com/repos/packit/ogr/pulls/465 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove trailing slash from URLs before parsing - updated_at: '2020-02-06T17:15:07Z' - url: https://api.github.com/repos/packit/ogr/issues/319 + title: 0.15.0 release + updated_at: '2020-09-16T15:08:48Z' + url: https://api.github.com/repos/packit/ogr/issues/465 user: - avatar_url: https://avatars3.githubusercontent.com/u/434063?v=4 - events_url: https://api.github.com/users/nickcannariato/events{/privacy} - followers_url: https://api.github.com/users/nickcannariato/followers - following_url: https://api.github.com/users/nickcannariato/following{/other_user} - gists_url: https://api.github.com/users/nickcannariato/gists{/gist_id} + 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/nickcannariato - id: 434063 - login: nickcannariato - node_id: MDQ6VXNlcjQzNDA2Mw== - organizations_url: https://api.github.com/users/nickcannariato/orgs - received_events_url: https://api.github.com/users/nickcannariato/received_events - repos_url: https://api.github.com/users/nickcannariato/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/nickcannariato/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nickcannariato/subscriptions + 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/nickcannariato + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\n>>> from ogr.parsing import parse_git_repo\r\n>>> r = parse_git_repo('https://github.com/avocado-framework/avocado/')\r\ - \n>>> r.namespace\r\n'avocado'\r\n>>> r.repo\r\n''\r\n```" - closed_at: '2020-02-06T12:58:11Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/318/comments - created_at: '2020-01-29T13:10:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/318/events - html_url: https://github.com/packit/ogr/issues/318 - id: 556852319 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-09-16T13:15:51Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/457/comments + created_at: '2020-09-01T13:57:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/457/events + html_url: https://github.com/packit/ogr/issues/457 + id: 690166541 labels: - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/318/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/457/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTY4NTIzMTk= - number: 318 + node_id: MDU6SXNzdWU2OTAxNjY1NDE= + number: 457 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: parse_git_repo fails to handle '/' at string end correctly - updated_at: '2020-02-06T12:58:11Z' - url: https://api.github.com/repos/packit/ogr/issues/318 + title: New minor release + updated_at: '2020-09-16T13:15:51Z' + url: https://api.github.com/repos/packit/ogr/issues/457 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -111822,73 +140424,192 @@ requests.sessions: subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-16T09:45:50Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/456/comments + created_at: '2020-08-20T08:09:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/456/events + html_url: https://github.com/packit/ogr/issues/456 + id: 682514734 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/456/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2ODI1MTQ3MzQ= + number: 456 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.13.1' + updated_at: '2020-09-16T09:45:50Z' + url: https://api.github.com/repos/packit/ogr/issues/456 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Support multi-part namespaces in parsing.' + closed_at: '2020-09-14T12:00:53Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/463/comments + created_at: '2020-09-14T10:25:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/463/events + html_url: https://github.com/packit/ogr/pull/463 + id: 700972195 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/463/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDg2NTA2NTQw + number: 463 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/463.diff + html_url: https://github.com/packit/ogr/pull/463 + patch_url: https://github.com/packit/ogr/pull/463.patch + url: https://api.github.com/repos/packit/ogr/pulls/463 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Support multi part namespaces + updated_at: '2020-09-14T12:04:19Z' + url: https://api.github.com/repos/packit/ogr/issues/463 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER body: '' - closed_at: '2020-02-06T12:47:41Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/322/comments - created_at: '2020-02-05T10:22:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/322/events - html_url: https://github.com/packit/ogr/pull/322 - id: 560273848 + closed_at: '2020-09-09T13:45:38Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/462/comments + created_at: '2020-09-09T11:11:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/462/events + html_url: https://github.com/packit/ogr/pull/462 + id: 696721276 labels: - - color: 18e033 + - color: 0e8a16 default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/322/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/462/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzcxMjkxODM1 - number: 322 + node_id: MDExOlB1bGxSZXF1ZXN0NDgyNzY1NDAz + number: 462 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/322.diff - html_url: https://github.com/packit/ogr/pull/322 - patch_url: https://github.com/packit/ogr/pull/322.patch - url: https://api.github.com/repos/packit/ogr/pulls/322 + diff_url: https://github.com/packit/ogr/pull/462.diff + html_url: https://github.com/packit/ogr/pull/462 + patch_url: https://github.com/packit/ogr/pull/462.patch + url: https://api.github.com/repos/packit/ogr/pulls/462 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pre-commit changes - updated_at: '2020-02-06T12:47:46Z' - url: https://api.github.com/repos/packit/ogr/issues/322 + title: Validate commit flag state before setting + updated_at: '2020-09-09T16:04:05Z' + url: https://api.github.com/repos/packit/ogr/issues/462 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: TomasTomecek vs Tomas Tomecek - closed_at: '2020-01-29T12:56:32Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/317/comments - created_at: '2020-01-28T15:19:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/317/events - html_url: https://github.com/packit/ogr/pull/317 - id: 556279456 + body: "* Update pre-commit\r\n* Fix imports from PyGithub\r\n* Type-cast\ + \ `release.created_at` from datetime to string" + closed_at: '2020-09-03T09:09:02Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/460/comments + created_at: '2020-09-02T11:02:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/460/events + html_url: https://github.com/packit/ogr/pull/460 + id: 690926698 labels: - color: 0e8a16 default: false @@ -111897,41 +140618,41 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/317/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/460/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY4MDcxOTA1 - number: 317 + node_id: MDExOlB1bGxSZXF1ZXN0NDc3NzQxMTAx + number: 460 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/317.diff - html_url: https://github.com/packit/ogr/pull/317 - patch_url: https://github.com/packit/ogr/pull/317.patch - url: https://api.github.com/repos/packit/ogr/pulls/317 + diff_url: https://github.com/packit/ogr/pull/460.diff + html_url: https://github.com/packit/ogr/pull/460 + patch_url: https://github.com/packit/ogr/pull/460.patch + url: https://api.github.com/repos/packit/ogr/pulls/460 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github.pr.author: use login instead of name' - updated_at: '2020-01-30T08:42:02Z' - url: https://api.github.com/repos/packit/ogr/issues/317 + title: Update pre-commit configuration and fix mypy remarks + updated_at: '2020-09-03T09:14:01Z' + url: https://api.github.com/repos/packit/ogr/issues/460 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] @@ -111943,8 +140664,13 @@ requests.sessions: | --------------- | ----- | - | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. - Reason: ''Not Found''. ` | + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | @@ -111952,192 +140678,317 @@ requests.sessions: the issue comment. ' - closed_at: '2020-01-28T14:17:18Z' + closed_at: '2020-09-02T08:18:37Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/314/comments - created_at: '2020-01-28T14:05:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/314/events - html_url: https://github.com/packit/ogr/issues/314 - id: 556231299 + comments_url: https://api.github.com/repos/packit/ogr/issues/459/comments + created_at: '2020-09-02T07:22:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/459/events + html_url: https://github.com/packit/ogr/issues/459 + id: 690786308 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/314/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/459/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTYyMzEyOTk= - number: 314 + node_id: MDU6SXNzdWU2OTA3ODYzMDg= + number: 459 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.10.0' - updated_at: '2020-01-28T14:17:18Z' - url: https://api.github.com/repos/packit/ogr/issues/314 + title: '[packit] Propose update failed for release 0.14.0' + updated_at: '2020-09-02T08:18:37Z' + url: https://api.github.com/repos/packit/ogr/issues/459 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. - Reason: ''Not Found''. ` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-01-28T14:17:12Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/315/comments - created_at: '2020-01-28T14:05:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/315/events - html_url: https://github.com/packit/ogr/issues/315 - id: 556231476 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/315/labels{/name} + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add remarks from review\n\ + * Refactor authentication in `GithubService`\n* Add suggestions from\ + \ review for token managers\n* Check for multiple auth methods in `GithubService`\n\ + * Add unit tests for parsing `tokman_instance_url`\n* Implement TokmanGithubTokenManager\n\ + * Implement suggestions from review\n* Introduce token managers for\ + \ GitHub App\n* Move getting github_instance from project to service\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.14.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-09-02T07:19:22Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/458/comments + created_at: '2020-09-01T13:58:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/458/events + html_url: https://github.com/packit/ogr/pull/458 + id: 690167196 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/458/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTYyMzE0NzY= - number: 315 + node_id: MDExOlB1bGxSZXF1ZXN0NDc3MTAxNzA0 + number: 458 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/458.diff + html_url: https://github.com/packit/ogr/pull/458 + patch_url: https://github.com/packit/ogr/pull/458.patch + url: https://api.github.com/repos/packit/ogr/pulls/458 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.10.0' - updated_at: '2020-01-28T14:17:12Z' - url: https://api.github.com/repos/packit/ogr/issues/315 + title: 0.14.0 release + updated_at: '2020-09-02T07:23:29Z' + url: https://api.github.com/repos/packit/ogr/issues/458 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + 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/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + 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 - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f30` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. - Reason: ''Not Found''. ` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-01-28T14:17:02Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/316/comments - created_at: '2020-01-28T14:05:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/316/events - html_url: https://github.com/packit/ogr/issues/316 - id: 556231659 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/316/labels{/name} + author_association: MEMBER + body: changed description + closed_at: '2018-12-13T14:24:08Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/1/comments + created_at: '2018-12-13T13:01:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/1/events + html_url: https://github.com/packit/ogr/pull/1 + id: 390668872 + labels: + - color: ededed + default: false + description: null + id: 1457192587 + name: test_lb1 + node_id: MDU6TGFiZWwxNDU3MTkyNTg3 + url: https://api.github.com/repos/packit/ogr/labels/test_lb1 + - color: ededed + default: false + description: null + id: 1457192593 + name: test_lb2 + node_id: MDU6TGFiZWwxNDU3MTkyNTkz + url: https://api.github.com/repos/packit/ogr/labels/test_lb2 + labels_url: https://api.github.com/repos/packit/ogr/issues/1/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjM4MzgxNzIz + number: 1 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/1.diff + html_url: https://github.com/packit/ogr/pull/1 + patch_url: https://github.com/packit/ogr/pull/1.patch + url: https://api.github.com/repos/packit/ogr/pulls/1 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'WIP: API' + updated_at: '2020-08-26T11:58:33Z' + url: https://api.github.com/repos/packit/ogr/issues/1 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.36854 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:33 GMT + ETag: W/"82d12f70e8c4d62730839907fab0dd3a812a3759191ab7d526854ef84686fd13" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7FDD9:191B57C:6075DC41 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4704' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '296' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=5: + - metadata: + latency: 0.3658881187438965 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "The `ogr` is a nice, short name, but the 'meaning' should be changed.\r\ + \n\r\nFeel free to edit this comment.\r\n\r\n| O | G | R |\r\n| - |\ + \ - | - |\r\n| our | git | rule |\r\n| one | git-forge | revolution\ + \ |\r\n| open | | rebellion |\r\n| object | | realm |\r\n| only | |\ + \ route |\r\n| omnipotent | | rocket |\r\n| | | recipe |\r\n| | | rainbow\ + \ |\r\n| | | roadway |\r\n| | | reactor |\r\n| | | reunion |\r\n| |\ + \ | rebel |\r\n| | | ruler |\r\n\r\nPossible combinations (and votes):\r\ + \n- our-git-rebel @phracek \r\n- open-git-rainbow @phracek @TomasTomecek\ + \ \r\n- object-git-reactor @phracek \r\n- the [O]ne [G]it [R]uler @TomasTomecek\ + \ \r\n- [O]ne [G]it library to [R]ule @TomasTomecek @jpopelka\r\n- [O]mniponent\ + \ [G]it-forge [R]uler @jpopelka @lachmanfrantisek @TomasTomecek " + closed_at: '2019-02-14T13:28:27Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/4/comments + created_at: '2019-01-17T08:26:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/4/events + html_url: https://github.com/packit/ogr/issues/4 + id: 400160755 + labels: + - color: ededed + default: false + description: null + id: 1457192587 + name: test_lb1 + node_id: MDU6TGFiZWwxNDU3MTkyNTg3 + url: https://api.github.com/repos/packit/ogr/labels/test_lb1 + - color: ededed + default: false + description: null + id: 1457192593 + name: test_lb2 + node_id: MDU6TGFiZWwxNDU3MTkyNTkz + url: https://api.github.com/repos/packit/ogr/labels/test_lb2 + labels_url: https://api.github.com/repos/packit/ogr/issues/4/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTYyMzE2NTk= - number: 316 + node_id: MDU6SXNzdWU0MDAxNjA3NTU= + number: 4 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.10.0' - updated_at: '2020-01-28T14:17:02Z' - url: https://api.github.com/repos/packit/ogr/issues/316 + title: Better name + updated_at: '2020-08-26T10:58:41Z' + url: https://api.github.com/repos/packit/ogr/issues/4 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + 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/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Add tests for filtering\ - \ issues by author/assignee\n* Add filtering of issues by author/assignee\n\ - * Add response files\n* Add parameters to get_files method\n* WIP: add\ - \ method to list files\n* github: set repo & namespace when forking\n\ - * Implement get_tags for GithubProject\n* Fix update_pr_info (Pagure)\ - \ bug\n* Implement setters for Pagure PR\n* Implement Issue/PR setters\ - \ for Github/Gitlab\n* Add tests for PR/Issue setters for Github/Gitlab\n\ - * (#245) Improve Pagure's project_create* add reason of failure\n* Regenerate\ - \ gitlab tests after dep update\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.10.0-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-01-28T14:03:00Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/313/comments - created_at: '2020-01-27T11:51:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/313/events - html_url: https://github.com/packit/ogr/pull/313 - id: 555524947 + body: "- [x] Interface for token manager using github app\r\n- [x] Refactor\ + \ default solution\r\n- [x] Implement support for `tokman`" + closed_at: '2020-08-25T09:31:39Z' + comments: 18 + comments_url: https://api.github.com/repos/packit/ogr/issues/450/comments + created_at: '2020-08-11T09:16:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/450/events + html_url: https://github.com/packit/ogr/pull/450 + id: 676716034 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -112145,60 +140996,53 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/313/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/450/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY3NDUwNDkz - number: 313 + node_id: MDExOlB1bGxSZXF1ZXN0NDY1OTc3NzQ2 + number: 450 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/313.diff - html_url: https://github.com/packit/ogr/pull/313 - patch_url: https://github.com/packit/ogr/pull/313.patch - url: https://api.github.com/repos/packit/ogr/pulls/313 + diff_url: https://github.com/packit/ogr/pull/450.diff + html_url: https://github.com/packit/ogr/pull/450 + patch_url: https://github.com/packit/ogr/pull/450.patch + url: https://api.github.com/repos/packit/ogr/pulls/450 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.10.0 release - updated_at: '2020-01-28T14:05:46Z' - url: https://api.github.com/repos/packit/ogr/issues/313 + title: Use tokman in ogr + updated_at: '2020-08-25T17:28:39Z' + url: https://api.github.com/repos/packit/ogr/issues/450 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Release-bot, it's time to work! - closed_at: '2020-01-27T11:51:57Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-08-19T11:07:53Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/312/comments - created_at: '2020-01-27T11:48:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/312/events - html_url: https://github.com/packit/ogr/issues/312 - id: 555523325 + comments_url: https://api.github.com/repos/packit/ogr/issues/454/comments + created_at: '2020-08-19T11:02:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/454/events + html_url: https://github.com/packit/ogr/issues/454 + id: 681751158 labels: - color: ededed default: false @@ -112214,71 +141058,108 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/312/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/454/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTU1MjMzMjU= - number: 312 + node_id: MDU6SXNzdWU2ODE3NTExNTg= + number: 454 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2020-01-27T11:51:57Z' - url: https://api.github.com/repos/packit/ogr/issues/312 + title: New patch release + updated_at: '2020-08-19T11:07:53Z' + url: https://api.github.com/repos/packit/ogr/issues/454 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Consider also other filtering options:\r\n\r\nThe options are:\r\ - \nhttps://github.com/PyGithub/PyGithub/blob/master/github/Repository.py#L2172-L2195" - closed_at: '2020-01-24T19:51:49Z' + body: '' + closed_at: '2020-08-17T08:56:28Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/308/comments - created_at: '2020-01-16T10:24:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/308/events - html_url: https://github.com/packit/ogr/issues/308 - id: 550712442 + comments_url: https://api.github.com/repos/packit/ogr/issues/453/comments + created_at: '2020-08-13T16:21:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/453/events + html_url: https://github.com/packit/ogr/pull/453 + id: 678564351 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db + - color: 0e8a16 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/453/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDY3NDkwMTYz + number: 453 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/453.diff + html_url: https://github.com/packit/ogr/pull/453 + patch_url: https://github.com/packit/ogr/pull/453.patch + url: https://api.github.com/repos/packit/ogr/pulls/453 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: https://github.com/packit-service -> https://github.com/packit + updated_at: '2020-08-17T09:27:06Z' + url: https://api.github.com/repos/packit/ogr/issues/453 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Add method where user can request access for a project.\r\n\r\n\ + - Gitlab - Implemented here - #439 \r\n- Github - After looking into\ + \ https://pygithub.readthedocs.io/en/latest/index.html (Seems its not\ + \ possible in Github to request for project access)\r\n- Pagure - Unsure\ + \ about the support (But unable to find anything here - https://pagure.io/api/0/#projects-tab)" + closed_at: '2020-08-17T00:45:05Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/440/comments + created_at: '2020-07-28T17:53:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/440/events + html_url: https://github.com/packit/ogr/issues/440 + id: 667259796 + labels: - color: a2eeef default: false description: New feature or a request for enhancement. @@ -112286,103 +141167,176 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/308/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/440/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTA3MTI0NDI= - number: 308 + node_id: MDU6SXNzdWU2NjcyNTk3OTY= + number: 440 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Support listing issues based on creator - updated_at: '2020-01-24T19:51:49Z' - url: https://api.github.com/repos/packit/ogr/issues/308 + title: Implement request_access for project + updated_at: '2020-08-17T00:45:05Z' + url: https://api.github.com/repos/packit/ogr/issues/440 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/dhodovsk + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-01-21T11:27:06Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/297/comments - created_at: '2019-12-17T08:10:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/297/events - html_url: https://github.com/packit/ogr/pull/297 - id: 538905049 + author_association: CONTRIBUTOR + body: Added unit test for Pagure.PullRequest.head_commit + closed_at: '2020-08-15T10:15:27Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/369/comments + created_at: '2020-03-27T14:53:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/369/events + html_url: https://github.com/packit/ogr/pull/369 + id: 589189620 labels: - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/297/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/369/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzUzOTcxMDUx - number: 297 + node_id: MDExOlB1bGxSZXF1ZXN0Mzk0ODAwMjA0 + number: 369 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/297.diff - html_url: https://github.com/packit/ogr/pull/297 - patch_url: https://github.com/packit/ogr/pull/297.patch - url: https://api.github.com/repos/packit/ogr/pulls/297 + diff_url: https://github.com/packit/ogr/pull/369.diff + html_url: https://github.com/packit/ogr/pull/369 + patch_url: https://github.com/packit/ogr/pull/369.patch + url: https://api.github.com/repos/packit/ogr/pulls/369 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add method to list files - updated_at: '2020-01-21T11:27:06Z' - url: https://api.github.com/repos/packit/ogr/issues/297 + title: Added unit test for Pagure.PullRequest.head_commit + updated_at: '2020-08-15T10:15:27Z' + url: https://api.github.com/repos/packit/ogr/issues/369 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #245' - closed_at: '2020-01-03T08:43:56Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/300/comments - created_at: '2019-12-30T18:09:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/300/events - html_url: https://github.com/packit/ogr/pull/300 - id: 543964942 + body: "- [x] The contribution guide should be accessible from the README.md.\ + \ (#265 )\r\n- [ ] We need to be sure that the guide is current and\ + \ describes the testing approach well.\r\n- [ ] Document `/packit` command." + closed_at: '2020-08-14T09:27:22Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/165/comments + created_at: '2019-09-05T13:37:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/165/events + html_url: https://github.com/packit/ogr/issues/165 + id: 489761258 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/165/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0ODk3NjEyNTg= + number: 165 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Update and link the contribution guide in README + updated_at: '2020-08-14T17:30:15Z' + url: https://api.github.com/repos/packit/ogr/issues/165 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Closes #196 ' + closed_at: '2020-08-13T10:28:26Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/444/comments + created_at: '2020-08-03T09:30:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/444/events + html_url: https://github.com/packit/ogr/pull/444 + id: 671937907 labels: - color: 0e8a16 default: false @@ -112391,24 +141345,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/300/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/444/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzU4MTc5NDg3 - number: 300 + node_id: MDExOlB1bGxSZXF1ZXN0NDYyMDYyMjUw + number: 444 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/300.diff - html_url: https://github.com/packit/ogr/pull/300 - patch_url: https://github.com/packit/ogr/pull/300.patch - url: https://api.github.com/repos/packit/ogr/pulls/300 + diff_url: https://github.com/packit/ogr/pull/444.diff + html_url: https://github.com/packit/ogr/pull/444 + patch_url: https://github.com/packit/ogr/pull/444.patch + url: https://api.github.com/repos/packit/ogr/pulls/444 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add resolution of failure of Pagure's project_create - updated_at: '2020-01-16T10:43:12Z' - url: https://api.github.com/repos/packit/ogr/issues/300 + title: Jupyter examples + updated_at: '2020-08-13T10:29:44Z' + url: https://api.github.com/repos/packit/ogr/issues/444 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -112427,43 +141381,8 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-01-03T10:13:00Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/298/comments - created_at: '2019-12-19T21:12:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/298/events - html_url: https://github.com/packit/ogr/pull/298 - id: 540569497 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/298/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzU1MzYwNjcy - number: 298 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/298.diff - html_url: https://github.com/packit/ogr/pull/298 - patch_url: https://github.com/packit/ogr/pull/298.patch - url: https://api.github.com/repos/packit/ogr/pulls/298 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Setters for Issue/PR - updated_at: '2020-01-16T10:43:08Z' - url: https://api.github.com/repos/packit/ogr/issues/298 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + assignee: + 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} @@ -112481,30 +141400,62 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "```\r\nName Stmts Miss Cover Missing\r\ - \n----------------------------------------------------------\r\nservices/github.py\ - \ 114 63 45% 17-19, 24-26, 30, 33-34, 41-42, 47, 51,\ - \ 58-61, 64, 67, 70, 73-79, 82-83, 86-87, 95-98, 108, 111, 114-115,\ - \ 118, 121, 124, 127-132, 135, 149, 170, 184, 193-203, 207-209, 212-213,\ - \ 216-217, 227, 230\r\nservices/gitlab.py 66 66 0%\ - \ 1-144\r\nservices/our_pagure.py 79 46 42% 33, 36-39,\ - \ 134-148, 160-176, 180-186, 249-256, 259-264, 267-270, 273, 276, 279-282,\ - \ 285-288, 291-294, 297-298\r\nutils.py 150 110\ - \ 27% 35-77, 82-83, 88-89, 94, 98-116, 120-130, 145-148, 163-165,\ - \ 169-176, 180-214, 219-248, 252, 260, 273\r\n```\r\n\r\nI know the\ - \ `gitlab` module is WIP, but the others deserve more tests IMHO" - closed_at: '2020-01-15T11:22:38Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/49/comments - created_at: '2019-03-26T14:47:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/49/events - html_url: https://github.com/packit/ogr/issues/49 - id: 425463412 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR + body: "We have recently added a short usage section into the README.md\ + \ (#195).\r\n\r\nIt would be nice to create a new folder in the root\ + \ of this repository called `examples` and demonstrate various ogr functions.\r\ + \n\r\nFor me, the best way how to do it is to create a [Jupyter notebook](https://jupyter.org/)\ + \ as it is supported by GitHub and we can easily combine code snippets,\ + \ with outputs and comments in Markdown.\r\n\r\n*update by @lachmanfrantisek*\r\ + \n\r\nTODO:\r\n- [ ] Update the example in the README (something short).\r\ + \n- [ ] Create a folder `examples`.\r\n- [ ] Create some interesting\ + \ examples / usecases using [jupyter-notebook](https://jupyter.org/)\ + \ in that folder (github can display the `ipynb` files pretty well).\r\ + \n - Be sure, that you are not commiting your authentication tokens..;)\r\ + \n- [ ] Link the examples in the README or link the `examples/README.md`\ + \ where we can have more descriptive text for examples and links for\ + \ the specific `ipynb` files." + closed_at: '2020-08-13T10:28:26Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/196/comments + created_at: '2019-09-12T10:02:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/196/events + html_url: https://github.com/packit/ogr/issues/196 + id: 492708275 labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation - color: 7057ff default: false description: Good for newcomers @@ -112512,193 +141463,62 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9d0c4 + - color: bf6b0b default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/49/labels{/name} + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/196/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjU0NjM0MTI= - number: 49 + node_id: MDU6SXNzdWU0OTI3MDgyNzU= + number: 196 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Modules with poor code coverage - updated_at: '2020-01-15T11:22:38Z' - url: https://api.github.com/repos/packit/ogr/issues/49 + title: Examples for ogr usage using Jupyter notebook + updated_at: '2020-08-13T10:28:26Z' + url: https://api.github.com/repos/packit/ogr/issues/196 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 + events_url: https://api.github.com/users/rpitonak/events{/privacy} + followers_url: https://api.github.com/users/rpitonak/followers + following_url: https://api.github.com/users/rpitonak/following{/other_user} + gists_url: https://api.github.com/users/rpitonak/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/rpitonak + id: 26160778 + login: rpitonak + node_id: MDQ6VXNlcjI2MTYwNzc4 + organizations_url: https://api.github.com/users/rpitonak/orgs + received_events_url: https://api.github.com/users/rpitonak/received_events + repos_url: https://api.github.com/users/rpitonak/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/rpitonak/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/rpitonak - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "TLDR: Investigate if it is possible to reset PR/commit flags. (*added\ - \ by @lachmanfrantisek*)\r\n\r\n----\r\n\r\nI solved a problem with\ - \ reset Copr build statuses.\r\nLike can be seen here: https://github.com/packit-service/hello-world/pull/9\r\ - \n\r\nIt would be nice to look at the possibility if in case of the\ - \ pull request is not created by a collaborator to get rid of check\ - \ statuses. Like nothing is shown and the pull request can not be merged." - closed_at: '2020-01-13T09:38:06Z' + body: 'Fixes #449 ' + closed_at: '2020-08-13T07:00:04Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/133/comments - created_at: '2019-07-23T07:53:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/133/events - html_url: https://github.com/packit/ogr/issues/133 - id: 471540158 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: ff9990 - default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - labels_url: https://api.github.com/repos/packit/ogr/issues/133/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NzE1NDAxNTg= - number: 133 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Look at possibility for reseting or get rid off checkes in GitHub - updated_at: '2020-01-13T09:38:06Z' - url: https://api.github.com/repos/packit/ogr/issues/133 - user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos - site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions - type: User - url: https://api.github.com/users/phracek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-01-09T08:17:00Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/305/comments - created_at: '2020-01-05T17:52:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/305/events - html_url: https://github.com/packit/ogr/pull/305 - id: 545446757 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/305/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzU5MzIyMjQw - number: 305 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/305.diff - html_url: https://github.com/packit/ogr/pull/305 - patch_url: https://github.com/packit/ogr/pull/305.patch - url: https://api.github.com/repos/packit/ogr/pulls/305 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'github: set repo & namespace when forking' - updated_at: '2020-01-09T08:40:00Z' - url: https://api.github.com/repos/packit/ogr/issues/305 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #303' - closed_at: '2020-01-06T08:18:34Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/304/comments - created_at: '2020-01-05T10:51:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/304/events - html_url: https://github.com/packit/ogr/pull/304 - id: 545401796 + comments_url: https://api.github.com/repos/packit/ogr/issues/451/comments + created_at: '2020-08-12T21:44:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/451/events + html_url: https://github.com/packit/ogr/pull/451 + id: 677997734 labels: - color: 0e8a16 default: false @@ -112707,134 +141527,153 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/304/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/451/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzU5MjkwMzMz - number: 304 + node_id: MDExOlB1bGxSZXF1ZXN0NDY3MDIzODIw + number: 451 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/304.diff - html_url: https://github.com/packit/ogr/pull/304 - patch_url: https://github.com/packit/ogr/pull/304.patch - url: https://api.github.com/repos/packit/ogr/pulls/304 + diff_url: https://github.com/packit/ogr/pull/451.diff + html_url: https://github.com/packit/ogr/pull/451 + patch_url: https://github.com/packit/ogr/pull/451.patch + url: https://api.github.com/repos/packit/ogr/pulls/451 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement get_tags for GithubProject - updated_at: '2020-01-06T08:48:26Z' - url: https://api.github.com/repos/packit/ogr/issues/304 + title: Create issue in Github without labels + updated_at: '2020-08-13T07:00:04Z' + url: https://api.github.com/repos/packit/ogr/issues/451 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\nipdb> git_project \ - \ \ - \ \r\n\r\n\r\nipdb> git_project.get_tags \ - \ \r\n>\r\n\r\nipdb> git_project.get_tags() \ - \ \r\n*** NotImplementedError\r\n```" - closed_at: '2020-01-06T08:18:34Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/303/comments - created_at: '2020-01-03T14:36:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/303/events - html_url: https://github.com/packit/ogr/issues/303 - id: 545018569 + author_association: NONE + body: "Sentry Issue: [RED-HAT-0P-2RX](https://sentry.io/organizations/red-hat-0p/issues/1828647684/?referrer=github_integration)\r\ + \n\r\n```\r\nTypeError: 'NoneType' object is not iterable\r\n(2 additional\ + \ frame(s) were not displayed)\r\n...\r\n File \"packit_service/worker/handlers/abstract.py\"\ + , line 152, in run_n_clean\r\n return self.run()\r\n File \"packit_service/worker/handlers/github_handlers.py\"\ + , line 213, in run\r\n body=body_msg,\r\n File \"ogr/services/github/project.py\"\ + , line 313, in create_issue\r\n return GithubIssue.create(project=self,\ + \ title=title, body=body, labels=labels)\r\n File \"ogr/services/github/issue.py\"\ + , line 101, in create\r\n title=title, body=body, labels=labels\r\ + \n File \"github/Repository.py\", line 1063, in create_issue\r\n \ + \ assert labels is github.GithubObject.NotSet or all(isinstance(element,\ + \ github.Label.Label) or isinstance(element, str) for element in labels),\ + \ labels\r\n```\r\n\r\nRecently we added `labels` parameters to `create_issue`\ + \ method and it defaults to None, but it should probably default to\ + \ [] so that it does not fail on the line with `assert`." + closed_at: '2020-08-13T07:00:04Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/449/comments + created_at: '2020-08-10T07:47:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/449/events + html_url: https://github.com/packit/ogr/issues/449 + id: 675938538 labels: - - color: '000000' + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9e231 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/303/labels{/name} + description: High priority. + id: 1432779316 + name: high-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzE2 + url: https://api.github.com/repos/packit/ogr/labels/high-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/449/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDUwMTg1Njk= - number: 303 + node_id: MDU6SXNzdWU2NzU5Mzg1Mzg= + number: 449 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get_tags is not implemented for GithubProject - updated_at: '2020-01-06T08:18:34Z' - url: https://api.github.com/repos/packit/ogr/issues/303 + title: 'Creating issues in Github fails with TypeError: ''NoneType'' object + is not iterable' + updated_at: '2020-08-13T07:00:04Z' + url: https://api.github.com/repos/packit/ogr/issues/449 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 + events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers + following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/sentry-io + id: 39604003 + login: sentry-io[bot] + node_id: MDM6Qm90Mzk2MDQwMDM= + organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events + repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/sentry-io%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "this means to use standard-test-roles to wrap our tests so they\ - \ can run when we create PRs on dist-git\r\n\r\nsee [python-docker's\ - \ test wrapper](https://src.fedoraproject.org/rpms/python-docker/blob/master/f/tests)\ - \ for more details" - closed_at: '2020-01-03T14:54:39Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/29/comments - created_at: '2019-03-01T17:18:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/29/events - html_url: https://github.com/packit/ogr/issues/29 - id: 416200836 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `The distgit repository /tmp/packit-dist-gitwfi22npg is dirty.This + is not supported.` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.12.1.tar.gz. + Reason: ''Not Found''. ` | + + | `master` | `The distgit repository /tmp/packit-dist-gitwfi22npg is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-08-09T16:57:04Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/423/comments + created_at: '2020-05-27T13:46:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/423/events + html_url: https://github.com/packit/ogr/issues/423 + id: 625711319 labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: '000000' default: false description: Is the issue still valid? @@ -112842,277 +141681,240 @@ requests.sessions: name: stale node_id: MDU6TGFiZWwxNjcwMTMyNjE5 url: https://api.github.com/repos/packit/ogr/labels/stale - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/29/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/423/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTYyMDA4MzY= - number: 29 + node_id: MDU6SXNzdWU2MjU3MTEzMTk= + number: 423 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: run our tests in Fedora CI - updated_at: '2020-01-05T17:00:32Z' - url: https://api.github.com/repos/packit/ogr/issues/29 + title: '[packit] Propose update failed for release 0.12.1' + updated_at: '2020-08-09T16:57:04Z' + url: https://api.github.com/repos/packit/ogr/issues/423 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=6: - - metadata: - latency: 0.5163717269897461 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "During the implementation of setters for PR for Pagure (#298) I've\ - \ found out that Pagure's API requires title to be given (which seems\ - \ a bit odd, since why would you need to give title when you want to\ - \ update only description).\r\n\r\nWill fix in PR above, just letting\ - \ know about the bug." - closed_at: '2020-01-03T10:13:01Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/299/comments - created_at: '2019-12-26T21:35:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/299/events - html_url: https://github.com/packit/ogr/issues/299 - id: 542675897 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/299/labels{/name} + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Making create_issue uniform\ + \ by adding labels\n* Add support to create private issue\n* Fix getting\ + \ the installation ID after PyGithub 1.52\n* Org rename: fix integration\ + \ tests\n* zuul: org rename\n* request access to project on Gitlab\n\ + * Support add group for pagure\n* Revert \"Drop python 3.6\"\n* Update\ + \ ogr/utils.py\n* Remove unused util functions\n* Refactor using sourcery\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.13.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-08-07T09:09:02Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/447/comments + created_at: '2020-08-05T14:20:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/447/events + html_url: https://github.com/packit/ogr/pull/447 + id: 673578649 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/447/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDI2NzU4OTc= - number: 299 + node_id: MDExOlB1bGxSZXF1ZXN0NDYzNDE2MTE4 + number: 447 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/447.diff + html_url: https://github.com/packit/ogr/pull/447 + patch_url: https://github.com/packit/ogr/pull/447.patch + url: https://api.github.com/repos/packit/ogr/pulls/447 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Updating PullRequest info (Pagure) - updated_at: '2020-01-03T10:13:01Z' - url: https://api.github.com/repos/packit/ogr/issues/299 + title: 0.13.0 release + updated_at: '2020-08-07T11:19:04Z' + url: https://api.github.com/repos/packit/ogr/issues/447 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: started porting upsint to ogr and realized that I can't get all - labels defined on a repo - closed_at: '2020-01-03T09:14:39Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/301/comments - created_at: '2020-01-02T12:24:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/301/events - html_url: https://github.com/packit/ogr/issues/301 - id: 544558708 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-08-05T14:20:46Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/446/comments + created_at: '2020-08-05T14:16:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/446/events + html_url: https://github.com/packit/ogr/issues/446 + id: 673575463 labels: - - color: a2eeef + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/301/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/446/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDQ1NTg3MDg= - number: 301 + node_id: MDU6SXNzdWU2NzM1NzU0NjM= + number: 446 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'RFE: get repo labels' - updated_at: '2020-01-03T09:14:39Z' - url: https://api.github.com/repos/packit/ogr/issues/301 + title: New minor release + updated_at: '2020-08-05T14:20:46Z' + url: https://api.github.com/repos/packit/ogr/issues/446 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "When creating a project in Pagure and setting the namespace, we\ - \ get a general `not a valid choice`.\r\n\r\nIt would be useful to determine\ - \ these two possibilities:\r\n\r\n- non-existing namespace\r\n- no permissions\r\ - \n\r\n---\r\n\r\nThe follow-up to #242 ." - closed_at: '2020-01-03T08:43:55Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/245/comments - created_at: '2019-10-14T13:29:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/245/events - html_url: https://github.com/packit/ogr/issues/245 - id: 506654479 + author_association: CONTRIBUTOR + body: "- [x] Gitlab - Private issues are known as confidential issues\r\ + \n- [x] Github - Does not support private/confidential issues. (raised\ + \ an error here)\r\n- [x] Pagure" + closed_at: '2020-08-05T10:19:34Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/441/comments + created_at: '2020-07-30T14:00:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/441/events + html_url: https://github.com/packit/ogr/pull/441 + id: 668760747 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 8be567 + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/245/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/441/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDY2NTQ0Nzk= - number: 245 + node_id: MDExOlB1bGxSZXF1ZXN0NDU5MjA4ODA5 + number: 441 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/441.diff + html_url: https://github.com/packit/ogr/pull/441 + patch_url: https://github.com/packit/ogr/pull/441.patch + url: https://api.github.com/repos/packit/ogr/pulls/441 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Determine the reason of project_create failure in Pagure namespace - updated_at: '2020-01-03T08:43:55Z' - url: https://api.github.com/repos/packit/ogr/issues/245 + title: Add support to create private issues. + updated_at: '2020-08-05T10:19:34Z' + url: https://api.github.com/repos/packit/ogr/issues/441 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-12-16T14:39:27Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/296/comments - created_at: '2019-12-16T11:17:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/296/events - html_url: https://github.com/packit/ogr/pull/296 - id: 538347978 + author_association: CONTRIBUTOR + body: 'Depends-on: https://github.com/packit/packit/pull/920' + closed_at: '2020-08-04T06:21:47Z' + comments: 20 + comments_url: https://api.github.com/repos/packit/ogr/issues/443/comments + created_at: '2020-08-03T09:07:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/443/events + html_url: https://github.com/packit/ogr/pull/443 + id: 671923353 labels: - color: 0e8a16 default: false @@ -113121,189 +141923,153 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/296/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/443/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzUzNTA4NTk4 - number: 296 + node_id: MDExOlB1bGxSZXF1ZXN0NDYyMDUwMTY5 + number: 443 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/296.diff - html_url: https://github.com/packit/ogr/pull/296 - patch_url: https://github.com/packit/ogr/pull/296.patch - url: https://api.github.com/repos/packit/ogr/pulls/296 + diff_url: https://github.com/packit/ogr/pull/443.diff + html_url: https://github.com/packit/ogr/pull/443 + patch_url: https://github.com/packit/ogr/pull/443.patch + url: https://api.github.com/repos/packit/ogr/pulls/443 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Regenerate gitlab tests after dep update - updated_at: '2019-12-16T14:40:17Z' - url: https://api.github.com/repos/packit/ogr/issues/296 + title: 'zuul: org rename' + updated_at: '2020-08-04T06:21:47Z' + url: https://api.github.com/repos/packit/ogr/issues/443 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/84583?v=4 + events_url: https://api.github.com/users/morucci/events{/privacy} + followers_url: https://api.github.com/users/morucci/followers + following_url: https://api.github.com/users/morucci/following{/other_user} + gists_url: https://api.github.com/users/morucci/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/morucci + id: 84583 + login: morucci + node_id: MDQ6VXNlcjg0NTgz + organizations_url: https://api.github.com/users/morucci/orgs + received_events_url: https://api.github.com/users/morucci/received_events + repos_url: https://api.github.com/users/morucci/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/morucci/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/morucci/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/morucci - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-07-31T16:40:37Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/355/comments + created_at: '2020-03-17T12:39:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/355/events + html_url: https://github.com/packit/ogr/pull/355 + id: 582983115 + labels: + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/355/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzg5ODExMzc3 + number: 355 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/355.diff + html_url: https://github.com/packit/ogr/pull/355 + patch_url: https://github.com/packit/ogr/pull/355.patch + url: https://api.github.com/repos/packit/ogr/pulls/355 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'WIP: packit - make release work on stage' + updated_at: '2020-07-31T16:40:37Z' + url: https://api.github.com/repos/packit/ogr/issues/355 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek - assignees: - - avatar_url: https://avatars1.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} + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: Example of Issue description + closed_at: '2020-07-30T21:15:08Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/442/comments + created_at: '2020-07-30T21:14:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/442/events + html_url: https://github.com/packit/ogr/issues/442 + id: 669202849 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/442/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2NjkyMDI4NDk= + number: 442 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: This is an issue + updated_at: '2020-07-31T12:43:32Z' + url: https://api.github.com/repos/packit/ogr/issues/442 + user: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Change IntEnum to Enum\n\ - * Implement enum for CommitFlag states\n* Fix typos and add tests\n\ - * Implement flags for pull requests\n* Implement CommitFlag for services\n\ - * Add methods to abstract CommitFlag\n* Fix typo in comments\n* Move\ - \ deprecation to separate file\n* Fix backward compatibility on pull\ - \ requests\n* Change attribute comment to body on comments\n* Add backward\ - \ links to comments Closes #255\n* Implement editing comments\n* Return\ - \ smoke test\n* Increase version for packit propose-update\n* Implementation\ - \ of GitPython instead of calling subprocess\n* Fix remarks from review\n\ - * Fix tests\n* Fix small typos and add dummy parameters/attributes\n\ - * Rename pr_create to create_pr and pr_id to id\n* Implement static\ - \ methods for PRs\n* Move deprecated functions to base project and deprecate\ - \ them\n* Create read-only PullRequest class\n* Remove unused code,\ - \ refactor code, change name of method\n* Implement pull request for\ - \ Pagure\n* Implement pull request for Gitlab\n* Implement pull request\ - \ for Github\n* Implement base class for pull request\n* Add methods\ - \ to abstract PullRequest\n* Ignore smoke test\n* Add .fmf and setup\ - \ testing-farm\n* Rename deprecation decorator\n* Change deprecation\ - \ messages\n* Pass parameters to Issue functions explicitly\n* Update\ - \ deprecation warnings for Issue functions\n* Implement updating Issue\ - \ object for Pagure\n* Add tests for updating issue object\n* Deprecate\ - \ Issue functions and fix tests\n* Move issue create, get, get_list\ - \ to static methods\n* Update docstrings\n* Fix typos\n* Change get_labels\ - \ to property and add_labels to variable-length args\n* Create properties\ - \ for Issue and implement them\n* Move deprecated issue-related functions\ - \ to base class\n* Rename functions in Issue and move raw_issue/project\ - \ to abstract\n* Factor out `can_close_issue`\n* Implement separate\ - \ Issue for Pagure\n* Implement separate Issue for GitLab\n* Implement\ - \ separate Issue for GitHub\n* Add methods to abstract Issue and implement\ - \ BaseIssue\n* Remove unused import (AnyComment)\n* Factor out filtering\ - \ comments to only one method\n* Add methods to abstract Issue\n* Fis\ - \ integration tests. Change PersistentObjectStorage().is_write_mode\ - \ to PersistentObjectStorage().mode == StorageMode.write\n* Add requirements\ - \ to zuul yaml\n* Remove Deprecated from test env\n* Add Deprecated\ - \ to dependencies\n* Remove github_tweak to use upstream github function\n\ - * temporary integration test method PullRequest._pr_close_temp() removed\n\ - * GithbProject.pr_close() implemented, integration tests added\n* instegration\ - \ test splited, related function headers updated, precommit fixes\n\ - * pre-commit fixes\n* response file genrated\n* integration test added\n\ - * pre-commit fixes\n* github_pr_create_rework_250\n* Fix the path to\ - \ the packit tests\n* Use requre-purge to unify the dates and tags in\ - \ response files\n* Tweak the stale-bot config\n* throw exception when\ - \ repo not found\n* write bytes as bytes to file\n* fix changes with\ - \ type hint inheritance\n* update NoReturns\n* type hint changes\n*\ - \ type hint changes\n* improve typehints for abstract.py\n* improve\ - \ typehint coverage in utils.py\n* Update contributing text in README\n\ - * Add link to contribution guide to README\n* Fix mypy remarks in Pagure's\ - \ comments\n* Add config for stale bot\n* changes args to Any\n* type\ - \ hint changes\n* black format\n* improve typehints for exceptions.py\n\ - * Fix black formatting\n* improve typehints for parsing.py\n* Resolve\ - \ remarks from review\n* (#230) Refactor parsing raw_comment\n* Change\ - \ method name\n* (#230) Update constructors and factor out raw_comment\n\ - * Remove duplicit import\n* Use bond TypeVar for abstract comment typing\n\ - * (#230) Support services' Issue/PRComment creation as in superclass\n\ - * (#230) Added TODO for backward-link and added raw_comment to objects\n\ - * (#230) Pagure comments (PR, Issue) implementation\n* (#230) Keep GithubProject.pr_comment\ - \ return type as before\n* (#230) Gitlab comments (PR, Issue) implementation\n\ - * (#230) Github comments (PR, Issue) implementation\n* (#230) Refactor\ - \ abstract classes for comments\n* Use new format for requre\n* Add\ - \ rebase check to pre-commit\n* (#240) Add parameter to Gitlab to get\ - \ comments in right order\n* (#240) Add tests for filtering Issue/PR\ - \ comments by author\n* Fix order of Gitlab's PR comments\n* (#240)\ - \ Update tests after factoring out getting comments\n* (#240) Refactor\ - \ of pr/issue comments\n* (#240) Extend get_issue/pr_comments interface\ - \ of filtering by author\n* (#240) Update filter_comments support\n\ - * (#204) Add test for creating Pagure project in invalid namespace\n\ - * Add response for creating Pagure repo in the namespace\n* (#204) Add\ - \ project_create to PagureService and add tests for it\n* (#232) Finish\ - \ Gitlab tests\n* (#232) Pagure tests finished\n* (#232) Start regenerating\ - \ GitLab tests\n* (#232) Started regenerating tests for Pagure\n* Newline\ - \ added\n* (#232) Fix GitHub tests\n* (#232) Update fullname of calling\ - \ objects for GitHub\n* (#232) Regenerate factory test_data\n* (#232)\ - \ Fix mypy/flake8 errors for gitlab and pagure\n* Fix mypy errors for\ - \ github\n* (#232) Fix circular imports\n* (#232) Pagure split and __init__\n\ - * (#232) GitLab split and __init__\n* (#232) GitHub split and __init__\n\ - * Add reverse-dependency test of packit\n* prepare for rev dependency\ - \ testing, set project dir in case it not come from zuul\n* remove all\ - \ stuff what were moved to requre project\n* Add Developer Certificate\ - \ of Origin\n* (#233) Update imports in Gitlab tests\n* Recreate old\ - \ response files\n* use requre for storing data for tests\n* (#205)\ - \ Update responses to match updated PagureService.get_project\n* (#205)\ - \ Add test_data for Pagure.get_issue_comments\n* (#205) Implement Pagure.get_issue_comments\ - \ and add tests\n* (#205) Implement Gitlab.get_issue_comments and add\ - \ tests\n* Fix formatting\n* (#205) Add Githubproject.get_issue_comments\ - \ and tests for it\n* Fix formatting\n* (#220) Regenerate responses\ - \ + update broken test\n* (#220) Pass username to PagureProject in get_project\ - \ if not given\n* (#220) PagureProject.is_fork offline and add method\ - \ for API call\n* (#220) Regenerate responses and add test\n* (#220)\ - \ Make PagureProject.full_repo_name property offline\n\n\nYou can change\ - \ it by editing `CHANGELOG.md` in the root of this repository and pushing\ - \ to `0.9.0-release` branch before merging this PR.\nI didn't find any\ - \ files where `__version__` is set." - closed_at: '2019-12-06T13:29:05Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/291/comments - created_at: '2019-12-04T09:37:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/291/events - html_url: https://github.com/packit/ogr/pull/291 - id: 532560063 + url: https://api.github.com/users/shreyaspapi + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Request project access - using it here (https://github.com/packit-service/packit-service/pull/740)\r\ + \n\r\n[Request access docs](https://python-gitlab.readthedocs.io/en/stable/gl_objects/access_requests.html)" + closed_at: '2020-07-31T11:19:06Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/439/comments + created_at: '2020-07-26T19:59:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/439/events + html_url: https://github.com/packit/ogr/pull/439 + id: 665849470 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -113311,60 +142077,53 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/291/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/439/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ4Nzg0MjM1 - number: 291 + node_id: MDExOlB1bGxSZXF1ZXN0NDU2Nzk3ODcw + number: 439 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/291.diff - html_url: https://github.com/packit/ogr/pull/291 - patch_url: https://github.com/packit/ogr/pull/291.patch - url: https://api.github.com/repos/packit/ogr/pulls/291 + diff_url: https://github.com/packit/ogr/pull/439.diff + html_url: https://github.com/packit/ogr/pull/439 + patch_url: https://github.com/packit/ogr/pull/439.patch + url: https://api.github.com/repos/packit/ogr/pulls/439 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.9.0 release - updated_at: '2019-12-14T17:33:42Z' - url: https://api.github.com/repos/packit/ogr/issues/291 + title: Requesting project access + updated_at: '2020-07-31T11:19:06Z' + url: https://api.github.com/repos/packit/ogr/issues/439 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos 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 + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Add trim commit flag descripttion to all implementations.' - closed_at: '2019-12-06T08:41:20Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/294/comments - created_at: '2019-12-05T09:15:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/294/events - html_url: https://github.com/packit/ogr/pull/294 - id: 533219952 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-07-28T07:54:55Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/436/comments + created_at: '2020-07-16T12:52:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/436/events + html_url: https://github.com/packit/ogr/pull/436 + id: 658170942 labels: - color: 0e8a16 default: false @@ -113373,67 +142132,57 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/294/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/436/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ5MzMyNDEx - number: 294 + node_id: MDExOlB1bGxSZXF1ZXN0NDUwMTcyMDA5 + number: 436 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/294.diff - html_url: https://github.com/packit/ogr/pull/294 - patch_url: https://github.com/packit/ogr/pull/294.patch - url: https://api.github.com/repos/packit/ogr/pulls/294 + diff_url: https://github.com/packit/ogr/pull/436.diff + html_url: https://github.com/packit/ogr/pull/436 + patch_url: https://github.com/packit/ogr/pull/436.patch + url: https://api.github.com/repos/packit/ogr/pulls/436 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Trim description of commit flag to abstract - updated_at: '2019-12-06T09:52:59Z' - url: https://api.github.com/repos/packit/ogr/issues/294 + title: Support add group for pagure + updated_at: '2020-07-28T08:12:10Z' + url: https://api.github.com/repos/packit/ogr/issues/436 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "We are using `open` in the status enums, but `closed`.\r\n\r\n\ - Currently, we need to replace that for GitLab manually and GitHub probably\ - \ needs that fix as well. I am not sure about Pagure.\r\n\r\nIdeally,\ - \ we need to change our API, but we have some usages in other projects:\r\ - \n\r\n\r\n- [ ] packit\r\n - https://github.com/packit-service/packit/blob/master/tests/testsuite_basic/conftest.py#L114\ - \ (just a test)\r\n- [x] packit-service (no occurences found)\r\n- [\ - \ ] release-bot\r\n - https://github.com/user-cont/release-bot/blob/master/release_bot/github.py#L308" - closed_at: '2019-12-04T12:26:57Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/193/comments - created_at: '2019-09-11T14:03:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/193/events - html_url: https://github.com/packit/ogr/issues/193 - id: 492259504 + body: "Since we [now](https://github.com/packit-service/ogr/pull/150)\ + \ support GitLab, we need to update our README to show it.\r\n\r\n+\ + \ [ ] and provide brief docs how to use it (@TomasTomecek had to google\ + \ a bit)" + closed_at: '2020-07-17T13:52:03Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/157/comments + created_at: '2019-08-15T15:27:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/157/events + html_url: https://github.com/packit/ogr/issues/157 + id: 481205806 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -113441,40 +142190,40 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a + - color: c5def5 default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 8be567 + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/193/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/157/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTIyNTk1MDQ= - number: 193 + node_id: MDU6SXNzdWU0ODEyMDU4MDY= + number: 157 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Investigate 'open' x 'opened' status for Issues and PullRequests - updated_at: '2019-12-04T12:26:57Z' - url: https://api.github.com/repos/packit/ogr/issues/193 + title: Mention GitLab support in README + updated_at: '2020-07-28T07:07:52Z' + url: https://api.github.com/repos/packit/ogr/issues/157 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -113496,33 +142245,98 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Closes #193 ' - closed_at: '2019-12-04T12:25:00Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/293/comments - created_at: '2019-12-04T11:19:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/293/events - html_url: https://github.com/packit/ogr/pull/293 - id: 532619628 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/293/labels{/name} + body: "This reverts commit 74d84893f16f5020e60d2a1ba35e13d768b514f0.\r\ + \n\r\nIn Centos 8 Python 3.6 is the default python3. Having Python 3.6\ + \ support\r\nwill make life easier there.\r\n\r\nSigned-off-by: Hunor\ + \ Csomort\xE1ni " + closed_at: '2020-07-16T15:27:34Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/438/comments + created_at: '2020-07-16T14:39:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/438/events + html_url: https://github.com/packit/ogr/pull/438 + id: 658262033 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/438/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ4ODM0MjE0 - number: 293 + node_id: MDExOlB1bGxSZXF1ZXN0NDUwMjQ5NTU2 + number: 438 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/293.diff - html_url: https://github.com/packit/ogr/pull/293 - patch_url: https://github.com/packit/ogr/pull/293.patch - url: https://api.github.com/repos/packit/ogr/pulls/293 + diff_url: https://github.com/packit/ogr/pull/438.diff + html_url: https://github.com/packit/ogr/pull/438 + patch_url: https://github.com/packit/ogr/pull/438.patch + url: https://api.github.com/repos/packit/ogr/pulls/438 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Change statuses from `open` to `opened` - updated_at: '2019-12-04T12:26:08Z' - url: https://api.github.com/repos/packit/ogr/issues/293 + title: Revert "Drop python 3.6" + updated_at: '2020-07-16T15:27:34Z' + url: https://api.github.com/repos/packit/ogr/issues/438 + 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 + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Closes #414' + closed_at: '2020-06-25T10:41:12Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/419/comments + created_at: '2020-05-26T10:39:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/419/events + html_url: https://github.com/packit/ogr/pull/419 + id: 624783863 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/419/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDIzMTI1MDgx + number: 419 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/419.diff + html_url: https://github.com/packit/ogr/pull/419 + patch_url: https://github.com/packit/ogr/pull/419.patch + url: https://api.github.com/repos/packit/ogr/pulls/419 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Pull requests on Gitlab + updated_at: '2020-07-14T21:08:48Z' + url: https://api.github.com/repos/packit/ogr/issues/419 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -113544,14 +142358,16 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- Allow creating sommit flags with commit state as a string.' - closed_at: '2019-12-04T11:17:22Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/292/comments - created_at: '2019-12-04T10:10:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/292/events - html_url: https://github.com/packit/ogr/pull/292 - id: 532578973 + body: '- Remove unused util functions. + + - Refactor using [sourcery](https://sourcery.ai/).' + closed_at: '2020-07-10T12:43:50Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/435/comments + created_at: '2020-07-10T11:46:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/435/events + html_url: https://github.com/packit/ogr/pull/435 + id: 654723717 labels: - color: 0e8a16 default: false @@ -113560,24 +142376,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/292/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/435/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ4Nzk5Njcy - number: 292 + node_id: MDExOlB1bGxSZXF1ZXN0NDQ3Mzk0MDIz + number: 435 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/292.diff - html_url: https://github.com/packit/ogr/pull/292 - patch_url: https://github.com/packit/ogr/pull/292.patch - url: https://api.github.com/repos/packit/ogr/pulls/292 + diff_url: https://github.com/packit/ogr/pull/435.diff + html_url: https://github.com/packit/ogr/pull/435 + patch_url: https://github.com/packit/ogr/pull/435.patch + url: https://api.github.com/repos/packit/ogr/pulls/435 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix flags to be compatible with string states - updated_at: '2019-12-04T12:04:38Z' - url: https://api.github.com/repos/packit/ogr/issues/292 + title: Sourcery refactor + updated_at: '2020-07-10T12:46:54Z' + url: https://api.github.com/repos/packit/ogr/issues/435 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -113595,19 +142411,160 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-07-10T05:57:19Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/434/comments + created_at: '2020-07-09T11:03:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/434/events + html_url: https://github.com/packit/ogr/issues/434 + id: 653971970 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/434/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2NTM5NzE5NzA= + number: 434 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.12.2' + updated_at: '2020-07-10T09:36:14Z' + url: https://api.github.com/repos/packit/ogr/issues/434 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Job metadata key 'dist_git_branch'\ + \ has been renamed to 'dist_git_branches'\n* Replace Python version\ + \ glob with macro\n* Fix get_file_content was returning byte format\n\ + * Build in copr for master commits and releases\n* Add usage to creating\ + \ PRs on GitLab\n* Fix GitLab pull requests\n* Add tests for creating\ + \ PRs on GitLab\n* [Zuul] Don't redefine base job\n* [Zuul] Use common\ + \ pre-commit job\n* Drop python 3.6\n* Update & run pre-commit\n* Improve\ + \ the message when marking issues as stale\n* Fix remarks from compatibility.md\ + \ review\n* Add compatibility table\n\n\nYou can change it by editing\ + \ `CHANGELOG.md` in the root of this repository and pushing to `0.12.2-release`\ + \ branch before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-07-09T10:57:56Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/433/comments + created_at: '2020-07-09T07:36:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/433/events + html_url: https://github.com/packit/ogr/pull/433 + id: 653835899 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/433/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDQ2Njc2Mjcz + number: 433 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/433.diff + html_url: https://github.com/packit/ogr/pull/433 + patch_url: https://github.com/packit/ogr/pull/433.patch + url: https://api.github.com/repos/packit/ogr/pulls/433 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.12.2 release + updated_at: '2020-07-09T11:01:07Z' + url: https://api.github.com/repos/packit/ogr/issues/433 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: There was done a lot of work after the last release. Let's make - a new one! - closed_at: '2019-12-04T09:37:32Z' + body: '' + closed_at: '2020-07-09T07:36:32Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/290/comments - created_at: '2019-12-04T09:32:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/290/events - html_url: https://github.com/packit/ogr/issues/290 - id: 532557330 + comments_url: https://api.github.com/repos/packit/ogr/issues/432/comments + created_at: '2020-07-09T07:36:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/432/events + html_url: https://github.com/packit/ogr/issues/432 + id: 653835751 labels: - color: ededed default: false @@ -113623,56 +142580,49 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/290/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/432/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MzI1NTczMzA= - number: 290 + node_id: MDU6SXNzdWU2NTM4MzU3NTE= + number: 432 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-12-04T09:37:32Z' - url: https://api.github.com/repos/packit/ogr/issues/290 + title: New patch release + updated_at: '2020-07-09T07:36:32Z' + url: https://api.github.com/repos/packit/ogr/issues/432 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes: #288 ' - closed_at: '2019-12-03T16:04:47Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/289/comments - created_at: '2019-12-03T15:07:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/289/events - html_url: https://github.com/packit/ogr/pull/289 - id: 532051771 + body: in https://github.com/packit-service/packit/pull/797 + closed_at: '2020-07-07T06:51:21Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/431/comments + created_at: '2020-07-03T14:49:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/431/events + html_url: https://github.com/packit/ogr/pull/431 + id: 650642351 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -113680,61 +142630,56 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/289/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/431/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ4MzgyNjMw - number: 289 + node_id: MDExOlB1bGxSZXF1ZXN0NDQ0MDk0ODQx + number: 431 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/289.diff - html_url: https://github.com/packit/ogr/pull/289 - patch_url: https://github.com/packit/ogr/pull/289.patch - url: https://api.github.com/repos/packit/ogr/pulls/289 + diff_url: https://github.com/packit/ogr/pull/431.diff + html_url: https://github.com/packit/ogr/pull/431 + patch_url: https://github.com/packit/ogr/pull/431.patch + url: https://api.github.com/repos/packit/ogr/pulls/431 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix typo in comments - updated_at: '2019-12-04T09:27:03Z' - url: https://api.github.com/repos/packit/ogr/issues/289 + title: Job metadata key 'dist_git_branch' was renamed to 'dist_git_branches' + updated_at: '2020-07-07T07:13:31Z' + url: https://api.github.com/repos/packit/ogr/issues/431 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-12-03T12:36:59Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/287/comments - created_at: '2019-12-02T14:02:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/287/events - html_url: https://github.com/packit/ogr/pull/287 - id: 531147909 + body: "This is needed for Python 3.10+.\r\n\r\nSee devel-list message\ + \ for details:\r\n\r\nhttps://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/PQIGCQCRNBYNXBX2ICWEM3PLDLNOG2ZT/\r\ + \n\r\nSigned-off-by: Hunor Csomort\xE1ni " + closed_at: '2020-06-30T07:33:05Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/430/comments + created_at: '2020-06-30T07:12:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/430/events + html_url: https://github.com/packit/ogr/pull/430 + id: 647926952 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -113742,66 +142687,68 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/287/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/430/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ3NjQwMjEz - number: 287 + node_id: MDExOlB1bGxSZXF1ZXN0NDQxODMwMDgy + number: 430 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/287.diff - html_url: https://github.com/packit/ogr/pull/287 - patch_url: https://github.com/packit/ogr/pull/287.patch - url: https://api.github.com/repos/packit/ogr/pulls/287 + diff_url: https://github.com/packit/ogr/pull/430.diff + html_url: https://github.com/packit/ogr/pull/430 + patch_url: https://github.com/packit/ogr/pull/430.patch + url: https://api.github.com/repos/packit/ogr/pulls/430 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix backward compatibility on pull requests - updated_at: '2019-12-04T09:27:02Z' - url: https://api.github.com/repos/packit/ogr/issues/287 + title: Replace Python version glob with macro + updated_at: '2020-06-30T07:33:06Z' + url: https://api.github.com/repos/packit/ogr/issues/430 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- [x] add methods\r\n- [x] services' implementation\r\n- [x] enum\ - \ for statuses?\r\n- [x] PRs?\r\n - [x] tests\r\n\r\nComparison of\ - \ statuses:\r\n\r\nGitHub | GitLab | Pagure\r\n--- | --- | ---\r\n`pending`\ - \ | `pending` | `pending`\r\n`success` | `success` | `success`\r\n`failure`\ - \ | `failed` | `failure`\r\n`error` | `-` | `error`\r\n`-` | `canceled`\ - \ | `canceled`\r\n`-` | `running` | `-`" - closed_at: '2019-12-03T20:23:52Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/286/comments - created_at: '2019-11-30T20:18:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/286/events - html_url: https://github.com/packit/ogr/pull/286 - id: 530625724 + author_association: CONTRIBUTOR + body: "The object [gitlab.v4.objects.ProjectFile](https://python-gitlab.readthedocs.io/en/stable/api/gitlab.v4.html#gitlab.v4.objects.ProjectFile)\ + \ with the function [decode()](https://python-gitlab.readthedocs.io/en/stable/api/gitlab.v4.html#gitlab.v4.objects.ProjectFile.decode)\ + \ will return bytes -\r\n\r\n`b'---\\nspecfile_path: hello.spec\\nsynced_files:\\\ + n - hello.spec\\n# actions:\\n# post-upstream-clone: \"python3 setup.py\ + \ sdist --dist-dir .\"\\n# current_version_command: [\"python3\", \"\ + setup.py\", \"--version\"]\\n# create_tarball_command: [\"python3\"\ + , \"setup.py\", \"sdist\", \"--dist-dir\", \".\"]\\njobs:\\n- job: copr_build\\\ + n trigger: pull_request\\n metadata:\\n targets:\\n - fedora-30-x86_64'`\r\ + \n\r\nExpected string - \r\n\r\n```\r\n---\r\nspecfile_path: hello.spec\r\ + \nsynced_files:\r\n - hello.spec\r\n# actions:\r\n# post-upstream-clone:\ + \ \"python3 setup.py sdist --dist-dir .\"\r\n# current_version_command:\ + \ [\"python3\", \"setup.py\", \"--version\"]\r\n# create_tarball_command:\ + \ [\"python3\", \"setup.py\", \"sdist\", \"--dist-dir\", \".\"]\r\n\ + jobs:\r\n- job: copr_build\r\n trigger: pull_request\r\n metadata:\r\ + \n targets:\r\n - fedora-30-x86_64\r\n```\r\n" + closed_at: '2020-06-29T12:03:35Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/429/comments + created_at: '2020-06-28T21:32:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/429/events + html_url: https://github.com/packit/ogr/pull/429 + id: 647009475 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -113809,63 +142756,114 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/286/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/429/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ3MjU2NjI2 - number: 286 + node_id: MDExOlB1bGxSZXF1ZXN0NDQxMTE3MTUw + number: 429 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/286.diff - html_url: https://github.com/packit/ogr/pull/286 - patch_url: https://github.com/packit/ogr/pull/286.patch - url: https://api.github.com/repos/packit/ogr/pulls/286 + diff_url: https://github.com/packit/ogr/pull/429.diff + html_url: https://github.com/packit/ogr/pull/429 + patch_url: https://github.com/packit/ogr/pull/429.patch + url: https://api.github.com/repos/packit/ogr/pulls/429 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Commit flags - updated_at: '2019-12-04T09:27:02Z' - url: https://api.github.com/repos/packit/ogr/issues/286 + title: Fix get_file_content() returning bytes + updated_at: '2020-06-29T12:03:35Z' + url: https://api.github.com/repos/packit/ogr/issues/429 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/shreyaspapi + _next: null + elapsed: 0.360398 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:35 GMT + ETag: W/"eae18a44bc8f7638df36daa49acae94f60f329059c574b61b776885b717a2710" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F7FFC1:191B86B:6075DC43 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4691' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '309' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=6: + - metadata: + latency: 0.4380836486816406 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- [x] editing of comments\r\n- [x] backward-link to issue/PR\r\n\ - - [x] rename property `comment` to `body`\r\n editing comments works\ - \ only on `body`" - closed_at: '2019-12-03T11:21:57Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/285/comments - created_at: '2019-11-29T12:32:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/285/events - html_url: https://github.com/packit/ogr/pull/285 - id: 530323155 + body: "- Build in Copr for master commits and releases.\r\n- We are using\ + \ same copr projects as we do for packit.\r\n- Relates to https://github.com/packit-service/ogr/pull/428." + closed_at: '2020-06-26T12:08:08Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/428/comments + created_at: '2020-06-26T08:42:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/428/events + html_url: https://github.com/packit/ogr/pull/428 + id: 646108018 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -113873,86 +142871,99 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/285/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/428/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ3MDI4OTMw - number: 285 + node_id: MDExOlB1bGxSZXF1ZXN0NDQwNDU5MTk2 + number: 428 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/285.diff - html_url: https://github.com/packit/ogr/pull/285 - patch_url: https://github.com/packit/ogr/pull/285.patch - url: https://api.github.com/repos/packit/ogr/pulls/285 + diff_url: https://github.com/packit/ogr/pull/428.diff + html_url: https://github.com/packit/ogr/pull/428 + patch_url: https://github.com/packit/ogr/pull/428.patch + url: https://api.github.com/repos/packit/ogr/pulls/428 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement editing comments and backward-link to Issue/PR - updated_at: '2019-12-04T09:27:02Z' - url: https://api.github.com/repos/packit/ogr/issues/285 + title: Copr build for master and releases + updated_at: '2020-06-26T12:13:35Z' + url: https://api.github.com/repos/packit/ogr/issues/428 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-11-20T14:23:47Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/279/comments - created_at: '2019-11-20T10:32:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/279/events - html_url: https://github.com/packit/ogr/pull/279 - id: 525714930 + body: "By looking at the code I noticed there are no tests for creating\ + \ pull requests in different scenarios (like Github has) and also the\ + \ code doesn't seem to be compliant to the documentation of ogr.\r\n\ + \r\n- [ ] Add tests\r\n- [ ] Fix the implementation\r\n\r\nMay be\ + \ blocked by #412" + closed_at: '2020-06-25T10:41:12Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/414/comments + created_at: '2020-05-20T21:34:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/414/events + html_url: https://github.com/packit/ogr/issues/414 + id: 622098916 labels: - - color: b60205 + - color: d93f0b default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 42e529 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/279/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/414/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQzMjgyNDg4 - number: 279 + node_id: MDU6SXNzdWU2MjIwOTg5MTY= + number: 414 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/279.diff - html_url: https://github.com/packit/ogr/pull/279 - patch_url: https://github.com/packit/ogr/pull/279.patch - url: https://api.github.com/repos/packit/ogr/pulls/279 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add deprecation policy and dependency package - updated_at: '2019-12-04T09:27:02Z' - url: https://api.github.com/repos/packit/ogr/issues/279 + title: Pull requests on Gitlab projects + updated_at: '2020-06-25T10:41:12Z' + url: https://api.github.com/repos/packit/ogr/issues/414 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -113974,30 +142985,15 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Closes #254 \r\n\r\n- [x] move PR-related functions from `Project`\ - \ to `PullRequest`\r\n - [x] `BasePullRequest`\r\n - [x] Github\r\n\ - \ - [x] Gitlab\r\n - [x] Pagure\r\n- [x] make `Project`'s methods\ - \ backward-compatible by calling new methods\r\n- [x] deprecation\r\n\ - \ - [x] move deprecated functions to base class\r\n - [x] deprecate\ - \ functions on `Project`\r\n- [x] properties\r\n- [x] fix tests\r\n\ - - [x] static methods for `get`, `create`, `list`\r\n- [x] update comments\ - \ (after refactor from Issue has been merged)\r\n- [x] check docstrings\r\ - \n- [x] `pr_create` -> update name" - closed_at: '2019-11-29T10:21:52Z' - comments: 17 - comments_url: https://api.github.com/repos/packit/ogr/issues/276/comments - created_at: '2019-11-16T21:01:08Z' - events_url: https://api.github.com/repos/packit/ogr/issues/276/events - html_url: https://github.com/packit/ogr/pull/276 - id: 523895740 + body: '' + closed_at: '2020-06-23T15:27:42Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/427/comments + created_at: '2020-06-23T14:34:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/427/events + html_url: https://github.com/packit/ogr/pull/427 + id: 643894847 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -114005,189 +143001,175 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/276/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/427/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQxNzkxNzIw - number: 276 + node_id: MDExOlB1bGxSZXF1ZXN0NDM4NjEzNzgx + number: 427 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/276.diff - html_url: https://github.com/packit/ogr/pull/276 - patch_url: https://github.com/packit/ogr/pull/276.patch - url: https://api.github.com/repos/packit/ogr/pulls/276 + diff_url: https://github.com/packit/ogr/pull/427.diff + html_url: https://github.com/packit/ogr/pull/427 + patch_url: https://github.com/packit/ogr/pull/427.patch + url: https://api.github.com/repos/packit/ogr/pulls/427 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pull request class refactor - updated_at: '2019-12-04T09:27:01Z' - url: https://api.github.com/repos/packit/ogr/issues/276 + title: Zuul & pre-commit related changes + updated_at: '2020-06-24T08:10:43Z' + url: https://api.github.com/repos/packit/ogr/issues/427 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Closes #253\r\n\r\n- [x] move issue-related functions from `Project`\ - \ to `Issue`\r\n- [x] make `Project`'s methods backward-compatible by\ - \ calling new methods\r\n- [x] fix tests\r\n- [x] `__get_comment`, `get_issue_comments`\r\ - \n- [x] deprecate functions on `Project`\r\n- [x] check docstrings\r\ - \n- [x] update deprecation warnings" - closed_at: '2019-11-26T08:52:22Z' - comments: 24 - comments_url: https://api.github.com/repos/packit/ogr/issues/264/comments - created_at: '2019-11-04T11:23:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/264/events - html_url: https://github.com/packit/ogr/pull/264 - id: 517089572 + author_association: CONTRIBUTOR + body: "* We first to need to create an abstraction on top of all forges\r\ + \n* and then implement it for each\r\n\r\nThis is an example how pagure\ + \ does it:\r\n```python\r\nmod_acls = {\r\n 'user_type': 'group',\r\ + \n 'name': 'git-packit-team',\r\n 'acl': 'admin',\r\n\ + }\r\n\r\nreq = requests.post(\r\n url + 'source-git/%s/git/modifyacls'\ + \ % (project),\r\n headers=headers,\r\n verify=False,\r\ + \n data=mod_acls\r\n)\r\n```" + closed_at: '2020-06-22T13:36:26Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/364/comments + created_at: '2020-03-25T12:55:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/364/events + html_url: https://github.com/packit/ogr/issues/364 + id: 587676376 labels: - - color: b60205 + - color: a2eeef default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/264/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/364/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM2MjI2MDM0 - number: 264 + node_id: MDU6SXNzdWU1ODc2NzYzNzY= + number: 364 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/264.diff - html_url: https://github.com/packit/ogr/pull/264 - patch_url: https://github.com/packit/ogr/pull/264.patch - url: https://api.github.com/repos/packit/ogr/pulls/264 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Issue class refactor - updated_at: '2019-12-04T09:27:01Z' - url: https://api.github.com/repos/packit/ogr/issues/264 + title: provide a way to modify ACLs of repositories + updated_at: '2020-06-22T13:36:27Z' + url: https://api.github.com/repos/packit/ogr/issues/364 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Update annotation of `_from_raw_comment`' - closed_at: '2019-11-04T12:35:35Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/260/comments - created_at: '2019-10-27T17:27:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/260/events - html_url: https://github.com/packit/ogr/pull/260 - id: 512995963 - labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/260/labels{/name} + body: Needed in https://github.com/packit-service/packit-service/pull/662 + closed_at: '2020-06-11T07:53:09Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/425/comments + created_at: '2020-06-08T10:16:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/425/events + html_url: https://github.com/packit/ogr/pull/425 + id: 634481719 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/425/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyODc1NTQ3 - number: 260 + node_id: MDExOlB1bGxSZXF1ZXN0NDMxMDI4NDEw + number: 425 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/260.diff - html_url: https://github.com/packit/ogr/pull/260 - patch_url: https://github.com/packit/ogr/pull/260.patch - url: https://api.github.com/repos/packit/ogr/pulls/260 + diff_url: https://github.com/packit/ogr/pull/425.diff + html_url: https://github.com/packit/ogr/pull/425 + patch_url: https://github.com/packit/ogr/pull/425.patch + url: https://api.github.com/repos/packit/ogr/pulls/425 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Comment: mypy' - updated_at: '2019-12-04T09:27:01Z' - url: https://api.github.com/repos/packit/ogr/issues/260 + title: Implement PagurePullRequest.get_flags() + updated_at: '2020-06-11T07:53:14Z' + url: https://api.github.com/repos/packit/ogr/issues/425 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Closes #230' - closed_at: '2019-10-23T13:09:59Z' - comments: 27 - comments_url: https://api.github.com/repos/packit/ogr/issues/249/comments - created_at: '2019-10-16T16:02:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/249/events - html_url: https://github.com/packit/ogr/pull/249 - id: 507947617 + body: "Use literal style (|) in the YAML string, in order to keep new-lines\ + \ and\r\nhave a better formatting.\r\n\r\nBe explicit about the dates.\r\ + \n\r\nBe more English (hopefully).\r\n\r\nSigned-off-by: Hunor Csomort\xE1\ + ni " + closed_at: '2020-06-10T13:35:30Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/426/comments + created_at: '2020-06-10T06:41:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/426/events + html_url: https://github.com/packit/ogr/pull/426 + id: 635974319 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -114195,123 +143177,111 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/249/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/426/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI4ODM5NDg2 - number: 249 + node_id: MDExOlB1bGxSZXF1ZXN0NDMyMjM2NzY4 + number: 426 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/249.diff - html_url: https://github.com/packit/ogr/pull/249 - patch_url: https://github.com/packit/ogr/pull/249.patch - url: https://api.github.com/repos/packit/ogr/pulls/249 + diff_url: https://github.com/packit/ogr/pull/426.diff + html_url: https://github.com/packit/ogr/pull/426 + patch_url: https://github.com/packit/ogr/pull/426.patch + url: https://api.github.com/repos/packit/ogr/pulls/426 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Factor out Comment - updated_at: '2019-12-04T09:27:01Z' - url: https://api.github.com/repos/packit/ogr/issues/249 + title: Improve the message when marking issues as stale + updated_at: '2020-06-10T13:35:30Z' + url: https://api.github.com/repos/packit/ogr/issues/426 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Closes #240' - closed_at: '2019-10-15T10:49:50Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/243/comments - created_at: '2019-10-12T11:32:08Z' - events_url: https://api.github.com/repos/packit/ogr/issues/243/events - html_url: https://github.com/packit/ogr/pull/243 - id: 506175099 + author_association: NONE + body: "During pre-commit I'm getting the following issues (Trying to solve\ + \ #338 )\r\n```\r\nogr/abstract.py:731: error: Too many arguments\r\n\ + ogr/services/github/service.py:172: error: Too many arguments\r\n```" + closed_at: '2020-06-08T19:38:15Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/362/comments + created_at: '2020-03-24T15:41:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/362/events + html_url: https://github.com/packit/ogr/pull/362 + id: 587056910 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/243/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/362/labels{/name} locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI3NDU2NDQz - number: 243 + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzkzMDcwNzg0 + number: 362 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/243.diff - html_url: https://github.com/packit/ogr/pull/243 - patch_url: https://github.com/packit/ogr/pull/243.patch - url: https://api.github.com/repos/packit/ogr/pulls/243 + diff_url: https://github.com/packit/ogr/pull/362.diff + html_url: https://github.com/packit/ogr/pull/362 + patch_url: https://github.com/packit/ogr/pull/362.patch + url: https://api.github.com/repos/packit/ogr/pulls/362 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implementation of filtering PR/Issue comments by author - updated_at: '2019-12-04T09:27:00Z' - url: https://api.github.com/repos/packit/ogr/issues/243 + title: adding hostname property + updated_at: '2020-06-08T19:38:15Z' + url: https://api.github.com/repos/packit/ogr/issues/362 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/36095091?v=4 + events_url: https://api.github.com/users/dinolinjob/events{/privacy} + followers_url: https://api.github.com/users/dinolinjob/followers + following_url: https://api.github.com/users/dinolinjob/following{/other_user} + gists_url: https://api.github.com/users/dinolinjob/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/dinolinjob + id: 36095091 + login: dinolinjob + node_id: MDQ6VXNlcjM2MDk1MDkx + organizations_url: https://api.github.com/users/dinolinjob/orgs + received_events_url: https://api.github.com/users/dinolinjob/received_events + repos_url: https://api.github.com/users/dinolinjob/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/dinolinjob - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Closes #204' - closed_at: '2019-10-15T07:33:19Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/242/comments - created_at: '2019-10-11T11:05:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/242/events - html_url: https://github.com/packit/ogr/pull/242 - id: 505786917 + body: "Fixes #406\r\n\r\n- [x] Fix unit tests" + closed_at: '2020-05-26T09:47:07Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/411/comments + created_at: '2020-05-15T09:31:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/411/events + html_url: https://github.com/packit/ogr/pull/411 + id: 618832407 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -114319,24 +143289,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/242/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/411/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI3MTQ2NTgy - number: 242 + node_id: MDExOlB1bGxSZXF1ZXN0NDE4NDgxODAx + number: 411 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/242.diff - html_url: https://github.com/packit/ogr/pull/242 - patch_url: https://github.com/packit/ogr/pull/242.patch - url: https://api.github.com/repos/packit/ogr/pulls/242 + diff_url: https://github.com/packit/ogr/pull/411.diff + html_url: https://github.com/packit/ogr/pull/411 + patch_url: https://github.com/packit/ogr/pull/411.patch + url: https://api.github.com/repos/packit/ogr/pulls/411 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add project_create to PagureService and add tests for it - updated_at: '2019-12-04T09:27:00Z' - url: https://api.github.com/repos/packit/ogr/issues/242 + title: Creating PRs from `fork` to `other-fork` on Github + updated_at: '2020-06-07T18:05:12Z' + url: https://api.github.com/repos/packit/ogr/issues/411 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -114358,22 +143328,16 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #232' - closed_at: '2019-10-11T06:36:16Z' - comments: 18 - comments_url: https://api.github.com/repos/packit/ogr/issues/236/comments - created_at: '2019-10-07T14:44:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/236/events - html_url: https://github.com/packit/ogr/pull/236 - id: 503499100 + body: '- [ ] should be thoroughly checked (`Project`, `Service`, `User`, + `Release` should be fine)' + closed_at: '2020-06-05T15:20:24Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/311/comments + created_at: '2020-01-24T22:31:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/311/events + html_url: https://github.com/packit/ogr/pull/311 + id: 554985894 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -114381,24 +143345,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/236/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/311/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI1MzM5NTg3 - number: 236 + node_id: MDExOlB1bGxSZXF1ZXN0MzY3MDQxOTA2 + number: 311 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/236.diff - html_url: https://github.com/packit/ogr/pull/236 - patch_url: https://github.com/packit/ogr/pull/236.patch - url: https://api.github.com/repos/packit/ogr/pulls/236 + diff_url: https://github.com/packit/ogr/pull/311.diff + html_url: https://github.com/packit/ogr/pull/311 + patch_url: https://github.com/packit/ogr/pull/311.patch + url: https://api.github.com/repos/packit/ogr/pulls/311 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Prepare file structure for object-specific methods - updated_at: '2019-12-04T09:27:00Z' - url: https://api.github.com/repos/packit/ogr/issues/236 + title: Add compatibility table + updated_at: '2020-06-05T15:36:55Z' + url: https://api.github.com/repos/packit/ogr/issues/311 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -114419,180 +143383,168 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #233' - closed_at: '2019-10-07T11:02:38Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/234/comments - created_at: '2019-10-07T08:22:06Z' - events_url: https://api.github.com/repos/packit/ogr/issues/234/events - html_url: https://github.com/packit/ogr/pull/234 - id: 503300422 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Fix unit tests for Github\ + \ PRs\n* Implement creating PRs fork->other-fork on Github\n* Use custom_instances\ + \ to provide custom_mapping\n* Add PullRequest.patch property\n* GitHub:\ + \ query only one user when telling if a user can merge PRs\n* Adding\ + \ tests for add_user\n* Adding collaborators to projects - (Github,\ + \ Gitlab)\n\n\nYou can change it by editing `CHANGELOG.md` in the root\ + \ of this repository and pushing to `0.12.1-release` branch before merging\ + \ this PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-05-27T13:46:01Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/422/comments + created_at: '2020-05-26T15:00:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/422/events + html_url: https://github.com/packit/ogr/pull/422 + id: 624951772 labels: - - color: b60205 + - color: ededed default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/234/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/422/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI1MTgxMjU0 - number: 234 + node_id: MDExOlB1bGxSZXF1ZXN0NDIzMjYxMzM2 + number: 422 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/234.diff - html_url: https://github.com/packit/ogr/pull/234 - patch_url: https://github.com/packit/ogr/pull/234.patch - url: https://api.github.com/repos/packit/ogr/pulls/234 + diff_url: https://github.com/packit/ogr/pull/422.diff + html_url: https://github.com/packit/ogr/pull/422 + patch_url: https://github.com/packit/ogr/pull/422.patch + url: https://api.github.com/repos/packit/ogr/pulls/422 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update imports in Gitlab tests - updated_at: '2019-12-04T09:27:00Z' - url: https://api.github.com/repos/packit/ogr/issues/234 + title: 0.12.1 release + updated_at: '2020-05-27T13:47:20Z' + url: https://api.github.com/repos/packit/ogr/issues/422 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Closes #205\r\n\r\n- [x] `GithubProject.get_issue_comments`\r\n\ - \r\n- [x] `GitlabProject.get_issue_comments`\r\n\r\n- [x] `PagureProject.get_issue_comments`" - closed_at: '2019-10-03T14:35:15Z' - comments: 22 - comments_url: https://api.github.com/repos/packit/ogr/issues/228/comments - created_at: '2019-09-27T20:06:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/228/events - html_url: https://github.com/packit/ogr/pull/228 - id: 499627560 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-05-26T15:00:38Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/421/comments + created_at: '2020-05-26T14:59:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/421/events + html_url: https://github.com/packit/ogr/issues/421 + id: 624950979 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 0e8a16 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/228/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/421/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIyMzA4NzQy - number: 228 + node_id: MDU6SXNzdWU2MjQ5NTA5Nzk= + number: 421 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/228.diff - html_url: https://github.com/packit/ogr/pull/228 - patch_url: https://github.com/packit/ogr/pull/228.patch - url: https://api.github.com/repos/packit/ogr/pulls/228 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implementation of get_issue_comments for projects - updated_at: '2019-12-04T09:26:59Z' - url: https://api.github.com/repos/packit/ogr/issues/228 + title: New patch release + updated_at: '2020-05-26T15:00:38Z' + url: https://api.github.com/repos/packit/ogr/issues/421 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Closes #224' - closed_at: '2019-09-30T11:40:39Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/227/comments - created_at: '2019-09-27T10:16:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/227/events - html_url: https://github.com/packit/ogr/pull/227 - id: 499361462 + body: "After merging #404 there's no support only for creating PR from\ + \ one fork to different fork.\r\n\r\nPyGithub (GitHub API respectively)\ + \ doesn't allow creating pull requests on a repository we're \"merging\"\ + \ from.\r\n\r\n- [ ] implement getting other fork repository when creating\ + \ PR against it (internal Repository should be enough)\r\n - [ ]\ + \ handle non-existing fork" + closed_at: '2020-05-26T09:47:07Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/406/comments + created_at: '2020-05-05T10:19:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/406/events + html_url: https://github.com/packit/ogr/issues/406 + id: 612492491 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/227/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + labels_url: https://api.github.com/repos/packit/ogr/issues/406/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIyMDk2ODIw - number: 227 + node_id: MDU6SXNzdWU2MTI0OTI0OTE= + number: 406 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/227.diff - html_url: https://github.com/packit/ogr/pull/227 - patch_url: https://github.com/packit/ogr/pull/227.patch - url: https://api.github.com/repos/packit/ogr/pulls/227 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Factor out getting collaborators (GithubProject) - updated_at: '2019-12-04T09:26:59Z' - url: https://api.github.com/repos/packit/ogr/issues/227 + title: Creating pull requests from fork to other fork + updated_at: '2020-05-26T09:47:07Z' + url: https://api.github.com/repos/packit/ogr/issues/406 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -114614,22 +143566,17 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #220' - closed_at: '2019-10-02T09:17:18Z' - comments: 41 - comments_url: https://api.github.com/repos/packit/ogr/issues/226/comments - created_at: '2019-09-26T14:55:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/226/events - html_url: https://github.com/packit/ogr/pull/226 - id: 498940241 + body: '- Update `custom_mapping` with the info provided in the `custom_instances`. + + - Fixes: https://github.com/packit-service/ogr/issues/417' + closed_at: '2020-05-26T05:56:28Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/418/comments + created_at: '2020-05-25T09:11:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/418/events + html_url: https://github.com/packit/ogr/pull/418 + id: 624162285 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -114637,196 +143584,229 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/226/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/418/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIxNzY0NTE1 - number: 226 + node_id: MDExOlB1bGxSZXF1ZXN0NDIyNjM4Mzc4 + number: 418 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/226.diff - html_url: https://github.com/packit/ogr/pull/226 - patch_url: https://github.com/packit/ogr/pull/226.patch - url: https://api.github.com/repos/packit/ogr/pulls/226 + diff_url: https://github.com/packit/ogr/pull/418.diff + html_url: https://github.com/packit/ogr/pull/418 + patch_url: https://github.com/packit/ogr/pull/418.patch + url: https://api.github.com/repos/packit/ogr/pulls/418 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Make PagureProject.full_repo_name property offline - updated_at: '2019-12-04T09:26:59Z' - url: https://api.github.com/repos/packit/ogr/issues/226 + title: Fix factory.get_project + updated_at: '2020-05-26T05:57:27Z' + url: https://api.github.com/repos/packit/ogr/issues/418 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Closes #107' - closed_at: '2019-09-26T09:12:11Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/221/comments - created_at: '2019-09-25T14:42:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/221/events - html_url: https://github.com/packit/ogr/pull/221 - id: 498333159 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/221/labels{/name} + author_association: NONE + body: "I want to enhance the-new-hotness with the ability to file PRs\ + \ directly to dist-git projects instead of attaching patches to bugzilla.\ + \ I started to work on it in this PR [here](https://github.com/fedora-infra/the-new-hotness/pull/235).\ + \ All the packit related code could be find in https://github.com/fedora-infra/the-new-hotness/pull/235/files#diff-d74ad19fb2d5a66e5bdf8eec8555ca1d\r\ + \n\r\nI'm using only the dist-git module from the packit itself and\ + \ my use case should work like this:\r\n1. Create fork of the target\ + \ repository\r\n2. Update branch\r\n3. Create PR against the specific\ + \ branch in target repository\r\n\r\nWith my current code it needs kerberos\ + \ ticket and user must be in packager group. I tried to do the same\ + \ using dist-git web interface and only thing I need to execute the\ + \ above scenario is the FAS account. \r\nThis should be doable with\ + \ only the pagure token, which allows both forking and creating PR." + closed_at: '2020-05-26T05:56:28Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/417/comments + created_at: '2020-01-28T14:53:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/417/events + html_url: https://github.com/packit/ogr/issues/417 + id: 624162109 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/417/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIxMjg0ODI1 - number: 221 + node_id: MDU6SXNzdWU2MjQxNjIxMDk= + number: 417 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/221.diff - html_url: https://github.com/packit/ogr/pull/221 - patch_url: https://github.com/packit/ogr/pull/221.patch - url: https://api.github.com/repos/packit/ogr/pulls/221 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove pull requests from issues in GitHub implementation - updated_at: '2019-12-04T09:26:59Z' - url: https://api.github.com/repos/packit/ogr/issues/221 + title: '[use-case] the-new-hotness dist-git pull request creation' + updated_at: '2020-05-26T05:56:28Z' + url: https://api.github.com/repos/packit/ogr/issues/417 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/6943409?v=4 + events_url: https://api.github.com/users/Zlopez/events{/privacy} + followers_url: https://api.github.com/users/Zlopez/followers + following_url: https://api.github.com/users/Zlopez/following{/other_user} + gists_url: https://api.github.com/users/Zlopez/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/Zlopez + id: 6943409 + login: Zlopez + node_id: MDQ6VXNlcjY5NDM0MDk= + organizations_url: https://api.github.com/users/Zlopez/orgs + received_events_url: https://api.github.com/users/Zlopez/received_events + repos_url: https://api.github.com/users/Zlopez/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/Zlopez/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Zlopez/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/Zlopez - active_lock_reason: null - assignee: null - assignees: [] + assignee: + avatar_url: https://avatars.githubusercontent.com/u/20343475?v=4 + events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} + followers_url: https://api.github.com/users/RafayGhafoor/followers + following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} + gists_url: https://api.github.com/users/RafayGhafoor/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/RafayGhafoor + id: 20343475 + login: RafayGhafoor + node_id: MDQ6VXNlcjIwMzQzNDc1 + organizations_url: https://api.github.com/users/RafayGhafoor/orgs + received_events_url: https://api.github.com/users/RafayGhafoor/received_events + repos_url: https://api.github.com/users/RafayGhafoor/repos + site_admin: false + starred_url: https://api.github.com/users/RafayGhafoor/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/RafayGhafoor/subscriptions + type: User + url: https://api.github.com/users/RafayGhafoor + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/20343475?v=4 + events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} + followers_url: https://api.github.com/users/RafayGhafoor/followers + following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} + gists_url: https://api.github.com/users/RafayGhafoor/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/RafayGhafoor + id: 20343475 + login: RafayGhafoor + node_id: MDQ6VXNlcjIwMzQzNDc1 + organizations_url: https://api.github.com/users/RafayGhafoor/orgs + received_events_url: https://api.github.com/users/RafayGhafoor/received_events + repos_url: https://api.github.com/users/RafayGhafoor/repos + site_admin: false + starred_url: https://api.github.com/users/RafayGhafoor/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/RafayGhafoor/subscriptions + type: User + url: https://api.github.com/users/RafayGhafoor author_association: MEMBER - body: "Closes #218\r\n\r\n- removes implementation from abstract class\r\ - \n- overrides it for Pagure projects that have optional namespace\r\n\ - - adds few basic tests" - closed_at: '2019-09-25T05:20:03Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/219/comments - created_at: '2019-09-24T09:35:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/219/events - html_url: https://github.com/packit/ogr/pull/219 - id: 497572530 + body: "We have some URLs in the tests -- it would be nice to validate\ + \ them.\r\n\r\n*Originally reported by @jscotka :*\r\n> Maybe one note,\ + \ would be nice to test in tests that URLs are valid for github/gitlba/pagure,\ + \ eg. via urllib download the diff and check if there are few expected\ + \ lines." + closed_at: '2020-05-25T14:18:31Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/342/comments + created_at: '2020-02-26T09:49:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/342/events + html_url: https://github.com/packit/ogr/issues/342 + id: 571202848 labels: - - color: b60205 + - color: fbca04 default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + description: Reserved for the participants/applicants of the Google + Summer of Code. + id: 1867054141 + name: GSOC + node_id: MDU6TGFiZWwxODY3MDU0MTQx + url: https://api.github.com/repos/packit/ogr/labels/GSOC + - color: 7057ff default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/219/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/342/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIwNjc0OTk2 - number: 219 + node_id: MDU6SXNzdWU1NzEyMDI4NDg= + number: 342 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/219.diff - html_url: https://github.com/packit/ogr/pull/219 - patch_url: https://github.com/packit/ogr/pull/219.patch - url: https://api.github.com/repos/packit/ogr/pulls/219 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitProject.full_repo_name - updated_at: '2019-12-04T09:26:58Z' - url: https://api.github.com/repos/packit/ogr/issues/219 + title: Validate the urls + updated_at: '2020-05-25T14:18:31Z' + url: https://api.github.com/repos/packit/ogr/issues/342 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Closes #213\r\nSeems like it could be implemented in BaseGitProject.\r\ - \nNot quite sure about Pagure implementation, since I haven't found\ - \ any tests regarding `None` as namespace." - closed_at: '2019-09-24T08:53:16Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/217/comments - created_at: '2019-09-22T08:47:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/217/events - html_url: https://github.com/packit/ogr/pull/217 - id: 496750815 + body: "Currently implemented only for PagurePullRequest.\r\n\r\nIt returns\ + \ bytes in case there's some binary blob in the patch.\r\n\r\nI'd like\ + \ to use this in https://github.com/packit-service/packit-service/pull/627" + closed_at: '2020-05-22T17:27:23Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/415/comments + created_at: '2020-05-22T11:43:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/415/events + html_url: https://github.com/packit/ogr/pull/415 + id: 623151328 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -114834,185 +143814,161 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/217/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/415/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIwMDI1NDc1 - number: 217 + node_id: MDExOlB1bGxSZXF1ZXN0NDIxODc0NDAw + number: 415 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/217.diff - html_url: https://github.com/packit/ogr/pull/217 - patch_url: https://github.com/packit/ogr/pull/217.patch - url: https://api.github.com/repos/packit/ogr/pulls/217 + diff_url: https://github.com/packit/ogr/pull/415.diff + html_url: https://github.com/packit/ogr/pull/415 + patch_url: https://github.com/packit/ogr/pull/415.patch + url: https://api.github.com/repos/packit/ogr/pulls/415 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitProject.get_web_url() - updated_at: '2019-12-04T09:26:58Z' - url: https://api.github.com/repos/packit/ogr/issues/217 + title: Add PullRequest.patch property + updated_at: '2020-05-25T09:38:26Z' + url: https://api.github.com/repos/packit/ogr/issues/415 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "After there will be done these stuff:\r\n - [ ] https://github.com/packit-service/ogr/pull/201\ - \ will be merged\r\n - [ ] there will be fixed also ``packit`` to use\ - \ ``requre``\r\n\r\nthen remove all mocking stuff from this project" - closed_at: '2019-12-04T08:54:10Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/225/comments - created_at: '2019-09-26T13:04:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/225/events - html_url: https://github.com/packit/ogr/issues/225 - id: 498871887 - labels: - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/225/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is dirty.This + is not supported.` | + + | `f31` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.12.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is dirty.This + is not supported.` | + + | `master` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-05-21T11:58:35Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/409/comments + created_at: '2020-05-06T15:57:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/409/events + html_url: https://github.com/packit/ogr/issues/409 + id: 613430701 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/409/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTg4NzE4ODc= - number: 225 + node_id: MDU6SXNzdWU2MTM0MzA3MDE= + number: 409 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: remove persistent storage + mocking from ogr after using requre - updated_at: '2019-12-04T08:54:17Z' - url: https://api.github.com/repos/packit/ogr/issues/225 + title: '[packit] Propose update failed for release 0.12.0' + updated_at: '2020-05-21T11:58:35Z' + url: https://api.github.com/repos/packit/ogr/issues/409 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=7: - - metadata: - latency: 0.6038033962249756 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null - assignee: null - assignees: [] + assignee: + avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 + events_url: https://api.github.com/users/TomasJani/events{/privacy} + followers_url: https://api.github.com/users/TomasJani/followers + following_url: https://api.github.com/users/TomasJani/following{/other_user} + gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasJani + id: 21237576 + login: TomasJani + node_id: MDQ6VXNlcjIxMjM3NTc2 + organizations_url: https://api.github.com/users/TomasJani/orgs + received_events_url: https://api.github.com/users/TomasJani/received_events + repos_url: https://api.github.com/users/TomasJani/repos + site_admin: false + starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + type: User + url: https://api.github.com/users/TomasJani + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 + events_url: https://api.github.com/users/TomasJani/events{/privacy} + followers_url: https://api.github.com/users/TomasJani/followers + following_url: https://api.github.com/users/TomasJani/following{/other_user} + gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasJani + id: 21237576 + login: TomasJani + node_id: MDQ6VXNlcjIxMjM3NTc2 + organizations_url: https://api.github.com/users/TomasJani/orgs + received_events_url: https://api.github.com/users/TomasJani/received_events + repos_url: https://api.github.com/users/TomasJani/repos + site_admin: false + starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + type: User + url: https://api.github.com/users/TomasJani author_association: MEMBER - body: "The default behaviour should be:\r\n\r\n- running from fork:\r\n\ - \ - create pr from fork to upstream\r\n- running from upstream:\r\ - \n - create pr from upstream to upstream\r\n\r\nWe need to specify\ - \ correctly the username in `head` or use the correct pygithub object\ - \ to call the `create_pull` on.\r\n\r\n- Get inspired in packit: https://github.com/packit-service/packit/blob/master/packit/upstream.py#L190\r\ - \n- API docs: https://developer.github.com/v3/pulls/#create-a-pull-request\ - \ (`head` parameter)\r\n- Related pygithub method: https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_pull\r\ - \n\r\nAC:\r\n\r\n- [ ] check the existing workflow\r\n- [ ] fix the\ - \ username to support both workflows correctly\r\n- [ ] create tests\ - \ for both of them\r\n\r\n\r\n" - closed_at: '2019-12-04T08:50:38Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/250/comments - created_at: '2019-10-17T13:55:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/250/events - html_url: https://github.com/packit/ogr/issues/250 - id: 508493656 + body: "- [x] add the `created` and `edited` properties to the commit flag\ + \ classes\r\n - [x] abstract class\r\n - [x] github:\r\n - https://pygithub.readthedocs.io/en/latest/github_objects/Commit.html#github.Commit.Commit.get_statuses\r\ + \n - [ ] gitlab:\r\n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status\r\ + \n - https://docs.gitlab.com/ce/api/commits.html\r\n - pagure:\r\ + \n - https://src.fedoraproject.org/api/0/ -> `Flags for a commit`\r\ + \n- [x] tests for all implementations" + closed_at: '2020-05-16T16:37:40Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/344/comments + created_at: '2020-03-02T11:25:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/344/events + html_url: https://github.com/packit/ogr/issues/344 + id: 573909124 labels: - color: '000000' default: false @@ -115021,13 +143977,34 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -115035,19 +144012,26 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/250/labels{/name} + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/344/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDg0OTM2NTY= - number: 250 + node_id: MDU6SXNzdWU1NzM5MDkxMjQ= + number: 344 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix createing pull requests in GitHub - updated_at: '2019-12-04T08:50:38Z' - url: https://api.github.com/repos/packit/ogr/issues/250 + title: Add datetime to commit flags + updated_at: '2020-05-18T08:05:17Z' + url: https://api.github.com/repos/packit/ogr/issues/344 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -115068,19 +144052,22 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Closes #281 \r\nAfter change in requre integration tests fails.\ - \ \r\nChange PersistentObjectStorage().is_write_mode to PersistentObjectStorage().mode\ - \ == StorageMode.write\r\n\r\nZuul allow to add relation between repos,\ - \ maybe this is a option to prevent that situation, but I don't know\ - \ how looks policy about that in packit-service. \r\n" - closed_at: '2019-11-25T12:33:59Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/282/comments - created_at: '2019-11-22T11:31:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/282/events - html_url: https://github.com/packit/ogr/pull/282 - id: 527144120 + author_association: MEMBER + body: "When telling if a user can merge PRs in a GitHub repo, ask GitHub\ + \ for\r\nthe user's permission on the repo instead of checking if the\ + \ user is in\r\nthe list of collaborators.\r\n\r\nThis should lead to\ + \ fewer API calls in cases when the full list of\r\ncollaborators is\ + \ not needed, but it also returns better results: the\r\nlist of collaborators\ + \ does not seem to be always up to date when queries\r\nare done using\ + \ GitHub App tokens.\r\n\r\nRelates to packit-service/packit-service#612.\r\ + \n\r\nSigned-off-by: Hunor Csomort\xE1ni " + closed_at: '2020-05-12T10:44:25Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/410/comments + created_at: '2020-05-11T13:29:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/410/events + html_url: https://github.com/packit/ogr/pull/410 + id: 615885823 labels: - color: 0e8a16 default: false @@ -115089,154 +144076,94 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/282/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/410/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ0NDc0MTIz - number: 282 + node_id: MDExOlB1bGxSZXF1ZXN0NDE2MTA1NjQy + number: 410 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/282.diff - html_url: https://github.com/packit/ogr/pull/282 - patch_url: https://github.com/packit/ogr/pull/282.patch - url: https://api.github.com/repos/packit/ogr/pulls/282 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Fix integration tests - updated_at: '2019-12-03T16:14:58Z' - url: https://api.github.com/repos/packit/ogr/issues/282 - user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 - events_url: https://api.github.com/users/pawelkopka/events{/privacy} - followers_url: https://api.github.com/users/pawelkopka/followers - following_url: https://api.github.com/users/pawelkopka/following{/other_user} - gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/pawelkopka - id: 17784034 - login: pawelkopka - node_id: MDQ6VXNlcjE3Nzg0MDM0 - organizations_url: https://api.github.com/users/pawelkopka/orgs - received_events_url: https://api.github.com/users/pawelkopka/received_events - repos_url: https://api.github.com/users/pawelkopka/repos - site_admin: false - starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions - type: User - url: https://api.github.com/users/pawelkopka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Any ideas how [this](https://sentry.io/organizations/red-hat-0p/issues/1369231585)\ - \ could have happen?\r\n\r\n```python\r\nAttributeError: 'GithubPRComment'\ - \ object has no attribute '_body'\r\n File \"packit_service/worker/tasks.py\"\ - , line 42, in process_message\r\n return SteveJobs().process_message(event=event,\ - \ topic=topic)\r\n File \"packit_service/worker/jobs.py\", line 249,\ - \ in process_message\r\n jobs_results[job_type] = handler.run_n_clean()\r\ - \n File \"packit_service/worker/handler.py\", line 177, in run_n_clean\r\ - \n return self.run()\r\n File \"packit_service/worker/fedmsg_handlers.py\"\ - , line 221, in run\r\n if not self.was_last_build_successful():\r\ - \n File \"packit_service/worker/fedmsg_handlers.py\", line 189, in\ - \ was_last_build_successful\r\n if \"Congratulations!\" in comment.comment:\r\ - \n File \"ogr/abstract.py\", line 78, in comment\r\n return self._body\r\ - \n```" - closed_at: '2019-12-03T16:04:47Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/288/comments - created_at: '2019-12-03T14:14:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/288/events - html_url: https://github.com/packit/ogr/issues/288 - id: 532014956 - labels: - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/288/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1MzIwMTQ5NTY= - number: 288 - performed_via_github_app: null + diff_url: https://github.com/packit/ogr/pull/410.diff + html_url: https://github.com/packit/ogr/pull/410 + patch_url: https://github.com/packit/ogr/pull/410.patch + url: https://api.github.com/repos/packit/ogr/pulls/410 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'AttributeError: ''GithubPRComment'' object has no attribute ''_body''' - updated_at: '2019-12-03T16:04:47Z' - url: https://api.github.com/repos/packit/ogr/issues/288 + title: 'GitHub: query only one user when telling if a user can merge PRs' + updated_at: '2020-05-12T10:44:25Z' + url: https://api.github.com/repos/packit/ogr/issues/410 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/shreyaspapi assignees: - - avatar_url: https://avatars0.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} + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/shreyaspapi author_association: MEMBER - body: "`Comment` class should keep backward-link to parent, e.g. `Issue`\ - \ or `PullRequest`.\r\n\r\n- [x] Add parameter to constructor and getter\r\ - \n- [x] Keep link to `Issue`\r\n blocked by #253\r\n- [x] Keep link\ - \ to `PR`\r\n blocked by #254" - closed_at: '2019-12-03T11:21:59Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/255/comments - created_at: '2019-10-24T17:16:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/255/events - html_url: https://github.com/packit/ogr/issues/255 - id: 512074603 + body: "- [ ] Add the `add_to_collaborators` method to `abstract.GitProject`.\ + \ (And raise `NotImplementedError`.)\r\n- [ ] Implement the method for\ + \ all forges (GitHub, GitLab, Pagure).\r\n- [ ] Add tests for this method.\r\ + \n\r\nDocumentation:\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-members\r\ + \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ + \n- https://pagure.io/api/0/ ( > Modify ACLs on a project ?)\r\n" + closed_at: '2020-05-11T19:45:01Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/216/comments + created_at: '2019-09-20T05:52:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/216/events + html_url: https://github.com/packit/ogr/issues/216 + id: 496159491 labels: - color: '000000' default: false @@ -115259,13 +144186,6 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: a2eeef default: false description: New feature or a request for enhancement. @@ -115273,55 +144193,63 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 8be567 + - color: 7057ff default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/255/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/216/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTIwNzQ2MDM= - number: 255 + node_id: MDU6SXNzdWU0OTYxNTk0OTE= + number: 216 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Backward links on comments - updated_at: '2019-12-03T11:21:59Z' - url: https://api.github.com/repos/packit/ogr/issues/255 + title: Adding collaborators to projects + updated_at: '2020-05-11T19:45:01Z' + url: https://api.github.com/repos/packit/ogr/issues/216 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Increase version for packit propose-update.' - closed_at: '2019-12-02T14:21:28Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/283/comments - created_at: '2019-11-28T08:24:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/283/events - html_url: https://github.com/packit/ogr/pull/283 - id: 529760830 + author_association: CONTRIBUTOR + body: "Fixes #216 \r\n\r\nAdded to Github and Gitlab, Pagure is still\ + \ left to do." + closed_at: '2020-05-11T19:45:01Z' + comments: 26 + comments_url: https://api.github.com/repos/packit/ogr/issues/376/comments + created_at: '2020-04-09T16:55:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/376/events + html_url: https://github.com/packit/ogr/pull/376 + id: 597420110 labels: - color: 0e8a16 default: false @@ -115330,218 +144258,248 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/283/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/376/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ2NTc1ODcw - number: 283 + node_id: MDExOlB1bGxSZXF1ZXN0NDAxNTM3MTMx + number: 376 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/283.diff - html_url: https://github.com/packit/ogr/pull/283 - patch_url: https://github.com/packit/ogr/pull/283.patch - url: https://api.github.com/repos/packit/ogr/pulls/283 + diff_url: https://github.com/packit/ogr/pull/376.diff + html_url: https://github.com/packit/ogr/pull/376 + patch_url: https://github.com/packit/ogr/pull/376.patch + url: https://api.github.com/repos/packit/ogr/pulls/376 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Packit config update - updated_at: '2019-12-03T07:42:52Z' - url: https://api.github.com/repos/packit/ogr/issues/283 + title: Adding collaborators to projects - (Github, Gitlab, Pagure) + updated_at: '2020-05-11T19:45:01Z' + url: https://api.github.com/repos/packit/ogr/issues/376 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "This PR contains possible solution of #178 \r\nCloses #178 " - closed_at: '2019-11-29T11:43:22Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/274/comments - created_at: '2019-11-14T09:46:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/274/events - html_url: https://github.com/packit/ogr/pull/274 - id: 522738918 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/274/labels{/name} + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Declare repositories on\ + \ git.centos.org not private\n* Create PR works for Github and fixed\ + \ test\n* Refactor getting projects internally\n* Add tests for `source_project`\ + \ on PullRequest\n* Implement `source_project` on PullRequest\n* Add\ + \ source/target_project to PullRequest\n* Fix tests after requre update\n\ + * Implement `head_commit` for GitHub and GitLab\n* Make tests for `head_commit`\ + \ on PullRequest\n* spec: don't do python_provide on F33+\n\n\nYou can\ + \ change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.12.0-release` branch before merging this PR.\nI\ + \ didn't find any files where `__version__` is set." + closed_at: '2020-05-06T15:53:24Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/408/comments + created_at: '2020-05-06T13:34:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/408/events + html_url: https://github.com/packit/ogr/pull/408 + id: 613324595 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/408/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQwODc5MDI4 - number: 274 + node_id: MDExOlB1bGxSZXF1ZXN0NDE0MTAwMTc4 + number: 408 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/274.diff - html_url: https://github.com/packit/ogr/pull/274 - patch_url: https://github.com/packit/ogr/pull/274.patch - url: https://api.github.com/repos/packit/ogr/pulls/274 + diff_url: https://github.com/packit/ogr/pull/408.diff + html_url: https://github.com/packit/ogr/pull/408 + patch_url: https://github.com/packit/ogr/pull/408.patch + url: https://api.github.com/repos/packit/ogr/pulls/408 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implementation of GitPython instead of calling subprocess - updated_at: '2019-11-29T11:43:22Z' - url: https://api.github.com/repos/packit/ogr/issues/274 + title: 0.12.0 release + updated_at: '2020-05-06T15:57:57Z' + url: https://api.github.com/repos/packit/ogr/issues/408 user: - avatar_url: https://avatars1.githubusercontent.com/u/35431035?v=4 - events_url: https://api.github.com/users/Hojang2/events{/privacy} - followers_url: https://api.github.com/users/Hojang2/followers - following_url: https://api.github.com/users/Hojang2/following{/other_user} - gists_url: https://api.github.com/users/Hojang2/gists{/gist_id} + 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/Hojang2 - id: 35431035 - login: Hojang2 - node_id: MDQ6VXNlcjM1NDMxMDM1 - organizations_url: https://api.github.com/users/Hojang2/orgs - received_events_url: https://api.github.com/users/Hojang2/received_events - repos_url: https://api.github.com/users/Hojang2/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: Let's create a new release! + closed_at: '2020-05-06T13:34:20Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/407/comments + created_at: '2020-05-06T13:32:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/407/events + html_url: https://github.com/packit/ogr/issues/407 + id: 613323657 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/407/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MTMzMjM2NTc= + number: 407 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: New minor release + updated_at: '2020-05-06T13:34:20Z' + url: https://api.github.com/repos/packit/ogr/issues/407 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/Hojang2/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/Hojang2/subscriptions + 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/Hojang2 + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Investigate existing libraries (example https://github.com/release-depot/git_wrapper).\r\ - \nDecide whether to use an existing library or move our [git-related\ - \ code](https://github.com/packit-service/ogr/blob/master/ogr/utils.py)\ - \ (check for all occurrences of \"git\" through the code) into a new\ - \ library.\r\nUse such library in ogr." - closed_at: '2019-11-29T11:43:21Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/178/comments - created_at: '2019-09-06T10:41:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/178/events - html_url: https://github.com/packit/ogr/issues/178 - id: 490258611 + author_association: CONTRIBUTOR + body: "Related to #307 \r\nIf the fork_name arg is passed, PR is created\ + \ on the forked repo.\r\nIf the fork_name arg is not passed PR is made\ + \ to parent repo. \r\n\r\nTested for (fork-fork, fork-upstream, upstream-upstream)" + closed_at: '2020-05-05T07:34:36Z' + comments: 16 + comments_url: https://api.github.com/repos/packit/ogr/issues/404/comments + created_at: '2020-05-01T20:16:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/404/events + html_url: https://github.com/packit/ogr/pull/404 + id: 610947143 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: c2ef58 + - color: 0e8a16 default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/178/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/404/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAyNTg2MTE= - number: 178 + node_id: MDExOlB1bGxSZXF1ZXN0NDEyMjg0MDE0 + number: 404 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/404.diff + html_url: https://github.com/packit/ogr/pull/404 + patch_url: https://github.com/packit/ogr/pull/404.patch + url: https://api.github.com/repos/packit/ogr/pulls/404 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Replace git-wrapping code with new or existing library - updated_at: '2019-11-29T11:43:21Z' - url: https://api.github.com/repos/packit/ogr/issues/178 + title: Create PR's to forked Repo fixed for Github + updated_at: '2020-05-05T12:36:03Z' + url: https://api.github.com/repos/packit/ogr/issues/404 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 + events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} + followers_url: https://api.github.com/users/saisankargochhayat/followers + following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} + gists_url: https://api.github.com/users/saisankargochhayat/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/saisankargochhayat + id: 9396452 + login: saisankargochhayat + node_id: MDQ6VXNlcjkzOTY0NTI= + organizations_url: https://api.github.com/users/saisankargochhayat/orgs + received_events_url: https://api.github.com/users/saisankargochhayat/received_events + repos_url: https://api.github.com/users/saisankargochhayat/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/saisankargochhayat - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: MEMBER - body: "Extend `PullRequest` class of methods.\r\n\r\n- [x] move PR-related\ - \ functions from `Project` to `PullRequest`\r\n - [x] `BasePullRequest`\r\ - \n - [x] Github\r\n - [x] Gitlab\r\n - [x] Pagure\r\n- [x] make `Project`'s\ - \ methods backward-compatible by calling new methods\r\n- [x] deprecation\r\ - \n - [x] move deprecated functions to base class\r\n - [x] deprecate\ - \ functions on `Project`\r\n- [x] properties\r\n- [x] fix tests\r\n\r\ - \nPart of #86\r\nBlocked by #121" - closed_at: '2019-11-29T10:21:52Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/254/comments - created_at: '2019-10-24T17:14:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/254/events - html_url: https://github.com/packit/ogr/issues/254 - id: 512073698 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "I am looking at this code:\r\n\r\nhttps://github.com/packit-service/ogr/blob/b7c5333c4df64ecdf854a5375c207a789ca51a01/ogr/services/github/pull_request.py#L111\r\ + \n\r\nwhat if I want to create a PR against my fork and not the upstream\ + \ project?" + closed_at: '2020-05-05T10:14:22Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/307/comments + created_at: '2020-01-14T11:20:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/307/events + html_url: https://github.com/packit/ogr/issues/307 + id: 549501262 labels: - color: '000000' default: false @@ -115557,139 +144515,64 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 8be567 + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 42e529 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/254/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1MTIwNzM2OTg= - number: 254 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: PullRequest class refactor - updated_at: '2019-11-29T10:21:52Z' - url: https://api.github.com/repos/packit/ogr/issues/254 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-11-28T10:13:00Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/284/comments - created_at: '2019-11-28T10:06:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/284/events - html_url: https://github.com/packit/ogr/pull/284 - id: 529812923 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/284/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/307/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ2NjE4MjQ5 - number: 284 + node_id: MDU6SXNzdWU1NDk1MDEyNjI= + number: 307 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/284.diff - html_url: https://github.com/packit/ogr/pull/284 - patch_url: https://github.com/packit/ogr/pull/284.patch - url: https://api.github.com/repos/packit/ogr/pulls/284 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Do not merge - test PR - updated_at: '2019-11-28T10:13:00Z' - url: https://api.github.com/repos/packit/ogr/issues/284 + title: how can I create a PR against my fork + updated_at: '2020-05-05T10:14:22Z' + url: https://api.github.com/repos/packit/ogr/issues/307 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Add .fmf and setup testing-farm.\r\n\r\n---\r\n\r\nTODO:\r\n\ - - [x] add some real tests" - closed_at: '2019-11-28T08:22:05Z' - comments: 18 - comments_url: https://api.github.com/repos/packit/ogr/issues/278/comments - created_at: '2019-11-19T12:06:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/278/events - html_url: https://github.com/packit/ogr/pull/278 - id: 524968144 + body: "The best solution though would be to make this list configurable.\ + \ But I'm in a hurry now :slightly_smiling_face: \r\n\r\nSigned-off-by:\ + \ Hunor Csomort\xE1ni " + closed_at: '2020-05-05T09:54:09Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/405/comments + created_at: '2020-05-05T09:34:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/405/events + html_url: https://github.com/packit/ogr/pull/405 + id: 612468201 labels: - color: 0e8a16 default: false @@ -115698,110 +144581,117 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/278/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/405/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQyNjQ1NDE1 - number: 278 + node_id: MDExOlB1bGxSZXF1ZXN0NDEzNDA2MjI3 + number: 405 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/278.diff - html_url: https://github.com/packit/ogr/pull/278 - patch_url: https://github.com/packit/ogr/pull/278.patch - url: https://api.github.com/repos/packit/ogr/pulls/278 + diff_url: https://github.com/packit/ogr/pull/405.diff + html_url: https://github.com/packit/ogr/pull/405 + patch_url: https://github.com/packit/ogr/pull/405.patch + url: https://api.github.com/repos/packit/ogr/pulls/405 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Setup testing farm - updated_at: '2019-11-28T10:11:46Z' - url: https://api.github.com/repos/packit/ogr/issues/278 + title: Declare repositories on git.centos.org not private + updated_at: '2020-05-05T09:54:09Z' + url: https://api.github.com/repos/packit/ogr/issues/405 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Figure out a deprecated strategy for ogr, get inspired by packit:\ - \ https://packit.dev/ [or django, ansible].\r\n\r\n- [x] documentation\r\ - \n- [x] solution for method/classes" - closed_at: '2019-11-27T12:02:53Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/121/comments - created_at: '2019-07-16T11:54:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/121/events - html_url: https://github.com/packit/ogr/issues/121 - id: 468611036 + body: "Closes #400\r\n\r\n# TODO\r\n\r\n(copied from issue)\r\n\r\n- [x]\ + \ add `source_project` property (abstract and implementations) returning\ + \ the project with the source branch\r\n- [x] create tests:\r\n - [x]\ + \ basic PR from `fork` to `upstream`\r\n - [x] renamed `fork`\r\n \ + \ - [x] renamed `upstream`\r\n - [x] PR from `fork` to `fork`\r\n \ + \ - [x] PR from `upstream` to `upstream`\r\n- [x] ? `target_project`\ + \ property that will replace the current `project` one to make it clear\r\ + \n - [x] don't forget to support both and deprecate the old one\r\n\ + - [x] squash commits\r\n- [x] check getting projects by internal representation\ + \ (github: creating from github.Repository, gitlab: from project_id)\r\ + \n - [x] Github: project uses almost the same way of initializing\ + \ `GithubProject` in `L129, L172, L385, L564`\r\n\r\n# Discussion\r\n\ + \r\n- [x] deprecating `.project`\r\n - [x] provide `.project` as\ + \ a property?\r\n - [ ] if so, do we need setters for them outside\ + \ class?\r\n- [ ] consider having `GithubProject.from_github_repository`,\ + \ which would take just the github repo from PyGithub and return new\ + \ project\r\n- [ ] consider creating GitLab projects just from _project\ + \ id_ (python-gitlab doesn't offer any way to get to source project\ + \ than ID)" + closed_at: '2020-04-30T16:23:19Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/401/comments + created_at: '2020-04-27T20:33:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/401/events + html_url: https://github.com/packit/ogr/pull/401 + id: 607834495 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: 8be567 + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/121/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/401/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njg2MTEwMzY= - number: 121 + node_id: MDExOlB1bGxSZXF1ZXN0NDA5NzMxMzg3 + number: 401 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/401.diff + html_url: https://github.com/packit/ogr/pull/401 + patch_url: https://github.com/packit/ogr/pull/401.patch + url: https://api.github.com/repos/packit/ogr/pulls/401 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Deprecation policy - updated_at: '2019-11-27T12:02:53Z' - url: https://api.github.com/repos/packit/ogr/issues/121 + title: Enhance project references in pull requests + updated_at: '2020-04-30T16:34:07Z' + url: https://api.github.com/repos/packit/ogr/issues/401 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -115820,7 +144710,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -115839,19 +144729,23 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko author_association: MEMBER - body: "Extend `Issue` class of methods.\r\n\r\n- [x] move issue-related\ - \ functions from `Project` to `Issue`\r\n- [x] make `Project`'s methods\ - \ backward-compatible by calling new methods\r\n- [x] deprecate functions\ - \ on `Project`\r\n- [x] separate all issue-related tests if needed\r\ - \n- [x] `__get_comment`, `get_issue_comments`\r\n\r\nPart of #86\r\n\ - Blocked by #121" - closed_at: '2019-11-26T08:52:22Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/253/comments - created_at: '2019-10-24T17:13:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/253/events - html_url: https://github.com/packit/ogr/issues/253 - id: 512073255 + body: "Now, we have only `project` property in the PR class, but it's\ + \ hard to get the source project. (It can be sometimes very tricky to\ + \ pick the right repo from the OGR's user perspective.)\r\n\r\n- [ ]\ + \ add `source_project` property (abstract and implementations) returning\ + \ the project with the source branch\r\n- [ ] create tests:\r\n - [\ + \ ] basic PR from `fork` to `upstream`\r\n - [ ] renamed `fork`\r\n\ + \ - [ ] renamed `upstream`\r\n - [ ] PR from `fork` to `fork`\r\n\ + \ - [ ] PR from `upstream` to `upstream`\r\n- [ ] ? `target_project`\ + \ property that will replace the current `project` one to make it clear\r\ + \n - [ ] don't forget to support both and deprecate the old one" + closed_at: '2020-04-30T16:23:19Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/400/comments + created_at: '2020-04-27T15:09:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/400/events + html_url: https://github.com/packit/ogr/issues/400 + id: 607627181 labels: - color: '000000' default: false @@ -115874,13 +144768,6 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: a2eeef default: false description: New feature or a request for enhancement. @@ -115888,40 +144775,74 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 8be567 + labels_url: https://api.github.com/repos/packit/ogr/issues/400/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MDc2MjcxODE= + number: 400 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: source_project property for PR class + updated_at: '2020-04-30T16:23:19Z' + url: https://api.github.com/repos/packit/ogr/issues/400 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2020-04-30T15:29:45Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/403/comments + created_at: '2020-04-30T15:05:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/403/events + html_url: https://github.com/packit/ogr/pull/403 + id: 610115589 + labels: + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/253/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/403/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTIwNzMyNTU= - number: 253 + node_id: MDExOlB1bGxSZXF1ZXN0NDExNjA3OTEx + number: 403 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/403.diff + html_url: https://github.com/packit/ogr/pull/403 + patch_url: https://github.com/packit/ogr/pull/403.patch + url: https://api.github.com/repos/packit/ogr/pulls/403 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Issue class refactor - updated_at: '2019-11-26T08:52:22Z' - url: https://api.github.com/repos/packit/ogr/issues/253 + title: Fix tests after requre update + updated_at: '2020-04-30T15:36:23Z' + url: https://api.github.com/repos/packit/ogr/issues/403 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -115942,102 +144863,130 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "After change in requre integrations tests, trying call property\ - \ _is_write_mode_ .\r\nProbably this _PersistentObjectStorage().is_write_mode_\ - \ need to be change to _PersistentObjectStorage().mode == StorageMode.write_\r\ - \n\r\n\r\nError:\r\n`AttributeError: 'PersistentObjectStorage' object\ - \ has no attribute 'is_write_mode'`" - closed_at: '2019-11-25T12:33:59Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/281/comments - created_at: '2019-11-22T11:06:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/281/events - html_url: https://github.com/packit/ogr/issues/281 - id: 527132897 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/281/labels{/name} + author_association: MEMBER + body: "Closes #368\r\n\r\n- [x] Implements `head_commit` for Github and\ + \ Gitlab\r\n- [x] Integration tests for all implementations" + closed_at: '2020-04-30T13:57:52Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/402/comments + created_at: '2020-04-30T10:24:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/402/events + html_url: https://github.com/packit/ogr/pull/402 + id: 609796401 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/402/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MjcxMzI4OTc= - number: 281 + node_id: MDExOlB1bGxSZXF1ZXN0NDExMzIzMDM3 + number: 402 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/402.diff + html_url: https://github.com/packit/ogr/pull/402 + patch_url: https://github.com/packit/ogr/pull/402.patch + url: https://api.github.com/repos/packit/ogr/pulls/402 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Integrations tests fails afters change in requre - updated_at: '2019-11-25T12:33:59Z' - url: https://api.github.com/repos/packit/ogr/issues/281 + title: Head commit on PRs + updated_at: '2020-04-30T14:06:58Z' + url: https://api.github.com/repos/packit/ogr/issues/402 user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 - events_url: https://api.github.com/users/pawelkopka/events{/privacy} - followers_url: https://api.github.com/users/pawelkopka/followers - following_url: https://api.github.com/users/pawelkopka/following{/other_user} - gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + 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/pawelkopka - id: 17784034 - login: pawelkopka - node_id: MDQ6VXNlcjE3Nzg0MDM0 - organizations_url: https://api.github.com/users/pawelkopka/orgs - received_events_url: https://api.github.com/users/pawelkopka/received_events - repos_url: https://api.github.com/users/pawelkopka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + 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/pawelkopka + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.429017 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:38 GMT + ETag: W/"97800fcdf0d0f33857dde41f450c7d0f0d6bc12c32fdffa3ad0b3ea495d5e64e" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F801B2:191BB63:6075DC45 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4678' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '322' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=7: + - metadata: + latency: 0.4265930652618408 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/eliskasl/received_events - repos_url: https://api.github.com/users/eliskasl/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/eliskasl/received_events - repos_url: https://api.github.com/users/eliskasl/repos - 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 - author_association: MEMBER - body: "https://github.com/PyGithub/PyGithub/pull/1135 is now merged\r\n\ - \r\nUse the code above to initiate GitHubService, related code (which\ - \ we are using in the meantime):\r\n\r\npretty much drop this:\r\nhttps://github.com/packit-service/ogr/blob/253e93bc87c079d0cd8f3dc87fc5e11f5078e53b/ogr/services/github_tweak.py#L11\r\ - \n\r\nUse the newly added functionality in pygithub here:\r\nhttps://github.com/packit-service/ogr/blob/5729e29cb4e5bea7eb6ed68e1c573ca7f2d86051/ogr/factory.py#L142\r\ - \n\r\nAlso please write a test case for this." - closed_at: '2019-11-20T15:17:22Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/270/comments - created_at: '2019-06-20T09:29:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/270/events - html_url: https://github.com/packit/ogr/issues/270 - id: 521607861 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: Implement PullRequest.head_commit for github and gitlab + closed_at: '2020-04-30T13:57:51Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/368/comments + created_at: '2020-03-27T10:47:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/368/events + html_url: https://github.com/packit/ogr/issues/368 + id: 589045263 labels: - color: '000000' default: false @@ -116046,6 +144995,13 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 7057ff default: false description: Good for newcomers @@ -116053,58 +145009,60 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 + - color: 42e529 default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/270/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/368/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MjE2MDc4NjE= - number: 270 + node_id: MDU6SXNzdWU1ODkwNDUyNjM= + number: 368 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'get installation ID: use code from pygithub once a new release - is available' - updated_at: '2019-11-20T15:17:22Z' - url: https://api.github.com/repos/packit/ogr/issues/270 + title: Implement PullRequest.head_commit for github and gitlab + updated_at: '2020-04-30T13:57:51Z' + url: https://api.github.com/repos/packit/ogr/issues/368 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "After PR(https://github.com/PyGithub/PyGithub/pull/1135) merged\ - \ github_tweak can be remove and use get_installation from PyGithub.\r\ - \n\r\nCloses #178" - closed_at: '2019-11-19T08:51:59Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/277/comments - created_at: '2019-11-18T14:11:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/277/events - html_url: https://github.com/packit/ogr/pull/277 - id: 524392477 + body: 'packaging guidelines say this is automatic since F33 and we should + + disable it + + + https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_provides' + closed_at: '2020-04-27T17:21:08Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/399/comments + created_at: '2020-04-27T10:25:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/399/events + html_url: https://github.com/packit/ogr/pull/399 + id: 607427901 labels: - color: 0e8a16 default: false @@ -116113,110 +145071,142 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/277/labels{/name} + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/399/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQyMTc1NDg2 - number: 277 + node_id: MDExOlB1bGxSZXF1ZXN0NDA5NDAzNjI3 + number: 399 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/277.diff - html_url: https://github.com/packit/ogr/pull/277 - patch_url: https://github.com/packit/ogr/pull/277.patch - url: https://api.github.com/repos/packit/ogr/pulls/277 + diff_url: https://github.com/packit/ogr/pull/399.diff + html_url: https://github.com/packit/ogr/pull/399 + patch_url: https://github.com/packit/ogr/pull/399.patch + url: https://api.github.com/repos/packit/ogr/pulls/399 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove github_tweak to use upstream github function - updated_at: '2019-11-19T08:51:59Z' - url: https://api.github.com/repos/packit/ogr/issues/277 + title: 'spec: don''t do python_provide on F33+' + updated_at: '2020-04-28T08:16:08Z' + url: https://api.github.com/repos/packit/ogr/issues/399 user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 - events_url: https://api.github.com/users/pawelkopka/events{/privacy} - followers_url: https://api.github.com/users/pawelkopka/followers - following_url: https://api.github.com/users/pawelkopka/following{/other_user} - gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + 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/pawelkopka - id: 17784034 - login: pawelkopka - node_id: MDQ6VXNlcjE3Nzg0MDM0 - organizations_url: https://api.github.com/users/pawelkopka/orgs - received_events_url: https://api.github.com/users/pawelkopka/received_events - repos_url: https://api.github.com/users/pawelkopka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + 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/pawelkopka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-11-18T12:45:03Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/275/comments - created_at: '2019-11-14T11:29:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/275/events - html_url: https://github.com/packit/ogr/pull/275 - id: 522798569 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/275/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.3.tar.gz. + Reason: ''Not Found''. ` | + + | `f31` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This + is not supported.` | + + | `f32` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This + is not supported.` | + + | `master` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-04-27T10:09:07Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/398/comments + created_at: '2020-04-27T09:59:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/398/events + html_url: https://github.com/packit/ogr/issues/398 + id: 607410636 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/398/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQwOTI0NzU4 - number: 275 + node_id: MDU6SXNzdWU2MDc0MTA2MzY= + number: 398 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/275.diff - html_url: https://github.com/packit/ogr/pull/275 - patch_url: https://github.com/packit/ogr/pull/275.patch - url: https://api.github.com/repos/packit/ogr/pulls/275 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: temporary integration test method PullRequest._pr_close_temp() - removed - updated_at: '2019-11-18T13:00:09Z' - url: https://api.github.com/repos/packit/ogr/issues/275 + title: '[packit] Propose update failed for release 0.11.3' + updated_at: '2020-04-27T10:11:01Z' + url: https://api.github.com/repos/packit/ogr/issues/398 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '#250 ' - closed_at: '2019-11-14T08:21:22Z' - comments: 28 - comments_url: https://api.github.com/repos/packit/ogr/issues/269/comments - created_at: '2019-11-10T21:17:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/269/events - html_url: https://github.com/packit/ogr/pull/269 - id: 520658857 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Fix pagination in GitLab\ + \ and add tests\n* Fix pagination for GitlabCommitFlag\n* Add tests\ + \ for PagureIssue setters\n* Implement Issue setters for Pagure\n* revert\ + \ rpmautospec\n* spec: dont hardcode name/version, use macros instead\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.11.3-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-04-27T09:58:02Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/393/comments + created_at: '2020-04-24T07:15:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/393/events + html_url: https://github.com/packit/ogr/pull/393 + id: 606096113 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -116224,54 +145214,67 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/269/labels{/name} + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/393/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM5MTkxOTQw - number: 269 + node_id: MDExOlB1bGxSZXF1ZXN0NDA4Mzc0MDEw + number: 393 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/269.diff - html_url: https://github.com/packit/ogr/pull/269 - patch_url: https://github.com/packit/ogr/pull/269.patch - url: https://api.github.com/repos/packit/ogr/pulls/269 + diff_url: https://github.com/packit/ogr/pull/393.diff + html_url: https://github.com/packit/ogr/pull/393 + patch_url: https://github.com/packit/ogr/pull/393.patch + url: https://api.github.com/repos/packit/ogr/pulls/393 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: github_pr_create_rework_250 - updated_at: '2019-11-14T10:46:21Z' - url: https://api.github.com/repos/packit/ogr/issues/269 + title: 0.11.3 release + updated_at: '2020-04-27T10:00:28Z' + url: https://api.github.com/repos/packit/ogr/issues/393 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Hi,\r\n\r\ni have implemented GithubProject.pr_close(). integration\ - \ test included. Working on unit test." - closed_at: '2019-11-14T10:10:01Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/273/comments - created_at: '2019-11-13T20:19:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/273/events - html_url: https://github.com/packit/ogr/pull/273 - id: 522450593 + body: 'Fixes #396' + closed_at: '2020-04-26T19:23:07Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/397/comments + created_at: '2020-04-25T11:55:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/397/events + html_url: https://github.com/packit/ogr/pull/397 + id: 606754068 labels: - color: 0e8a16 default: false @@ -116280,106 +145283,136 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/273/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/397/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQwNjQ5Mzc2 - number: 273 + node_id: MDExOlB1bGxSZXF1ZXN0NDA4ODk2ODgw + number: 397 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/273.diff - html_url: https://github.com/packit/ogr/pull/273 - patch_url: https://github.com/packit/ogr/pull/273.patch - url: https://api.github.com/repos/packit/ogr/pulls/273 + diff_url: https://github.com/packit/ogr/pull/397.diff + html_url: https://github.com/packit/ogr/pull/397 + patch_url: https://github.com/packit/ogr/pull/397.patch + url: https://api.github.com/repos/packit/ogr/pulls/397 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: implement GithubProject.pr_close() - updated_at: '2019-11-14T10:10:01Z' - url: https://api.github.com/repos/packit/ogr/issues/273 + title: Switch backticks to apostrophes in Pagure errors + updated_at: '2020-04-27T09:06:09Z' + url: https://api.github.com/repos/packit/ogr/issues/397 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: MEMBER - body: '- Fix the path to the packit tests.' - closed_at: '2019-11-13T21:58:53Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/272/comments - created_at: '2019-11-13T15:23:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/272/events - html_url: https://github.com/packit/ogr/pull/272 - id: 522292170 + body: "As can be seen in https://github.com/abrt/reportd/issues/10 both\ + \ [ogr](https://github.com/packit-service/ogr/blob/master/ogr/services/pagure/service.py#L150)\ + \ and [packit-service](https://github.com/packit-service/packit-service/blob/master/packit_service/worker/handlers/github_handlers.py#L179)\ + \ use backticks, which results in strange Github comments.\r\n\r\nCan\ + \ ogr use apostrophes instead?" + closed_at: '2020-04-26T19:23:07Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/396/comments + created_at: '2020-04-25T08:39:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/396/events + html_url: https://github.com/packit/ogr/issues/396 + id: 606721347 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/272/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/396/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQwNTE5Mjg0 - number: 272 + node_id: MDU6SXNzdWU2MDY3MjEzNDc= + number: 396 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/272.diff - html_url: https://github.com/packit/ogr/pull/272 - patch_url: https://github.com/packit/ogr/pull/272.patch - url: https://api.github.com/repos/packit/ogr/pulls/272 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix ogr rev dep tests - updated_at: '2019-11-13T21:58:57Z' - url: https://api.github.com/repos/packit/ogr/issues/272 + title: Use apostrophe rather than backtics in log messages. + updated_at: '2020-04-26T19:23:07Z' + url: https://api.github.com/repos/packit/ogr/issues/396 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Use requre-purge to unify the dates and tags in response files.\r\ - \n\r\n\r\nTODO:\r\n\r\n- [x] add to pre-commit and run on all changed\ - \ yaml files (pre-commit hook created in the requre repo)\r\n- [x] check\ - \ other possible values to purge (defined in the [requre pre-commit-hook\ - \ config](https://github.com/packit-service/requre/blob/master/.pre-commit-hooks.yaml))\r\ - \n- [x] Makefile target running cleanup on all files." - closed_at: '2019-11-12T07:51:34Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/266/comments - created_at: '2019-11-06T09:59:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/266/events - html_url: https://github.com/packit/ogr/pull/266 - id: 518363112 + body: '' + closed_at: '2020-04-24T18:06:20Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/395/comments + created_at: '2020-04-24T12:55:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/395/events + html_url: https://github.com/packit/ogr/pull/395 + id: 606292445 labels: - color: 0e8a16 default: false @@ -116388,53 +145421,53 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/266/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/395/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM3MjcwODQ5 - number: 266 + node_id: MDExOlB1bGxSZXF1ZXN0NDA4NTM0Mzk4 + number: 395 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/266.diff - html_url: https://github.com/packit/ogr/pull/266 - patch_url: https://github.com/packit/ogr/pull/266.patch - url: https://api.github.com/repos/packit/ogr/pulls/266 + diff_url: https://github.com/packit/ogr/pull/395.diff + html_url: https://github.com/packit/ogr/pull/395 + patch_url: https://github.com/packit/ogr/pull/395.patch + url: https://api.github.com/repos/packit/ogr/pulls/395 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Requre purge - updated_at: '2019-11-12T08:05:45Z' - url: https://api.github.com/repos/packit/ogr/issues/266 + title: Add is_fork and username to PagureProject __str__ + updated_at: '2020-04-24T18:25:00Z' + url: https://api.github.com/repos/packit/ogr/issues/395 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Tweak the stale-bot config.' - closed_at: '2019-11-11T13:51:55Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/268/comments - created_at: '2019-11-06T13:57:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/268/events - html_url: https://github.com/packit/ogr/pull/268 - id: 518489380 + body: '' + closed_at: '2020-04-24T13:31:09Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/394/comments + created_at: '2020-04-24T10:45:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/394/events + html_url: https://github.com/packit/ogr/pull/394 + id: 606221125 labels: - color: 0e8a16 default: false @@ -116443,225 +145476,197 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/268/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/394/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM3Mzc0NzAw - number: 268 + node_id: MDExOlB1bGxSZXF1ZXN0NDA4NDc1OTAz + number: 394 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/268.diff - html_url: https://github.com/packit/ogr/pull/268 - patch_url: https://github.com/packit/ogr/pull/268.patch - url: https://api.github.com/repos/packit/ogr/pulls/268 + diff_url: https://github.com/packit/ogr/pull/394.diff + html_url: https://github.com/packit/ogr/pull/394 + patch_url: https://github.com/packit/ogr/pull/394.patch + url: https://api.github.com/repos/packit/ogr/pulls/394 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Stale-bot config update - updated_at: '2019-11-11T14:11:04Z' - url: https://api.github.com/repos/packit/ogr/issues/268 + title: Zuul related refactoring changes + updated_at: '2020-04-24T13:33:17Z' + url: https://api.github.com/repos/packit/ogr/issues/394 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "they have a file called ogr.py:\r\n```\r\n$ rpm -ql python3-gdal\ - \ | grep ogr\r\n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.opt-1.pyc\r\ - \n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.pyc\r\ - \n/usr/lib64/python3.7/site-packages/ogr.py\r\n/usr/lib64/python3.7/site-packages/osgeo/__pycache__/ogr.cpython-37.opt-1.pyc\r\ - \n/usr/lib64/python3.7/site-packages/osgeo/__pycache__/ogr.cpython-37.pyc\r\ - \n/usr/lib64/python3.7/site-packages/osgeo/_ogr.cpython-37m-x86_64-linux-gnu.so\r\ - \n/usr/lib64/python3.7/site-packages/osgeo/ogr.py\r\n/usr/share/doc/python3-gdal/samples/gcps2ogr.py\r\ - \n/usr/share/doc/python3-gdal/samples/ogr2ogr.py\r\n/usr/share/doc/python3-gdal/samples/ogr2vrt.py\r\ - \n/usr/share/doc/python3-gdal/samples/ogr_build_junction_table.py\r\n\ - /usr/share/doc/python3-gdal/samples/ogr_dispatch.py\r\n/usr/share/doc/python3-gdal/samples/ogr_layer_algebra.py\r\ - \n/usr/share/doc/python3-gdal/samples/ogrinfo.py\r\n/usr/share/doc/python3-gdal/samples/ogrupdate.py\r\ - \n```\r\n\r\nSo now that I installed python3-gdal, I can't use ogr anymore:\r\ - \n```\r\n$ ipython3\r\nPython 3.7.4 (default, Jul 9 2019, 16:32:37)\ - \ \r\nType 'copyright', 'credits' or 'license' for more information\r\ - \nIPython 7.2.0 -- An enhanced Interactive Python. Type '?' for help.\r\ - \nfrException reporting mode: Verbose\r\n\r\nIn [1]: from ogr import\ - \ services \r\n---------------------------------------------------------------------------\r\ - \nImportError Traceback (most recent call\ - \ last)\r\n in \r\n----> 1 from\ - \ ogr import services\r\n global ogr = undefined\r\n global\ - \ services = undefined\r\n\r\nImportError: cannot import name 'services'\ - \ from 'ogr' (/usr/lib64/python3.7/site-packages/ogr.py)\r\n```\r\n\r\ - \nNo idea how to fix this.\r\n\r\nWTF\r\n" - closed_at: '2019-11-11T14:00:21Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/139/comments - created_at: '2019-07-31T09:54:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/139/events - html_url: https://github.com/packit/ogr/issues/139 - id: 475047644 + body: Thanks in advance! + closed_at: '2020-04-24T07:15:34Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/385/comments + created_at: '2020-04-16T07:48:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/385/events + html_url: https://github.com/packit/ogr/issues/385 + id: 600821635 labels: - - color: bc4812 + - color: ededed default: false - description: We are blocked! - id: 1432779229 - name: blocker - node_id: MDU6TGFiZWwxNDMyNzc5MjI5 - url: https://api.github.com/repos/packit/ogr/labels/blocker - labels_url: https://api.github.com/repos/packit/ogr/issues/139/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NzUwNDc2NDQ= - number: 139 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: installing python3-gdal breaks ogr - updated_at: '2019-11-11T14:00:21Z' - url: https://api.github.com/repos/packit/ogr/issues/139 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: 'Aims to remove any strict MyPy errors from the utils.py file, relating - to ticket #251 ' - closed_at: '2019-11-05T07:49:43Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/259/comments - created_at: '2019-10-26T20:18:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/259/events - html_url: https://github.com/packit/ogr/pull/259 - id: 512880678 - labels: - - color: 0e8a16 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/259/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/385/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzk4MjAw - number: 259 + node_id: MDU6SXNzdWU2MDA4MjE2MzU= + number: 385 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/259.diff - html_url: https://github.com/packit/ogr/pull/259 - patch_url: https://github.com/packit/ogr/pull/259.patch - url: https://api.github.com/repos/packit/ogr/pulls/259 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve typehint coverage in utils.py - updated_at: '2019-11-07T07:16:34Z' - url: https://api.github.com/repos/packit/ogr/issues/259 + title: New patch release + updated_at: '2020-04-24T07:15:34Z' + url: https://api.github.com/repos/packit/ogr/issues/385 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + 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/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + 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/svenharris + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: Make it possible to clear check status on PR (optionally commit). - closed_at: '2019-11-06T11:37:33Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/267/comments - created_at: '2019-11-06T11:36:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/267/events - html_url: https://github.com/packit/ogr/issues/267 - id: 518415970 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/267/labels{/name} + body: "Create a class decorator that would iterate through members of\ + \ class and check if superclass has the same member with docstring,\ + \ if so, copy the docstring.\r\n\r\nReduces the unnecessary copy-pasting\ + \ of docstrings." + closed_at: '2020-04-23T11:37:34Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/271/comments + created_at: '2019-11-13T11:21:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/271/events + html_url: https://github.com/packit/ogr/issues/271 + id: 522140617 + labels: + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/271/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTg0MTU5NzA= - number: 267 + node_id: MDU6SXNzdWU1MjIxNDA2MTc= + number: 271 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Support for clearing checks - updated_at: '2019-11-06T11:37:33Z' - url: https://api.github.com/repos/packit/ogr/issues/267 + title: Inherit docstrings + updated_at: '2020-04-23T11:37:34Z' + url: https://api.github.com/repos/packit/ogr/issues/271 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: 'As part of issue #251 update type hinting within the abstract.py - file such that there are no mypy errors for that file' - closed_at: '2019-11-05T11:05:30Z' - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/258/comments - created_at: '2019-10-26T19:26:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/258/events - html_url: https://github.com/packit/ogr/pull/258 - id: 512875119 + author_association: MEMBER + body: "Supposed to Fix #391 \r\n\r\nAs far as I understand the `python-gitlab`\ + \ package, they follow Gitlab's REST API with few additions like `list()`\ + \ methods on some objects.\r\n\r\n- [x] (#391) Branches API does neither\ + \ state returning paginated list or explicitly say it returns *all*\ + \ branches\r\n works with `all=True` even though it's not documented\ + \ in Gitlab API\r\n - [x] will have to try using it at some repository\ + \ with many branches (default pagination is 20 in other API endpoints)\ + \ or could you provide the repository that brought this issue to light?\ + \ ;)\r\n- [x] Repository tree - can't find `all` parameter in API,\ + \ it is used though and there is pagination => should look into that\r\ + \n same, works even though it's not in the API documentation\r\n-\ + \ [x] Releases list - by API it is paginated, there's no mention of\ + \ adjusting the count of releases per page nor `all`-parameter\r\n \ + \ same, no mention of `all` in docs\r\n- [x] Add tests" + closed_at: '2020-04-22T13:38:46Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/392/comments + created_at: '2020-04-22T08:59:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/392/events + html_url: https://github.com/packit/ogr/pull/392 + id: 604582696 labels: - color: 0e8a16 default: false @@ -116670,137 +145675,126 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/258/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/392/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzk0NDEy - number: 258 + node_id: MDExOlB1bGxSZXF1ZXN0NDA3MTQ5MDgy + number: 392 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/258.diff - html_url: https://github.com/packit/ogr/pull/258 - patch_url: https://github.com/packit/ogr/pull/258.patch - url: https://api.github.com/repos/packit/ogr/pulls/258 + diff_url: https://github.com/packit/ogr/pull/392.diff + html_url: https://github.com/packit/ogr/pull/392 + patch_url: https://github.com/packit/ogr/pull/392.patch + url: https://api.github.com/repos/packit/ogr/pulls/392 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve type hint coverage in abstract.py - updated_at: '2019-11-05T12:37:31Z' - url: https://api.github.com/repos/packit/ogr/issues/258 + title: GitLab pagination + updated_at: '2020-04-22T15:04:34Z' + url: https://api.github.com/repos/packit/ogr/issues/392 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + 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/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + 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/svenharris + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "Fixes #165\r\n\r\n*edited by @lachmanfrantisek to close that issue\ - \ on merging*" - closed_at: '2019-11-04T13:59:19Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/166/comments - created_at: '2019-09-06T01:43:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/166/events - html_url: https://github.com/packit/ogr/pull/166 - id: 490086601 - labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - labels_url: https://api.github.com/repos/packit/ogr/issues/166/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE0NzYyMzA5 - number: 166 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/166.diff - html_url: https://github.com/packit/ogr/pull/166 - patch_url: https://github.com/packit/ogr/pull/166.patch - url: https://api.github.com/repos/packit/ogr/pulls/166 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Update and link the contribution guide in README - updated_at: '2019-11-04T13:59:19Z' - url: https://api.github.com/repos/packit/ogr/issues/166 - user: - avatar_url: https://avatars2.githubusercontent.com/u/19755484?v=4 - events_url: https://api.github.com/users/RomaneGreen/events{/privacy} - followers_url: https://api.github.com/users/RomaneGreen/followers - following_url: https://api.github.com/users/RomaneGreen/following{/other_user} - gists_url: https://api.github.com/users/RomaneGreen/gists{/gist_id} + assignee: + 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/RomaneGreen - id: 19755484 - login: RomaneGreen - node_id: MDQ6VXNlcjE5NzU1NDg0 - organizations_url: https://api.github.com/users/RomaneGreen/orgs - received_events_url: https://api.github.com/users/RomaneGreen/received_events - repos_url: https://api.github.com/users/RomaneGreen/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/RomaneGreen/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/RomaneGreen/subscriptions + 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/RomaneGreen - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/mfocko + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: MEMBER - body: '- Add link to contribution guide to README. - - - Rebased version of #166.' - closed_at: '2019-11-04T13:56:09Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/265/comments - created_at: '2019-11-04T12:48:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/265/events - html_url: https://github.com/packit/ogr/pull/265 - id: 517129326 + body: "By now, we get only 20 branches at max. Looks like a pagination\ + \ issue.\r\n\r\nWe need to tweak pagination to list all -- we already\ + \ have that on some other method." + closed_at: '2020-04-22T13:38:46Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/391/comments + created_at: '2020-04-21T11:18:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/391/events + html_url: https://github.com/packit/ogr/issues/391 + id: 603917055 labels: - - color: 0e8a16 + - color: d93f0b default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/265/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/391/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM2MjU4MjI3 - number: 265 + node_id: MDU6SXNzdWU2MDM5MTcwNTU= + number: 391 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/265.diff - html_url: https://github.com/packit/ogr/pull/265 - patch_url: https://github.com/packit/ogr/pull/265.patch - url: https://api.github.com/repos/packit/ogr/pulls/265 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Link to contribution guide (rebased version of #166)' - updated_at: '2019-11-04T13:59:00Z' - url: https://api.github.com/repos/packit/ogr/issues/265 + title: 'Return all project branches from Gitlab ' + updated_at: '2020-04-22T13:38:46Z' + url: https://api.github.com/repos/packit/ogr/issues/391 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -116821,63 +145815,152 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: '' - closed_at: '2019-11-04T13:58:31Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/244/comments - created_at: '2019-10-12T13:08:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/244/events - html_url: https://github.com/packit/ogr/pull/244 - id: 506185012 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/244/labels{/name} + author_association: MEMBER + body: "Fixes #302 \r\n\r\n- [x] Add tests" + closed_at: '2020-04-20T12:38:20Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/389/comments + created_at: '2020-04-20T08:44:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/389/events + html_url: https://github.com/packit/ogr/pull/389 + id: 603054798 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/389/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI3NDYzMzkw - number: 244 + node_id: MDExOlB1bGxSZXF1ZXN0NDA1OTE2MDgx + number: 389 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/244.diff - html_url: https://github.com/packit/ogr/pull/244 - patch_url: https://github.com/packit/ogr/pull/244.patch - url: https://api.github.com/repos/packit/ogr/pulls/244 + diff_url: https://github.com/packit/ogr/pull/389.diff + html_url: https://github.com/packit/ogr/pull/389 + patch_url: https://github.com/packit/ogr/pull/389.patch + url: https://api.github.com/repos/packit/ogr/pulls/389 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add the add_to_collaborators method to abstract.GitProject - updated_at: '2019-11-04T13:58:31Z' - url: https://api.github.com/repos/packit/ogr/issues/244 + title: Implement Issue setters for Pagure + updated_at: '2020-04-20T12:43:44Z' + url: https://api.github.com/repos/packit/ogr/issues/389 user: - avatar_url: https://avatars1.githubusercontent.com/u/23198051?v=4 - events_url: https://api.github.com/users/HECTOPK/events{/privacy} - followers_url: https://api.github.com/users/HECTOPK/followers - following_url: https://api.github.com/users/HECTOPK/following{/other_user} - gists_url: https://api.github.com/users/HECTOPK/gists{/gist_id} + 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/HECTOPK - id: 23198051 - login: HECTOPK - node_id: MDQ6VXNlcjIzMTk4MDUx - organizations_url: https://api.github.com/users/HECTOPK/orgs - received_events_url: https://api.github.com/users/HECTOPK/received_events - repos_url: https://api.github.com/users/HECTOPK/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/HECTOPK/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/HECTOPK/subscriptions + 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/HECTOPK + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "The used config is the example one from the app page:\r\nhttps://github.com/apps/stale/" - closed_at: '2019-11-01T10:47:23Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/262/comments - created_at: '2019-10-31T15:18:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/262/events - html_url: https://github.com/packit/ogr/pull/262 - id: 515517121 + body: "Implement updating title and description of issue on Pagure when\ + \ the API allows it.\r\n\r\nBlocked by: [Pagure's issue](https://pagure.io/pagure/issue/4704)" + closed_at: '2020-04-20T12:38:20Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/302/comments + created_at: '2020-01-02T16:42:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/302/events + html_url: https://github.com/packit/ogr/issues/302 + id: 544654301 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/302/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NDQ2NTQzMDE= + number: 302 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Issue setters (Pagure) + updated_at: '2020-04-20T12:38:20Z' + url: https://api.github.com/repos/packit/ogr/issues/302 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'I should read more carefully: rpmautospec is not in production + yet, + + should be only tested on staging: + + + https://lists.fedoraproject.org/archives/list/devel-announce@lists.fedoraproject.org/thread/LWE4URIRWVTEZKXKP7QOK5JXFNVJRUNW/ + + + Since we use this repository in packit''s tests, I''ll keep the spec + in a subdir so we can exercise this functionality while testing.' + closed_at: '2020-04-20T09:27:42Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/390/comments + created_at: '2020-04-20T09:09:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/390/events + html_url: https://github.com/packit/ogr/pull/390 + id: 603072599 labels: - color: 0e8a16 default: false @@ -116886,57 +145969,53 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/262/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/390/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM0OTY3Mzcy - number: 262 + node_id: MDExOlB1bGxSZXF1ZXN0NDA1OTMwMTIw + number: 390 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/262.diff - html_url: https://github.com/packit/ogr/pull/262 - patch_url: https://github.com/packit/ogr/pull/262.patch - url: https://api.github.com/repos/packit/ogr/pulls/262 + diff_url: https://github.com/packit/ogr/pull/390.diff + html_url: https://github.com/packit/ogr/pull/390 + patch_url: https://github.com/packit/ogr/pull/390.patch + url: https://api.github.com/repos/packit/ogr/pulls/390 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add config for stale bot - updated_at: '2019-11-01T10:48:02Z' - url: https://api.github.com/repos/packit/ogr/issues/262 + title: revert rpmautospec + updated_at: '2020-04-20T12:28:41Z' + url: https://api.github.com/repos/packit/ogr/issues/390 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: 'This pull request intends to fix the strict mypy errors in the - exceptions.py file as part of #251. Not sure if the types within the - dictionary (str, str) are consistent with how this is used as couldn''t - see any instances in the codebase where this error is raised with the - kwargs filled in.' - closed_at: '2019-10-31T19:36:13Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/256/comments - created_at: '2019-10-26T18:24:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/256/events - html_url: https://github.com/packit/ogr/pull/256 - id: 512868698 + body: https://docs.pagure.org/Fedora-Infra.rpmautospec/principle.html + closed_at: '2020-04-15T08:48:11Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/378/comments + created_at: '2020-04-14T14:38:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/378/events + html_url: https://github.com/packit/ogr/pull/378 + id: 599623468 labels: - color: 0e8a16 default: false @@ -116945,118 +146024,53 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/256/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/378/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzg5ODUy - number: 256 + node_id: MDExOlB1bGxSZXF1ZXN0NDAzMjI1MjMy + number: 378 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/256.diff - html_url: https://github.com/packit/ogr/pull/256 - patch_url: https://github.com/packit/ogr/pull/256.patch - url: https://api.github.com/repos/packit/ogr/pulls/256 + diff_url: https://github.com/packit/ogr/pull/378.diff + html_url: https://github.com/packit/ogr/pull/378 + patch_url: https://github.com/packit/ogr/pull/378.patch + url: https://api.github.com/repos/packit/ogr/pulls/378 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve typehints for exceptions.py - updated_at: '2019-10-31T19:36:13Z' - url: https://api.github.com/repos/packit/ogr/issues/256 + title: use rpmautospec + updated_at: '2020-04-20T06:44:58Z' + url: https://api.github.com/repos/packit/ogr/issues/378 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + 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/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + 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/svenharris - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=8: - - metadata: - latency: 0.6460354328155518 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: 'As part of issue #251 improve the typehinting within the repo. - This pull request aims to fix the type hints in the parsing.py file.' - closed_at: '2019-10-31T17:38:33Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/257/comments - created_at: '2019-10-26T18:31:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/257/events - html_url: https://github.com/packit/ogr/pull/257 - id: 512869415 + body: my bad, didn't notice packit changed it and I committed it. + closed_at: '2020-04-17T06:44:16Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/388/comments + created_at: '2020-04-17T06:23:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/388/events + html_url: https://github.com/packit/ogr/pull/388 + id: 601732754 labels: - color: 0e8a16 default: false @@ -117065,200 +146079,223 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/257/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/388/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzkwMzc2 - number: 257 + node_id: MDExOlB1bGxSZXF1ZXN0NDA0OTQ1NTQx + number: 388 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/257.diff - html_url: https://github.com/packit/ogr/pull/257 - patch_url: https://github.com/packit/ogr/pull/257.patch - url: https://api.github.com/repos/packit/ogr/pulls/257 + diff_url: https://github.com/packit/ogr/pull/388.diff + html_url: https://github.com/packit/ogr/pull/388 + patch_url: https://github.com/packit/ogr/pull/388.patch + url: https://api.github.com/repos/packit/ogr/pulls/388 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve typehints for parsing.py - updated_at: '2019-10-31T18:15:49Z' - url: https://api.github.com/repos/packit/ogr/issues/257 + title: 'spec: dont hardcode name/version, use macros instead' + updated_at: '2020-04-17T08:24:33Z' + url: https://api.github.com/repos/packit/ogr/issues/388 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + 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/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + 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/svenharris + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Part of #86\r\n\r\nStructure of classes:\r\n\r\n* _Comment_\r\n\ - \ * _IssueComment_\r\n * GithubIssueComment\r\n * GitlabIssueComment\r\ - \n * PagureIssueComment\r\n * _PRComment_\r\n * GithubPRComment\r\ - \n * GitlabPRComment\r\n * PagurePRComment\r\n\r\nsuggested by\ - \ @lachmanfrantisek in #228\r\n\r\n* [x] Create a `Comment` abstract\ - \ class\r\n* [x] Implement base class for `Comment`\r\n* [x] Implementation\ - \ of services\r\n * [x] Github\r\n * [x] Gitlab\r\n * [x] Pagure\r\ - \n* [x] Update interface to include function for returning `Comment`\ - \ object\r\n * [x] Deprecate functions (`*Project`) manipulating with\ - \ comments (#121)\r\n* [ ] Remove `Comment = TypeVar('Comment', IssueComment,\ - \ PRComment)`\r\n* [ ] Make service-specific `__str__` to be compatible\ - \ with parent's constructor\r\n* [ ] Decide return types for services\ - \ `PRComment` vs `GithubPRComment`\r\n\r\nMaybe the implementation for\ - \ specific service could take the `raw_comment` in constructor?" - closed_at: '2019-10-23T13:09:59Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/230/comments - created_at: '2019-10-01T17:40:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/230/events - html_url: https://github.com/packit/ogr/issues/230 - id: 501044775 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/230/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `master` | `[Errno 2] No such file or directory: ''/tmp/packit-dist-git1w9t9eub/fedora/changelog''` + | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-04-16T14:27:25Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/387/comments + created_at: '2020-04-16T09:54:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/387/events + html_url: https://github.com/packit/ogr/issues/387 + id: 600905691 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/387/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDEwNDQ3NzU= - number: 230 + node_id: MDU6SXNzdWU2MDA5MDU2OTE= + number: 387 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Factor out Comment - updated_at: '2019-10-23T13:09:59Z' - url: https://api.github.com/repos/packit/ogr/issues/230 + title: '[packit] Propose update failed for release 0.11.2' + updated_at: '2020-04-16T15:02:35Z' + url: https://api.github.com/repos/packit/ogr/issues/387 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'I have added # type: ignore at the beginning of each python file.' - closed_at: '2019-10-23T07:32:14Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/252/comments - created_at: '2019-10-22T19:08:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/252/events - html_url: https://github.com/packit/ogr/pull/252 - id: 510850860 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/252/labels{/name} + author_association: CONTRIBUTOR + body: 'we are setting this so we can use packit from ogr''s dist-git + + packit can''t know what''s the upstream name when running from distgit' + closed_at: '2020-04-16T06:54:10Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/382/comments + created_at: '2020-04-15T15:53:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/382/events + html_url: https://github.com/packit/ogr/pull/382 + id: 600404945 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/382/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMxMTUyNDg0 - number: 252 + node_id: MDExOlB1bGxSZXF1ZXN0NDAzODQ1ODM3 + number: 382 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/252.diff - html_url: https://github.com/packit/ogr/pull/252 - patch_url: https://github.com/packit/ogr/pull/252.patch - url: https://api.github.com/repos/packit/ogr/pulls/252 + diff_url: https://github.com/packit/ogr/pull/382.diff + html_url: https://github.com/packit/ogr/pull/382 + patch_url: https://github.com/packit/ogr/pull/382.patch + url: https://api.github.com/repos/packit/ogr/pulls/382 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Added # type: ignore ' - updated_at: '2019-10-23T07:32:14Z' - url: https://api.github.com/repos/packit/ogr/issues/252 + title: 'packit.xml: set upstream_package_name' + updated_at: '2020-04-16T14:03:12Z' + url: https://api.github.com/repos/packit/ogr/issues/382 user: - avatar_url: https://avatars2.githubusercontent.com/u/42462649?v=4 - events_url: https://api.github.com/users/maniis/events{/privacy} - followers_url: https://api.github.com/users/maniis/followers - following_url: https://api.github.com/users/maniis/following{/other_user} - gists_url: https://api.github.com/users/maniis/gists{/gist_id} + 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/maniis - id: 42462649 - login: maniis - node_id: MDQ6VXNlcjQyNDYyNjQ5 - organizations_url: https://api.github.com/users/maniis/orgs - received_events_url: https://api.github.com/users/maniis/received_events - repos_url: https://api.github.com/users/maniis/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/maniis/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/maniis/subscriptions + 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/maniis + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Use new format for requre.' - closed_at: '2019-10-21T14:17:11Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/246/comments - created_at: '2019-10-15T10:46:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/246/events - html_url: https://github.com/packit/ogr/pull/246 - id: 507162669 + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add a method to set flags\ + \ on Pagure PRs\n* Annotate PagurePullRequest.head_commit's return type\n\ + * Remove test jobs from zuul gating jobs\n* packit.xml: set upstream_package_name\n\ + * added CentOS prod/stg instances to pagure service\n* use rpmautospec\n\ + * p.yaml: use new syntax for dist_git_branch\n* Add created/edited properties\ + \ to CommitFlag\n* print pagure API errors properly\n* revert change\n\ + * PR comment: use pagure pagination metadata\n* using pagination to\ + \ retrieve pagure issue list\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.11.2-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-04-16T09:53:01Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/386/comments + created_at: '2020-04-16T07:51:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/386/events + html_url: https://github.com/packit/ogr/pull/386 + id: 600823758 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -117266,506 +146303,288 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/246/labels{/name} + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/386/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI4MjAyNTY5 - number: 246 + node_id: MDExOlB1bGxSZXF1ZXN0NDA0MTc5NDE0 + number: 386 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/246.diff - html_url: https://github.com/packit/ogr/pull/246 - patch_url: https://github.com/packit/ogr/pull/246.patch - url: https://api.github.com/repos/packit/ogr/pulls/246 + diff_url: https://github.com/packit/ogr/pull/386.diff + html_url: https://github.com/packit/ogr/pull/386 + patch_url: https://github.com/packit/ogr/pull/386.patch + url: https://api.github.com/repos/packit/ogr/pulls/386 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Use new requre api - updated_at: '2019-10-21T14:22:24Z' - url: https://api.github.com/repos/packit/ogr/issues/246 + title: 0.11.2 release + updated_at: '2020-04-16T09:54:56Z' + url: https://api.github.com/repos/packit/ogr/issues/386 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Test for https://github.com/packit-service/packit-service/pull/164 - - - - should pass' - closed_at: '2019-10-21T13:52:54Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/247/comments - created_at: '2019-10-16T10:40:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/247/events - html_url: https://github.com/packit/ogr/pull/247 - id: 507767488 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/247/labels{/name} + body: "Flags on PRs are specific to Pagure.\r\n\r\nOther forges allow\ + \ setting flags/statuses only on commits and will\r\ndisplay the flags\ + \ for the PR head on the PR page, if any is set.\r\n\r\nDue to the above\ + \ this method is added only to PagurePullRequests, and we\r\nexpect\ + \ OGR library users to implement the \"show the flags of the last\r\n\ + commit for the PR\" behaviour for Pagure, in case they need it.\r\n\r\ + \nSigned-off-by: Hunor Csomort\xE1ni " + closed_at: '2020-04-16T07:44:45Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/381/comments + created_at: '2020-04-15T15:15:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/381/events + html_url: https://github.com/packit/ogr/pull/381 + id: 600376230 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/381/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI4NjkwNjU1 - number: 247 + node_id: MDExOlB1bGxSZXF1ZXN0NDAzODIzNTY4 + number: 381 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/247.diff - html_url: https://github.com/packit/ogr/pull/247 - patch_url: https://github.com/packit/ogr/pull/247.patch - url: https://api.github.com/repos/packit/ogr/pulls/247 + diff_url: https://github.com/packit/ogr/pull/381.diff + html_url: https://github.com/packit/ogr/pull/381 + patch_url: https://github.com/packit/ogr/pull/381.patch + url: https://api.github.com/repos/packit/ogr/pulls/381 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add rebase check to pre-commit (pass) - updated_at: '2019-10-21T13:53:00Z' - url: https://api.github.com/repos/packit/ogr/issues/247 + title: Set PR flags in Pagure + updated_at: '2020-04-16T07:46:43Z' + url: https://api.github.com/repos/packit/ogr/issues/381 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Test for https://github.com/packit-service/packit-service/pull/164 - - - - should fail' - closed_at: '2019-10-21T13:10:47Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/248/comments - created_at: '2019-10-16T10:41:07Z' - events_url: https://api.github.com/repos/packit/ogr/issues/248/events - html_url: https://github.com/packit/ogr/pull/248 - id: 507767766 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-04-16T07:14:48Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/380/comments + created_at: '2020-04-15T13:00:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/380/events + html_url: https://github.com/packit/ogr/pull/380 + id: 600279414 labels: - - color: dd5f74 + - color: 0e8a16 default: false - description: Work in progress. - id: 1432779248 - name: do-not-merge - node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 - url: https://api.github.com/repos/packit/ogr/labels/do-not-merge - - color: e4e669 - default: true - description: This doesn't seem right. - id: 1160311267 - name: invalid - node_id: MDU6TGFiZWwxMTYwMzExMjY3 - url: https://api.github.com/repos/packit/ogr/labels/invalid - labels_url: https://api.github.com/repos/packit/ogr/issues/248/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/380/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI4NjkwODg5 - number: 248 + node_id: MDExOlB1bGxSZXF1ZXN0NDAzNzQ1MDM3 + number: 380 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/248.diff - html_url: https://github.com/packit/ogr/pull/248 - patch_url: https://github.com/packit/ogr/pull/248.patch - url: https://api.github.com/repos/packit/ogr/pulls/248 + diff_url: https://github.com/packit/ogr/pull/380.diff + html_url: https://github.com/packit/ogr/pull/380 + patch_url: https://github.com/packit/ogr/pull/380.patch + url: https://api.github.com/repos/packit/ogr/pulls/380 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add rebase check to pre-commit (fail) - updated_at: '2019-10-21T13:10:51Z' - url: https://api.github.com/repos/packit/ogr/issues/248 + title: Remove test jobs from zuul gating jobs + updated_at: '2020-04-16T07:14:48Z' + url: https://api.github.com/repos/packit/ogr/issues/380 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: MEMBER - body: "Add possibility to filter PR/issue comments by their author.\r\n\ - \r\n- [ ] Extend the methods of `GitProject` in `ogr/abstract.py`.\r\ - \n- [ ] Extend the `BaseGitProject` in `ogr/services/base.py` if needed.\r\ - \n- [ ] Implement the support both for PRs and issues. (Share as much\ - \ code as possible -- implementation and pr/issue)\r\n - [ ] github\r\ - \n - [ ] gitlab\r\n - [ ] pagure" - closed_at: '2019-10-15T10:49:50Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/240/comments - created_at: '2019-10-09T15:23:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/240/events - html_url: https://github.com/packit/ogr/issues/240 - id: 504724114 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: added CentOS prod/stg instances to pagure service + closed_at: '2020-04-15T14:44:22Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/379/comments + created_at: '2020-04-15T08:59:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/379/events + html_url: https://github.com/packit/ogr/pull/379 + id: 600137338 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: be8fd8 - default: false - description: Participate in https://hacktoberfest.digitalocean.com - id: 1592645945 - name: Hacktoberfest - node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 - url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: 18e033 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/240/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/379/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDQ3MjQxMTQ= - number: 240 + node_id: MDExOlB1bGxSZXF1ZXN0NDAzNjMwOTAx + number: 379 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/379.diff + html_url: https://github.com/packit/ogr/pull/379 + patch_url: https://github.com/packit/ogr/pull/379.patch + url: https://api.github.com/repos/packit/ogr/pulls/379 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Filter comments by author - updated_at: '2019-10-15T11:03:47Z' - url: https://api.github.com/repos/packit/ogr/issues/240 + title: added CentOS prod/stg instances to pagure service + updated_at: '2020-04-15T14:44:22Z' + url: https://api.github.com/repos/packit/ogr/issues/379 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: COLLABORATOR - body: "Based on [Github API doc](https://developer.github.com/v3/pulls/#labels-assignees-and-milestones):\r\ - \n>Every pull request is an issue, but not every issue is a pull request.\r\ - \n\r\nTherefore, in the case of Github, functions as `get_issue_list`,\ - \ `get_issue_info` etc. are working also with Pull Requests and behavior\ - \ isn't tested.\r\n\r\nWe should get rid of Pull Requests in functions\ - \ working with Issues. Pagure doesn't have this problem. \r\n\r\n--------------\r\ - \n@lachmanfrantisek added:\r\n\r\nTo be able to be compatible with other\ - \ git forges, let's differentiate between issues and pull-requests.\ - \ (And do not allow working with GitHub issues, that are actually pull-requests.\ - \ Issues and pull-requests are distinct sets.)\r\n\r\nAC:\r\n\r\n- [\ - \ ] Go through the issue related code in `GithubProject` and check if\ - \ it does not return any PullRequest.\r\n- [ ] Create test cases for\ - \ that.\r\n" - closed_at: '2019-09-26T09:12:11Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/107/comments - created_at: '2019-07-10T11:56:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/107/events - html_url: https://github.com/packit/ogr/issues/107 - id: 466266403 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Add datetime to commit flags #344' + closed_at: '2020-04-14T16:09:59Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/374/comments + created_at: '2020-04-08T13:34:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/374/events + html_url: https://github.com/packit/ogr/pull/374 + id: 596583247 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/107/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/374/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjYyNjY0MDM= - number: 107 + node_id: MDExOlB1bGxSZXF1ZXN0NDAwODUyNzQ0 + number: 374 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/374.diff + html_url: https://github.com/packit/ogr/pull/374 + patch_url: https://github.com/packit/ogr/pull/374.patch + url: https://api.github.com/repos/packit/ogr/pulls/374 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove PullRequests from list of Github Issues. - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/107 + title: Add datetime to commitflags + updated_at: '2020-04-14T16:09:59Z' + url: https://api.github.com/repos/packit/ogr/issues/374 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 + events_url: https://api.github.com/users/TomasJani/events{/privacy} + followers_url: https://api.github.com/users/TomasJani/followers + following_url: https://api.github.com/users/TomasJani/following{/other_user} + gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/TomasJani + id: 21237576 + login: TomasJani + node_id: MDQ6VXNlcjIxMjM3NTc2 + organizations_url: https://api.github.com/users/TomasJani/orgs + received_events_url: https://api.github.com/users/TomasJani/received_events + repos_url: https://api.github.com/users/TomasJani/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasJani/subscriptions type: User - url: https://api.github.com/users/marusinm + url: https://api.github.com/users/TomasJani - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: MEMBER - body: "In abstract class `GitProject`, we have the following method:\r\ - \n\r\n```python\r\n def get_issue_comments(\r\n self, issue_id,\ - \ filter_regex: str = None, reverse: bool = False\r\n ) -> List[\"\ - IssueComment\"]:\r\n \"\"\"\r\n Get list of Issue comments.\r\ - \n\r\n :param issue_id: int\r\n :param filter_regex: filter\ - \ the comments' content with re.search\r\n :param reverse: reverse\ - \ order of comments\r\n :return: [IssueComment]\r\n \"\ - \"\"\r\n raise NotImplementedError()\r\n```\r\n\r\nThis issue\ - \ is not implemented in `GithubProject`, but the real implementation\ - \ should be in the `_get_all_issue_comments`.\r\n\r\n```python\r\n \ - \ def _get_all_issue_comments(self, issue_id: int) -> List[IssueComment]:\r\ - \n issue = self.github_repo.get_pull(number=issue_id)\r\n \ - \ return [\r\n self._issuecomment_from_github_object(raw_comment)\r\ - \n for raw_comment in issue.get_issue_comments()\r\n \ - \ ]\r\n```\r\n\r\nAC:\r\n- [ ] Github/Pagure\r\n - [ ] implement\ - \ the `get_issue_comments` with the code `_get_all_issue_comments` (There\ - \ are some missing parameters.)\r\n - [ ] remove the `_get_all_issue_comments`\ - \ and change its usage to `get_issue_comments`\r\n - [ ] make sure\ - \ it works as expected\r\n- [ ] Implement the `get_issue_comments` in\ - \ `GitlabProject`\r\n- [ ] create test(s) for that if they are not already\ - \ there" - closed_at: '2019-10-03T14:35:15Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/205/comments - created_at: '2019-09-18T09:19:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/205/events - html_url: https://github.com/packit/ogr/issues/205 - id: 495098643 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: PaureProject.get_files() not implemented. Maybe not possible because + pagure api doesnt provide any possiblity to get repository content. + closed_at: '2020-04-14T09:13:43Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/377/comments + created_at: '2020-04-14T07:44:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/377/events + html_url: https://github.com/packit/ogr/issues/377 + id: 599365195 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: be8fd8 - default: false - description: Participate in https://hacktoberfest.digitalocean.com - id: 1592645945 - name: Hacktoberfest - node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 - url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -117773,13 +146592,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: cfd3d7 + default: true + description: This issue or pull request already exists + id: 1160311263 + name: duplicate + node_id: MDU6TGFiZWwxMTYwMzExMjYz + url: https://api.github.com/repos/packit/ogr/labels/duplicate - color: a2eeef default: false description: New feature or a request for enhancement. @@ -117787,110 +146606,159 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: ff9990 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + labels_url: https://api.github.com/repos/packit/ogr/issues/377/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1OTkzNjUxOTU= + number: 377 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: PaureProject.get_files() not implemented + updated_at: '2020-04-14T09:13:43Z' + url: https://api.github.com/repos/packit/ogr/issues/377 + user: + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos + site_admin: false + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + type: User + url: https://api.github.com/users/sakalosj + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'the "errors" may not be set + + + Fixes #334' + closed_at: '2020-04-09T11:55:55Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/375/comments + created_at: '2020-04-09T10:00:07Z' + events_url: https://api.github.com/repos/packit/ogr/issues/375/events + html_url: https://github.com/packit/ogr/pull/375 + id: 597167333 + labels: + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/205/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/375/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTUwOTg2NDM= - number: 205 + node_id: MDExOlB1bGxSZXF1ZXN0NDAxMzI4NDE2 + number: 375 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/375.diff + html_url: https://github.com/packit/ogr/pull/375 + patch_url: https://github.com/packit/ogr/pull/375.patch + url: https://api.github.com/repos/packit/ogr/pulls/375 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix/implement get_issue_comments - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/205 + title: print pagure API errors properly + updated_at: '2020-04-09T11:58:14Z' + url: https://api.github.com/repos/packit/ogr/issues/375 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/TomasTomecek assignees: - - avatar_url: https://avatars0.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} + - 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko - author_association: MEMBER - body: "```python\r\n def project_create(self, repo: str, namespace:\ - \ str = None) -> \"PagureProject\":\r\n pass\r\n```\r\n\r\nAPI\ - \ documentation:\r\nhttps://pagure.io/api/0/#projects\r\n\r\nAC:\r\n\ - \r\n- [ ] implement the method in `PagureService`\r\n- [ ] create at\ - \ least two tests for that (with and without specifying `namespace`)" - closed_at: '2019-10-15T07:33:19Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/204/comments - created_at: '2019-09-18T09:09:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/204/events - html_url: https://github.com/packit/ogr/issues/204 - id: 495092331 + url: https://api.github.com/users/TomasTomecek + author_association: CONTRIBUTOR + body: "edited by @lachmanfrantisek :\r\n\r\nTODO:\r\n- Add tests for https://github.com/packit-service/ogr/pull/333\ + \ (better pagure error messages)\r\n - e.g. wrong URL, wrong token,\ + \ not-found object,..." + closed_at: '2020-04-09T11:55:54Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/334/comments + created_at: '2020-02-19T13:50:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/334/events + html_url: https://github.com/packit/ogr/issues/334 + id: 567583973 labels: - - color: be8fd8 - default: false - description: Participate in https://hacktoberfest.digitalocean.com - id: 1592645945 - name: Hacktoberfest - node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 - url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -117898,20 +146766,6 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -117919,6 +146773,13 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing - color: 42e529 default: false description: This issue was already processed and well defined. @@ -117926,210 +146787,101 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/204/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/334/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTUwOTIzMzE= - number: 204 + node_id: MDU6SXNzdWU1Njc1ODM5NzM= + number: 334 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Implement Pagure method for create_project ' - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/204 + title: improve pagure unit tests + updated_at: '2020-04-09T11:55:54Z' + url: https://api.github.com/repos/packit/ogr/issues/334 user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: MEMBER - body: "Split service implementations into separate directories, module\ - \ for each class\r\n\r\n- [x] Directory for each service\r\n- [x] GitHub\r\ - \n - [x] split implementation into multiple modules\r\n - [x] add\ - \ `__init__.py` to make imports compatible\r\n - [x] update tests,\ - \ since they store \"full path\" of caller\r\n- [x] GitLab\r\n - [x]\ - \ split implementation into multiple modules\r\n - [x] add `__init__.py`\ - \ to make imports compatible\r\n - [x] update tests, since they store\ - \ \"full path\" of caller\r\n- [x] Pagure\r\n - [x] split implementation\ - \ into multiple modules\r\n - [x] add `__init__.py` to make imports\ - \ compatible\r\n - [x] update tests, since they store \"full path\"\ - \ of caller\r\n\r\nRelated to #86" - closed_at: '2019-10-11T06:36:16Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/232/comments - created_at: '2019-10-05T09:52:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/232/events - html_url: https://github.com/packit/ogr/issues/232 - id: 502942365 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/232/labels{/name} + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos + site_admin: false + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + type: User + url: https://api.github.com/users/sakalosj + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #334' + closed_at: '2020-04-09T09:43:45Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/373/comments + created_at: '2020-04-07T09:08:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/373/events + html_url: https://github.com/packit/ogr/pull/373 + id: 595713934 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/373/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDI5NDIzNjU= - number: 232 + node_id: MDExOlB1bGxSZXF1ZXN0NDAwMTM4Nzgx + number: 373 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/373.diff + html_url: https://github.com/packit/ogr/pull/373 + patch_url: https://github.com/packit/ogr/pull/373.patch + url: https://api.github.com/repos/packit/ogr/pulls/373 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Prepare file structure for object-specific methods (#86) - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/232 + title: 'pagure: errors may be not set, add tests' + updated_at: '2020-04-09T09:43:45Z' + url: https://api.github.com/repos/packit/ogr/issues/373 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: MEMBER - body: "1. Property `full_repo_name` is implemented both in `BaseGitProject`\ - \ and `GitProject`\r\n1. `full_repo_name` doesn't handle non-existing\ - \ namespace (in case of Pagure projects)" - closed_at: '2019-09-25T05:20:03Z' + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Currently using a Pagure service the get_issue_list method returns\ + \ only the last 20 issues of a project. This is because Pagure paginate\ + \ the results, I have not looked at GitHub and GitLab but I guess it\ + \ works the same.\r\n\r\nIdeally `get_issue_list` should return a list\ + \ of all the issues for a project and the pagination should be transparent\ + \ to the user." + closed_at: '2020-04-07T12:06:30Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/218/comments - created_at: '2019-09-24T09:15:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/218/events - html_url: https://github.com/packit/ogr/issues/218 - id: 497561711 + comments_url: https://api.github.com/repos/packit/ogr/issues/339/comments + created_at: '2020-02-21T13:47:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/339/events + html_url: https://github.com/packit/ogr/issues/339 + id: 568965084 labels: - color: 1d76db default: false @@ -118145,6 +146897,13 @@ requests.sessions: name: RHOSC node_id: MDU6TGFiZWwxNTYzMzA5Nzcz url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug - color: 7057ff default: false description: Good for newcomers @@ -118152,20 +146911,6 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - color: 42e529 default: false description: This issue was already processed and well defined. @@ -118173,48 +146918,51 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/218/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/339/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTc1NjE3MTE= - number: 218 + node_id: MDU6SXNzdWU1Njg5NjUwODQ= + number: 339 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitProject.full_repo_name() and Pagure implementation - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/218 + title: support pagination for get_issue_list + updated_at: '2020-04-07T12:06:30Z' + url: https://api.github.com/repos/packit/ogr/issues/339 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 + events_url: https://api.github.com/users/cverna/events{/privacy} + followers_url: https://api.github.com/users/cverna/followers + following_url: https://api.github.com/users/cverna/following{/other_user} + gists_url: https://api.github.com/users/cverna/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/cverna + id: 7237866 + login: cverna + node_id: MDQ6VXNlcjcyMzc4NjY= + organizations_url: https://api.github.com/users/cverna/orgs + received_events_url: https://api.github.com/users/cverna/received_events + repos_url: https://api.github.com/users/cverna/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/cverna/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/cverna - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Add reverse-dependence-test of packit.' - closed_at: '2019-10-10T14:18:42Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/241/comments - created_at: '2019-10-10T07:36:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/241/events - html_url: https://github.com/packit/ogr/pull/241 - id: 505092361 + author_association: FIRST_TIMER + body: "Fixes #339 \r\nPagure's API allows [pagination with 100 issues\ + \ per page](https://pagure.io/api/0/#issues), this code iterates though\ + \ issues pages until reaching either max issues (default 1000) or last\ + \ issue.\r\n" + closed_at: '2020-04-07T12:06:30Z' + comments: 17 + comments_url: https://api.github.com/repos/packit/ogr/issues/361/comments + created_at: '2020-03-23T14:55:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/361/events + html_url: https://github.com/packit/ogr/pull/361 + id: 586272328 labels: - color: 0e8a16 default: false @@ -118223,80 +146971,130 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/241/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/361/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI2NTkyODk0 - number: 241 + node_id: MDExOlB1bGxSZXF1ZXN0MzkyNDM2NTcw + number: 361 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/241.diff - html_url: https://github.com/packit/ogr/pull/241 - patch_url: https://github.com/packit/ogr/pull/241.patch - url: https://api.github.com/repos/packit/ogr/pulls/241 + diff_url: https://github.com/packit/ogr/pull/361.diff + html_url: https://github.com/packit/ogr/pull/361 + patch_url: https://github.com/packit/ogr/pull/361.patch + url: https://api.github.com/repos/packit/ogr/pulls/361 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Reverse dependency testing of packit - updated_at: '2019-10-10T15:14:48Z' - url: https://api.github.com/repos/packit/ogr/issues/241 + title: Using pagination to retrieve pagure's full issue list + updated_at: '2020-04-07T12:06:30Z' + url: https://api.github.com/repos/packit/ogr/issues/361 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/28443421?v=4 + events_url: https://api.github.com/users/AdarLavi/events{/privacy} + followers_url: https://api.github.com/users/AdarLavi/followers + following_url: https://api.github.com/users/AdarLavi/following{/other_user} + gists_url: https://api.github.com/users/AdarLavi/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/AdarLavi + id: 28443421 + login: AdarLavi + node_id: MDQ6VXNlcjI4NDQzNDIx + organizations_url: https://api.github.com/users/AdarLavi/orgs + received_events_url: https://api.github.com/users/AdarLavi/received_events + repos_url: https://api.github.com/users/AdarLavi/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/AdarLavi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/AdarLavi/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/AdarLavi + _next: null + elapsed: 0.420575 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:40 GMT + ETag: W/"d6b540d46ceb9f9f4177b798d0171fa9043ced316f496f69cc96999e92a8d2ed" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F803A7:191BE71:6075DC48 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4665' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '335' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=8: + - metadata: + latency: 0.49077558517456055 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-10-09T09:50:00Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/239/comments - created_at: '2019-10-09T09:26:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/239/events - html_url: https://github.com/packit/ogr/pull/239 - id: 504525592 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/239/labels{/name} + author_association: CONTRIBUTOR + body: "similar to https://github.com/packit-service/requre/issues/29\r\ + \nplease add reverse dependency testing what will check that change\ + \ will not break ``packit`` and in case it is broken, will raise that\ + \ you have to create issue to packit to regenerate response files, or\ + \ that it found bug in ogr. " + closed_at: '2020-04-07T08:41:19Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/237/comments + created_at: '2019-10-09T05:48:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/237/events + html_url: https://github.com/packit/ogr/issues/237 + id: 504429863 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/237/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI2MTU0MzU4 - number: 239 + node_id: MDU6SXNzdWU1MDQ0Mjk4NjM= + number: 237 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/239.diff - html_url: https://github.com/packit/ogr/pull/239 - patch_url: https://github.com/packit/ogr/pull/239.patch - url: https://api.github.com/repos/packit/ogr/pulls/239 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: prepare for rev dependency testing, set project dir in case it - not come from zuul - updated_at: '2019-10-09T09:50:00Z' - url: https://api.github.com/repos/packit/ogr/issues/239 + title: add reverse dependency testing to packit package + updated_at: '2020-04-07T08:41:19Z' + url: https://api.github.com/repos/packit/ogr/issues/237 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -118317,247 +147115,340 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-10-09T08:41:00Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/238/comments - created_at: '2019-10-09T07:06:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/238/events - html_url: https://github.com/packit/ogr/pull/238 - id: 504458794 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `The distgit repository /tmp/packit-dist-git8t1ct16f is dirty.This + is not supported.` | + + | `f31` | `The distgit repository /tmp/packit-dist-git8t1ct16f is dirty.This + is not supported.` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.1.tar.gz. + Reason: ''Not Found''. ` | + + | `master` | `The distgit repository /tmp/packit-dist-git8t1ct16f is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-04-01T13:27:44Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/372/comments + created_at: '2020-04-01T13:14:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/372/events + html_url: https://github.com/packit/ogr/issues/372 + id: 591906915 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/238/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/372/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI2MTAxNzE3 - number: 238 + node_id: MDU6SXNzdWU1OTE5MDY5MTU= + number: 372 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.11.1' + updated_at: '2020-04-01T13:27:44Z' + url: https://api.github.com/repos/packit/ogr/issues/372 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* unnecessry pip/rpm install\ + \ removed\n* add last_commit property to Pagure project\n* github: raise\ + \ when we didn't obtain install id\n* whitespace: put space b/w words\n\ + * invoke tests directly with pytest\n* gitlab,get_forks: p-gitlab can't\ + \ process server's response\n* raise OperationNotSupported when gitlab\ + \ doesn't support releases\n* zuul: don't install twine, we don't need\ + \ it in CI\n* gitlab.members.all() turned into dict\n* github.repo.get_issues\ + \ wants GithubLabel, not str\n* split test_issue_permissions into two\n\ + * Fix and refactor packit rev-dep tests\n* Fix the descriptions in playbooks\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.11.1-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-04-01T13:11:44Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/371/comments + created_at: '2020-04-01T08:33:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/371/events + html_url: https://github.com/packit/ogr/pull/371 + id: 591729812 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/371/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzk2ODQxOTA3 + number: 371 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/238.diff - html_url: https://github.com/packit/ogr/pull/238 - patch_url: https://github.com/packit/ogr/pull/238.patch - url: https://api.github.com/repos/packit/ogr/pulls/238 + diff_url: https://github.com/packit/ogr/pull/371.diff + html_url: https://github.com/packit/ogr/pull/371 + patch_url: https://github.com/packit/ogr/pull/371.patch + url: https://api.github.com/repos/packit/ogr/pulls/371 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: remove all stuff what were moved to requre project - updated_at: '2019-10-09T08:41:00Z' - url: https://api.github.com/repos/packit/ogr/issues/238 + title: 0.11.1 release + updated_at: '2020-04-01T13:15:17Z' + url: https://api.github.com/repos/packit/ogr/issues/371 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2019-10-07T14:04:40Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/235/comments - created_at: '2019-10-07T11:19:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/235/events - html_url: https://github.com/packit/ogr/pull/235 - id: 503387838 + closed_at: '2020-04-01T08:33:46Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/370/comments + created_at: '2020-04-01T08:31:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/370/events + html_url: https://github.com/packit/ogr/issues/370 + id: 591728360 labels: - - color: 0e8a16 + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/235/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/370/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI1MjUwMzkx - number: 235 + node_id: MDU6SXNzdWU1OTE3MjgzNjA= + number: 370 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/235.diff - html_url: https://github.com/packit/ogr/pull/235 - patch_url: https://github.com/packit/ogr/pull/235.patch - url: https://api.github.com/repos/packit/ogr/pulls/235 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add Developer Certificate of Origin - updated_at: '2019-10-07T14:04:41Z' - url: https://api.github.com/repos/packit/ogr/issues/235 + title: New patch release + updated_at: '2020-04-01T08:33:46Z' + url: https://api.github.com/repos/packit/ogr/issues/370 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Gitlab tests import `PRStatus` and `IssueStatus` from `ogr.services.gitlab` - instead of `ogr.abstract` - closed_at: '2019-10-07T11:02:37Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/233/comments - created_at: '2019-10-05T15:21:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/233/events - html_url: https://github.com/packit/ogr/issues/233 - id: 502976447 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-04-01T08:28:05Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/366/comments + created_at: '2020-03-26T14:07:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/366/events + html_url: https://github.com/packit/ogr/pull/366 + id: 588448629 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: be8fd8 - default: false - description: Participate in https://hacktoberfest.digitalocean.com - id: 1592645945 - name: Hacktoberfest - node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 - url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9d0c4 + - color: 18e033 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/233/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/366/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDI5NzY0NDc= - number: 233 + node_id: MDExOlB1bGxSZXF1ZXN0Mzk0MTkyNzMy + number: 366 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/366.diff + html_url: https://github.com/packit/ogr/pull/366 + patch_url: https://github.com/packit/ogr/pull/366.patch + url: https://api.github.com/repos/packit/ogr/pulls/366 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Gitlab tests imports - updated_at: '2019-10-07T11:02:38Z' - url: https://api.github.com/repos/packit/ogr/issues/233 + title: added function to update mapping + updated_at: '2020-04-01T08:28:05Z' + url: https://api.github.com/repos/packit/ogr/issues/366 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "replace storing requests objects by ``requre`` project.\r\n\r\n\ - - [x] regenerate test data for ogr\r\n- [x] remove old functionality\ - \ after packit will be fixed as well, not now in this PR\r\n\r\n" - closed_at: '2019-10-07T10:42:46Z' - comments: 17 - comments_url: https://api.github.com/repos/packit/ogr/issues/201/comments - created_at: '2019-09-17T09:04:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/201/events - html_url: https://github.com/packit/ogr/pull/201 - id: 494495662 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/201/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-03-27T16:27:42Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/367/comments + created_at: '2020-03-26T14:08:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/367/events + html_url: https://github.com/packit/ogr/pull/367 + id: 588448982 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/367/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE4MjM0OTky - number: 201 + node_id: MDExOlB1bGxSZXF1ZXN0Mzk0MTkzMDE1 + number: 367 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/201.diff - html_url: https://github.com/packit/ogr/pull/201 - patch_url: https://github.com/packit/ogr/pull/201.patch - url: https://api.github.com/repos/packit/ogr/pulls/201 + diff_url: https://github.com/packit/ogr/pull/367.diff + html_url: https://github.com/packit/ogr/pull/367 + patch_url: https://github.com/packit/ogr/pull/367.patch + url: https://api.github.com/repos/packit/ogr/pulls/367 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: use requre for storing data for tests - updated_at: '2019-10-07T10:42:47Z' - url: https://api.github.com/repos/packit/ogr/issues/201 + title: add last_commit property to Pagure project + updated_at: '2020-03-27T16:27:42Z' + url: https://api.github.com/repos/packit/ogr/issues/367 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/jscotka + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- use requre for storing data for tests.' - closed_at: '2019-10-04T08:09:13Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/231/comments - created_at: '2019-10-03T08:51:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/231/events - html_url: https://github.com/packit/ogr/pull/231 - id: 501935145 + author_association: CONTRIBUTOR + body: "~~Blocked on #357~~\r\n\r\nReplaces an error like this:\r\n```\r\ + \ngithub.GithubException.GithubException: 401 {\"message\":\"'Issuer'\ + \ claim ('iss') must be an Integer\",\"documentation_url\":\"https://developer.github.com/v3\"\ + }\r\n```" + closed_at: '2020-03-18T13:13:11Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/352/comments + created_at: '2020-03-16T10:19:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/352/events + html_url: https://github.com/packit/ogr/pull/352 + id: 582171280 labels: - color: 0e8a16 default: false @@ -118566,334 +147457,297 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/231/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/352/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI0MTEwMzY5 - number: 231 + node_id: MDExOlB1bGxSZXF1ZXN0Mzg5MTMwMDA2 + number: 352 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/231.diff - html_url: https://github.com/packit/ogr/pull/231 - patch_url: https://github.com/packit/ogr/pull/231.patch - url: https://api.github.com/repos/packit/ogr/pulls/231 + diff_url: https://github.com/packit/ogr/pull/352.diff + html_url: https://github.com/packit/ogr/pull/352 + patch_url: https://github.com/packit/ogr/pull/352.patch + url: https://api.github.com/repos/packit/ogr/pulls/352 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Use requre (rebased #201)' - updated_at: '2019-10-04T08:24:34Z' - url: https://api.github.com/repos/packit/ogr/issues/231 + title: 'github: raise when we didn''t obtain install id' + updated_at: '2020-03-18T14:55:12Z' + url: https://api.github.com/repos/packit/ogr/issues/352 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "This property violates our rule that only methods with `get` can\ - \ touch the real servers.\r\n\r\nWe can:\r\n\r\n- Revert the change\ - \ and stay with guessing.\r\n- Change the property to `get_full_repo_name`\ - \ (needs deprecation to original property)\r\n- Change our mind and\ - \ do not be strict about that. (And use properties instead of methods\ - \ for objects.)\r\n - This will bring nicer user-experience, but\ - \ maybe some confusion.\r\n - Maybe, we can leave only `__init__`\ - \ offline?\r\n\r\n" - closed_at: '2019-10-02T09:17:18Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/220/comments - created_at: '2019-09-25T06:13:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/220/events - html_url: https://github.com/packit/ogr/issues/220 - id: 498070461 + author_association: CONTRIBUTOR + body: 'Fixes #353 + + + Also fixes some test failures, let''s see...' + closed_at: '2020-03-18T12:37:13Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/357/comments + created_at: '2020-03-18T08:37:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/357/events + html_url: https://github.com/packit/ogr/pull/357 + id: 583559616 labels: - - color: ff9990 - default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - - color: 8be567 + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/220/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/357/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTgwNzA0NjE= - number: 220 + node_id: MDExOlB1bGxSZXF1ZXN0MzkwMjk1MDIx + number: 357 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/357.diff + html_url: https://github.com/packit/ogr/pull/357 + patch_url: https://github.com/packit/ogr/pull/357.patch + url: https://api.github.com/repos/packit/ogr/pulls/357 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: PagureProject.full_repo_name touches service - updated_at: '2019-10-02T09:17:18Z' - url: https://api.github.com/repos/packit/ogr/issues/220 + title: invoke tests directly with pytest + updated_at: '2020-03-18T14:27:38Z' + url: https://api.github.com/repos/packit/ogr/issues/357 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Replace numbers by access\ - \ constants\n* suggested changes added\n* methods for permissions\n\ - * (#107) Rename test\n* (#107) Fix type and formatting\n* (#107) Add\ - \ tests for querying PRs in issue-related functions (GitHub)\n* (#107)\ - \ Raise exception if querying PR using issue-related function\n* (#107)\ - \ Fix typo in Github._get_all_issue_comments\n* (#107) Update test_data\ - \ for Github's issues\n* (#107) Filter out pull requests from issues\ - \ (GitHub)\n* Do not save links beteen values in response files\n* specified\ - \ return type\n* exceptions added\n* methods for pr and issue labels\n\ - * (#218) Remove checking if fork exists in test for full_repo_name\n\ - * (#218) Add tests for full_repo_name with namespace and fork\n* (#218)\ - \ Add tests for full_repo_name property\n* (#218) Override full_repo_name\ - \ in PagureProject\n* (#218) Remove full_repo_name implementation from\ - \ GitProject\n* Fix flake8 remarks\n* (#213) Modify PagureProject.get_web_url()\ - \ to use project info\n* (#213) Fix wrong property name in Gitlab.get_web_url()\ - \ test and add test_data\n* (#213) Fix Pagure's get_web_url()\n* (#213)\ - \ Update GitLab.get_web_url() to use repo object\n* (#213) Update GitHub.get_web_url()\ - \ to use repo object\n* Add tests for get_web_url\n* Add get_web_url\ - \ to GitHub, GitLab and Pagure\n* Add get_web_url to GitProject\n* Add\ - \ tests for set_commit_status method\n* Add trim parameter to set_commit_status\ - \ method\n* test changed\n* test added\n* response files added\n* methods\ - \ for commit status and commit comment\n* refactor\n* github method\ - \ for creating projects added\n* Document the tests that are problematic\ - \ when regenerating\n* Be consistent in instantiating services in tests\n\ - * Update GitHub response files and fix the tests\n* Fix get_email in\ - \ GitHub implementation\n* Update Pagure response files and fix the\ - \ tests\n* Use returned GitLab repo instance in GitlabService.project_create\n\ - * Remove Gitlab also from example\n* delete GitLab from README.md\n\ - * Quickstart example\n* Generate response-file for test_create_fork\ - \ with python_gitlab-1.11\n* WIP: forking methods\n* better tests\n\ - * pr close, merge methods\n* Implement service.project_create for GitLab\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.8.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-10-01T19:57:46Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/223/comments - created_at: '2019-09-26T11:11:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/223/events - html_url: https://github.com/packit/ogr/pull/223 - id: 498820056 + author_association: CONTRIBUTOR + body: "```\r\n$ tox\r\nGLOB sdist-make: /home/tt/g/user-cont/ogr/setup.py\ + \ \r\npy36 inst-nodeps: /home/tt/g/user-cont/ogr/.tox/.tmp/package/1/ogr-0.11.1.dev4+g022e9df.zip\r\ + \nWARNING: Discarding $PYTHONPATH from environment, to override specify\ + \ PYTHONPATH in 'passenv' in your configuration.\r\npy36 installed:\ + \ amqp==2.5.0,-e git+git@github.com:TomasTomecek/ansible-bender.git@e3ef97fb7cdb4e19bb8f21266c09d6fdc5e76392#egg=ansible_bender,aspy.yaml==1.2.0,attrs==19.3.0,\r\ + \nbeanbag==1.9.2,billiard==3.6.0.0,celery==4.3.0,certifi==2019.11.28,cffi==1.14.0,cfgv==1.5.0,chardet==3.0.4,click==7.1.1,colin-redhat==0.0.2,conu==0.6.0,coverage==5.0.3,crypt\r\ + \nography==2.8,Deprecated==1.2.5,dnspython==1.16.0,dpath==1.4.2,eventlet==0.25.0,flexmock==0.10.4,frambo==0.0.3,generator==0.1.dev34+g6448aff,gevent==1.4.0,gitchangelog==3.0.4\r\ + \n,gitdb==4.0.2,GitPython==3.1.0,identify==1.4.0,idna==2.9,importlib-metadata==0.8,jsl==0.2.4,kobo==0.7.0,koji==1.16.0,kombu==4.6.3,kubernetes==8.0.2,monotonic==1.5,more-itert\r\ + \nools==8.2.0,nodeenv==1.3.3,numpy==1.17.2,-e git+git@github.com:TomasTomecek/ogr@022e9dff7fd02e2f4d34ca836ac298127d7f5694#egg=ogr,packaging==20.3,-e\ + \ git+git@github.com:TomasT\r\nomecek/packit.git@25a1ca9a2d746b493ee10aced1ce477cfd529653#egg=packitos,persistentdict==0.1.0,pluggy==0.13.1,pre-commit==1.14.4,py==1.8.1,pycparser==2.20,PyGithub==1.46,PyJW\r\ + \nT==1.7.1,pyparsing==2.4.6,pystache==0.5.4,pytest==5.4.1,pytest-cov==2.8.1,python-gitlab==2.1.2,PyYAML==5.3,raven==6.10.0,redis==3.2.1,requests==2.23.0,-e\ + \ git+git@github.com:\r\nTomasTomecek/requre.git@f5410b0095d31e2b0f27b92d7ca24e365b472d33#egg=requre,rlsbot-test==1.0.0,rpm-py-installer==0.8.0,-e\ + \ git+git@github.com:TomasTomecek/generator.git@65a43\r\n07bcd0d8f45b3c7ed8b757be5d44601a62d#egg=sandcastle,sentry-sdk==0.12.2,show-me==0.1.dev25+g72bc7ba,six==1.14.0,smmap==3.0.1,tool==0.1.0.dev0,ucho==0.1.0,-e\ + \ git+git@github.com\r\n:TomasTomecek/upsint.git@972ba36e63c8b44eedf291ac1d30f87954258ef6#egg=upsint,urllib3==1.25.8,vine==1.3.0,wcwidth==0.1.8,wrapt==1.11.1,zipp==0.3.3\r\ + \npy36 run-test-pre: PYTHONHASHSEED='2399286198'\r\npy36 run-test: commands[0]\ + \ | pytest --color=yes --verbose --showlocals --cov=ogr --cov-report=term-missing\r\ + \n============================================================================\ + \ test session starts ============================================================================\r\ + \nplatform linux -- Python 3.6.10, pytest-5.4.1, py-1.8.1, pluggy-0.13.1\ + \ -- /home/tt/g/user-cont/ogr/.tox/py36/bin/python\r\ncachedir: .tox/py36/.pytest_cache\r\ + \nrootdir: /home/tt/g/user-cont/ogr\r\nplugins: cov-2.8.1\r\ncollected\ + \ 255 items \ + \ \ + \ \r\n\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_github\ + \ FAILED \ + \ [ 0%]\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_gitlab\ + \ FAILED \ + \ [ 0%]\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_pagure\ + \ FAILED \ + \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments\ + \ FAILED \ + \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_author\ + \ FAILED \ + \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_author_regex\ + \ FAILED \ + \ [ 2%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_regex\ + \ FAILED \ + \ [ 2%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_regex_reversed\ + \ FAILED \ + \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_reversed\ + \ FAILED \ + \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_updates\ + \ FAILED \ + \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_pr_comments\ + \ FAILED \ + \ [ 4%]\r\ntests/integration/test_github.py::Comments::test_pr_comments_author\ + \ FAILED \ + \ [ 4%]\r\ntests/integration/test_github.py::Comments::test_pr_comments_author_regex\ + \ FAILED \ + \ [ 5%]\r\n```\r\n\r\n```\r\nE \ + \ requre.exceptions.ItemNotInStorage: Keys not in storage:/home/tt/g/user-cont/ogr/tests/integration/test_data/test_github/tests.integration.test_github.Ge\r\ + \nnericCommands.test_description.yaml Matched: ['SKIP tests.integration.test_github',\ + \ 'SKIP ogr.services.github.project', 'SKIP github.MainClass', 'SKIP\ + \ github.Requester', 'SK\r\nIP requests.sessions', 'SKIP requre.objects'],\ + \ Missing: ['requests.sessions', 'send']\r\n```\r\n\r\nHappens even\ + \ when I use older pygithub." + closed_at: '2020-03-18T12:37:12Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/353/comments + created_at: '2020-03-16T11:20:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/353/events + html_url: https://github.com/packit/ogr/issues/353 + id: 582211662 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed + - color: f9d0c4 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/223/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/353/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIxNjY2NjY0 - number: 223 + node_id: MDU6SXNzdWU1ODIyMTE2NjI= + number: 353 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/223.diff - html_url: https://github.com/packit/ogr/pull/223 - patch_url: https://github.com/packit/ogr/pull/223.patch - url: https://api.github.com/repos/packit/ogr/pulls/223 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.8.0 release - updated_at: '2019-10-01T19:59:12Z' - url: https://api.github.com/repos/packit/ogr/issues/223 + title: most of the tests are failing on master now + updated_at: '2020-03-18T12:37:12Z' + url: https://api.github.com/repos/packit/ogr/issues/353 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'In `GithubProject` class there is identical implementation for - `who_can_close_issue` and `who_can_merge_pr`, is it intentional? Or - can we factor it out since it''s identical? ' - closed_at: '2019-09-30T11:40:39Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/224/comments - created_at: '2019-09-26T11:56:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/224/events - html_url: https://github.com/packit/ogr/issues/224 - id: 498839261 + author_association: CONTRIBUTOR + body: 'I was wondering if OGR does support interacting with enterprise + versions of Gitlab, when provided with an private token. I think Gitlab + enterprise has the same set of API''s as the public version, so is there + a way to like provide the service url like for example - https://gitlab.cee.redhat.com + and it would then try accessing repo''s from that instead of publicly + hosted Gitlab. ' + closed_at: '2020-03-17T14:46:29Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/354/comments + created_at: '2020-03-16T16:10:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/354/events + html_url: https://github.com/packit/ogr/issues/354 + id: 582420398 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 + - color: d93f0b default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/224/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + labels_url: https://api.github.com/repos/packit/ogr/issues/354/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTg4MzkyNjE= - number: 224 + node_id: MDU6SXNzdWU1ODI0MjAzOTg= + number: 354 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Identical implementation for collaborators (Github Project) - updated_at: '2019-09-30T11:40:39Z' - url: https://api.github.com/repos/packit/ogr/issues/224 + title: Supporting enterprise versions of Gitlab + updated_at: '2020-03-17T14:58:14Z' + url: https://api.github.com/repos/packit/ogr/issues/354 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 + events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} + followers_url: https://api.github.com/users/saisankargochhayat/followers + following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} + gists_url: https://api.github.com/users/saisankargochhayat/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/saisankargochhayat + id: 9396452 + login: saisankargochhayat + node_id: MDQ6VXNlcjkzOTY0NTI= + organizations_url: https://api.github.com/users/saisankargochhayat/orgs + received_events_url: https://api.github.com/users/saisankargochhayat/received_events + repos_url: https://api.github.com/users/saisankargochhayat/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/saisankargochhayat - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: The release time is now! - closed_at: '2019-09-26T11:11:51Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/222/comments - created_at: '2019-09-26T11:06:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/222/events - html_url: https://github.com/packit/ogr/issues/222 - id: 498817742 + author_association: CONTRIBUTOR + body: 'Related #350 ' + closed_at: '2020-03-12T13:26:35Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/351/comments + created_at: '2020-03-11T08:26:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/351/events + html_url: https://github.com/packit/ogr/pull/351 + id: 579088221 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/222/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/351/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTg4MTc3NDI= - number: 222 + node_id: MDExOlB1bGxSZXF1ZXN0Mzg2NTQ3NzEz + number: 351 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/351.diff + html_url: https://github.com/packit/ogr/pull/351 + patch_url: https://github.com/packit/ogr/pull/351.patch + url: https://api.github.com/repos/packit/ogr/pulls/351 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-09-26T11:11:51Z' - url: https://api.github.com/repos/packit/ogr/issues/222 + title: Fix and refactor packit rev-dep tests + updated_at: '2020-03-12T13:26:35Z' + url: https://api.github.com/repos/packit/ogr/issues/351 user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -118911,145 +147765,187 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions type: User url: https://api.github.com/users/lbarcziova + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "The [Fedora dist-git CI fails](https://fedora.softwarefactory-project.io/zuul/build/755e891747f145b8810a8933c37fef3a/logs)\ + \ with that error.\r\nI'm not sure where's the correct place to fix\ + \ it, but I'm creating this so that we don't forget about it since I\ + \ need to merge [that PR](https://src.fedoraproject.org/rpms/python-ogr/pull-request/159)." + closed_at: '2020-03-12T12:24:37Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/323/comments + created_at: '2020-02-05T12:03:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/323/events + html_url: https://github.com/packit/ogr/issues/323 + id: 560327796 + labels: + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/323/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NjAzMjc3OTY= + number: 323 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'ModuleNotFoundError: No module named ''flexmock''' + updated_at: '2020-03-12T12:24:37Z' + url: https://api.github.com/repos/packit/ogr/issues/323 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos + site_admin: false + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + type: User + url: https://api.github.com/users/sakalosj assignees: - - avatar_url: https://avatars3.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} + - avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lbarcziova - author_association: MEMBER - body: "Since we merged [the PR with the basic GitLab support](https://github.com/packit-service/ogr/pull/150)\ - \ is there still something missing?\r\n\r\n- [x] service mapping (#156\ - \ )\r\n- [x] fix the mix of new and old API (#167 )\r\n- [x] missing\ - \ methods:\r\n - [x] forking: https://github.com/packit-service/ogr/issues/168\r\ - \n - [x] owners and permissions: https://github.com/packit-service/ogr/issues/169\r\ - \n - [x] get_sha_from_tag: https://github.com/packit-service/ogr/issues/170\r\ - \n - [x] issue labels: https://github.com/packit-service/ogr/issues/171\r\ - \n - [x] commit comment/status: https://github.com/packit-service/ogr/issues/172\r\ - \n - [x] pr close/merge: https://github.com/packit-service/ogr/issues/173\r\ - \n - [x] PR labels: https://github.com/packit-service/ogr/issues/174\r\ - \n - [x] project info: https://github.com/packit-service/ogr/issues/175\r\ - \n - [x] latest release: https://github.com/packit-service/ogr/issues/176\r\ - \n\r\n" - closed_at: '2019-09-26T10:59:39Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/158/comments - created_at: '2019-08-15T15:29:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/158/events - html_url: https://github.com/packit/ogr/issues/158 - id: 481206920 + url: https://api.github.com/users/sakalosj + author_association: CONTRIBUTOR + body: pagure provides more detailed error info stored under 'errors' key, + which is not currently not used in output + closed_at: '2020-03-12T12:16:11Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/331/comments + created_at: '2020-02-18T14:15:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/331/events + html_url: https://github.com/packit/ogr/issues/331 + id: 566921606 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: d93f0b + - color: 1d76db default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 42e529 + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 8be567 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/158/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/331/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODEyMDY5MjA= - number: 158 + node_id: MDU6SXNzdWU1NjY5MjE2MDY= + number: 331 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Missing features in GitLab implementation - updated_at: '2019-09-26T10:59:40Z' - url: https://api.github.com/repos/packit/ogr/issues/158 + title: pagure provides more detailed error info stored under 'errors' + key + updated_at: '2020-03-12T12:16:11Z' + url: https://api.github.com/repos/packit/ogr/issues/331 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #169. I used https://docs.gitlab.com/ee/user/permissions.html#project-members-permissions, - but I am not sure about the permission for closing of the project issues, - I couldn''t find more information about that.' - closed_at: '2019-09-26T10:43:42Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/207/comments - created_at: '2019-09-18T13:54:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/207/events - html_url: https://github.com/packit/ogr/pull/207 - id: 495242377 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/207/labels{/name} + author_association: CONTRIBUTOR + body: 'It seems that ogr-reverse-dep-packit-tests does not really test + packit with the ogr change, I broke the ogr and `ogr-reverse-dep-packit-tests + : SUCCESS in 8m 01s`.' + closed_at: '2020-03-11T08:27:40Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/350/comments + created_at: '2020-03-10T18:56:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/350/events + html_url: https://github.com/packit/ogr/pull/350 + id: 578793909 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/350/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE4ODI1OTA4 - number: 207 + node_id: MDExOlB1bGxSZXF1ZXN0Mzg2MzA4Njk0 + number: 350 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/207.diff - html_url: https://github.com/packit/ogr/pull/207 - patch_url: https://github.com/packit/ogr/pull/207.patch - url: https://api.github.com/repos/packit/ogr/pulls/207 + diff_url: https://github.com/packit/ogr/pull/350.diff + html_url: https://github.com/packit/ogr/pull/350 + patch_url: https://github.com/packit/ogr/pull/350.patch + url: https://api.github.com/repos/packit/ogr/pulls/350 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: methods for permissions - updated_at: '2019-09-26T10:43:42Z' - url: https://api.github.com/repos/packit/ogr/issues/207 + title: Just testing the rev-dep tests + updated_at: '2020-03-11T08:27:40Z' + url: https://api.github.com/repos/packit/ogr/issues/350 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -119068,142 +147964,198 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "```python\r\n def get_owners(self) -> List[str]:\r\n \ - \ raise NotImplementedError()\r\n\r\n def who_can_close_issue(self)\ - \ -> Set[str]:\r\n raise NotImplementedError()\r\n\r\n def\ - \ who_can_merge_pr(self) -> Set[str]:\r\n raise NotImplementedError()\r\ - \n\r\n def can_close_issue(self, username: str, issue: Issue) ->\ - \ bool:\r\n raise NotImplementedError()\r\n\r\n def can_merge_pr(self,\ - \ username) -> bool:\r\n raise NotImplementedError()\r\n```\r\ - \n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-members\r\ - \n- https://docs.gitlab.com/ce/api/members.html" - closed_at: '2019-09-26T10:43:41Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/169/comments - created_at: '2019-09-06T07:20:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/169/events - html_url: https://github.com/packit/ogr/issues/169 - id: 490171859 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add stage to expected\ + \ pagure instances\n* Set missing info in GitHub commit flags\n* Regenerate\ + \ responses for 'test_issue_list_label'\n* List all GitLab issues (ignore\ + \ pagination)\n* Allow to filter issues by labels.\n* enable getting\ + \ projects defined with SSH URLs\n* Add diff_url to the PR classes\n\ + * Add missing setters to abstract PR class\n* apply precommit changes\n\ + * simplify requre testcases and use requre base test class\n* Use only\ + \ first+last token/key character in the __str__ methods\n* updated PullRequest\ + \ depr message Co-Authored-By: lachmanfrantisek \n\ + * provide is_private method on GitProjects\n* improve pagure error response\n\ + * [.packit.yaml] remove no-longer needed keys & use aliases\n* [CONTRIBUTING.md]\ + \ update\n* Add support for tags when creating pagure issues.\n* Generate\ + \ standard .gitignore file\n* [Pre-commit] Use Prettier\n* [pre-commit]\ + \ autoupdate\n* Run setup-cfg-fmt\n* Strip trailing slash from URL,\ + \ if it exists\n* Add test for trailing slash in URL\n* github.pr.author:\ + \ use login instead of name\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.11.0-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-03-09T12:38:54Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/347/comments + created_at: '2020-03-07T06:10:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/347/events + html_url: https://github.com/packit/ogr/pull/347 + id: 577286080 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/169/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/347/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzE4NTk= - number: 169 + node_id: MDExOlB1bGxSZXF1ZXN0Mzg1MTA5ODI1 + number: 347 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/347.diff + html_url: https://github.com/packit/ogr/pull/347 + patch_url: https://github.com/packit/ogr/pull/347.patch + url: https://api.github.com/repos/packit/ogr/pulls/347 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for owners and permissions - updated_at: '2019-09-26T10:43:41Z' - url: https://api.github.com/repos/packit/ogr/issues/169 + title: 0.11.0 release + updated_at: '2020-03-11T08:26:41Z' + url: https://api.github.com/repos/packit/ogr/issues/347 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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} + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + is not supported.` | + + | `f31` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + is not supported.` | + + | `f32` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + is not supported.` | + + | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-03-09T14:02:41Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/348/comments + created_at: '2020-03-09T12:44:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/348/events + html_url: https://github.com/packit/ogr/issues/348 + id: 577881745 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/348/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1Nzc4ODE3NDU= + number: 348 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.11.0' + updated_at: '2020-03-10T09:57:32Z' + url: https://api.github.com/repos/packit/ogr/issues/348 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 - assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-03-09T16:13:07Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/349/comments + created_at: '2020-03-09T15:12:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/349/events + html_url: https://github.com/packit/ogr/pull/349 + id: 577980538 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/349/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzg1NjQ2MjU3 + number: 349 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/349.diff + html_url: https://github.com/packit/ogr/pull/349 + patch_url: https://github.com/packit/ogr/pull/349.patch + url: https://api.github.com/repos/packit/ogr/pulls/349 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix the descriptions in playbooks + updated_at: '2020-03-09T16:13:07Z' + url: https://api.github.com/repos/packit/ogr/issues/349 + 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} @@ -119221,89 +148173,75 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions type: User url: https://api.github.com/users/lbarcziova + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "```python\r\n def get_pr_labels(self, pr_id: int) -> List:\r\ - \n pass\r\n\r\n def add_pr_labels(self, pr_id, labels) ->\ - \ None:\r\n pass\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ - \n- https://docs.gitlab.com/ee/api/merge_requests.html" - closed_at: '2019-09-25T08:50:51Z' + body: '' + closed_at: '2020-03-07T06:10:20Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/174/comments - created_at: '2019-09-06T07:23:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/174/events - html_url: https://github.com/packit/ogr/issues/174 - id: 490172937 + comments_url: https://api.github.com/repos/packit/ogr/issues/346/comments + created_at: '2020-03-07T06:08:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/346/events + html_url: https://github.com/packit/ogr/issues/346 + id: 577285921 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/174/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/346/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzI5Mzc= - number: 174 + node_id: MDU6SXNzdWU1NzcyODU5MjE= + number: 346 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for PR labels (merge-request labels) - updated_at: '2019-09-25T08:50:51Z' - url: https://api.github.com/repos/packit/ogr/issues/174 + title: New minor release + updated_at: '2020-03-07T06:10:20Z' + url: https://api.github.com/repos/packit/ogr/issues/346 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #171, #174' - closed_at: '2019-09-25T08:34:08Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/198/comments - created_at: '2019-09-12T12:07:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/198/events - html_url: https://github.com/packit/ogr/pull/198 - id: 492763927 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-03-05T07:21:02Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/345/comments + created_at: '2020-03-04T16:38:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/345/events + html_url: https://github.com/packit/ogr/pull/345 + id: 575562256 labels: - color: 0e8a16 default: false @@ -119312,135 +148250,81 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/198/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/345/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODczMjYx - number: 198 + node_id: MDExOlB1bGxSZXF1ZXN0MzgzNjkxODk5 + number: 345 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/198.diff - html_url: https://github.com/packit/ogr/pull/198 - patch_url: https://github.com/packit/ogr/pull/198.patch - url: https://api.github.com/repos/packit/ogr/pulls/198 + diff_url: https://github.com/packit/ogr/pull/345.diff + html_url: https://github.com/packit/ogr/pull/345 + patch_url: https://github.com/packit/ogr/pull/345.patch + url: https://api.github.com/repos/packit/ogr/pulls/345 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: methods for pr and issue labels - updated_at: '2019-09-25T08:34:08Z' - url: https://api.github.com/repos/packit/ogr/issues/198 + title: Add stage to expected pagure instances + updated_at: '2020-03-05T07:21:02Z' + url: https://api.github.com/repos/packit/ogr/issues/345 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/dhodovsk - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "```python\r\n def get_issue_labels(self, issue_id: int) -> List:\r\ - \n raise NotImplementedError()\r\n\r\n def add_issue_labels(self,\ - \ issue_id, labels) -> None:\r\n raise NotImplementedError()\r\ - \n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ - \n- https://docs.gitlab.com/ce/api/issues.html" - closed_at: '2019-09-25T08:34:08Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/171/comments - created_at: '2019-09-06T07:22:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/171/events - html_url: https://github.com/packit/ogr/issues/171 - id: 490172449 + body: '- Set missing info in GitHub commit flags. + + - Test was improved to cover that.' + closed_at: '2020-03-04T09:57:25Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/343/comments + created_at: '2020-03-02T11:17:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/343/events + html_url: https://github.com/packit/ogr/pull/343 + id: 573904235 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/171/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/343/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzI0NDk= - number: 171 + node_id: MDExOlB1bGxSZXF1ZXN0MzgyMzI1NTEz + number: 343 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/343.diff + html_url: https://github.com/packit/ogr/pull/343 + patch_url: https://github.com/packit/ogr/pull/343.patch + url: https://api.github.com/repos/packit/ogr/pulls/343 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for issue labels - updated_at: '2019-09-25T08:34:08Z' - url: https://api.github.com/repos/packit/ogr/issues/171 + title: Fix GitHub commit flags + updated_at: '2020-03-04T10:31:38Z' + url: https://api.github.com/repos/packit/ogr/issues/343 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -119462,22 +148346,20 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "In GitProject we do not have a method for getting web URL of the\ - \ project.\r\n\r\nAC:\r\n\r\n- [ ] Add the method to `abstract.GitProject`.\ - \ (And raise `NotImplementedError`.)\r\n- [ ] Implement the method for\ - \ all forges (GitHub, GitLab, Pagure).\r\n- [ ] Add tests for this method.\r\ - \n\r\nLinks:\r\n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ - \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ - \n https://docs.gitlab.com/ce/api/projects.html\r\n- https://pagure.io/api/0/#projects\r\ - \n\r\nExamples:\r\n- https://github.com/packit-service/ogr\r\n- https://gitlab.com/packit-service/ogr-tests\r\ - \n- https://pagure.io/ogr-tests/" - closed_at: '2019-09-24T08:53:16Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/213/comments - created_at: '2019-09-19T19:19:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/213/events - html_url: https://github.com/packit/ogr/issues/213 - id: 495981567 + body: "When working with PRs, there are also URLs linking directly to\ + \ diff tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the `url_diff`\ + \ and implement it.\r\n - Use API if possible, otherwise \"guess\"\ + \ the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\nExamples:\r\ + \n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/diffs\r\ + \n- https://github.com/packit-service/ogr/pull/1/files\r\n- https://pagure.io/ogr-tests/pull-request/7#request_diff\r\ + \n" + closed_at: '2020-03-03T15:49:36Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/211/comments + created_at: '2019-09-19T18:48:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/211/events + html_url: https://github.com/packit/ogr/issues/211 + id: 495968184 labels: - color: '000000' default: false @@ -119500,13 +148382,6 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: a2eeef default: false description: New feature or a request for enhancement. @@ -119528,26 +148403,26 @@ requests.sessions: name: low-prio node_id: MDU6TGFiZWwxNDMyNzc5MzQw url: https://api.github.com/repos/packit/ogr/labels/low-prio - - color: 42e529 + - color: '000000' default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/213/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/211/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU5ODE1Njc= - number: 213 + node_id: MDU6SXNzdWU0OTU5NjgxODQ= + number: 211 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitProject.get_url() - updated_at: '2019-09-25T06:07:53Z' - url: https://api.github.com/repos/packit/ogr/issues/213 + title: Add diff url to PullRequest class + updated_at: '2020-03-03T15:49:36Z' + url: https://api.github.com/repos/packit/ogr/issues/211 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -119565,267 +148440,71 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=9: - - metadata: - latency: 0.5041496753692627 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Fixes: #143 \r\n\r\n*edited by @lachmanfrantisek to close this\ - \ after merge*" - closed_at: '2019-09-19T14:18:04Z' + body: '- Added object representation for GitHub releases. + + - What about pagure? Is there anything that can be used?' + closed_at: '2019-03-12T13:36:17Z' comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/210/comments - created_at: '2019-09-19T11:24:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/210/events - html_url: https://github.com/packit/ogr/pull/210 - id: 495738504 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/210/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/19/comments + created_at: '2019-02-21T15:14:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/19/events + html_url: https://github.com/packit/ogr/pull/19 + id: 412975574 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/19/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE5MjI3MjM2 - number: 210 + node_id: MDExOlB1bGxSZXF1ZXN0MjU1MDY0MDU2 + number: 19 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/210.diff - html_url: https://github.com/packit/ogr/pull/210 - patch_url: https://github.com/packit/ogr/pull/210.patch - url: https://api.github.com/repos/packit/ogr/pulls/210 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add trim parameter to set_commit_status method - updated_at: '2019-09-19T15:46:39Z' - url: https://api.github.com/repos/packit/ogr/issues/210 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "```\r\nTraceback (most recent call last): \ - \ \ - \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ - , line 385, in trace_task \ - \ \r\n R = retval = fun(*args,\ - \ **kwargs) \ - \ \ - \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ - , line 648, in __protected_call__ \ - \ \r\n return self.run(*args,\ - \ **kwargs) \ - \ \ - \ \r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ - , line 42, in process_message \ - \ \r\n return SteveJobs().process_message(event=event,\ - \ topic=topic) \ - \ \r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 126, in process_message \ - \ \r\n jobs_results = self.process_jobs(event_object)\ - \ \ - \ \r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 92, in process_jobs \ - \ \r\n handlers_results[job.job.value]\ - \ = handler.run() \ - \ \ - \ \r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/github_handlers.py\"\ - , line 330, in run \ - \ \r\n return self.handle_pull_request() \ - \ \ - \ \r\n\ - \ File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/github_handlers.py\"\ - , line 305, in handle_pull_request \ - \ \r\n r.report(\"failure\", msg)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/handler.py\"\ - , line 84, in report\r\n self.commit_sha, state, url, description,\ - \ check_name\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/read_only.py\"\ - , line 68, in readonly_func\r\n return func(self, *args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ - , line 541, in set_commit_status\r\n github_commit.create_status(state,\ - \ target_url, description, context)\r\n File \"/usr/local/lib/python3.7/site-packages/github/Commit.py\"\ - , line 189, in create_status\r\n input=post_parameters\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/github/Requester.py\", line\ - \ 276, in requestJsonAndCheck\r\n return self.__check(*self.requestJson(verb,\ - \ url, parameters, headers, input, self.__customConnection(url)))\r\n\ - \ File \"/usr/local/lib/python3.7/site-packages/github/Requester.py\"\ - , line 287, in __check\r\n raise self.__createException(status, responseHeaders,\ - \ output)\r\ngithub.GithubException.GithubException: 422 {'message':\ - \ 'Validation Failed', 'errors': [{'resource': 'Status', 'code': 'custom',\ - \ 'field': 'description', 'message': 'descript\r\nion is too long (maximum\ - \ is 140 characters)'}], 'documentation_url': 'https://developer.github.com/v3/repos/statuses/#create-a-status'}\r\ - \n```" - closed_at: '2019-09-19T14:18:04Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/143/comments - created_at: '2019-08-08T09:03:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/143/events - html_url: https://github.com/packit/ogr/issues/143 - id: 478340513 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9e231 - default: false - description: High priority. - id: 1432779316 - name: high-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzE2 - url: https://api.github.com/repos/packit/ogr/labels/high-prio - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/143/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NzgzNDA1MTM= - number: 143 - performed_via_github_app: null + diff_url: https://github.com/packit/ogr/pull/19.diff + html_url: https://github.com/packit/ogr/pull/19 + patch_url: https://github.com/packit/ogr/pull/19.patch + url: https://api.github.com/repos/packit/ogr/pulls/19 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitHub check descriptions can only be 140 chars long - updated_at: '2019-09-19T14:18:04Z' - url: https://api.github.com/repos/packit/ogr/issues/143 + title: Releases + updated_at: '2020-02-28T11:35:03Z' + url: https://api.github.com/repos/packit/ogr/issues/19 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #172 ' - closed_at: '2019-09-19T09:46:56Z' - comments: 13 - comments_url: https://api.github.com/repos/packit/ogr/issues/206/comments - created_at: '2019-09-18T13:16:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/206/events - html_url: https://github.com/packit/ogr/pull/206 - id: 495219552 + body: "- Do not use tokens/private_keys in the `__str__` methods.\n -\ + \ used `set`/`not set` instead\n - reason: We've started to show logs\ + \ publicly in the packit-service and it can be easy to forget about\ + \ this \"feature\"." + closed_at: '2020-02-21T12:13:33Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/336/comments + created_at: '2020-02-20T09:28:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/336/events + html_url: https://github.com/packit/ogr/pull/336 + id: 568163719 labels: - color: 0e8a16 default: false @@ -119834,143 +148513,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/206/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE4ODA3MTU3 - number: 206 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/206.diff - html_url: https://github.com/packit/ogr/pull/206 - patch_url: https://github.com/packit/ogr/pull/206.patch - url: https://api.github.com/repos/packit/ogr/pulls/206 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: methods for commit status and commit comment - updated_at: '2019-09-19T09:46:56Z' - url: https://api.github.com/repos/packit/ogr/issues/206 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "```python\r\n def commit_comment(\r\n self, commit: str,\ - \ body: str, filename: str = None, row: int = None\r\n ) -> \"CommitComment\"\ - :\r\n raise NotImplementedError()\r\n\r\n def set_commit_status(\r\ - \n self, commit: str, state: str, target_url: str, description:\ - \ str, context: str\r\n ) -> \"CommitFlag\":\r\n raise NotImplementedError()\r\ - \n\r\n def get_commit_statuses(self, commit: str) -> List[CommitFlag]:\r\ - \n \"\"\"\r\n Something like this:\r\n commit_object\ - \ = self.gitlab_repo.commits.get(commit)\r\n raw_statuses = commit_object.statuses.list()\r\ - \n return [\r\n GitlabProject._commit_status_from_gitlab_object(raw_status)\r\ - \n for raw_status in raw_statuses\r\n ]\r\n \ - \ \"\"\"\r\n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html\r\ - \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-comments\r\ - \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status" - closed_at: '2019-09-19T09:46:56Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/172/comments - created_at: '2019-09-06T07:23:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/172/events - html_url: https://github.com/packit/ogr/issues/172 - id: 490172659 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/172/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/336/labels{/name} locked: false - milestone: null - node_id: MDU6SXNzdWU0OTAxNzI2NTk= - number: 172 + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzc3NjQzMzYy + number: 336 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/336.diff + html_url: https://github.com/packit/ogr/pull/336 + patch_url: https://github.com/packit/ogr/pull/336.patch + url: https://api.github.com/repos/packit/ogr/pulls/336 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for commits - updated_at: '2019-09-19T09:46:56Z' - url: https://api.github.com/repos/packit/ogr/issues/172 + title: Do not use tokens and keys in the __str__ methods + updated_at: '2020-02-28T11:34:56Z' + url: https://api.github.com/repos/packit/ogr/issues/336 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -119988,63 +148548,111 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "This commit adds the possibility to provide\r\na list of labels\ + \ to filter the issues of a\r\nproject.\r\n\r\nSigned-off-by: Clement\ + \ Verna " + closed_at: '2020-02-28T10:13:37Z' + comments: 22 + comments_url: https://api.github.com/repos/packit/ogr/issues/340/comments + created_at: '2020-02-21T14:19:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/340/events + html_url: https://github.com/packit/ogr/pull/340 + id: 568983388 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/340/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzc4MzA1ODAw + number: 340 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/340.diff + html_url: https://github.com/packit/ogr/pull/340 + patch_url: https://github.com/packit/ogr/pull/340.patch + url: https://api.github.com/repos/packit/ogr/pulls/340 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Allow to filter issues by labels. + updated_at: '2020-02-28T10:17:42Z' + url: https://api.github.com/repos/packit/ogr/issues/340 + user: + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 + events_url: https://api.github.com/users/cverna/events{/privacy} + followers_url: https://api.github.com/users/cverna/followers + following_url: https://api.github.com/users/cverna/following{/other_user} + gists_url: https://api.github.com/users/cverna/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/cverna + id: 7237866 + login: cverna + node_id: MDQ6VXNlcjcyMzc4NjY= + organizations_url: https://api.github.com/users/cverna/orgs + received_events_url: https://api.github.com/users/cverna/received_events + repos_url: https://api.github.com/users/cverna/repos + site_admin: false + starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/cverna/subscriptions + type: User + url: https://api.github.com/users/cverna - active_lock_reason: null assignee: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/TomasTomecek assignees: - - avatar_url: https://avatars3.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} + - 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova - author_association: MEMBER - body: "```python\r\n def project_create(self, repo: str, namespace:\ - \ str = None) -> \"GithubProject\":\r\n pass\r\n```\r\n\r\nThe\ - \ methods for creating projects are in two places:\r\n\r\n- user:\r\n\ - \ - [Github.get_user](https://pygithub.readthedocs.io/en/latest/github.html#github.MainClass.Github.get_user)\r\ - \n - [User.create_repo](https://pygithub.readthedocs.io/en/latest/github_objects/AuthenticatedUser.html#github.AuthenticatedUser.AuthenticatedUser.create_repo)\r\ - \n- namespace:\r\n - [Github.get_organization](https://pygithub.readthedocs.io/en/latest/github.html#github.MainClass.Github.get_organization)\r\ - \n - [Organization.create_repo](https://pygithub.readthedocs.io/en/latest/github_objects/Organization.html#github.Organization.Organization.create_repo)\r\ - \n\r\nAC:\r\n\r\n- [x] implement the method in `GithubService`\r\n-\ - \ [x] create at least two tests for that (with and without specifying\ - \ `namespace`)\r\n" - closed_at: '2019-09-19T09:13:21Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/203/comments - created_at: '2019-09-18T09:06:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/203/events - html_url: https://github.com/packit/ogr/issues/203 - id: 495090506 + url: https://api.github.com/users/TomasTomecek + author_association: CONTRIBUTOR + body: 'see below: https://github.com/packit-service/ogr/issues/306#issuecomment-575204355' + closed_at: '2020-02-26T11:51:17Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/306/comments + created_at: '2020-01-10T15:38:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/306/events + html_url: https://github.com/packit/ogr/issues/306 + id: 548146892 labels: - color: '000000' default: false @@ -120053,69 +148661,59 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/203/labels{/name} + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/306/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTUwOTA1MDY= - number: 203 + node_id: MDU6SXNzdWU1NDgxNDY4OTI= + number: 306 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitHub method for create_project - updated_at: '2019-09-19T09:27:27Z' - url: https://api.github.com/repos/packit/ogr/issues/203 + title: 'ogr can''t figure out auth for SSH style of URL: git@github...' + updated_at: '2020-02-26T11:51:17Z' + url: https://api.github.com/repos/packit/ogr/issues/306 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #203 ' - closed_at: '2019-09-19T09:13:22Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/208/comments - created_at: '2019-09-19T06:12:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/208/events - html_url: https://github.com/packit/ogr/pull/208 - id: 495593829 + author_association: CONTRIBUTOR + body: 'Fixes #306 + + + Franto, we didn''t speak about this, but this how I expect it to work, + WDYT?' + closed_at: '2020-02-26T11:51:17Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/337/comments + created_at: '2020-02-20T21:27:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/337/events + html_url: https://github.com/packit/ogr/pull/337 + id: 568583084 labels: - color: 0e8a16 default: false @@ -120124,56 +148722,55 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/208/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/337/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE5MTEwNjY0 - number: 208 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc3OTgyODUz + number: 337 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/208.diff - html_url: https://github.com/packit/ogr/pull/208 - patch_url: https://github.com/packit/ogr/pull/208.patch - url: https://api.github.com/repos/packit/ogr/pulls/208 + diff_url: https://github.com/packit/ogr/pull/337.diff + html_url: https://github.com/packit/ogr/pull/337 + patch_url: https://github.com/packit/ogr/pull/337.patch + url: https://api.github.com/repos/packit/ogr/pulls/337 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: github method for creating projects added - updated_at: '2019-09-19T09:13:22Z' - url: https://api.github.com/repos/packit/ogr/issues/208 + title: enable getting projects defined with SSH URLs + updated_at: '2020-02-26T11:51:17Z' + url: https://api.github.com/repos/packit/ogr/issues/337 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- [x] Update Pagure response files and fix the tests.\r\n- [x]\ - \ Update GitHub response files and fix the tests.\r\n- ~~[ ] Update\ - \ GitLab response files and fix the tests if needed.~~\r\n\r\nFixes\ - \ #181 " - closed_at: '2019-09-19T08:09:47Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/202/comments - created_at: '2019-09-17T13:18:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/202/events - html_url: https://github.com/packit/ogr/pull/202 - id: 494619035 + body: "- Add diff_url to the PR classes.\r\n- Add missing setters to abstract\ + \ PR class.\r\n\r\nA rebased version of https://github.com/packit-service/ogr/pull/280\ + \ ." + closed_at: '2020-02-26T09:52:29Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/335/comments + created_at: '2020-02-20T06:22:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/335/events + html_url: https://github.com/packit/ogr/pull/335 + id: 568078329 labels: - color: 0e8a16 default: false @@ -120182,38 +148779,31 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 + - color: 18e033 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/202/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/335/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE4MzM1NjYw - number: 202 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc3NTcyNzgz + number: 335 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/202.diff - html_url: https://github.com/packit/ogr/pull/202 - patch_url: https://github.com/packit/ogr/pull/202.patch - url: https://api.github.com/repos/packit/ogr/pulls/202 + diff_url: https://github.com/packit/ogr/pull/335.diff + html_url: https://github.com/packit/ogr/pull/335 + patch_url: https://github.com/packit/ogr/pull/335.patch + url: https://api.github.com/repos/packit/ogr/pulls/335 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update tests and response files - updated_at: '2019-09-19T08:09:51Z' - url: https://api.github.com/repos/packit/ogr/issues/202 + title: diff url for pull-requests + updated_at: '2020-02-26T10:14:51Z' + url: https://api.github.com/repos/packit/ogr/issues/335 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -120234,659 +148824,408 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Currently, we need to know the author of the generated files, because\ - \ we do not know the owner of the fork we are using. (When we are not\ - \ setting the `PAGURE_USER` token, e.i. in CI.)\r\n\r\nAI: Fix the need\ - \ of `LAST_GENERATED_BY = ` constant." - closed_at: '2019-09-19T08:09:47Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/181/comments - created_at: '2019-09-09T08:16:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/181/events - html_url: https://github.com/packit/ogr/issues/181 - id: 490947039 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-02-26T07:46:42Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/341/comments + created_at: '2020-02-25T13:21:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/341/events + html_url: https://github.com/packit/ogr/pull/341 + id: 570565436 labels: - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/181/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/341/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTA5NDcwMzk= - number: 181 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc5NTc3NjE5 + number: 341 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/341.diff + html_url: https://github.com/packit/ogr/pull/341 + patch_url: https://github.com/packit/ogr/pull/341.patch + url: https://api.github.com/repos/packit/ogr/pulls/341 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Avoid saving author of the last generated response-files - updated_at: '2019-09-19T08:09:47Z' - url: https://api.github.com/repos/packit/ogr/issues/181 + title: simplify requre testcases and use requre base test class + updated_at: '2020-02-26T07:46:42Z' + url: https://api.github.com/repos/packit/ogr/issues/341 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: '' - closed_at: '2019-09-19T07:00:59Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/194/comments - created_at: '2019-09-12T08:49:07Z' - events_url: https://api.github.com/repos/packit/ogr/issues/194/events - html_url: https://github.com/packit/ogr/issues/194 - id: 492670435 + body: "Closes #211\r\n\r\nI added diff url to PullRequest.\r\n\r\nImplementation:\r\ + \n- [x] BasePullRequest\r\n- [x] Github\r\n- [x] Gitlab\r\n- [x] Pagure\r\ + \n\r\nBut I found diff url in api for github, so I \"guess\" url. \r\ + \nBut for github there are two option \"/files\" (consistent with other\ + \ services) or \".diff\" (consistent with Github api).\r\n\r\nFor example:\r\ + \nhttps://github.com/packit-service/ogr/pull/1/files\r\nand \r\nhttps://patch-diff.githubusercontent.com/raw/packit-service/ogr/pull/1.diff\r\ + \n\r\nI think \".files\" looks better and that option was in issue as\ + \ example, that why I chose this one. But if you want I can change to\ + \ github api option \".diff\" \r\n\r\nFor others services I couldn't\ + \ find in api, so I \"guess\" url. \r\n" + closed_at: '2020-02-20T08:39:54Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/280/comments + created_at: '2019-11-22T10:17:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/280/events + html_url: https://github.com/packit/ogr/pull/280 + id: 527108315 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/194/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0OTI2NzA0MzU= - number: 194 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Release 0.7.0 by /packit propose-update - updated_at: '2019-09-19T07:00:59Z' - url: https://api.github.com/repos/packit/ogr/issues/194 - user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos - site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions - type: User - url: https://api.github.com/users/phracek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-09-17T09:05:10Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/200/comments - created_at: '2019-09-13T12:21:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/200/events - html_url: https://github.com/packit/ogr/pull/200 - id: 493295672 - labels: - - color: dd5f74 - default: false - description: Work in progress. - id: 1432779248 - name: do-not-merge - node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 - url: https://api.github.com/repos/packit/ogr/labels/do-not-merge - labels_url: https://api.github.com/repos/packit/ogr/issues/200/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/280/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE3MzAxMTYz - number: 200 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ0NDQ0OTEz + number: 280 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/200.diff - html_url: https://github.com/packit/ogr/pull/200 - patch_url: https://github.com/packit/ogr/pull/200.patch - url: https://api.github.com/repos/packit/ogr/pulls/200 + diff_url: https://github.com/packit/ogr/pull/280.diff + html_url: https://github.com/packit/ogr/pull/280 + patch_url: https://github.com/packit/ogr/pull/280.patch + url: https://api.github.com/repos/packit/ogr/pulls/280 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'WIP: use requre project and list modules for next work' - updated_at: '2019-09-17T09:07:25Z' - url: https://api.github.com/repos/packit/ogr/issues/200 + title: Add url diff to PullRequest + updated_at: '2020-02-20T08:39:54Z' + url: https://api.github.com/repos/packit/ogr/issues/280 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 + events_url: https://api.github.com/users/pawelkopka/events{/privacy} + followers_url: https://api.github.com/users/pawelkopka/followers + following_url: https://api.github.com/users/pawelkopka/following{/other_user} + gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/pawelkopka + id: 17784034 + login: pawelkopka + node_id: MDQ6VXNlcjE3Nzg0MDM0 + organizations_url: https://api.github.com/users/pawelkopka/orgs + received_events_url: https://api.github.com/users/pawelkopka/received_events + repos_url: https://api.github.com/users/pawelkopka/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions type: User - url: https://api.github.com/users/jscotka + url: https://api.github.com/users/pawelkopka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Use returned GitLab repo instance in GitlabService.project_create.' - closed_at: '2019-09-12T18:18:59Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/197/comments - created_at: '2019-09-12T10:18:06Z' - events_url: https://api.github.com/repos/packit/ogr/issues/197/events - html_url: https://github.com/packit/ogr/pull/197 - id: 492715580 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/197/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-02-19T14:45:23Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/324/comments + created_at: '2020-02-10T13:09:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/324/events + html_url: https://github.com/packit/ogr/pull/324 + id: 562549831 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/324/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODM0MDQ1 - number: 197 + node_id: MDExOlB1bGxSZXF1ZXN0MzczMTI1MDU5 + number: 324 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/197.diff - html_url: https://github.com/packit/ogr/pull/197 - patch_url: https://github.com/packit/ogr/pull/197.patch - url: https://api.github.com/repos/packit/ogr/pulls/197 + diff_url: https://github.com/packit/ogr/pull/324.diff + html_url: https://github.com/packit/ogr/pull/324 + patch_url: https://github.com/packit/ogr/pull/324.patch + url: https://api.github.com/repos/packit/ogr/pulls/324 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Set GitLab object on project_create - updated_at: '2019-09-12T19:29:31Z' - url: https://api.github.com/repos/packit/ogr/issues/197 + title: updated PullRequest depr message + updated_at: '2020-02-19T14:52:32Z' + url: https://api.github.com/repos/packit/ogr/issues/324 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj + _next: null + elapsed: 0.489441 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:00:43 GMT + ETag: W/"fc8673eab0f103beb0ab87098a6c5c5ac3e920d0986b569591f7b76501c47f35" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 85EE:7CFE:F80580:191C12F:6075DC4A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4653' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '347' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=closed&sort=updated&direction=desc&page=9: + - metadata: + latency: 0.6101934909820557 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "In `packit-service`, I am using method `who_can_merge_pr` for getting\ - \ users who can merge PR.\r\n\r\n* `get_owners` for repository `packit-service/packit-service`\ - \ returns list `['packit-service']`\r\n```\r\n[2019-07-22 08:52:07,528:\ - \ DEBUG/ForkPoolWorker-1] Repository owners ['packit-service']\r\n```\r\ - \n* `who_can_merge_pr` for repository `rebase-helper/rebase-helper`\ - \ returns list like `{'FrNecas', 'uhliarik', 'phracek', 'nforro', 'thozza'}`\ - \ but for `packit-service/packit-service` repo it failed with traceback\r\ - \n\r\n```\r\n[2019-07-22 08:52:08,368: ERROR/ForkPoolWorker-1] Task\ - \ task.steve_jobs.process_message[9c44c1c8-5cf7-4a98-88d5-b0dbaca0262f]\ - \ raised unexpected: AttributeError(\"'Repository' object has no attribute\ - \ 'get_collaborator_permission'\")\r\nTraceback (most recent call last):\r\ - \n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ - , line 385, in trace_task\r\n R = retval = fun(*args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ - , line 648, in __protected_call__\r\n return self.run(*args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ - , line 31, in process_message\r\n return SteveJobs().process_message(event=event,\ - \ topic=topic)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 383, in process_message\r\n jobs_results = self.process_jobs(trigger,\ - \ package_config, event, project)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 341, in process_jobs\r\n handlers_results[job.job.value] =\ - \ handler.run()\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 793, in run\r\n return self.handle_pull_request()\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 717, in handle_pull_request\r\n collaborators = self.project.who_can_merge_pr()\r\ - \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ - , line 254, in who_can_merge_pr\r\n collaborators = self._get_collaborators_with_permission()\r\ - \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ - , line 294, in _get_collaborators_with_permission\r\n permission\ - \ = self.github_repo.get_collaborator_permission(user)\r\nAttributeError:\ - \ 'Repository' object has no attribute 'get_collaborator_permission'\r\ - \n```\r\n\r\nFunction GITHUB API function which gets all collaborators\ - \ returns\r\n```\r\n[2019-07-22 08:52:08,136: DEBUG/ForkPoolWorker-1]\ - \ GET https://api.github.com/repos/packit-service/hello-world/collaborators\ - \ \r\n{'Authorization': 'token (oauth token removed)', 'User-Agent':\ - \ 'PyGithub/Python'} None ==> 200 {'date': 'Mon, 22 Jul 2019 08:52:05\ - \ GMT', 'content-type': 'application/json; charset=utf-8', 'content-length':\ - \ '9897', 'server': 'GitHub.com', 'status': '200 OK', 'x-ratelimit-limit':\ - \ '5000', 'x-ratelimit-remaining': '4997', 'x-ratelimit-reset': '1563789120',\ - \ 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept-Encoding',\ - \ 'etag': '\"608e280b2b2bc2d96b1393ce9c294cee\"', 'x-github-media-type':\ - \ 'github.v3; format=json', 'access-control-expose-headers': 'ETag,\ - \ Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining,\ - \ X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval,\ - \ X-GitHub-Media-Type', 'access-control-allow-origin': '*', 'strict-transport-security':\ - \ 'max-age=31536000; includeSubdomains; preload', 'x-frame-options':\ - \ 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1;\ - \ mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin',\ - \ 'content-security-policy': \"default-src 'none'\", 'x-github-request-id':\ - \ '1110:253E:289043:3B0BB6:5D357935'}b'[\r\n{\"login\":\"jpopelka\"\ - ,\"id\":288686,\"node_id\":\"MDQ6VXNlcjI4ODY4Ng==\",\"avatar_url\":\"\ - https://avatars0.githubusercontent.com/u/288686?v=4\",\"gravatar_id\"\ - :\"\",\"url\":\"https://api.github.com/users/jpopelka\",\"html_url\"\ - :\"https://github.com/jpopelka\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/jpopelka/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/jpopelka/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/jpopelka/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/jpopelka/repos\",\"events_url\"\ - :\"https://api.github.com/users /jpopelka/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/jpopelka/received_events\",\"type\"\ - :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"TomasTomecek\",\"id\":1662493,\"\ - node_id\":\"MDQ6VXNlcjE2NjI0OTM=\",\"avatar_url\":\"https://avatars0.githubusercontent.com/u/1662493?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/TomasTomecek\"\ - ,\"html_url\":\"https://github.com/TomasTomecek\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/TomasTomecek/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/TomasTomecek/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/TomasTomecek/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/TomasTomecek/repos\",\"\ - events_url\":\"https://api.github.com/users/TomasTomecek/events{/privacy}\"\ - ,\"received_events_url\":\"https://api.github.com/users/TomasTomecek/received_events\"\ - ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ - push\":true,\"pull\":true}},\r\n{\"login\":\"eliskasl\",\"id\":1866652,\"\ - node_id\":\"MDQ6VXNlcjE4NjY2NTI=\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/1866652?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/eliskasl\"\ - ,\"html_url\":\"https://github.com/eliskasl\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/eliskasl/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/eliskasl/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/eliskasl/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/eliskasl/repos\",\"events_url\"\ - :\"https://api.github.com/users/eliskasl/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/ eliskasl/received_events\",\"type\"\ - :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"phracek\",\"id\":3416672,\"node_id\"\ - :\"MDQ6VXNlcjM0MTY2NzI=\",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/3416672?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/phracek\"\ - ,\"html_url\":\"https://github.com/phracek\",\"followers_url\":\"https://api.github.com/users/phracek/followers\"\ - ,\"following_url\":\"https://api.github.com/users/phracek/following{/other_user}\"\ - ,\"gists_url\":\"https://api.github.com/users/phracek/gists{/gist_id}\"\ - ,\"starred_url\":\"https://api.github.com/users/phracek/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/phracek/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/phracek/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/phracek/repos\",\"events_url\"\ - :\"https://api.github.com/users/phracek/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/phracek/received_events\",\"type\":\"\ - User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"jscotka\",\"id\":8735467,\"node_id\"\ - :\"MDQ6VXNlcjg3MzU0Njc=\",\"avatar_url\":\"https://avatars0.githubusercontent.com/u/8735467?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/jscotka\"\ - ,\"html_url\":\"https://github.com/jscotka\",\"followers_url\":\"https://api.github.com/users/jscotka/followers\"\ - ,\"following_url\":\"https://api.github.com/users/jscotka/following{/other_user}\"\ - ,\"gists_url\":\"https://api.github.com/users/jscotka/gists{/gist_id}\"\ - ,\"starred_url\":\"https://api.github.com/users/jscotka/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/jscotka/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/jscotka/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/jscotka/repos\",\"events_url\"\ - :\"https://api.github.com/users/jscotka/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/jscotka/received_events\",\"type\":\"\ - User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},{\"login\":\"lachmanfrantisek\",\"id\":202140\ - \ 43,\"node_id\":\"MDQ6VXNlcjIwMjE0MDQz\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/20214043?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/lachmanfrantisek\"\ - ,\"html_url\":\"https://github.com/lachmanfrantisek\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/lachmanfrantisek/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/lachmanfrantisek/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/lachmanfrantisek/repos\"\ - ,\"events_url\":\"https://api.github.com/users/lachmanfrantisek/events{/privacy}\"\ - ,\"received_events_url\":\"https://api.github.com/users/lachmanfrantisek/received_events\"\ - ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ - push\":true,\"pull\":true}},\r\n{\"login\":\"rpitonak\",\"id\":26160778,\"\ - node_id\":\"MDQ6VXNlcjI2MTYwNzc4\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/26160778?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/rpitonak\"\ - ,\"html_url\":\"https://github.com/rpitonak\",\"followers_url\":\"https://api.github.com/users/rpitonak/followers\"\ - ,\"following_url\":\"https://api.github.com/users/rpitonak/following{/other_user}\"\ - ,\"gists_url\":\"https://api.github.com/users/rpitonak/gists{/gist_id}\"\ - ,\"starred_url\":\"https://api.github.com/users/rpitonak/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/rpitonak/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/rpitonak/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/rpitonak/repos\",\"events_url\"\ - :\"https://api.github.com/users/rpitonak/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/rpitonak/received_events\",\"type\"\ - :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"dhodovsk\",\"id\":31201372,\"\ - node_id\":\"MDQ6VXNlcjMxMjAxMzcy \",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/31201372?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/dhodovsk\"\ - ,\"html_url\":\"https://github.com/dhodovsk\",\"followers_url\":\"https://api.github.com/users/dhodovsk/followers\"\ - ,\"following_url\":\"https://api.github.com/users/dhodovsk/following{/other_user}\"\ - ,\"gists_url\":\"https://api.github.com/users/dhodovsk/gists{/gist_id}\"\ - ,\"starred_url\":\"https://api.github.com/users/dhodovsk/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/dhodovsk/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/dhodovsk/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/dhodovsk/repos\",\"events_url\"\ - :\"https://api.github.com/users/dhodovsk/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/dhodovsk/received_events\",\"type\"\ - :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"usercont-release-bot\",\"id\"\ - :36231209,\"node_id\":\"MDQ6VXNlcjM2MjMxMjA5\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/36231209?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/usercont-release-bot\"\ - ,\"html_url\":\"https://github.com/usercont-release-bot\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/usercont-release-bot/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/usercont-release-bot/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/usercont-release-bot/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/usercont-release-bot/repos\"\ - ,\"events_url\":\"https://api.github.com/users/usercont-release-bot/events{/privacy}\"\ - ,\"received_events_url\":\"https://api.github.com/users/usercont-release-bot/received_events\"\ - ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ - push\":true,\"pull\":true}},\r\n{\"login\":\"lbarcziova\",\"id\":49026743,\"\ - node_id\": \"MDQ6VXNlcjQ5MDI2NzQz\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/49026743?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/lbarcziova\"\ - ,\"html_url\":\"https://github.com/lbarcziova\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/lbarcziova/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/lbarcziova/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/lbarcziova/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/lbarcziova/repos\",\"\ - events_url\":\"https://api.github.com/users/lbarcziova/events{/privacy}\"\ - ,\"received_events_url\":\"https://api.github.com/users/lbarcziova/received_events\"\ - ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ - push\":true,\"pull\":true}}]'\r\n```" - closed_at: '2019-09-12T11:13:02Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/132/comments - created_at: '2019-07-22T09:03:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/132/events - html_url: https://github.com/packit/ogr/issues/132 - id: 470977370 + body: '' + closed_at: '2020-02-19T13:32:13Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/328/comments + created_at: '2020-02-17T13:41:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/328/events + html_url: https://github.com/packit/ogr/pull/328 + id: 566306913 labels: - - color: '000000' + - color: 0e8a16 default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/132/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/328/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzA5NzczNzA= - number: 132 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc2MTQyOTU3 + number: 328 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/328.diff + html_url: https://github.com/packit/ogr/pull/328 + patch_url: https://github.com/packit/ogr/pull/328.patch + url: https://api.github.com/repos/packit/ogr/pulls/328 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: fnc `who_can_merge_pr` fails with traceback - updated_at: '2019-09-12T15:19:54Z' - url: https://api.github.com/repos/packit/ogr/issues/132 + title: provide is_private method on GitProjects + updated_at: '2020-02-19T13:36:04Z' + url: https://api.github.com/repos/packit/ogr/issues/328 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/phracek + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "I would like to solve an issue https://github.com/packit-service/packit/issues/328\r\ - \nbut it failed with traceback:\r\n\r\n~~~\r\n$ packit -d propose-update\r\ - \n[..snip..]\r\n10:40:20.990 upstream.py DEBUG Version in spec\ - \ file: 0.16.3\r\nPicking version found in spec file.\r\nChecking out\ - \ upstream version 0.16.3\r\n10:40:21.013 base_git.py DEBUG Allowed\ - \ GPG keys are not set, skipping the verification.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running ActionName.pre_sync hook.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running ActionName.pre_sync.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running default implementation for ActionName.pre_sync.\r\ - \nUsing 'master' dist-git branch\r\n10:40:21.017 base_git.py DEBUG\ - \ It seems that branch master already exists, checking it out.\r\n\ - 10:40:21.020 distgit.py DEBUG About to update branch 'master'\r\ - \n10:40:21.727 api.py DEBUG Path of README /tmp/tmpzla3qy3y/README.packit\r\ - \n10:40:21.728 base_git.py DEBUG Running ActionName.prepare_files.\r\ - \n10:40:21.729 base_git.py DEBUG Running default implementation\ - \ for ActionName.prepare_files.\r\n10:40:21.729 sync.py DEBUG\ - \ Copy synced files [RawSyncFilesItem(src=/home/vagrant/rebase-helper/.packit.yml,\ - \ dest=/tmp/tmpzla3qy3y/.packit.yml, dist_is_dir=False), RawSyncFilesItem(src=/home/vagrant/rebase-helper/rebase-helper.spec,\ - \ dest=/tmp/tmpzla3qy3y/rebase-helper.spec, dist_is_dir=False)]\r\n\ - 10:40:21.730 sync.py DEBUG src = /home/vagrant/rebase-helper/.packit.yml,\ - \ dest = /tmp/tmpzla3qy3y/.packit.yml\r\nCopying /home/vagrant/rebase-helper/.packit.yml\ - \ to /tmp/tmpzla3qy3y/.packit.yml.\r\n10:40:21.731 sync.py \ - \ DEBUG src = /home/vagrant/rebase-helper/rebase-helper.spec, dest\ - \ = /tmp/tmpzla3qy3y/rebase-helper.spec\r\nCopying /home/vagrant/rebase-helper/rebase-helper.spec\ - \ to /tmp/tmpzla3qy3y/rebase-helper.spec.\r\n10:40:21.814 distgit.py\ - \ DEBUG Upstream archive name is 'rebase-helper-0.16.3.tar.gz'\r\ - \nArchive rebase-helper-0.16.3.tar.gz found in lookaside cache (skipping\ - \ upload).\r\n10:40:22.347 distgit.py DEBUG Upstream archive\ - \ name is 'rebase-helper-0.16.3.tar.gz'\r\n10:40:22.348 base_git.py\ - \ DEBUG About to add all & commit\r\n10:40:22.366 distgit.py\ - \ DEBUG About to force push changes to branch 0.16.3-master-update\ - \ of a fork fork of the dist-git repo\r\n10:40:32.251 distgit.py \ - \ DEBUG About to create dist-git pull request from 0.16.3-master-update\ - \ to master\r\nERROR There was an error while creating the PR: PagureAPIException('Page\ - \ `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.')\r\nERROR Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.\r\nTraceback (most recent call\ - \ last):\r\n File \"/usr/local/lib/python3.7/site-packages/packit/cli/utils.py\"\ - , line 58, in covered_func\r\n func(config=config, *args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/packit/cli/update.py\"\ - , line 113, in update\r\n upstream_ref=upstream_ref,\r\n File \"\ - /usr/local/lib/python3.7/site-packages/packit/api.py\", line 229, in\ - \ sync_release\r\n dist_git_branch=dist_git_branch,\r\n File \"\ - /usr/local/lib/python3.7/site-packages/packit/api.py\", line 316, in\ - \ push_and_create_pr\r\n target_branch=dist_git_branch,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit/distgit.py\", line\ - \ 211, in create_pull\r\n target_branch=target_branch,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/ogr/mock_core.py\", line\ - \ 49, in readonly_func\r\n return func(self, *args, **kwargs)\r\n\ - \ File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 377, in pr_create\r\n \"initial_comment\": body,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 232, in _call_project_api\r\n url=request_url, method=method,\ - \ params=params, data=data\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 71, in call_api\r\n raise PagureAPIException(f\"Page `{url}`\ - \ not found when calling Pagure API.\")\r\nogr.exceptions.PagureAPIException:\ - \ Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.\r\n10:40:34.958 local_project.py\ - \ DEBUG Cleaning: /tmp/tmpzla3qy3y\r\n~~~\r\n\r\n\r\nReferenced issues:\r\ - \nhttps://pagure.io/pagure/issue/4512\r\nhttps://github.com/packit-service/packit/issues/328\r\ - \n" - closed_at: '2019-09-12T11:17:19Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/91/comments - created_at: '2019-06-27T10:41:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/91/events - html_url: https://github.com/packit/ogr/issues/91 - id: 461455149 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/91/labels{/name} + body: improve pagure error response to show additional info stored under + 'errors' key + closed_at: '2020-02-19T08:19:55Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/333/comments + created_at: '2020-02-18T15:47:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/333/events + html_url: https://github.com/packit/ogr/pull/333 + id: 566983390 + labels: + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/333/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE0NTUxNDk= - number: 91 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc2NjkyMzc5 + number: 333 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/333.diff + html_url: https://github.com/packit/ogr/pull/333 + patch_url: https://github.com/packit/ogr/pull/333.patch + url: https://api.github.com/repos/packit/ogr/pulls/333 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ' Page `/fork/phracek/rpms/rebase-helper/pull-request/new` not - found when calling Pagure API' - updated_at: '2019-09-12T11:17:20Z' - url: https://api.github.com/repos/packit/ogr/issues/91 + title: improve pagure error response + updated_at: '2020-02-19T08:19:55Z' + url: https://api.github.com/repos/packit/ogr/issues/333 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/phracek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "see log: \r\nhttps://softwarefactory-project.io/logs/13/513/8c3c6370096e5834c90dc5ff06e47cf9f3443cde/check/tests-pip-deps/cd79e16/job-output.txt.gz\r\ - \nwith git master it works, but pypi and rpm version of ogr fails with\ - \ errors like:\r\n**TypeError: __init__() got an unexpected keyword\ - \ argument 'exception'**\r\n\r\n```\r\n self = .ClassWithPersistentStorage\ - \ object at 0x7fa913e99450>\r\n2019-09-06 07:32:25.448747 | test-node\ - \ | url = 'https://src.fedoraproject.org//api/0/rpms/python-ogr/git/branches'\r\ - \n2019-09-06 07:32:25.448840 | test-node | method = 'GET', params =\ - \ None, data = None, header = None\r\n2019-09-06 07:32:25.448859 | test-node\ - \ |\r\n2019-09-06 07:32:25.448868 | test-node | def get_raw_request(\r\ - \n2019-09-06 07:32:25.448909 | test-node | self, url, method=\"\ - GET\", params=None, data=None, header=None\r\n2019-09-06 07:32:25.448924\ - \ | test-node | ):\r\n2019-09-06 07:32:25.448949 | test-node | \ - \ keys_internal = [method, url, params, data]\r\n2019-09-06 07:32:25.448977\ - \ | test-node | if self.persistent_storage.is_write_mode:\r\n\ - 2019-09-06 07:32:25.449005 | test-node | output = super().get_raw_request(\r\ - \n2019-09-06 07:32:25.449038 | test-node | url, method=method,\ - \ params=params, data=data, header=header\r\n2019-09-06 07:32:25.449066\ - \ | test-node | )\r\n2019-09-06 07:32:25.449078 | test-node\ - \ | self.persistent_storage.store(\r\n2019-09-06 07:32:25.449120\ - \ | test-node | keys=keys_internal, values=output.to_json_format()\r\ - \n2019-09-06 07:32:25.449148 | test-node | )\r\n2019-09-06\ - \ 07:32:25.449159 | test-node | else:\r\n2019-09-06 07:32:25.449190\ - \ | test-node | output_dict = self.persistent_storage.read(keys=keys_internal)\r\ - \n2019-09-06 07:32:25.449242 | test-node | > output = RequestResponse(**output_dict)\r\ - \n2019-09-06 07:32:25.449276 | test-node | E TypeError: __init__()\ - \ got an unexpected keyword argument 'exception'\r\n```" - closed_at: '2019-09-12T11:08:06Z' + author_association: CONTRIBUTOR + body: 'fixes #331 ' + closed_at: '2020-02-18T15:30:01Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/177/comments - created_at: '2019-09-06T07:58:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/177/events - html_url: https://github.com/packit/ogr/issues/177 - id: 490185857 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/177/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/332/comments + created_at: '2020-02-18T14:53:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/332/events + html_url: https://github.com/packit/ogr/pull/332 + id: 566946268 + labels: + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/332/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxODU4NTc= - number: 177 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc2NjYxODE0 + number: 332 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/332.diff + html_url: https://github.com/packit/ogr/pull/332 + patch_url: https://github.com/packit/ogr/pull/332.patch + url: https://api.github.com/repos/packit/ogr/pulls/332 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: adding storing exception to RecordRequest class in utils caused - regression - updated_at: '2019-09-12T11:08:06Z' - url: https://api.github.com/repos/packit/ogr/issues/177 + title: Improve pagure error response + updated_at: '2020-02-18T15:38:49Z' + url: https://api.github.com/repos/packit/ogr/issues/332 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/jscotka + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: When new people come to the OGR repository, I think it is worth - to have a simple example on the top part of README.md demonstrating - the usage. WDYT? - closed_at: '2019-09-12T10:57:56Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/195/comments - created_at: '2019-09-12T09:33:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/195/events - html_url: https://github.com/packit/ogr/pull/195 - id: 492693187 + author_association: MEMBER + body: '' + closed_at: '2020-02-17T15:39:51Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/327/comments + created_at: '2020-02-17T13:24:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/327/events + html_url: https://github.com/packit/ogr/pull/327 + id: 566296821 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -120894,69 +149233,54 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/195/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/327/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODE1NjE1 - number: 195 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc2MTM0NTY3 + number: 327 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/195.diff - html_url: https://github.com/packit/ogr/pull/195 - patch_url: https://github.com/packit/ogr/pull/195.patch - url: https://api.github.com/repos/packit/ogr/pulls/195 + diff_url: https://github.com/packit/ogr/pull/327.diff + html_url: https://github.com/packit/ogr/pull/327 + patch_url: https://github.com/packit/ogr/pull/327.patch + url: https://api.github.com/repos/packit/ogr/pulls/327 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Quickstart example - updated_at: '2019-09-12T10:57:56Z' - url: https://api.github.com/repos/packit/ogr/issues/195 + title: '[.packit.yaml] remove no-longer needed keys & use aliases' + updated_at: '2020-02-17T15:43:04Z' + url: https://api.github.com/repos/packit/ogr/issues/327 user: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 - events_url: https://api.github.com/users/rpitonak/events{/privacy} - followers_url: https://api.github.com/users/rpitonak/followers - following_url: https://api.github.com/users/rpitonak/following{/other_user} - gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + 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/rpitonak - id: 26160778 - login: rpitonak - node_id: MDQ6VXNlcjI2MTYwNzc4 - organizations_url: https://api.github.com/users/rpitonak/orgs - received_events_url: https://api.github.com/users/rpitonak/received_events - repos_url: https://api.github.com/users/rpitonak/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + 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/rpitonak + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Fixes #168 \r\nTest for creating fork succeeded first time and\ - \ since that it has been failing and I can't find out the reason." - closed_at: '2019-09-12T10:04:42Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/192/comments - created_at: '2019-09-11T12:39:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/192/events - html_url: https://github.com/packit/ogr/pull/192 - id: 492212114 + body: '' + closed_at: '2020-02-14T16:46:09Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/326/comments + created_at: '2020-02-14T15:50:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/326/events + html_url: https://github.com/packit/ogr/pull/326 + id: 565409429 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -120964,201 +149288,193 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/192/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/326/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2NDI3NjE1 - number: 192 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc1NDUzMzA5 + number: 326 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/192.diff - html_url: https://github.com/packit/ogr/pull/192 - patch_url: https://github.com/packit/ogr/pull/192.patch - url: https://api.github.com/repos/packit/ogr/pulls/192 + diff_url: https://github.com/packit/ogr/pull/326.diff + html_url: https://github.com/packit/ogr/pull/326 + patch_url: https://github.com/packit/ogr/pull/326.patch + url: https://api.github.com/repos/packit/ogr/pulls/326 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Forking methods - updated_at: '2019-09-12T10:04:42Z' - url: https://api.github.com/repos/packit/ogr/issues/192 + title: '[CONTRIBUTING.md] update' + updated_at: '2020-02-17T08:52:51Z' + url: https://api.github.com/repos/packit/ogr/issues/326 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/jpopelka - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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} + assignee: null + assignees: [] + author_association: MEMBER + body: "Seeing this on prod:\r\n\r\n```\r\n | [2019-10-29 08:25:38,794:\ + \ INFO/MainProcess] Received task: task.steve_jobs.process_message[9b4d1ddc-72e3-4bd8-8ff9-fb2cf96d8efb]\r\ + \n\_ | [2019-10-29 08:25:38,810: INFO/ForkPoolWorker-1] Copr build event,\ + \ topic: org.fedoraproject.prod.copr.build.start\r\n\_ | [2019-10-29\ + \ 08:25:38,812: WARNING/ForkPoolWorker-1] Cannot get project for this\ + \ build id: 1081435\r\n\_ | [2019-10-29 08:25:38,819: ERROR/ForkPoolWorker-1]\ + \ Task task.steve_jobs.process_message[9b4d1ddc-72e3-4bd8-8ff9-fb2cf96d8efb]\ + \ raised unexpected: TypeError(\"argument of type 'NoneType' is not\ + \ iterable\")\r\n\_ | Traceback (most recent call last):\r\n\_ | File\ + \ \"/usr/lib/python3.7/site-packages/celery/app/trace.py\", line 382,\ + \ in trace_task\r\n\_ | R = retval = fun(*args, **kwargs)\r\n\_ | File\ + \ \"/usr/lib/python3.7/site-packages/celery/app/trace.py\", line 641,\ + \ in __protected_call__\r\n\_ | return self.run(*args, **kwargs)\r\n\ + \_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/celery.py\"\ + , line 155, in _inner\r\n\_ | reraise(*exc_info)\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/_compat.py\"\ + , line 57, in reraise\r\n\_ | raise value\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/celery.py\"\ + , line 150, in _inner\r\n\_ | return f(*args, **kwargs)\r\n\_ | File\ + \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ + , line 47, in process_message\r\n\_ | return SteveJobs().process_message(event=event,\ + \ topic=topic)\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 218, in process_message\r\n\_ | project\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/packit/config.py\"\ + , line 212, in _get_project\r\n\_ | project = get_project(url=url, custom_instances=self.services)\r\ + \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ + , line 83, in get_project\r\n\_ | kls = get_service_class(url=url, service_mapping_update=service_mapping_update)\r\ + \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ + , line 135, in get_service_class\r\n\_ | url=url, service_mapping_update=service_mapping_update\r\ + \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ + , line 118, in get_service_class_or_none\r\n\_ | if service in url:\r\ + \n\_ | TypeError: argument of type 'NoneType' is not iterable\r\n```\r\ + \n" + closed_at: '2020-02-16T09:26:02Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/261/comments + created_at: '2019-10-29T09:31:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/261/events + html_url: https://github.com/packit/ogr/issues/261 + id: 513793392 + labels: + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/261/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MTM3OTMzOTI= + number: 261 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[get_service_class_or_none()] TypeError: argument of type ''NoneType'' + is not iterable' + updated_at: '2020-02-16T09:26:02Z' + url: https://api.github.com/repos/packit/ogr/issues/261 + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova - author_association: MEMBER - body: "```python\r\n @property\r\n def is_fork(self) -> bool:\r\n\ - \ raise NotImplementedError()\r\n\r\n @property\r\n def\ - \ parent(self) -> Optional[\"GitlabProject\"]:\r\n raise NotImplementedError()\r\ - \n\r\n def is_forked(self) -> bool:\r\n raise NotImplementedError()\r\ - \n\r\n def get_fork(self, create: bool = True) -> Optional[\"GitlabProject\"\ - ]:\r\n raise NotImplementedError()\r\n\r\n```\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\ - \ -> Fork a project\r\n- An old snippet of code that may be helpful:\r\ - \n\r\n```python\r\n @staticmethod\r\n def is_fork_of(user_repo,\ - \ target_repo):\r\n \"\"\" is provided repo fork of the {parent_repo}/?\ - \ \"\"\"\r\n return user_repo.forked_from_project[\"id\"] ==\ - \ target_repo.id\r\n\r\n def fork(self, target_repo):\r\n \ - \ target_repo_org, target_repo_name = target_repo.split(\"/\", 1)\r\n\ - \r\n target_repo_gl = self.gitlab_instance.projects.get(target_repo)\r\ - \n\r\n try:\r\n # is it already forked?\r\n \ - \ user_repo = self.gitlab_instance.projects.get(\r\n \ - \ \"{}/{}\".format(self.user.get_username(), target_repo_name)\r\ - \n )\r\n if not self.is_fork_of(user_repo, target_repo_gl):\r\ - \n raise RuntimeError(\r\n \"repo\ - \ %s is not a fork of %s\" % (user_repo, target_repo_gl)\r\n \ - \ )\r\n except Exception:\r\n # nope\r\n \ - \ user_repo = None\r\n\r\n if self.user.get_username()\ - \ == target_repo_org:\r\n # user wants to fork its own repo;\ - \ let's just set up remotes 'n stuff\r\n if not user_repo:\r\ - \n raise RuntimeError(\"repo %s not found\" % target_repo_name)\r\ - \n clone_repo_and_cd_inside(\r\n user_repo.path,\ - \ user_repo.attributes[\"ssh_url_to_repo\"], target_repo_org\r\n \ - \ )\r\n else:\r\n user_repo = user_repo or\ - \ self._fork_gracefully(target_repo_gl)\r\n\r\n clone_repo_and_cd_inside(\r\ - \n user_repo.path, user_repo.attributes[\"ssh_url_to_repo\"\ - ], target_repo_org\r\n )\r\n\r\n set_upstream_remote(\r\ - \n clone_url=target_repo_gl.attributes[\"http_url_to_repo\"\ - ],\r\n ssh_url=target_repo_gl.attributes[\"ssh_url_to_repo\"\ - ],\r\n pull_merge_name=\"merge-requests\",\r\n \ - \ )\r\n set_origin_remote(\r\n user_repo.attributes[\"\ - ssh_url_to_repo\"], pull_merge_name=\"merge-requests\"\r\n )\r\ - \n fetch_all()\r\n\r\n @staticmethod\r\n def _fork_gracefully(target_repo):\r\ - \n \"\"\" fork if not forked, return forked repo \"\"\"\r\n \ - \ try:\r\n logger.info(\"forking repo %s\", target_repo)\r\ - \n fork = target_repo.forks.create({})\r\n except\ - \ gitlab.GitlabCreateError:\r\n logger.error(\"repo %s cannot\ - \ be forked\" % target_repo)\r\n raise RuntimeError(\"repo\ - \ %s not found\" % target_repo)\r\n\r\n return fork\r\n```" - closed_at: '2019-09-12T10:04:41Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/168/comments - created_at: '2019-09-06T07:20:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/168/events - html_url: https://github.com/packit/ogr/issues/168 - id: 490171633 + url: https://api.github.com/users/jpopelka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "This commit allows to pass a list of tags to pagure's create_issue\ + \ method.\r\n\r\nSigned-off-by: Clement Verna " + closed_at: '2020-02-12T09:56:00Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/321/comments + created_at: '2020-01-31T19:31:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/321/events + html_url: https://github.com/packit/ogr/pull/321 + id: 558328639 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/168/labels{/name} + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/321/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzE2MzM= - number: 168 + node_id: MDExOlB1bGxSZXF1ZXN0MzY5NzM3NjUy + number: 321 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/321.diff + html_url: https://github.com/packit/ogr/pull/321 + patch_url: https://github.com/packit/ogr/pull/321.patch + url: https://api.github.com/repos/packit/ogr/pulls/321 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for forking - updated_at: '2019-09-12T10:04:41Z' - url: https://api.github.com/repos/packit/ogr/issues/168 + title: Add support for tags when creating pagure issues. + updated_at: '2020-02-12T09:56:00Z' + url: https://api.github.com/repos/packit/ogr/issues/321 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 + events_url: https://api.github.com/users/cverna/events{/privacy} + followers_url: https://api.github.com/users/cverna/followers + following_url: https://api.github.com/users/cverna/following{/other_user} + gists_url: https://api.github.com/users/cverna/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/cverna + id: 7237866 + login: cverna + node_id: MDQ6VXNlcjcyMzc4NjY= + organizations_url: https://api.github.com/users/cverna/orgs + received_events_url: https://api.github.com/users/cverna/received_events + repos_url: https://api.github.com/users/cverna/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/cverna/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/cverna - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #173 + fix of get_pr_list and get_issue_list' - closed_at: '2019-09-12T08:58:35Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/191/comments - created_at: '2019-09-11T12:07:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/191/events - html_url: https://github.com/packit/ogr/pull/191 - id: 492196881 + author_association: CONTRIBUTOR + body: "While working on #319, I noticed that there was no `.gitignore`\ + \ file in the repository.\r\n\r\nTo solve my _own_ pain points while\ + \ developing, I generated this one, which should ignore standard files\ + \ for MacOS, Windows, & Linux, and additionally ignore files that are\ + \ generally good to ignore in Python projects." + closed_at: '2020-02-11T09:08:13Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/320/comments + created_at: '2020-01-31T01:20:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/320/events + html_url: https://github.com/packit/ogr/pull/320 + id: 557854734 labels: - color: 0e8a16 default: false @@ -121167,173 +149483,114 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/191/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/320/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2NDE1MTM4 - number: 191 + node_id: MDExOlB1bGxSZXF1ZXN0MzY5MzY2NDA1 + number: 320 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/191.diff - html_url: https://github.com/packit/ogr/pull/191 - patch_url: https://github.com/packit/ogr/pull/191.patch - url: https://api.github.com/repos/packit/ogr/pulls/191 + diff_url: https://github.com/packit/ogr/pull/320.diff + html_url: https://github.com/packit/ogr/pull/320 + patch_url: https://github.com/packit/ogr/pull/320.patch + url: https://api.github.com/repos/packit/ogr/pulls/320 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: pr close, merge methods - updated_at: '2019-09-12T08:58:35Z' - url: https://api.github.com/repos/packit/ogr/issues/191 + title: Add `.gitignore` to repo + updated_at: '2020-02-11T09:08:13Z' + url: https://api.github.com/repos/packit/ogr/issues/320 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/434063?v=4 + events_url: https://api.github.com/users/birdcar/events{/privacy} + followers_url: https://api.github.com/users/birdcar/followers + following_url: https://api.github.com/users/birdcar/following{/other_user} + gists_url: https://api.github.com/users/birdcar/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/birdcar + id: 434063 + login: birdcar + node_id: MDQ6VXNlcjQzNDA2Mw== + organizations_url: https://api.github.com/users/birdcar/orgs + received_events_url: https://api.github.com/users/birdcar/received_events + repos_url: https://api.github.com/users/birdcar/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/birdcar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/birdcar/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/birdcar - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "```python\r\n def pr_close(self, pr_id: int) -> \"PullRequest\"\ - :\r\n pass\r\n\r\n def pr_merge(self, pr_id: int) -> \"PullRequest\"\ - :\r\n pass\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ - \n- https://docs.gitlab.com/ee/api/merge_requests.html" - closed_at: '2019-09-12T08:58:35Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/173/comments - created_at: '2019-09-06T07:23:24Z' - events_url: https://api.github.com/repos/packit/ogr/issues/173/events - html_url: https://github.com/packit/ogr/issues/173 - id: 490172801 + body: 'Closes #308 ' + closed_at: '2020-01-24T19:51:49Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/309/comments + created_at: '2020-01-17T13:36:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/309/events + html_url: https://github.com/packit/ogr/pull/309 + id: 551419531 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/173/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/309/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzI4MDE= - number: 173 + node_id: MDExOlB1bGxSZXF1ZXN0MzY0MTQ0OTky + number: 309 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/309.diff + html_url: https://github.com/packit/ogr/pull/309 + patch_url: https://github.com/packit/ogr/pull/309.patch + url: https://api.github.com/repos/packit/ogr/pulls/309 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for pr close/merge - updated_at: '2019-09-12T08:58:35Z' - url: https://api.github.com/repos/packit/ogr/issues/173 + title: Add filtering of issues/PRs by author/assignee + updated_at: '2020-02-10T18:51:00Z' + url: https://api.github.com/repos/packit/ogr/issues/309 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Implement service.project_create for GitLab.\r\n\r\n\r\n(reason:\ - \ I would like to use OGR in my [figitool](https://gitlab.fi.muni.cz/xlachma1/figitool)\ - \ and this functionality is missing.)" - closed_at: '2019-09-12T08:09:14Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/189/comments - created_at: '2019-09-11T07:58:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/189/events - html_url: https://github.com/packit/ogr/pull/189 - id: 492077676 + author_association: CONTRIBUTOR + body: "Hello there \U0001F44B \r\n\r\nThis came up in my `good-first-issue`\ + \ search and seemed like a fairly straightforward bug to fix.\r\n\r\n\ + I decided to treat it as a data problem and check for the existence\ + \ of a trailing slash in a simple if statement. It worked in the test\ + \ cases I passed it, and should be pretty straightforward to debug.\ + \ \r\n\r\nOpen to any/all criticism. Thanks for all you do!" + closed_at: '2020-02-06T12:58:10Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/319/comments + created_at: '2020-01-31T01:06:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/319/events + html_url: https://github.com/packit/ogr/pull/319 + id: 557850271 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -121341,227 +149598,192 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/189/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/319/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2MzIwMzE0 - number: 189 + node_id: MDExOlB1bGxSZXF1ZXN0MzY5MzYzMTc2 + number: 319 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/189.diff - html_url: https://github.com/packit/ogr/pull/189 - patch_url: https://github.com/packit/ogr/pull/189.patch - url: https://api.github.com/repos/packit/ogr/pulls/189 + diff_url: https://github.com/packit/ogr/pull/319.diff + html_url: https://github.com/packit/ogr/pull/319 + patch_url: https://github.com/packit/ogr/pull/319.patch + url: https://api.github.com/repos/packit/ogr/pulls/319 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Creating Gitlab projects - updated_at: '2019-09-12T08:09:18Z' - url: https://api.github.com/repos/packit/ogr/issues/189 + title: Remove trailing slash from URLs before parsing + updated_at: '2020-02-06T17:15:07Z' + url: https://api.github.com/repos/packit/ogr/issues/319 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/434063?v=4 + events_url: https://api.github.com/users/birdcar/events{/privacy} + followers_url: https://api.github.com/users/birdcar/followers + following_url: https://api.github.com/users/birdcar/following{/other_user} + gists_url: https://api.github.com/users/birdcar/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/birdcar + id: 434063 + login: birdcar + node_id: MDQ6VXNlcjQzNDA2Mw== + organizations_url: https://api.github.com/users/birdcar/orgs + received_events_url: https://api.github.com/users/birdcar/received_events + repos_url: https://api.github.com/users/birdcar/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/birdcar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/birdcar/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/birdcar - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n>>> from ogr.parsing import parse_git_repo\r\n>>> r = parse_git_repo('https://github.com/avocado-framework/avocado/')\r\ + \n>>> r.namespace\r\n'avocado'\r\n>>> r.repo\r\n''\r\n```" + closed_at: '2020-02-06T12:58:11Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/318/comments + created_at: '2020-01-29T13:10:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/318/events + html_url: https://github.com/packit/ogr/issues/318 + id: 556852319 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/318/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NTY4NTIzMTk= + number: 318 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: parse_git_repo fails to handle '/' at string end correctly + updated_at: '2020-02-06T12:58:11Z' + url: https://api.github.com/repos/packit/ogr/issues/318 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* changed sha\n* tests on\ - \ new repo\n* test fixed\n* raising exception\n* method get_sha_from_tag\n\ - * gitlab: project info methods\n* note added\n* method get_latest_release\n\ - * Fix some typing issues in factory.py\n* Not overwrite the gitlab token\ - \ when set on read-mode\n* Support GitlabAuthenticationError in response\ - \ files as well\n* fix backward compafibility for tests\n* Test creating\ - \ Pagure PRs and fix some username problems in Pagure tests\n* Creating\ - \ Pagure PRs calls upstream project url (not the url of fork)\n* Return\ - \ Gitlab specific release in get_latest_release in GitlabProject\n*\ - \ Remove create_from_remote_url since it is not used anywhere\n* Remove\ - \ unused+unrelated code from GitlabService class\n* Fix the naming issues\ - \ in GitLab API and add the skeleton of the non-implemented methods\n\ - * Fix API for update_pr_info\n* Update error msg with missing github-app\ - \ key as @TomasTomecek suggested\n* Improve handling of private-key\ - \ in github-app tests\n* Fix imports of the GitHub exceptions\n* Add\ - \ cryptography to dependencies to be able to authenticate as a github\ - \ app\n* Add test for github-app authentication\n* Add github_app_private_key_path\ - \ to GithubService\n* Document the `get_instances_from_dict`\n* Add\ - \ test for github app loading from dict\n* Improve __str__ for services\n\ - * Add method for loading services from dictionary\n* Add more gitlab\ - \ tests for service mapping\n* Remove repo specific methods from GitlabService\n\ - * Make the creation of gitlab objects lazy\n* Add tests for gitlab service-mapping\n\ - * Make the pagure service mapping more general\n* Add gitlab to service\ - \ mapping\n* Use non-None token for gitlab tests\n* tag tests added\n\ - * Save GitlabHttpError to response file\n* test responses added, test_nonexisting_file\ - \ fails\n* Fix loading of gitlab response files\n* Save responses for\ - \ gitlab\n* WIP: GitlabRelease, GitlabProject, GitlabUser added\n* WIP:\ - \ functions for gitlab\n* Run zuul tests both on pip and rpm\n* Remove\ - \ Jenkinsfile\n* [CONTRIBUTING.md] CentOS CI -> Zuul\n* pagure: use\ - \ web url in issue\n* [README.md] Zuul badge\n* removed Optional\n*\ - \ add suggested changes\n* edit_release as method, get_release changed\n\ - * add method edit_release\n* Rename get_pr_commits to get_all_pr_commits\n\ - * run tests on one repository\n* Better description\n* Add get_pr_commits\ - \ into abstract.py\n* Remove `assert commits` and check only first and\ - \ last commit\n* Update ogr/services/github.py\n* Add fnc for getting\ - \ all commits for PR\n* PersistenStorageException -> PersistentStorageException\n\ - * run pre-commit\n* git cherry-pick of PR#129 and make it works\n* Update\ - \ pagure.py\n* Update github.py\n* packit.yaml: propose_downstream:\ - \ s/_/-/\n\n\nYou can change it by editing `CHANGELOG.md` in the root\ - \ of this repository and pushing to `0.7.0-release` branch before merging\ - \ this PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-09-12T07:46:13Z' - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/190/comments - created_at: '2019-09-11T07:59:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/190/events - html_url: https://github.com/packit/ogr/pull/190 - id: 492078119 + body: '' + closed_at: '2020-02-06T12:47:41Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/322/comments + created_at: '2020-02-05T10:22:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/322/events + html_url: https://github.com/packit/ogr/pull/322 + id: 560273848 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed + - color: 18e033 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/190/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/322/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2MzIwNjY1 - number: 190 + node_id: MDExOlB1bGxSZXF1ZXN0MzcxMjkxODM1 + number: 322 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/190.diff - html_url: https://github.com/packit/ogr/pull/190 - patch_url: https://github.com/packit/ogr/pull/190.patch - url: https://api.github.com/repos/packit/ogr/pulls/190 + diff_url: https://github.com/packit/ogr/pull/322.diff + html_url: https://github.com/packit/ogr/pull/322 + patch_url: https://github.com/packit/ogr/pull/322.patch + url: https://api.github.com/repos/packit/ogr/pulls/322 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.7.0 release - updated_at: '2019-09-12T07:49:01Z' - url: https://api.github.com/repos/packit/ogr/issues/190 + title: Pre-commit changes + updated_at: '2020-02-06T12:47:46Z' + url: https://api.github.com/repos/packit/ogr/issues/322 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-09-11T07:59:58Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/188/comments - created_at: '2019-09-11T07:57:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/188/events - html_url: https://github.com/packit/ogr/issues/188 - id: 492077048 + author_association: CONTRIBUTOR + body: TomasTomecek vs Tomas Tomecek + closed_at: '2020-01-29T12:56:32Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/317/comments + created_at: '2020-01-28T15:19:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/317/events + html_url: https://github.com/packit/ogr/pull/317 + id: 556279456 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/188/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/317/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTIwNzcwNDg= - number: 188 + node_id: MDExOlB1bGxSZXF1ZXN0MzY4MDcxOTA1 + number: 317 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/317.diff + html_url: https://github.com/packit/ogr/pull/317 + patch_url: https://github.com/packit/ogr/pull/317.patch + url: https://api.github.com/repos/packit/ogr/pulls/317 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-09-11T07:59:58Z' - url: https://api.github.com/repos/packit/ogr/issues/188 + title: 'github.pr.author: use login instead of name' + updated_at: '2020-01-30T08:42:02Z' + url: https://api.github.com/repos/packit/ogr/issues/317 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -121582,249 +149804,209 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: I accidently deleted the testing repo, so I have regenerated the - tests on new repo [https://gitlab.com/packit-service/ogr-tests](url) - closed_at: '2019-09-11T06:44:23Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/187/comments - created_at: '2019-09-10T14:21:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/187/events - html_url: https://github.com/packit/ogr/pull/187 - id: 491705182 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/187/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-01-28T14:17:18Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/314/comments + created_at: '2020-01-28T14:05:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/314/events + html_url: https://github.com/packit/ogr/issues/314 + id: 556231299 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/314/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2MDIwMzM5 - number: 187 + node_id: MDU6SXNzdWU1NTYyMzEyOTk= + number: 314 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/187.diff - html_url: https://github.com/packit/ogr/pull/187 - patch_url: https://github.com/packit/ogr/pull/187.patch - url: https://api.github.com/repos/packit/ogr/pulls/187 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: tests on new repo - updated_at: '2019-09-11T06:44:23Z' - url: https://api.github.com/repos/packit/ogr/issues/187 + title: '[packit] Propose update failed for release 0.10.0' + updated_at: '2020-01-28T14:17:18Z' + url: https://api.github.com/repos/packit/ogr/issues/314 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #170 ' - closed_at: '2019-09-10T14:30:35Z' - comments: 24 - comments_url: https://api.github.com/repos/packit/ogr/issues/186/comments - created_at: '2019-09-10T10:45:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/186/events - html_url: https://github.com/packit/ogr/pull/186 - id: 491594645 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/186/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-01-28T14:17:12Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/315/comments + created_at: '2020-01-28T14:05:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/315/events + html_url: https://github.com/packit/ogr/issues/315 + id: 556231476 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/315/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTMwNzcy - number: 186 + node_id: MDU6SXNzdWU1NTYyMzE0NzY= + number: 315 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/186.diff - html_url: https://github.com/packit/ogr/pull/186 - patch_url: https://github.com/packit/ogr/pull/186.patch - url: https://api.github.com/repos/packit/ogr/pulls/186 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: method get_sha_from_tag - updated_at: '2019-09-10T14:30:35Z' - url: https://api.github.com/repos/packit/ogr/issues/186 + title: '[packit] Propose update failed for release 0.10.0' + updated_at: '2020-01-28T14:17:12Z' + url: https://api.github.com/repos/packit/ogr/issues/315 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "```python\r\n def get_sha_from_tag(self, tag_name: str) -> str:\r\ - \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html" - closed_at: '2019-09-10T14:30:35Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/170/comments - created_at: '2019-09-06T07:21:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/170/events - html_url: https://github.com/packit/ogr/issues/170 - id: 490171969 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/170/labels{/name} + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-01-28T14:17:02Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/316/comments + created_at: '2020-01-28T14:05:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/316/events + html_url: https://github.com/packit/ogr/issues/316 + id: 556231659 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/316/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzE5Njk= - number: 170 + node_id: MDU6SXNzdWU1NTYyMzE2NTk= + number: 316 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Implement GitLab method: get_sha_from_tag' - updated_at: '2019-09-10T14:30:35Z' - url: https://api.github.com/repos/packit/ogr/issues/170 + title: '[packit] Propose update failed for release 0.10.0' + updated_at: '2020-01-28T14:17:02Z' + url: https://api.github.com/repos/packit/ogr/issues/316 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #175 ' - closed_at: '2019-09-10T11:56:53Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/184/comments - created_at: '2019-09-10T10:04:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/184/events - html_url: https://github.com/packit/ogr/pull/184 - id: 491575224 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add tests for filtering\ + \ issues by author/assignee\n* Add filtering of issues by author/assignee\n\ + * Add response files\n* Add parameters to get_files method\n* WIP: add\ + \ method to list files\n* github: set repo & namespace when forking\n\ + * Implement get_tags for GithubProject\n* Fix update_pr_info (Pagure)\ + \ bug\n* Implement setters for Pagure PR\n* Implement Issue/PR setters\ + \ for Github/Gitlab\n* Add tests for PR/Issue setters for Github/Gitlab\n\ + * (#245) Improve Pagure's project_create* add reason of failure\n* Regenerate\ + \ gitlab tests after dep update\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.10.0-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-01-28T14:03:00Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/313/comments + created_at: '2020-01-27T11:51:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/313/events + html_url: https://github.com/packit/ogr/pull/313 + id: 555524947 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -121832,136 +150014,88 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/184/labels{/name} + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/313/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTE0OTk4 - number: 184 + node_id: MDExOlB1bGxSZXF1ZXN0MzY3NDUwNDkz + number: 313 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/184.diff - html_url: https://github.com/packit/ogr/pull/184 - patch_url: https://github.com/packit/ogr/pull/184.patch - url: https://api.github.com/repos/packit/ogr/pulls/184 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'gitlab: project info methods' - updated_at: '2019-09-10T11:56:53Z' - url: https://api.github.com/repos/packit/ogr/issues/184 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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} + diff_url: https://github.com/packit/ogr/pull/313.diff + html_url: https://github.com/packit/ogr/pull/313 + patch_url: https://github.com/packit/ogr/pull/313.patch + url: https://api.github.com/repos/packit/ogr/pulls/313 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.10.0 release + updated_at: '2020-01-28T14:05:46Z' + url: https://api.github.com/repos/packit/ogr/issues/313 + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/usercont-release-bot + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "```python\r\n def get_description(self) -> str:\r\n #\ - \ Probably something like this:\r\n # return self.gitlab_repo.attributes[\"\ - description\"]\r\n raise NotImplementedError()\r\n\r\n def\ - \ get_git_urls(self) -> Dict[str, str]:\r\n pass\r\n```\r\n\r\ - \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ - \n- https://docs.gitlab.com/ce/api/projects.html" - closed_at: '2019-09-10T11:56:53Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/175/comments - created_at: '2019-09-06T07:24:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/175/events - html_url: https://github.com/packit/ogr/issues/175 - id: 490173038 + body: Release-bot, it's time to work! + closed_at: '2020-01-27T11:51:57Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/312/comments + created_at: '2020-01-27T11:48:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/312/events + html_url: https://github.com/packit/ogr/issues/312 + id: 555523325 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/175/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/312/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzMwMzg= - number: 175 + node_id: MDU6SXNzdWU1NTU1MjMzMjU= + number: 312 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for project info - updated_at: '2019-09-10T11:56:53Z' - url: https://api.github.com/repos/packit/ogr/issues/175 + title: new minor release + updated_at: '2020-01-27T11:51:57Z' + url: https://api.github.com/repos/packit/ogr/issues/312 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -121982,16 +150116,24 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #176 ' - closed_at: '2019-09-10T11:44:36Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/185/comments - created_at: '2019-09-10T10:10:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/185/events - html_url: https://github.com/packit/ogr/pull/185 - id: 491578586 + author_association: CONTRIBUTOR + body: "Consider also other filtering options:\r\n\r\nThe options are:\r\ + \nhttps://github.com/PyGithub/PyGithub/blob/master/github/Repository.py#L2172-L2195" + closed_at: '2020-01-24T19:51:49Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/308/comments + created_at: '2020-01-16T10:24:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/308/events + html_url: https://github.com/packit/ogr/issues/308 + id: 550712442 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -121999,6 +150141,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: a2eeef default: false description: New feature or a request for enhancement. @@ -122006,6 +150155,49 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/308/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NTA3MTI0NDI= + number: 308 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Support listing issues based on creator + updated_at: '2020-01-24T19:51:49Z' + url: https://api.github.com/repos/packit/ogr/issues/308 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-01-21T11:27:06Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/297/comments + created_at: '2019-12-17T08:10:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/297/events + html_url: https://github.com/packit/ogr/pull/297 + id: 538905049 + labels: - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -122013,63 +150205,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/185/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/297/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTE3NzMx - number: 185 + node_id: MDExOlB1bGxSZXF1ZXN0MzUzOTcxMDUx + number: 297 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/185.diff - html_url: https://github.com/packit/ogr/pull/185 - patch_url: https://github.com/packit/ogr/pull/185.patch - url: https://api.github.com/repos/packit/ogr/pulls/185 + diff_url: https://github.com/packit/ogr/pull/297.diff + html_url: https://github.com/packit/ogr/pull/297 + patch_url: https://github.com/packit/ogr/pull/297.patch + url: https://api.github.com/repos/packit/ogr/pulls/297 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: method get_latest_release - updated_at: '2019-09-10T11:44:36Z' - url: https://api.github.com/repos/packit/ogr/issues/185 + title: Add method to list files + updated_at: '2020-01-21T11:27:06Z' + url: https://api.github.com/repos/packit/ogr/issues/297 user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -122087,89 +150240,18 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions type: User url: https://api.github.com/users/lbarcziova - author_association: MEMBER - body: "```python\r\n def get_latest_release(self) -> GitlabRelease:\r\ - \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-releases\r\ - \n- https://docs.gitlab.com/ee/api/releases/" - closed_at: '2019-09-10T11:44:35Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/176/comments - created_at: '2019-09-06T07:24:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/176/events - html_url: https://github.com/packit/ogr/issues/176 - id: 490173186 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/176/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0OTAxNzMxODY= - number: 176 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Implement GitLab method for latest release - updated_at: '2019-09-10T11:44:35Z' - url: https://api.github.com/repos/packit/ogr/issues/176 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Fix some typing issues in factory.py.\r\n\r\nReason: typing problems\ - \ in the packit code on top of it." - closed_at: '2019-09-10T11:00:14Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/183/comments - created_at: '2019-09-10T09:22:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/183/events - html_url: https://github.com/packit/ogr/pull/183 - id: 491553190 + body: 'Fixes #245' + closed_at: '2020-01-03T08:43:56Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/300/comments + created_at: '2019-12-30T18:09:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/300/events + html_url: https://github.com/packit/ogr/pull/300 + id: 543964942 labels: - color: 0e8a16 default: false @@ -122178,321 +150260,196 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/183/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/300/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1ODk3MjEz - number: 183 + node_id: MDExOlB1bGxSZXF1ZXN0MzU4MTc5NDg3 + number: 300 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/183.diff - html_url: https://github.com/packit/ogr/pull/183 - patch_url: https://github.com/packit/ogr/pull/183.patch - url: https://api.github.com/repos/packit/ogr/pulls/183 + diff_url: https://github.com/packit/ogr/pull/300.diff + html_url: https://github.com/packit/ogr/pull/300 + patch_url: https://github.com/packit/ogr/pull/300.patch + url: https://api.github.com/repos/packit/ogr/pulls/300 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix typing in factory - updated_at: '2019-09-10T11:21:08Z' - url: https://api.github.com/repos/packit/ogr/issues/183 + title: Add resolution of failure of Pagure's project_create + updated_at: '2020-01-16T10:43:12Z' + url: https://api.github.com/repos/packit/ogr/issues/300 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=open&sort=updated&direction=desc&page=2: - - metadata: - latency: 0.3834679126739502 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "*Updated by @lachmanfrantisek :*\r\n\r\nWe have a lot of methods\ - \ related to the permissions (e.g. who can merge/close,..)\r\n\r\nIt's\ - \ not consistent, let's clean that!\r\n\r\nFeel free to solve this in\ - \ smaller parts. Just write on what you are going to work...\r\n\r\n\ - AC:\r\n- [ ] Make sure, that we have all of the provided methods in\ - \ the `abstract.py`\r\n (raising the `NotImplementedError`)\r\n- [\ - \ ] Make sure, that we have all of these in all the implementations:\r\ - \n - [ ] GitLab\r\n - [ ] GitHub\r\n - [ ] Pagure\r\n- [ ] Deprecate\ - \ the project methods related to specific issue/pull-request.\r\n- [\ - \ ] Move helping methods to the base classes.\r\n - The only exception\ - \ is a more efficient solution in the code of the specific implementation.\r\ - \n - Example:\r\nhttps://github.com/packit-service/ogr/blob/89435655150b8dd79ef93209c3463585d0715e0d/ogr/services/github/project.py#L219-L220\r\ - \n\r\nThe progress is tracked in the following tables. (Any update in\ - \ the comments is appreciated.)\r\n\r\n| Project | `who_can_close_issue()\ - \ -> Set[str]` | `who_can_merge_pr() -> Set[str]` | `can_close_issue(username:\ - \ str) -> bool` | `can_merge_pr(username: str) -> bool` |\r\n| --- |\ - \ --- | --- | --- | --- |\r\n| abstract | :+1: | :+1: | :exclamation:\ - \ deprecate the `Issue` argument | \r\n| base | nothing | nothing |\ - \ implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\n\ - | GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |\r\n\r\n| Issue\ - \ | `who_can_close() -> Set[str]` | `can_close(username: str) -> bool`\ - \ |\r\n| --- | --- | --- |\r\n| abstract | ? | ? |\r\n| base | nothing\ - \ | implement here |\r\n| Github | ? | ? |\r\n| GitLab | ? | ? |\r\n\ - | Pagure | ? | ? |\r\n\r\n| PullRequest | `who_can_close() -> Set[str]`\ - \ | `who_can_merge() -> Set[str]` | `can_close(username: str) -> bool`\ - \ | `can_merge(username: str) -> bool` |\r\n| --- | --- | --- | ---\ - \ | --- |\r\n| abstract | ? | ? | ? | ? | \r\n| base | nothing | nothing\ - \ | implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\ - \n| GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |" - closed_at: null - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/100/comments - created_at: '2019-07-05T07:09:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/100/events - html_url: https://github.com/packit/ogr/issues/100 - id: 464495604 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 + author_association: MEMBER + body: '' + closed_at: '2020-01-03T10:13:00Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/298/comments + created_at: '2019-12-19T21:12:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/298/events + html_url: https://github.com/packit/ogr/pull/298 + id: 540569497 + labels: + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/100/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/298/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjQ0OTU2MDQ= - number: 100 + node_id: MDExOlB1bGxSZXF1ZXN0MzU1MzYwNjcy + number: 298 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/298.diff + html_url: https://github.com/packit/ogr/pull/298 + patch_url: https://github.com/packit/ogr/pull/298.patch + url: https://api.github.com/repos/packit/ogr/pulls/298 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: user's permissions on Issues/PRs - updated_at: '2020-06-01T08:47:32Z' - url: https://api.github.com/repos/packit/ogr/issues/100 + state: closed + title: Setters for Issue/PR + updated_at: '2020-01-16T10:43:08Z' + url: https://api.github.com/repos/packit/ogr/issues/298 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: "There is no documentation on how to use the library, currently.\ - \ A documentation will help people on how to use ogr, and showcase it's\ - \ features and functions.\r\n\r\nThis can be done by adding the wiki\ - \ pages (on Github), since the documentation might be quite long and\ - \ the Wiki will help in segregating several topics (for instance, how\ - \ to use ogr for GitHub, GitLab and Pagure).\r\n\r\n" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/53/comments - created_at: '2019-04-04T13:30:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/53/events - html_url: https://github.com/packit/ogr/issues/53 - id: 429280678 + author_association: MEMBER + body: "```\r\nName Stmts Miss Cover Missing\r\ + \n----------------------------------------------------------\r\nservices/github.py\ + \ 114 63 45% 17-19, 24-26, 30, 33-34, 41-42, 47, 51,\ + \ 58-61, 64, 67, 70, 73-79, 82-83, 86-87, 95-98, 108, 111, 114-115,\ + \ 118, 121, 124, 127-132, 135, 149, 170, 184, 193-203, 207-209, 212-213,\ + \ 216-217, 227, 230\r\nservices/gitlab.py 66 66 0%\ + \ 1-144\r\nservices/our_pagure.py 79 46 42% 33, 36-39,\ + \ 134-148, 160-176, 180-186, 249-256, 259-264, 267-270, 273, 276, 279-282,\ + \ 285-288, 291-294, 297-298\r\nutils.py 150 110\ + \ 27% 35-77, 82-83, 88-89, 94, 98-116, 120-130, 145-148, 163-165,\ + \ 169-176, 180-214, 219-248, 252, 260, 273\r\n```\r\n\r\nI know the\ + \ `gitlab` module is WIP, but the others deserve more tests IMHO" + closed_at: '2020-01-15T11:22:38Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/49/comments + created_at: '2019-03-26T14:47:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/49/events + html_url: https://github.com/packit/ogr/issues/49 + id: 425463412 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: bf6b0b + - color: 7057ff default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: 42e529 + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9d0c4 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/53/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/49/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjkyODA2Nzg= - number: 53 + node_id: MDU6SXNzdWU0MjU0NjM0MTI= + number: 49 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Add a documentation for API - updated_at: '2020-06-01T08:45:12Z' - url: https://api.github.com/repos/packit/ogr/issues/53 + state: closed + title: Modules with poor code coverage + updated_at: '2020-01-15T11:22:38Z' + url: https://api.github.com/repos/packit/ogr/issues/49 user: - avatar_url: https://avatars3.githubusercontent.com/u/31067398?v=4 - events_url: https://api.github.com/users/Aniket-Pradhan/events{/privacy} - followers_url: https://api.github.com/users/Aniket-Pradhan/followers - following_url: https://api.github.com/users/Aniket-Pradhan/following{/other_user} - gists_url: https://api.github.com/users/Aniket-Pradhan/gists{/gist_id} + 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/Aniket-Pradhan - id: 31067398 - login: Aniket-Pradhan - node_id: MDQ6VXNlcjMxMDY3Mzk4 - organizations_url: https://api.github.com/users/Aniket-Pradhan/orgs - received_events_url: https://api.github.com/users/Aniket-Pradhan/received_events - repos_url: https://api.github.com/users/Aniket-Pradhan/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/Aniket-Pradhan/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/Aniket-Pradhan/subscriptions + 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/Aniket-Pradhan + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Figure out how to handle releases in Pagure. - closed_at: null - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/112/comments - created_at: '2019-07-11T08:51:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/112/events - html_url: https://github.com/packit/ogr/issues/112 - id: 466754779 + author_association: CONTRIBUTOR + body: "TLDR: Investigate if it is possible to reset PR/commit flags. (*added\ + \ by @lachmanfrantisek*)\r\n\r\n----\r\n\r\nI solved a problem with\ + \ reset Copr build statuses.\r\nLike can be seen here: https://github.com/packit-service/hello-world/pull/9\r\ + \n\r\nIt would be nice to look at the possibility if in case of the\ + \ pull request is not created by a collaborator to get rid of check\ + \ statuses. Like nothing is shown and the pull request can not be merged." + closed_at: '2020-01-13T09:38:06Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/133/comments + created_at: '2019-07-23T07:53:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/133/events + html_url: https://github.com/packit/ogr/issues/133 + id: 471540158 labels: - - color: 134ac1 + - color: '000000' default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 1d76db default: false description: Related to Pagure implementation. @@ -122507,229 +150464,136 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + - color: ff9990 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/112/labels{/name} + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + labels_url: https://api.github.com/repos/packit/ogr/issues/133/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjY3NTQ3Nzk= - number: 112 + node_id: MDU6SXNzdWU0NzE1NDAxNTg= + number: 133 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Support releases in Pagure - updated_at: '2020-06-01T08:05:12Z' - url: https://api.github.com/repos/packit/ogr/issues/112 + state: closed + title: Look at possibility for reseting or get rid off checkes in GitHub + updated_at: '2020-01-13T09:38:06Z' + url: https://api.github.com/repos/packit/ogr/issues/133 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/phracek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Figure out how we can return data:\r\n- only when needed\r\n- only\ - \ a limited number of results at first\r\n\r\nAC:\r\n- Provide the same\ - \ API for users of all implementations (e.g. change lists to generators).\r\ - \n- Be transparent to user == download the additional data when the\ - \ user really needs them.\r\n - e.g. Use lazy properties where possible.\r\ - \n- Enable efficient filtering on the results / during the calls.\r\n" - closed_at: null - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/325/comments - created_at: '2020-02-13T18:52:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/325/events - html_url: https://github.com/packit/ogr/issues/325 - id: 564883774 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-01-09T08:17:00Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/305/comments + created_at: '2020-01-05T17:52:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/305/events + html_url: https://github.com/packit/ogr/pull/305 + id: 545446757 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: ff9990 - default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/325/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/305/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NjQ4ODM3NzQ= - number: 325 + node_id: MDExOlB1bGxSZXF1ZXN0MzU5MzIyMjQw + number: 305 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/305.diff + html_url: https://github.com/packit/ogr/pull/305 + patch_url: https://github.com/packit/ogr/pull/305.patch + url: https://api.github.com/repos/packit/ogr/pulls/305 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Laziness - updated_at: '2020-05-18T08:42:29Z' - url: https://api.github.com/repos/packit/ogr/issues/325 + state: closed + title: 'github: set repo & namespace when forking' + updated_at: '2020-01-09T08:40:00Z' + url: https://api.github.com/repos/packit/ogr/issues/305 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Shoudn't be this working?\r\n\r\nconfig:\r\n```\r\nauthentication:\r\ - \n git.stg.centos.org:\r\n instance_url: https://git.stg.centos.org\r\ - \n token: ---token---\r\n type: pagure\r\n```\r\nerror:\r\n```\r\ - \nAuthentication for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ - \ is missing in the config.\r\nTraceback (most recent call last):\r\n\ - \ File \"/home/sakalosj/projects/packit/packit/config/config.py\",\ - \ line 203, in _get_project\r\n url=url, custom_instances=self.services,\ - \ **get_project_kwargs\r\n File \"/home/sakalosj/projects/ogr/ogr/factory.py\"\ - , line 83, in get_project\r\n kls = get_service_class(url=url, service_mapping_update=service_mapping_update)\r\ - \n File \"/home/sakalosj/projects/ogr/ogr/factory.py\", line 144, in\ - \ get_service_class\r\n raise OgrException(\"No matching service\ - \ was found.\")\r\nogr.exceptions.OgrException: No matching service\ - \ was found.\r\n\r\nDuring handling of the above exception, another\ - \ exception occurred:\r\n\r\nTraceback (most recent call last):\r\n\ - \ File \"/home/sakalosj/projects/packit-service/tmp_local/runner.py\"\ - , line 63, in \r\n process_new_pr()\r\n File \"/home/sakalosj/projects/packit-service/tmp_local/runner.py\"\ - , line 22, in process_new_pr\r\n SteveJobs().process_message(event=new_pr,\ - \ source=\"centosmsg\")\r\n File \"/home/sakalosj/projects/packit-service/packit_service/worker/jobs.py\"\ - , line 320, in process_message\r\n if project:\r\n File \"/home/sakalosj/projects/packit/packit/config/config.py\"\ - , line 208, in _get_project\r\n raise PackitConfigException(msg,\ - \ ex)\r\npackit.exceptions.PackitConfigException: (\"Authentication\ - \ for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ - \ is missing in the config.\", OgrException('No matching service was\ - \ found.'))\r\n```" - closed_at: null - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/383/comments - created_at: '2020-04-15T21:50:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/383/events - html_url: https://github.com/packit/ogr/issues/383 - id: 600609280 + body: 'Fixes #303' + closed_at: '2020-01-06T08:18:34Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/304/comments + created_at: '2020-01-05T10:51:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/304/events + html_url: https://github.com/packit/ogr/pull/304 + id: 545401796 labels: - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/383/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/304/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDA2MDkyODA= - number: 383 + node_id: MDExOlB1bGxSZXF1ZXN0MzU5MjkwMzMz + number: 304 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/304.diff + html_url: https://github.com/packit/ogr/pull/304 + patch_url: https://github.com/packit/ogr/pull/304.patch + url: https://api.github.com/repos/packit/ogr/pulls/304 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Initializing service via get_instances_from_dict() not working - as expected - updated_at: '2020-04-23T11:27:50Z' - url: https://api.github.com/repos/packit/ogr/issues/383 + state: closed + title: Implement get_tags for GithubProject + updated_at: '2020-01-06T08:48:26Z' + url: https://api.github.com/repos/packit/ogr/issues/304 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos - site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -122747,29 +150611,25 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - author_association: MEMBER - body: "- [ ] Forward some object to the issue/pr/... instances to allow\ - \ connection to the service. (Classes are not only data-holders.)\r\n\ - - [ ] All ogr classes to have properties with setters allowing to update\ - \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ - - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ - \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ - \ \r\n" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments - created_at: '2019-06-25T13:15:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/86/events - html_url: https://github.com/packit/ogr/issues/86 - id: 460418171 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\nipdb> git_project \ + \ \ + \ \r\n\r\n\r\nipdb> git_project.get_tags \ + \ \r\n>\r\n\r\nipdb> git_project.get_tags() \ + \ \r\n*** NotImplementedError\r\n```" + closed_at: '2020-01-06T08:18:34Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/303/comments + created_at: '2020-01-03T14:36:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/303/events + html_url: https://github.com/packit/ogr/issues/303 + id: 545018569 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - color: '000000' default: false description: Related to GitHub implementation. @@ -122777,27 +150637,6 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: a2eeef default: false description: New feature or a request for enhancement. @@ -122805,726 +150644,59 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/303/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA0MTgxNzE= - number: 86 + node_id: MDU6SXNzdWU1NDUwMTg1Njk= + number: 303 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: object-specific methods bound to ogr classes - updated_at: '2020-03-27T13:50:33Z' - url: https://api.github.com/repos/packit/ogr/issues/86 + state: closed + title: get_tags is not implemented for GithubProject + updated_at: '2020-01-06T08:18:34Z' + url: https://api.github.com/repos/packit/ogr/issues/303 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "There are many warnings and errors when running `mypy` in a strict\ - \ mode. Each error can mean potentially problematic part of the code.\ - \ (The goal is to make the code better, not only to silence the mypy.)\ - \ \r\n\r\nIt would be nice to reduce the number of errors/warnings.\r\ - \n\r\nWhat you can do:\r\n- Run the mypy on the code:\r\n ```sh\r\n\ - \ mypy ogr --strict\r\n ```\r\n- pick an error/warning\r\n- try to\ - \ fix the problem which can mean\r\n - adding a type annotation\r\n\ - \ - changing the type annotation\r\n - adding some test for the input\ - \ and raising a propper exception\r\n - something else\r\n- send a\ - \ PR with the fix or raise an issue if you found some problem, that\ - \ cannot be easily fixed\r\n\r\nThis does not need to be done in one\ - \ PR. Also, one fixed error can be useful to us.\r\n\r\n
\r\n\ - 'mypy ogr --strict' output\r\n\r\n```\r\n$ mypy ogr\ - \ --strict\r\nogr/deprecation.py:23: error: Cannot find module named\ - \ 'deprecated'\r\nogr/deprecation.py:26: error: Function is missing\ - \ a type annotation\r\nogr/abstract.py:73: error: Function is missing\ - \ a return type annotation\r\nogr/abstract.py:94: error: Incompatible\ - \ return value type (got \"Optional[datetime]\", expected \"datetime\"\ - )\r\nogr/abstract.py:98: error: Incompatible return value type (got\ - \ \"Optional[datetime]\", expected \"datetime\")\r\nogr/abstract.py:104:\ - \ error: Incompatible return value type (got \"Optional[Any]\", expected\ - \ \"Issue\")\r\nogr/abstract.py:113: error: Incompatible return value\ - \ type (got \"Optional[Any]\", expected \"PullRequest\")\r\nogr/abstract.py:159:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/abstract.py:227:\ - \ error: Incompatible default for argument \"filter_regex\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:227:\ - \ error: Incompatible default for argument \"author\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/abstract.py:282: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/abstract.py:282: error: Untyped decorator makes function \"__init__\"\ - \ untyped\r\nogr/abstract.py:373: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1079: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1099: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1248: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/utils.py:28: error: Cannot find module named 'git'\r\n\ - ogr/read_only.py:52: error: Missing type parameters for generic type\ - \ \"Callable\"\r\nogr/read_only.py:66: error: Function is missing a\ - \ type annotation\r\nogr/read_only.py:68: error: Function is missing\ - \ a type annotation\r\nogr/read_only.py:157: error: Call to untyped\ - \ function \"deprecate_and_set_removal\" in typed context\r\nogr/read_only.py:157:\ - \ error: Untyped decorator makes function \"pr_create\" untyped\r\n\ - ogr/read_only.py:169: error: Incompatible default for argument \"fork_username\"\ - \ (default has type \"None\", argument has type \"str\")\r\nogr/read_only.py:187:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/read_only.py:208:\ - \ error: Incompatible default for argument \"commit\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/read_only.py:209: error:\ - \ Incompatible default for argument \"filename\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/read_only.py:210: error: Incompatible\ - \ default for argument \"row\" (default has type \"None\", argument\ - \ has type \"int\")\r\nogr/read_only.py:227: error: Returning Any from\ - \ function declared to return \"PullRequest\"\r\nogr/read_only.py:233:\ - \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/read_only.py:252: error: Returning Any from function declared\ - \ to return \"GitProject\"\r\nogr/factory.py:33: error: Function is\ - \ missing a return type annotation\r\nogr/factory.py:33: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/factory.py:57:\ - \ error: Function is missing a type annotation\r\nogr/factory.py:59:\ - \ error: Function is missing a return type annotation\r\nogr/factory.py:65:\ - \ error: Call to untyped function \"decorator_cover\" in typed context\r\ - \nogr/factory.py:68: error: Function is missing a type annotation for\ - \ one or more arguments\r\nogr/factory.py:70: error: Incompatible default\ - \ for argument \"service_mapping_update\" (default has type \"None\"\ - , argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:71:\ - \ error: Incompatible default for argument \"custom_instances\" (default\ - \ has type \"None\", argument has type \"Iterable[GitService]\")\r\n\ - ogr/factory.py:97: error: Item \"None\" of \"Optional[RepoUrl]\" has\ - \ no attribute \"get_instance_url\"\r\nogr/factory.py:103: error: Incompatible\ - \ default for argument \"service_mapping_update\" (default has type\ - \ \"None\", argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:125:\ - \ error: Incompatible default for argument \"service_mapping_update\"\ - \ (default has type \"None\", argument has type \"Dict[str, Type[GitService]]\"\ - )\r\nogr/factory.py:142: error: Implicit generic \"Any\". Use \"typing.Dict\"\ - \ and specify generic parameters\r\nogr/services/gitlab/comments.py:26:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/comments.py:41:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/comments.py:50: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/github/comments.py:25:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/comments.py:25:\ - \ note: See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports\r\ - \nogr/services/github/comments.py:38: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/comments.py:46:\ - \ error: Returning Any from function declared to return \"datetime\"\ - \r\nogr/services/base.py:64: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:64: error: Untyped decorator\ - \ makes function \"get_pr_comments\" untyped\r\nogr/services/base.py:65:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/base.py:70: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/base.py:70: error: Incompatible default for argument\ - \ \"author\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/base.py:83: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:83: error: Untyped decorator\ - \ makes function \"search_in_pr\" untyped\r\nogr/services/base.py:106:\ - \ error: Untyped decorator makes function \"pr_close\" untyped\r\nogr/services/base.py:107:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:107: error: Untyped decorator makes\ - \ function \"pr_close\" untyped\r\nogr/services/base.py:115: error:\ - \ Untyped decorator makes function \"pr_merge\" untyped\r\nogr/services/base.py:116:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:116: error: Untyped decorator makes\ - \ function \"pr_merge\" untyped\r\nogr/services/base.py:124: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:124: error: Untyped decorator makes function\ - \ \"get_pr_labels\" untyped\r\nogr/services/base.py:132: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:132: error: Untyped decorator makes function\ - \ \"add_pr_labels\" untyped\r\nogr/services/base.py:140: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:140: error: Untyped decorator makes function\ - \ \"get_pr_info\" untyped\r\nogr/services/base.py:148: error: Call to\ - \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:148: error: Untyped decorator makes function \"\ - update_pr_info\" untyped\r\nogr/services/base.py:158: error: Call to\ - \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:158: error: Untyped decorator makes function \"\ - get_all_pr_commits\" untyped\r\nogr/services/base.py:166: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:166: error: Untyped decorator makes function\ - \ \"_get_all_pr_comments\" untyped\r\nogr/services/base.py:174: error:\ - \ Untyped decorator makes function \"pr_comment\" untyped\r\nogr/services/base.py:178:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:178: error: Untyped decorator makes\ - \ function \"pr_comment\" untyped\r\nogr/services/base.py:187: error:\ - \ Incompatible default for argument \"commit\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/services/base.py:188: error:\ - \ Incompatible default for argument \"filename\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/services/base.py:189: error:\ - \ Incompatible default for argument \"row\" (default has type \"None\"\ - , argument has type \"int\")\r\nogr/services/base.py:193: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:193: error: Untyped decorator makes function\ - \ \"get_issue_comments\" untyped\r\nogr/services/base.py:194: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/base.py:201: error: Incompatible default for argument \"\ - filter_regex\" (default has type \"None\", argument has type \"str\"\ - )\r\nogr/services/base.py:203: error: Incompatible default for argument\ - \ \"author\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/base.py:207: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:207: error: Untyped decorator\ - \ makes function \"pr_create\" untyped\r\nogr/services/base.py:218:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:228:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:228: error: Untyped decorator makes\ - \ function \"can_close_issue\" untyped\r\nogr/services/base.py:236:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:236: error: Untyped decorator makes\ - \ function \"get_issue_info\" untyped\r\nogr/services/base.py:244: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:244: error: Untyped decorator makes function\ - \ \"_get_all_issue_comments\" untyped\r\nogr/services/base.py:252: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:252: error: Untyped decorator makes function\ - \ \"issue_comment\" untyped\r\nogr/services/base.py:260: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:260: error: Untyped decorator makes function\ - \ \"issue_close\" untyped\r\nogr/services/base.py:268: error: Call to\ - \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:268: error: Untyped decorator makes function \"\ - get_issue_labels\" untyped\r\nogr/services/base.py:276: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:276: error: Untyped decorator makes function\ - \ \"add_issue_labels\" untyped\r\nogr/services/base.py:330: error: Function\ - \ is missing a return type annotation\r\nogr/services/base.py:330: error:\ - \ Argument 1 of \"get_comments\" is incompatible with supertype \"PullRequest\"\ - ; supertype defines the argument type as \"Optional[str]\"\r\nogr/services/base.py:330:\ - \ error: Argument 3 of \"get_comments\" is incompatible with supertype\ - \ \"PullRequest\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/base.py:331: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/base.py:331: error: Incompatible default for\ - \ argument \"author\" (default has type \"None\", argument has type\ - \ \"str\")\r\nogr/services/base.py:336: error: Function is missing a\ - \ return type annotation\r\nogr/services/base.py:360: error: Incompatible\ - \ default for argument \"filter_regex\" (default has type \"None\",\ - \ argument has type \"str\")\r\nogr/services/base.py:360: error: Incompatible\ - \ default for argument \"author\" (default has type \"None\", argument\ - \ has type \"str\")\r\nogr/services/pagure/release.py:28: error: Name\ - \ 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:37:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:42:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/release.py:46:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:38:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:40:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/pull_request.py:44:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:44:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/pull_request.py:51:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:52: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:60:\ - \ error: Returning Any from function declared to return \"int\"\r\n\ - ogr/services/pagure/pull_request.py:64: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:80:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:81: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:89:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/pull_request.py:93: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:97:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/pull_request.py:106: error: Function is missing\ - \ a type annotation for one or more arguments\r\nogr/services/pagure/pull_request.py:106:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/pull_request.py:107: error: Returning\ - \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/pull_request.py:113:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:118:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/pull_request.py:139:\ - \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/services/pagure/pull_request.py:139: error: Call to untyped\ - \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:142:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:144:\ - \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/services/pagure/pull_request.py:144: error: Call to untyped\ - \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:147:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/pull_request.py:148: error: Name 'ogr_pagure.PagureProject'\ - \ is not defined\r\nogr/services/pagure/pull_request.py:160: error:\ - \ Call to untyped function \"PagurePullRequest\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:181: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:228:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:229: error: Returning Any from function\ - \ declared to return \"List[CommitFlag]\"\r\nogr/services/pagure/issue.py:33:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:35:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/issue.py:39:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/issue.py:39:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/issue.py:46:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/issue.py:47: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:51: error:\ - \ Returning Any from function declared to return \"int\"\r\nogr/services/pagure/issue.py:55:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/issue.py:60: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:66: error:\ - \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:67:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/issue.py:71: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:79: error:\ - \ Returning Any from function declared to return \"List[str]\"\r\nogr/services/pagure/issue.py:86:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:97:\ - \ error: Returning Any from function declared to return \"Issue\"\r\n\ - ogr/services/pagure/issue.py:97: error: Call to untyped function \"\ - PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:100:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:102:\ - \ error: Returning Any from function declared to return \"Issue\"\r\n\ - ogr/services/pagure/issue.py:102: error: Call to untyped function \"\ - PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:106:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:118:\ - \ error: Call to untyped function \"PagureIssue\" in typed context\r\ - \nogr/services/pagure/issue.py:121: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/flag.py:41: error:\ - \ Function is missing a return type annotation\r\nogr/services/pagure/flag.py:41:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/flag.py:42:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:43:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:44:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:45:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:46:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:49:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:58:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:64:\ - \ error: Incompatible default for argument \"percent\" (default has\ - \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/flag.py:66:\ - \ error: Incompatible default for argument \"uid\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:47:\ - \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:53:\ - \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:54:\ - \ error: Incompatible default for argument \"username\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:57:\ - \ error: Argument 3 to \"__init__\" of \"GitProject\" has incompatible\ - \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/pagure/project.py:64:\ - \ error: Incompatible types in assignment (expression has type \"Optional[str]\"\ - , variable has type \"str\")\r\nogr/services/pagure/project.py:88: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/pagure/project.py:93: error: Incompatible default for argument\ - \ \"method\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/pagure/project.py:94: error: Implicit generic \"Any\"\ - . Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/project.py:94:\ - \ error: Incompatible default for argument \"params\" (default has type\ - \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:95:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:95: error: Incompatible\ - \ default for argument \"data\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:96:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:108: error: Call to untyped\ - \ function \"_get_project_url\" in typed context\r\nogr/services/pagure/project.py:117:\ - \ error: Returning Any from function declared to return \"Dict[Any,\ - \ Any]\"\r\nogr/services/pagure/project.py:119: error: Function is missing\ - \ a type annotation for one or more arguments\r\nogr/services/pagure/project.py:124:\ - \ error: Incompatible default for argument \"method\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:125:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:125: error: Incompatible\ - \ default for argument \"params\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:126:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:126: error: Incompatible\ - \ default for argument \"data\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:139:\ - \ error: Call to untyped function \"_get_project_url\" in typed context\r\ - \nogr/services/pagure/project.py:148: error: Returning Any from function\ - \ declared to return \"RequestResponse\"\r\nogr/services/pagure/project.py:150:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/project.py:151:\ - \ error: Need type annotation for 'additional_parts' (hint: \"additional_parts:\ - \ List[] = ...\")\r\nogr/services/pagure/project.py:163: error:\ - \ Function is missing a return type annotation\r\nogr/services/pagure/project.py:169:\ - \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/pagure/project.py:172: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/project.py:172:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:175: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:176:\ - \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/pagure/project.py:180: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:189:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:195: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/pagure/project.py:216:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/project.py:226: error: Untyped decorator makes\ - \ function \"create_pr\" untyped\r\nogr/services/pagure/project.py:233:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:243:\ - \ error: Untyped decorator makes function \"fork_create\" untyped\r\n\ - ogr/services/pagure/project.py:275: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:281:\ - \ error: Returning Any from function declared to return \"Optional[PagureProject]\"\ - \r\nogr/services/pagure/project.py:290: error: Function is missing a\ - \ return type annotation\r\nogr/services/pagure/project.py:301: error:\ - \ Call to untyped function \"exists\" in typed context\r\nogr/services/pagure/project.py:301:\ - \ error: Item \"None\" of \"Optional[PagureProject]\" has no attribute\ - \ \"exists\"\r\nogr/services/pagure/project.py:304: error: Call to untyped\ - \ function \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:318:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:325: error: Returning Any from function\ - \ declared to return \"Dict[str, str]\"\r\nogr/services/pagure/project.py:335:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/project.py:353: error: Argument 3 of \"commit_comment\"\ - \ is incompatible with supertype \"GitProject\"; supertype defines the\ - \ argument type as \"Optional[str]\"\r\nogr/services/pagure/project.py:353:\ - \ error: Argument 4 of \"commit_comment\" is incompatible with supertype\ - \ \"GitProject\"; supertype defines the argument type as \"Optional[int]\"\ - \r\nogr/services/pagure/project.py:354: error: Incompatible default\ - \ for argument \"filename\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/pagure/project.py:354: error: Incompatible\ - \ default for argument \"row\" (default has type \"None\", argument\ - \ has type \"int\")\r\nogr/services/pagure/project.py:358: error: Untyped\ - \ decorator makes function \"set_commit_status\" untyped\r\nogr/services/pagure/project.py:366:\ - \ error: Incompatible default for argument \"percent\" (default has\ - \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/project.py:367:\ - \ error: Incompatible default for argument \"uid\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:440:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/user.py:31: error: Name 'ogr_pagure.PagureService'\ - \ is not defined\r\nogr/services/pagure/user.py:33: error: Name 'ogr_pagure.PagureService'\ - \ is not defined\r\nogr/services/pagure/user.py:43: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/pagure/service.py:42:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:44: error: Incompatible default for\ - \ argument \"token\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/pagure/service.py:81: error: Returning Any from\ - \ function declared to return \"bool\"\r\nogr/services/pagure/service.py:92:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:103: error: Item \"None\" of \"Optional[RepoUrl]\"\ - \ has no attribute \"repo\"\r\nogr/services/pagure/service.py:104: error:\ - \ Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"namespace\"\ - \r\nogr/services/pagure/service.py:105: error: Item \"None\" of \"Optional[RepoUrl]\"\ - \ has no attribute \"is_fork\"\r\nogr/services/pagure/service.py:106:\ - \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ - username\"\r\nogr/services/pagure/service.py:114: error: Function is\ - \ missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:115:\ - \ error: Incompatible default for argument \"method\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/service.py:115:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/service.py:115: error: Incompatible\ - \ default for argument \"params\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:116:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/service.py:149: error: Returning\ - \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/service.py:151:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:151:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:152: error: Incompatible default for\ - \ argument \"method\" (default has type \"None\", argument has type\ - \ \"str\")\r\nogr/services/pagure/service.py:152: error: Implicit generic\ - \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:152:\ - \ error: Incompatible default for argument \"params\" (default has type\ - \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:165:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:193: error: Function is missing a return\ - \ type annotation\r\nogr/services/pagure/service.py:196: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:209:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/service.py:219: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/service.py:221:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:230:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:272:\ - \ error: Argument 2 to \"__handle_project_create_fail\" of \"PagureService\"\ - \ has incompatible type \"Optional[str]\"; expected \"str\"\r\nogr/services/gitlab/user.py:28:\ - \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:30:\ - \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:37:\ - \ error: Function is missing a return type annotation\r\nogr/services/gitlab/user.py:41:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/user.py:44: error: Returning Any from function declared\ - \ to return \"str\"\r\nogr/services/gitlab/release.py:30: error: Name\ - \ 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/release.py:32:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/release.py:39: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/release.py:46: error: Function\ - \ is missing a return type annotation\r\nogr/services/gitlab/release.py:50:\ - \ error: Function is missing a return type annotation\r\nogr/services/gitlab/pull_request.py:26:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/pull_request.py:36:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:40:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:49: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/gitlab/pull_request.py:61:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:65: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:74:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:78: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:82:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:86: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/gitlab/pull_request.py:90:\ - \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/gitlab/pull_request.py:97: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/pull_request.py:102: error:\ - \ Incompatible default for argument \"fork_username\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/gitlab/pull_request.py:115:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:121:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:26:\ - \ error: Cannot find module named 'gitlab'\r\nogr/services/gitlab/issue.py:27:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/issue.py:41:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/issue.py:50: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/gitlab/issue.py:62: error:\ - \ Returning Any from function declared to return \"str\"\r\nogr/services/gitlab/issue.py:66:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/issue.py:75: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/issue.py:79: error:\ - \ Returning Any from function declared to return \"datetime\"\r\nogr/services/gitlab/issue.py:82:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/services/gitlab/issue.py:83:\ - \ error: Returning Any from function declared to return \"List[Any]\"\ - \r\nogr/services/gitlab/issue.py:89: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/issue.py:94: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/issue.py:102: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/flag.py:27: error: Cannot find\ - \ module named 'gitlab'\r\nogr/services/gitlab/flag.py:52: error: Function\ - \ is missing a return type annotation\r\nogr/services/gitlab/flag.py:52:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/gitlab/flag.py:53:\ - \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"sha\"\ - \r\nogr/services/gitlab/flag.py:54: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"status\"\r\nogr/services/gitlab/flag.py:55: error:\ - \ Item \"None\" of \"Optional[Any]\" has no attribute \"name\"\r\nogr/services/gitlab/flag.py:56:\ - \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ - \r\nogr/services/gitlab/flag.py:57: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"id\"\r\nogr/services/gitlab/flag.py:58: error:\ - \ Item \"None\" of \"Optional[Any]\" has no attribute \"target_url\"\ - \r\nogr/services/gitlab/flag.py:61: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/flag.py:76: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/project.py:26: error: Cannot\ - \ find module named 'gitlab'\r\nogr/services/gitlab/project.py:27: error:\ - \ Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/project.py:53:\ - \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/project.py:55:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:58: error: Name 'ogr_gitlab.GitlabService'\ - \ is not defined\r\nogr/services/gitlab/project.py:126: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/gitlab/project.py:181:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:209: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/project.py:220:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:231:\ - \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ - \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/gitlab/project.py:231: error: Argument 4 of \"commit_comment\"\ - \ is incompatible with supertype \"GitProject\"; supertype defines the\ - \ argument type as \"Optional[int]\"\r\nogr/services/gitlab/project.py:232:\ - \ error: Incompatible default for argument \"filename\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:232:\ - \ error: Incompatible default for argument \"row\" (default has type\ - \ \"None\", argument has type \"int\")\r\nogr/services/gitlab/project.py:317:\ - \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:323:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:331: error: Incompatible default for\ - \ argument \"filter_regex\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/gitlab/project.py:389: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/services/gitlab/project.py:395:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:413: error: Function is missing a return\ - \ type annotation\r\nogr/services/gitlab/project.py:437: error: Function\ - \ is missing a type annotation\r\nogr/services/gitlab/project.py:449:\ - \ error: Call to untyped function \"_normalize_label_color\" in typed\ - \ context\r\nogr/services/gitlab/project.py:462: error: Function is\ - \ missing a type annotation\r\nogr/services/gitlab/project.py:468: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/gitlab/project.py:473: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:492:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/service.py:23: error: Cannot find module named 'gitlab'\r\ - \nogr/services/gitlab/service.py:36: error: Function is missing a type\ - \ annotation\r\nogr/services/gitlab/service.py:71: error: Returning\ - \ Any from function declared to return \"bool\"\r\nogr/services/gitlab/service.py:80:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/service.py:91: error: Argument 2 of \"project_create\"\ - \ is incompatible with supertype \"GitService\"; supertype defines the\ - \ argument type as \"Optional[str]\"\r\nogr/services/gitlab/service.py:91:\ - \ error: Incompatible default for argument \"namespace\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/github/release.py:23:\ - \ error: Cannot find module named 'github.GitRelease'\r\nogr/services/github/release.py:30:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/release.py:39:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/release.py:46:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/release.py:50:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/pull_request.py:27:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/pull_request.py:28:\ - \ error: Cannot find module named 'github.Label'\r\nogr/services/github/pull_request.py:29:\ - \ error: Cannot find module named 'github.PullRequest'\r\nogr/services/github/pull_request.py:43:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:47:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:55: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/github/pull_request.py:67:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:71: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/pull_request.py:79:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:83: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/pull_request.py:87:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:91: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/github/pull_request.py:102:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:107:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/github/pull_request.py:129:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:135:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:26:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/issue.py:27:\ - \ error: Cannot find module named 'github.Issue'\r\nogr/services/github/issue.py:40:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:51:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/issue.py:59: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/github/issue.py:67: error:\ - \ Returning Any from function declared to return \"str\"\r\nogr/services/github/issue.py:71:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/issue.py:79: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/issue.py:83: error:\ - \ Returning Any from function declared to return \"datetime\"\r\nogr/services/github/issue.py:86:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/services/github/issue.py:93:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:98:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:104:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/flag.py:25:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/flag.py:42:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/flag.py:42:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/github/flag.py:43:\ - \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"state\"\ - \r\nogr/services/github/flag.py:44: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"context\"\r\nogr/services/github/flag.py:45: error:\ - \ Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ - \r\nogr/services/github/flag.py:48: error: Name 'ogr_github.GithubProject'\ - \ is not defined\r\nogr/services/github/flag.py:61: error: Name 'ogr_github.GithubProject'\ - \ is not defined\r\nogr/services/github/project.py:26: error: Cannot\ - \ find module named 'github'\r\nogr/services/github/project.py:33: error:\ - \ Cannot find module named 'github.GitRelease'\r\nogr/services/github/project.py:60:\ - \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/project.py:62:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:65: error: Name 'ogr_github.GithubService'\ - \ is not defined\r\nogr/services/github/project.py:82: error: Function\ - \ is missing a return type annotation\r\nogr/services/github/project.py:99:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:150:\ - \ error: Returning Any from function declared to return \"bool\"\r\n\ - ogr/services/github/project.py:166: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/project.py:184:\ - \ error: Returning Any from function declared to return \"Optional[GithubProject]\"\ - \r\nogr/services/github/project.py:219: error: Function is missing a\ - \ type annotation for one or more arguments\r\nogr/services/github/project.py:222:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/github/project.py:261: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/github/project.py:271:\ - \ error: Untyped decorator makes function \"create_pr\" untyped\r\n\ - ogr/services/github/project.py:278: error: Incompatible default for\ - \ argument \"fork_username\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/github/project.py:289: error: Untyped\ - \ decorator makes function \"commit_comment\" untyped\r\nogr/services/github/project.py:294:\ - \ error: Incompatible default for argument \"filename\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:294:\ - \ error: Incompatible default for argument \"row\" (default has type\ - \ \"None\", argument has type \"int\")\r\nogr/services/github/project.py:314:\ - \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ - \nogr/services/github/project.py:315: error: Function is missing a return\ - \ type annotation\r\nogr/services/github/project.py:361: error: Untyped\ - \ decorator makes function \"fork_create\" untyped\r\nogr/services/github/project.py:372:\ - \ error: Argument \"repo\" to \"GithubProject\" has incompatible type\ - \ \"None\"; expected \"str\"\r\nogr/services/github/project.py:372:\ - \ error: Argument \"namespace\" to \"GithubProject\" has incompatible\ - \ type \"None\"; expected \"str\"\r\nogr/services/github/project.py:380:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:383:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:385: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/project.py:392:\ - \ error: Incompatible default for argument \"filter_regex\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:463:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:470:\ - \ error: Function is missing a type annotation\r\nogr/services/github/project.py:481:\ - \ error: Call to untyped function \"_normalize_label_color\" in typed\ - \ context\r\nogr/services/github/project.py:490: error: Function is\ - \ missing a type annotation\r\nogr/services/github/project.py:495: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/github/project.py:499: error: Returning Any from function\ - \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:502:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:506: error: Returning Any from function\ - \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:509:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:518: error: Argument \"git_tag\" to\ - \ \"_release_from_github_object\" of \"GithubProject\" has incompatible\ - \ type \"Optional[GitTag]\"; expected \"GitTag\"\r\nogr/services/github/project.py:524:\ - \ error: Argument \"git_tag\" to \"_release_from_github_object\" of\ - \ \"GithubProject\" has incompatible type \"Optional[GitTag]\"; expected\ - \ \"GitTag\"\r\nogr/services/github/project.py:532: error: Argument\ - \ \"git_tag\" to \"_release_from_github_object\" of \"GithubProject\"\ - \ has incompatible type \"Optional[GitTag]\"; expected \"GitTag\"\r\n\ - ogr/services/github/project.py:567: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/user.py:31: error:\ - \ Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:33:\ - \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:40:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/user.py:44:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/user.py:46: error: Return type \"Optional[str]\"\ - \ of \"get_email\" incompatible with return type \"str\" in supertype\ - \ \"GitUser\"\r\nogr/services/github/user.py:49: error: Returning Any\ - \ from function declared to return \"Optional[str]\"\r\nogr/services/github/user.py:58:\ - \ error: Returning Any from function declared to return \"Optional[str]\"\ - \r\nogr/services/github/user.py:61: error: Returning Any from function\ - \ declared to return \"Optional[str]\"\r\nogr/services/github/user.py:63:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/user.py:75:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/service.py:26:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/service.py:43:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/service.py:47: error: Incompatible default for\ - \ argument \"github_app_id\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/github/service.py:48: error: Incompatible\ - \ default for argument \"github_app_private_key\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/github/service.py:49:\ - \ error: Incompatible default for argument \"github_app_private_key_path\"\ - \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:64:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/service.py:105:\ - \ error: Returning Any from function declared to return \"bool\"\r\n\ - ogr/services/github/service.py:118: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/github/service.py:139:\ - \ error: Argument 2 of \"project_create\" is incompatible with supertype\ - \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/github/service.py:139: error: Incompatible default\ - \ for argument \"namespace\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/__init__.py:30: error: Module 'ogr.services.github'\ - \ has no attribute 'GithubService'\r\nogr/__init__.py:31: error: Module\ - \ 'ogr.services.pagure' has no attribute 'PagureService'\r\nogr/__init__.py:32:\ - \ error: Module 'ogr.services.gitlab' has no attribute 'GitlabService'\r\ - \nFound 439 errors in 30 files (checked 38 source files)\r\n```\r\n\ -
" - closed_at: null - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/251/comments - created_at: '2019-10-22T12:09:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/251/events - html_url: https://github.com/packit/ogr/issues/251 - id: 510612410 + author_association: CONTRIBUTOR + body: "this means to use standard-test-roles to wrap our tests so they\ + \ can run when we create PRs on dist-git\r\n\r\nsee [python-docker's\ + \ test wrapper](https://src.fedoraproject.org/rpms/python-docker/blob/master/f/tests)\ + \ for more details" + closed_at: '2020-01-03T14:54:39Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/29/comments + created_at: '2019-03-01T17:18:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/29/events + html_url: https://github.com/packit/ogr/issues/29 + id: 416200836 labels: - - color: 134ac1 + - color: a2eeef default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -123532,89 +150704,191 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 + - color: '000000' default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/251/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/29/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTA2MTI0MTA= - number: 251 + node_id: MDU6SXNzdWU0MTYyMDA4MzY= + number: 29 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Strict mypy - updated_at: '2020-02-14T08:32:52Z' - url: https://api.github.com/repos/packit/ogr/issues/251 + state: closed + title: run our tests in Fedora CI + updated_at: '2020-01-05T17:00:32Z' + url: https://api.github.com/repos/packit/ogr/issues/29 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "During the implementation of setters for PR for Pagure (#298) I've\ + \ found out that Pagure's API requires title to be given (which seems\ + \ a bit odd, since why would you need to give title when you want to\ + \ update only description).\r\n\r\nWill fix in PR above, just letting\ + \ know about the bug." + closed_at: '2020-01-03T10:13:01Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/299/comments + created_at: '2019-12-26T21:35:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/299/events + html_url: https://github.com/packit/ogr/issues/299 + id: 542675897 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/299/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NDI2NzU4OTc= + number: 299 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Updating PullRequest info (Pagure) + updated_at: '2020-01-03T10:13:01Z' + url: https://api.github.com/repos/packit/ogr/issues/299 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: started porting upsint to ogr and realized that I can't get all + labels defined on a repo + closed_at: '2020-01-03T09:14:39Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/301/comments + created_at: '2020-01-02T12:24:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/301/events + html_url: https://github.com/packit/ogr/issues/301 + id: 544558708 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/301/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NDQ1NTg3MDg= + number: 301 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'RFE: get repo labels' + updated_at: '2020-01-03T09:14:39Z' + url: https://api.github.com/repos/packit/ogr/issues/301 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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.2 + elapsed: 0.609634 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; + Date: Tue, 13 Apr 2021 18:00:45 GMT + ETag: W/"9d89544f5a8617e03c6c2c66880c44eb15b91c1d2e82f9417f9d737496e16747" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85EE:7CFE:F80734:191C3A6:6075DC4C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4641' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '359' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/user: - metadata: - latency: 0.41989803314208984 + latency: 0.22232484817504883 module_call_list: - unittest.case - requre.online_replacing @@ -123633,87 +150907,82 @@ requests.sessions: output: __store_indicator: 2 _content: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 bio: null - blog: https://gitlab.com/mfocko + blog: '' collaborators: 0 - company: Red Hat - created_at: '2014-07-13T12:54:55Z' - disk_usage: 27754 + company: null + created_at: '2016-07-04T02:12:46Z' + disk_usage: 2 email: null - events_url: https://api.github.com/users/mfocko/events{/privacy} - followers: 9 - followers_url: https://api.github.com/users/mfocko/followers - following: 68 - following_url: https://api.github.com/users/mfocko/following{/other_user} - gists_url: https://api.github.com/users/mfocko/gists{/gist_id} + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers: 0 + followers_url: https://api.github.com/users/bcrocker15/followers + following: 0 + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} gravatar_id: '' - hireable: true - html_url: https://github.com/mfocko - id: 8149784 - location: Brno, Czech Republic - login: mfocko - name: Matej Focko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - owned_private_repos: 7 + hireable: null + html_url: https://github.com/bcrocker15 + id: 20273495 + location: null + login: bcrocker15 + name: null + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + owned_private_repos: 1 plan: collaborators: 0 - name: pro - private_repos: 9999 + name: free + private_repos: 10000 space: 976562499 - private_gists: 4 - public_gists: 4 - public_repos: 16 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + private_gists: 0 + public_gists: 0 + public_repos: 8 + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions - total_private_repos: 7 - twitter_username: MatejFocko - two_factor_authentication: true + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + total_private_repos: 1 + twitter_username: null + two_factor_authentication: false type: User - updated_at: '2020-08-17T10:13:59Z' - url: https://api.github.com/users/mfocko + updated_at: '2021-03-30T15:22:21Z' + url: https://api.github.com/users/bcrocker15 _next: null - elapsed: 0.2 + elapsed: 0.222113 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 17:59:34 GMT + ETag: W/"19e013c511f532147b3edf82b4de9d3e23046dd9e861c2812dd1b70ec0cf42eb" + Last-Modified: Tue, 30 Mar 2021 15:22:21 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 85E7:5C94:7E47E3:1271EE2:6075DC06 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4981' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '19' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 diff --git a/tests/integration/github/test_data/test_issues/tests.integration.github.test_issues.Issues.test_issue_list_assignee.yaml b/tests/integration/github/test_data/test_issues/Issues.test_issue_list_assignee.yaml similarity index 81% rename from tests/integration/github/test_data/test_issues/tests.integration.github.test_issues.Issues.test_issue_list_assignee.yaml rename to tests/integration/github/test_data/test_issues/Issues.test_issue_list_assignee.yaml index 0e2796a9..7baf484e 100644 --- a/tests/integration/github/test_data/test_issues/tests.integration.github.test_issues.Issues.test_issue_list_assignee.yaml +++ b/tests/integration/github/test_data/test_issues/Issues.test_issue_list_assignee.yaml @@ -1,13 +1,13 @@ _requre: DataTypes: 1 key_strategy: StorageKeysInspectSimple - version_storage_file: 2 + version_storage_file: 3 requests.sessions: send: GET: https://api.github.com:443/repos/packit/ogr: - metadata: - latency: 0.3700244426727295 + latency: 0.3266563415527344 module_call_list: - unittest.case - requre.online_replacing @@ -41,7 +41,7 @@ requests.sessions: 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: master + 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 @@ -49,8 +49,8 @@ requests.sessions: downloads_url: https://api.github.com/repos/packit/ogr/downloads events_url: https://api.github.com/repos/packit/ogr/events fork: false - forks: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -59,7 +59,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -83,13 +83,13 @@ requests.sessions: milestones_url: https://api.github.com/repos/packit/ogr/milestones{/number} mirror_url: null name: ogr - network_count: 41 + network_count: 44 node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 organization: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -108,7 +108,7 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -127,19 +127,19 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit permissions: - admin: true + admin: false pull: true push: true private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} - subscribers_count: 12 + 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 @@ -147,54 +147,49 @@ requests.sessions: teams_url: https://api.github.com/repos/packit/ogr/teams temp_clone_token: '' trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 + watchers: 31 + watchers_count: 31 _next: null - elapsed: 0.2 + elapsed: 0.326405 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 09:31:43 GMT + Date: Tue, 13 Apr 2021 18:01:24 GMT + ETag: W/"95f0d5738207f9e17c286d4bb703af5bb10de00b556d9c187d77997fd8ed5342" + Last-Modified: Tue, 06 Apr 2021 07:07:27 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A4BA:1AC2292:6075DC73 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4503' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '497' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/107: - metadata: - latency: 0.3060579299926758 + latency: 0.19646859169006348 module_call_list: - unittest.case - requre.online_replacing @@ -214,7 +209,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -233,7 +228,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -267,7 +262,7 @@ requests.sessions: \ that.\r\n" closed_at: '2019-09-26T09:12:11Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -339,7 +334,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/107 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -358,49 +353,228 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.196282 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:26 GMT + ETag: W/"8b55b98ea37fbe1d572f20c58fd79ee1fb73584ef4c7aa73f2f5ab5323270f27" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A6A3:1AC25C4:6075DC76 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4489' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '511' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/126: + - metadata: + latency: 0.30204153060913086 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: COLLABORATOR + body: "We have `get_username` method in GitUser class. At the moment we\ + \ are missing method `get_email` for both ~~Github~~ and Pagure services.\r\ + \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" + closed_at: '2020-10-12T12:16:21Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments + created_at: '2019-07-18T07:56:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/126/events + html_url: https://github.com/packit/ogr/issues/126 + id: 469623000 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/126/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Njk2MjMwMDA= + number: 126 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: get_email for GitUser + updated_at: '2020-10-12T12:16:21Z' + url: https://api.github.com/repos/packit/ogr/issues/126 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + _next: null + elapsed: 0.301847 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:24 GMT + ETag: W/"ab76584da4be8abd2570b70dbbd698f06c4322f98bee31eee860298504015311" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 8849:3C2F:100A536:1AC2358:6075DC74 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4499' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '501' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/196: - metadata: - latency: 0.3002781867980957 + latency: 0.2946658134460449 module_call_list: - unittest.case - requre.online_replacing @@ -420,7 +594,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -439,7 +613,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -474,7 +648,7 @@ requests.sessions: \ the specific `ipynb` files." closed_at: '2020-08-13T10:28:26Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -546,7 +720,7 @@ requests.sessions: updated_at: '2020-08-13T10:28:26Z' url: https://api.github.com/repos/packit/ogr/issues/196 user: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 events_url: https://api.github.com/users/rpitonak/events{/privacy} followers_url: https://api.github.com/users/rpitonak/followers following_url: https://api.github.com/users/rpitonak/following{/other_user} @@ -565,49 +739,44 @@ requests.sessions: type: User url: https://api.github.com/users/rpitonak _next: null - elapsed: 0.2 + elapsed: 0.294463 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:25 GMT + ETag: W/"189cc5e4b8df8405b3a37dfc3b86638a802ae7e8fad4befc118422d88ea2eb24" + Last-Modified: Tue, 13 Apr 2021 14:48:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A574:1AC23C9:6075DC75 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4497' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '503' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/204: - metadata: - latency: 0.40382862091064453 + latency: 0.19898128509521484 module_call_list: - unittest.case - requre.online_replacing @@ -627,7 +796,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -646,7 +815,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -672,7 +841,7 @@ requests.sessions: \ least two tests for that (with and without specifying `namespace`)" closed_at: '2019-10-15T07:33:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -751,7 +920,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/204 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -770,49 +939,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.198794 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:26 GMT + ETag: W/"9d284ce065f224396bb84356f25b54c6ce9ac95a761679324d283fab1cec58e1" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A6C2:1AC25FE:6075DC76 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4488' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '512' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/205: - metadata: - latency: 0.24531078338623047 + latency: 0.2011575698852539 module_call_list: - unittest.case - requre.online_replacing @@ -832,7 +996,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -851,7 +1015,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -893,7 +1057,7 @@ requests.sessions: \ there" closed_at: '2019-10-03T14:35:15Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -986,7 +1150,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/205 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1005,49 +1169,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.200937 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:27 GMT + ETag: W/"88246cb718bdf7c050faa6a1ec05e619132e69fa8a6578c1260325927a6e1086" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A6E9:1AC2636:6075DC77 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4487' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '513' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/218: - metadata: - latency: 0.2768428325653076 + latency: 0.20404696464538574 module_call_list: - unittest.case - requre.online_replacing @@ -1067,7 +1226,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1086,7 +1245,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -1110,7 +1269,7 @@ requests.sessions: \ namespace (in case of Pagure projects)" closed_at: '2019-09-25T05:20:03Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -1189,7 +1348,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/218 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1208,49 +1367,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.203832 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:27 GMT + ETag: W/"99e1317a02371f2fccdecb6dcd99c16963f2ef54fbe5c6ac88f14bed8644f881" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A709:1AC2673:6075DC77 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4486' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '514' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/232: - metadata: - latency: 0.37026405334472656 + latency: 0.19725275039672852 module_call_list: - unittest.case - requre.online_replacing @@ -1270,7 +1424,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1289,7 +1443,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -1321,7 +1475,7 @@ requests.sessions: \ of caller\r\n\r\nRelated to #86" closed_at: '2019-10-11T06:36:16Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -1393,7 +1547,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/232 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1412,49 +1566,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.197038 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:27 GMT + ETag: W/"c7db90ec3cf35feb9c10542ee9df91f916faa0d4d6d5343a82335b185f276f63" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A72E:1AC26B3:6075DC77 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4485' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '515' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/240: - metadata: - latency: 0.28997254371643066 + latency: 0.19975852966308594 module_call_list: - unittest.case - requre.online_replacing @@ -1474,7 +1623,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1493,7 +1642,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -1520,7 +1669,7 @@ requests.sessions: \n - [ ] gitlab\r\n - [ ] pagure" closed_at: '2019-10-15T10:49:50Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -1606,7 +1755,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:47Z' url: https://api.github.com/repos/packit/ogr/issues/240 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1625,49 +1774,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.199446 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:26 GMT + ETag: W/"0c21b88f25a24de69cf760638f3a0f6b278578516cc32c95a09a602fae75200d" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A673:1AC257E:6075DC76 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4490' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '510' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/253: - metadata: - latency: 0.30431079864501953 + latency: 0.20270633697509766 module_call_list: - unittest.case - requre.online_replacing @@ -1687,7 +1831,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1706,7 +1850,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -1733,7 +1877,7 @@ requests.sessions: Blocked by #121" closed_at: '2019-11-26T08:52:22Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -1826,7 +1970,7 @@ requests.sessions: updated_at: '2019-11-26T08:52:22Z' url: https://api.github.com/repos/packit/ogr/issues/253 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1845,49 +1989,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.202529 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:26 GMT + ETag: W/"a62f42015149119bbab2058d8f5c56535292af6a5e035479fc11666da11e9037" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A656:1AC2549:6075DC76 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4491' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '509' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/254: - metadata: - latency: 0.2559478282928467 + latency: 0.1756737232208252 module_call_list: - unittest.case - requre.online_replacing @@ -1907,7 +2046,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1926,7 +2065,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -1954,7 +2093,7 @@ requests.sessions: \nPart of #86\r\nBlocked by #121" closed_at: '2019-11-29T10:21:52Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -2047,7 +2186,7 @@ requests.sessions: updated_at: '2019-11-29T10:21:52Z' url: https://api.github.com/repos/packit/ogr/issues/254 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -2066,49 +2205,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.175488 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:26 GMT + ETag: W/"d12cce11e24ea614bdee384e3d6eb26978d7ac57cfcd51ed53818581ae2ea77e" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A635:1AC250F:6075DC76 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4492' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '508' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/255: - metadata: - latency: 0.23151850700378418 + latency: 0.1491546630859375 module_call_list: - unittest.case - requre.online_replacing @@ -2128,7 +2262,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -2147,7 +2281,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -2172,7 +2306,7 @@ requests.sessions: \ to `PR`\r\n blocked by #254" closed_at: '2019-12-03T11:21:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -2251,7 +2385,7 @@ requests.sessions: updated_at: '2019-12-03T11:21:59Z' url: https://api.github.com/repos/packit/ogr/issues/255 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -2270,49 +2404,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.148985 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:26 GMT + ETag: W/"c412d872115c1d937e828cdb757d0f9fe3c55f577233f368aee2364feac1eef5" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A61F:1AC24E1:6075DC75 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4493' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '507' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/263: - metadata: - latency: 0.39844179153442383 + latency: 0.1202096939086914 module_call_list: - unittest.case - requre.online_replacing @@ -2332,7 +2461,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -2351,7 +2480,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -2422,7 +2551,7 @@ requests.sessions: updated_at: '2020-08-24T06:40:40Z' url: https://api.github.com/repos/packit/ogr/issues/263 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 events_url: https://api.github.com/users/svenharris/events{/privacy} followers_url: https://api.github.com/users/svenharris/followers following_url: https://api.github.com/users/svenharris/following{/other_user} @@ -2441,49 +2570,204 @@ requests.sessions: type: User url: https://api.github.com/users/svenharris _next: null - elapsed: 0.2 + elapsed: 0.120023 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:24 GMT + ETag: W/"81809e6d6b3bb5fa8ebe5276921e35924acb92b7b9610bbc9836e076a965461b" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 8849:3C2F:100A55F:1AC239F:6075DC74 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4498' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '502' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/330: + - metadata: + latency: 0.10225915908813477 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR + body: "AFAIK at the moment it is not possible to get the info about whether\ + \ the repository is private or not in pagure. Now we depend on the info\ + \ that in src.fedoraproject.org and pagure.io, the private repositories\ + \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" + closed_at: null + closed_by: null + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments + created_at: '2020-02-18T12:39:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/330/events + html_url: https://github.com/packit/ogr/issues/330 + id: 566865331 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/330/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NjY4NjUzMzE= + number: 330 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: better is_private method for pagure projects + updated_at: '2021-02-05T08:31:21Z' + url: https://api.github.com/repos/packit/ogr/issues/330 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + _next: null + elapsed: 0.102086 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 06:40:40 GMT + Date: Tue, 13 Apr 2021 18:01:24 GMT + ETag: W/"ddce3787a3fc9e6ce60343c79e40a65ed12633c63c569d871c981c6750b91d74" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A4FA:1AC2309:6075DC74 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4501' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '499' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/391: - metadata: - latency: 0.7053928375244141 + latency: 0.23157525062561035 module_call_list: - unittest.case - requre.online_replacing @@ -2503,7 +2787,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -2522,7 +2806,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -2546,7 +2830,7 @@ requests.sessions: \ have that on some other method." closed_at: '2020-04-22T13:38:46Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -2604,7 +2888,7 @@ requests.sessions: updated_at: '2020-04-22T13:38:46Z' url: https://api.github.com/repos/packit/ogr/issues/391 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2623,49 +2907,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.231406 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:25 GMT + ETag: W/"de307d1d98cc7d71d7b60b74a4d4c9bdff2f9b854ef60250b9569ec206c69772" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A5F1:1AC24A2:6075DC75 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4494' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '506' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/396: - metadata: - latency: 0.30129003524780273 + latency: 0.15122270584106445 module_call_list: - unittest.case - requre.online_replacing @@ -2685,7 +2964,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -2704,7 +2983,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -2730,7 +3009,7 @@ requests.sessions: \ ogr use apostrophes instead?" closed_at: '2020-04-26T19:23:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -2767,7 +3046,7 @@ requests.sessions: updated_at: '2020-04-26T19:23:07Z' url: https://api.github.com/repos/packit/ogr/issues/396 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -2786,49 +3065,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.151054 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:25 GMT + ETag: W/"21aa6dabead441ebc5382c21492aee87977c8c6ddb4dfa9ce02dd2059a06fc21" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A5D3:1AC2473:6075DC75 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4495' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '505' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/400: - metadata: - latency: 0.3975706100463867 + latency: 0.21702337265014648 module_call_list: - unittest.case - requre.online_replacing @@ -2848,7 +3122,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -2867,7 +3141,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -2898,7 +3172,7 @@ requests.sessions: \n - [ ] don't forget to support both and deprecate the old one" closed_at: '2020-04-30T16:23:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -2963,7 +3237,7 @@ requests.sessions: updated_at: '2020-04-30T16:23:19Z' url: https://api.github.com/repos/packit/ogr/issues/400 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2982,49 +3256,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.216838 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:25 GMT + ETag: W/"fe92ccdde369e18a48b046cdbf412e12ebf273d9ce33fd5be9fc448f2c663a90" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A5AB:1AC242A:6075DC75 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4496' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '504' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/86: - metadata: - latency: 0.303041934967041 + latency: 0.1157841682434082 module_call_list: - unittest.case - requre.online_replacing @@ -3044,7 +3313,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3063,7 +3332,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -3082,9 +3351,9 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko author_association: MEMBER - body: "- [ ] Forward some object to the issue/pr/... instances to allow\ + body: "- [x] Forward some object to the issue/pr/... instances to allow\ \ connection to the service. (Classes are not only data-holders.)\r\n\ - - [ ] All ogr classes to have properties with setters allowing to update\ + - [x] All ogr classes to have properties with setters allowing to update\ \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ @@ -3149,17 +3418,51 @@ requests.sessions: url: https://api.github.com/repos/packit/ogr/labels/triaged labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} locked: false - milestone: null + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 node_id: MDU6SXNzdWU0NjA0MTgxNzE= number: 86 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open title: object-specific methods bound to ogr classes - updated_at: '2020-03-27T13:50:33Z' + updated_at: '2021-02-04T19:34:29Z' url: https://api.github.com/repos/packit/ogr/issues/86 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3178,49 +3481,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.115588 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:24 GMT + ETag: W/"ff68db2cac4ecf77285ec29b17b05b9a7b06fad44311b6fbcc497d2f257eea67" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A50E:1AC2332:6075DC74 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4500' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '500' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues?state=all&assignee=mfocko&sort=updated&direction=desc: - metadata: - latency: 0.39485764503479004 + latency: 0.2673962116241455 module_call_list: - unittest.case - requre.online_replacing @@ -3239,7 +3537,7 @@ requests.sessions: _content: - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3258,7 +3556,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -3277,9 +3575,389 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko author_association: CONTRIBUTOR - body: "The current implementation of labels has no implementation of GitLabel\ - \ defined in the abstract classes, which would be consistent with what\ - \ is done for GitUser, GitProject etc. This is leading to inconsistent\ + body: "AFAIK at the moment it is not possible to get the info about whether\ + \ the repository is private or not in pagure. Now we depend on the info\ + \ that in src.fedoraproject.org and pagure.io, the private repositories\ + \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" + closed_at: null + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments + created_at: '2020-02-18T12:39:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/330/events + html_url: https://github.com/packit/ogr/issues/330 + id: 566865331 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/330/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NjY4NjUzMzE= + number: 330 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: better is_private method for pagure projects + updated_at: '2021-02-05T08:31:21Z' + url: https://api.github.com/repos/packit/ogr/issues/330 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "- [x] Forward some object to the issue/pr/... instances to allow\ + \ connection to the service. (Classes are not only data-holders.)\r\n\ + - [x] All ogr classes to have properties with setters allowing to update\ + \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ + - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ + \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ + \ \r\n" + closed_at: null + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments + created_at: '2019-06-25T13:15:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/86/events + html_url: https://github.com/packit/ogr/issues/86 + id: 460418171 + labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + locked: false + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0NjA0MTgxNzE= + number: 86 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: object-specific methods bound to ogr classes + updated_at: '2021-02-04T19:34:29Z' + url: https://api.github.com/repos/packit/ogr/issues/86 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: COLLABORATOR + body: "We have `get_username` method in GitUser class. At the moment we\ + \ are missing method `get_email` for both ~~Github~~ and Pagure services.\r\ + \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" + closed_at: '2020-10-12T12:16:21Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments + created_at: '2019-07-18T07:56:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/126/events + html_url: https://github.com/packit/ogr/issues/126 + id: 469623000 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/126/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Njk2MjMwMDA= + number: 126 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: get_email for GitUser + updated_at: '2020-10-12T12:16:21Z' + url: https://api.github.com/repos/packit/ogr/issues/126 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR + body: "The current implementation of labels has no implementation of GitLabel\ + \ defined in the abstract classes, which would be consistent with what\ + \ is done for GitUser, GitProject etc. This is leading to inconsistent\ \ typing in the library where we have the following function signatures\ \ within the codebase:\r\n\r\nabstract.py\r\n`def get_issue_labels(self,\ \ issue_id: int) -> List[Any]`\r\n\r\ngithub/project.py\r\n`def get_issue_labels(self,\ @@ -3328,7 +4006,7 @@ requests.sessions: updated_at: '2020-08-24T06:40:40Z' url: https://api.github.com/repos/packit/ogr/issues/263 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 events_url: https://api.github.com/users/svenharris/events{/privacy} followers_url: https://api.github.com/users/svenharris/followers following_url: https://api.github.com/users/svenharris/following{/other_user} @@ -3348,7 +4026,7 @@ requests.sessions: url: https://api.github.com/users/svenharris - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3367,7 +4045,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -3455,7 +4133,7 @@ requests.sessions: updated_at: '2020-08-13T10:28:26Z' url: https://api.github.com/repos/packit/ogr/issues/196 user: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 events_url: https://api.github.com/users/rpitonak/events{/privacy} followers_url: https://api.github.com/users/rpitonak/followers following_url: https://api.github.com/users/rpitonak/following{/other_user} @@ -3475,7 +4153,7 @@ requests.sessions: url: https://api.github.com/users/rpitonak - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3494,7 +4172,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -3571,7 +4249,7 @@ requests.sessions: updated_at: '2020-04-30T16:23:19Z' url: https://api.github.com/repos/packit/ogr/issues/400 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3591,7 +4269,7 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3610,7 +4288,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -3654,7 +4332,7 @@ requests.sessions: updated_at: '2020-04-26T19:23:07Z' url: https://api.github.com/repos/packit/ogr/issues/396 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -3674,7 +4352,7 @@ requests.sessions: url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3693,7 +4371,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -3756,141 +4434,7 @@ requests.sessions: updated_at: '2020-04-22T13:38:46Z' url: https://api.github.com/repos/packit/ogr/issues/391 user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: MEMBER - body: "- [ ] Forward some object to the issue/pr/... instances to allow\ - \ connection to the service. (Classes are not only data-holders.)\r\n\ - - [ ] All ogr classes to have properties with setters allowing to update\ - \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ - - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ - \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ - \ \r\n" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments - created_at: '2019-06-25T13:15:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/86/events - html_url: https://github.com/packit/ogr/issues/86 - id: 460418171 - labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NjA0MTgxNzE= - number: 86 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: object-specific methods bound to ogr classes - updated_at: '2020-03-27T13:50:33Z' - url: https://api.github.com/repos/packit/ogr/issues/86 - user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3910,7 +4454,7 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3929,7 +4473,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -4014,7 +4558,7 @@ requests.sessions: updated_at: '2019-12-03T11:21:59Z' url: https://api.github.com/repos/packit/ogr/issues/255 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4034,7 +4578,7 @@ requests.sessions: url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4053,7 +4597,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -4155,7 +4699,7 @@ requests.sessions: updated_at: '2019-11-29T10:21:52Z' url: https://api.github.com/repos/packit/ogr/issues/254 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4175,7 +4719,7 @@ requests.sessions: url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4194,7 +4738,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -4295,7 +4839,7 @@ requests.sessions: updated_at: '2019-11-26T08:52:22Z' url: https://api.github.com/repos/packit/ogr/issues/253 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4315,7 +4859,7 @@ requests.sessions: url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4334,7 +4878,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -4428,7 +4972,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:47Z' url: https://api.github.com/repos/packit/ogr/issues/240 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4448,7 +4992,7 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4467,7 +5011,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -4554,7 +5098,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/107 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -4574,7 +5118,7 @@ requests.sessions: url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4593,7 +5137,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -4679,7 +5223,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/204 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4699,7 +5243,7 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4718,7 +5262,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -4834,7 +5378,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/205 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4854,7 +5398,7 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4873,7 +5417,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -4957,7 +5501,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/218 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4977,7 +5521,7 @@ requests.sessions: url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4996,7 +5540,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -5081,7 +5625,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/232 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -5100,42 +5644,37 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.263093 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:01:24 GMT + ETag: W/"9ea5c8710ded0385a20ac975a4e1a3e013ad6b3cdf6ba29c4d316f9969c50031" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8849:3C2F:100A4CF:1AC22BD:6075DC74 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4502' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '498' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 diff --git a/tests/integration/github/test_data/test_issues/tests.integration.github.test_issues.Issues.test_issue_list_labels.yaml b/tests/integration/github/test_data/test_issues/Issues.test_issue_list_labels.yaml similarity index 82% rename from tests/integration/github/test_data/test_issues/tests.integration.github.test_issues.Issues.test_issue_list_labels.yaml rename to tests/integration/github/test_data/test_issues/Issues.test_issue_list_labels.yaml index 7e86570f..a8b5fb78 100644 --- a/tests/integration/github/test_data/test_issues/tests.integration.github.test_issues.Issues.test_issue_list_labels.yaml +++ b/tests/integration/github/test_data/test_issues/Issues.test_issue_list_labels.yaml @@ -1,13 +1,13 @@ _requre: DataTypes: 1 key_strategy: StorageKeysInspectSimple - version_storage_file: 2 + version_storage_file: 3 requests.sessions: send: GET: https://api.github.com:443/repos/packit/ogr: - metadata: - latency: 0.5587944984436035 + latency: 0.27649593353271484 module_call_list: - unittest.case - requre.online_replacing @@ -41,7 +41,7 @@ requests.sessions: 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: master + 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 @@ -49,8 +49,8 @@ requests.sessions: downloads_url: https://api.github.com/repos/packit/ogr/downloads events_url: https://api.github.com/repos/packit/ogr/events fork: false - forks: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -59,7 +59,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -83,13 +83,13 @@ requests.sessions: milestones_url: https://api.github.com/repos/packit/ogr/milestones{/number} mirror_url: null name: ogr - network_count: 41 + network_count: 44 node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 organization: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -108,7 +108,7 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -127,19 +127,19 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit permissions: - admin: true + admin: false pull: true push: true private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} - subscribers_count: 12 + 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 @@ -147,54 +147,49 @@ requests.sessions: teams_url: https://api.github.com/repos/packit/ogr/teams temp_clone_token: '' trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 + watchers: 31 + watchers_count: 31 _next: null - elapsed: 0.2 + elapsed: 0.265548 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 09:31:43 GMT + Date: Tue, 13 Apr 2021 18:01:30 GMT + ETag: W/"95f0d5738207f9e17c286d4bb703af5bb10de00b556d9c187d77997fd8ed5342" + Last-Modified: Tue, 06 Apr 2021 07:07:27 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B803:542219:6075DC79 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4484' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '516' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/100: - metadata: - latency: 0.29337573051452637 + latency: 0.10674047470092773 module_call_list: - unittest.case - requre.online_replacing @@ -268,6 +263,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -319,10 +321,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: user's permissions on Issues/PRs - updated_at: '2020-06-01T08:47:32Z' + updated_at: '2020-09-30T15:00:39Z' url: https://api.github.com/repos/packit/ogr/issues/100 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -341,49 +343,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.106523 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:32 GMT + ETag: W/"470db4a2c4ca9b0349b5273d8b92d6f6c0207d51617e43beb2446807bfa303a4" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B83C:5422B0:6075DC7C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4470' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '530' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/112: - metadata: - latency: 0.2929701805114746 + latency: 0.1488666534423828 module_call_list: - unittest.case - requre.online_replacing @@ -404,7 +401,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: Figure out how to handle releases in Pagure. closed_at: null closed_by: null @@ -415,13 +412,6 @@ requests.sessions: html_url: https://github.com/packit/ogr/issues/112 id: 466754779 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - color: 1d76db default: false description: Related to Pagure implementation. @@ -445,17 +435,51 @@ requests.sessions: url: https://api.github.com/repos/packit/ogr/labels/triaged labels_url: https://api.github.com/repos/packit/ogr/issues/112/labels{/name} locked: false - milestone: null + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 node_id: MDU6SXNzdWU0NjY3NTQ3Nzk= number: 112 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open title: Support releases in Pagure - updated_at: '2020-06-01T08:05:12Z' + updated_at: '2021-02-05T08:49:37Z' url: https://api.github.com/repos/packit/ogr/issues/112 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -474,49 +498,44 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova _next: null - elapsed: 0.2 + elapsed: 0.148652 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:01:31 GMT + ETag: W/"484d2d3ca2a1c77e1a9f1dd794aca94e05f186c44dbf1c49d47d8d923fd93406" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B820:54225B:6075DC7B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4477' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '523' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/116: - metadata: - latency: 0.2540864944458008 + latency: 0.35253071784973145 module_call_list: - unittest.case - requre.online_replacing @@ -542,7 +561,7 @@ requests.sessions: We need this for Pagure too. closed_at: '2019-07-12T21:58:49Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -600,7 +619,7 @@ requests.sessions: updated_at: '2019-07-12T21:59:06Z' url: https://api.github.com/repos/packit/ogr/issues/116 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -619,49 +638,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.352356 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:38 GMT + ETag: W/"f1fe054000294888a6ccee4b6a892a276e7b991a1b93ef10c8a246429c06f254" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B8B8:54241F:6075DC82 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4438' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '562' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/124: - metadata: - latency: 0.2928142547607422 + latency: 0.12148690223693848 module_call_list: - unittest.case - requre.online_replacing @@ -681,7 +695,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -700,7 +714,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -724,7 +738,7 @@ requests.sessions: \ the test responses." closed_at: '2019-08-13T07:11:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -803,7 +817,7 @@ requests.sessions: updated_at: '2019-08-13T07:11:39Z' url: https://api.github.com/repos/packit/ogr/issues/124 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -822,49 +836,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.121144 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:01:38 GMT + ETag: W/"07a0925e8f04ebd96988a629ad5eda856c750f6d020105fc40c0baf98a33533e" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B8B3:542412:6075DC81 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4440' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '560' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/126: - metadata: - latency: 0.2214350700378418 + latency: 0.12363433837890625 module_call_list: - unittest.case - requre.online_replacing @@ -883,15 +892,69 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: COLLABORATOR body: "We have `get_username` method in GitUser class. At the moment we\ - \ are missing method `get_email` for both Github and Pagure services.\r\ + \ are missing method `get_email` for both ~~Github~~ and Pagure services.\r\ \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" - closed_at: null - closed_by: null - comments: 6 + closed_at: '2020-10-12T12:16:21Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 11 comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments created_at: '2019-07-18T07:56:31Z' events_url: https://api.github.com/repos/packit/ogr/issues/126/events @@ -933,12 +996,12 @@ requests.sessions: number: 126 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: get_email for GitUser - updated_at: '2020-07-31T10:43:43Z' + updated_at: '2020-10-12T12:16:21Z' url: https://api.github.com/repos/packit/ogr/issues/126 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -957,49 +1020,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.123445 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:32 GMT + ETag: W/"ab76584da4be8abd2570b70dbbd698f06c4322f98bee31eee860298504015311" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B838:5422A6:6075DC7C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4471' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '529' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/133: - metadata: - latency: 0.25091028213500977 + latency: 0.20162510871887207 module_call_list: - unittest.case - requre.online_replacing @@ -1029,7 +1087,7 @@ requests.sessions: \ statuses. Like nothing is shown and the pull request can not be merged." closed_at: '2020-01-13T09:38:06Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1101,7 +1159,7 @@ requests.sessions: updated_at: '2020-01-13T09:38:06Z' url: https://api.github.com/repos/packit/ogr/issues/133 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -1120,49 +1178,44 @@ requests.sessions: type: User url: https://api.github.com/users/phracek _next: null - elapsed: 0.2 + elapsed: 0.20144 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 18:01:34 GMT + ETag: W/"97197892a244b6b9b58d5618d117a7574793bb1108ad13a1e51f9587faec6b29" + Last-Modified: Fri, 26 Mar 2021 11:22:47 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B86C:54234D:6075DC7E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4456' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '544' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/146: - metadata: - latency: 0.3015584945678711 + latency: 0.12263035774230957 module_call_list: - unittest.case - requre.online_replacing @@ -1193,7 +1246,7 @@ requests.sessions: \ So `i.url.replace('api/0/','')`. What is the intended behavior? " closed_at: '2019-08-15T07:11:15Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1251,7 +1304,7 @@ requests.sessions: updated_at: '2019-08-15T07:11:15Z' url: https://api.github.com/repos/packit/ogr/issues/146 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 events_url: https://api.github.com/users/dustymabe/events{/privacy} followers_url: https://api.github.com/users/dustymabe/followers following_url: https://api.github.com/users/dustymabe/following{/other_user} @@ -1270,49 +1323,44 @@ requests.sessions: type: User url: https://api.github.com/users/dustymabe _next: null - elapsed: 0.2 + elapsed: 0.122394 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 18 Aug 2020 18:39:23 GMT + Date: Tue, 13 Apr 2021 18:01:37 GMT + ETag: W/"42d36228e4a251f8169c7baae55480477dadcc94a3cd137c28bcfd28fd7eaf54" + Last-Modified: Mon, 12 Apr 2021 14:36:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B8B1:54240C:6075DC81 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4441' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '559' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/147: - metadata: - latency: 0.2940342426300049 + latency: 0.11151719093322754 module_call_list: - unittest.case - requre.online_replacing @@ -1346,7 +1394,7 @@ requests.sessions: \n- [ ] add tests for all of those\r\n\r\n" closed_at: null closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -1404,7 +1452,7 @@ requests.sessions: updated_at: '2020-06-29T06:46:49Z' url: https://api.github.com/repos/packit/ogr/issues/147 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 events_url: https://api.github.com/users/dustymabe/events{/privacy} followers_url: https://api.github.com/users/dustymabe/followers following_url: https://api.github.com/users/dustymabe/following{/other_user} @@ -1423,49 +1471,44 @@ requests.sessions: type: User url: https://api.github.com/users/dustymabe _next: null - elapsed: 0.2 + elapsed: 0.11127 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 18 Aug 2020 18:39:23 GMT + Date: Tue, 13 Apr 2021 18:01:33 GMT + ETag: W/"499d5185352c2af0de8b587bdc04685c25efb3a0873af1980a06bd7ff8203908" + Last-Modified: Mon, 12 Apr 2021 14:36:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B848:5422D1:6075DC7C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4467' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '533' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/161: - metadata: - latency: 0.2925412654876709 + latency: 0.26717376708984375 module_call_list: - unittest.case - requre.online_replacing @@ -1486,7 +1529,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "https://src.stg.fedoraproject.org/api/0/#pull-requests\r\n\r\n\ we just need to use the new fields such as repo_from which were added\ \ to the API in order to create PRs from forks to parent repos.\r\n\r\ @@ -1495,7 +1538,7 @@ requests.sessions: likely packit will need some code changes to support this" closed_at: '2019-09-09T08:16:38Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1560,7 +1603,7 @@ requests.sessions: updated_at: '2019-09-09T08:16:38Z' url: https://api.github.com/repos/packit/ogr/issues/161 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -1579,49 +1622,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.266904 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:37 GMT + ETag: W/"97907ef545cc11ad6ce33e066ab1f9ae9b1a4298cceabc68031fb3da69d633f5" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B8AC:5423F7:6075DC81 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4442' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '558' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/193: - metadata: - latency: 0.29961395263671875 + latency: 0.19849896430969238 module_call_list: - unittest.case - requre.online_replacing @@ -1652,7 +1690,7 @@ requests.sessions: \ ] release-bot\r\n - https://github.com/user-cont/release-bot/blob/master/release_bot/github.py#L308" closed_at: '2019-12-04T12:26:57Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1724,7 +1762,7 @@ requests.sessions: updated_at: '2019-12-04T12:26:57Z' url: https://api.github.com/repos/packit/ogr/issues/193 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1743,49 +1781,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.198304 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:35 GMT + ETag: W/"82f1efd452a4abb342a0e16392be5373013fef506118178ca60f3b02e5a0a303" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B872:542362:6075DC7F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4454' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '546' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/199: - metadata: - latency: 0.3008444309234619 + latency: 0.0978231430053711 module_call_list: - unittest.case - requre.online_replacing @@ -1840,6 +1873,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -1877,10 +1917,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Do not let the external exception go to the user - updated_at: '2020-06-16T12:56:15Z' + updated_at: '2020-09-30T14:57:41Z' url: https://api.github.com/repos/packit/ogr/issues/199 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1899,49 +1939,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.09764 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:32 GMT + ETag: W/"8c84af66c1ddc723abe89fe5b4a4974d56325d28c147432e8fc0907df39e7941" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B841:5422BD:6075DC7C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4469' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '531' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/204: - metadata: - latency: 0.2976841926574707 + latency: 0.14648079872131348 module_call_list: - unittest.case - requre.online_replacing @@ -1961,7 +1996,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -1980,7 +2015,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -2006,7 +2041,7 @@ requests.sessions: \ least two tests for that (with and without specifying `namespace`)" closed_at: '2019-10-15T07:33:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -2085,7 +2120,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/204 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2104,49 +2139,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.146265 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:37 GMT + ETag: W/"9d284ce065f224396bb84356f25b54c6ce9ac95a761679324d283fab1cec58e1" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B8A1:5423E4:6075DC81 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4445' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '555' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/205: - metadata: - latency: 0.2701587677001953 + latency: 0.14803338050842285 module_call_list: - unittest.case - requre.online_replacing @@ -2166,7 +2196,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -2185,7 +2215,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -2227,7 +2257,7 @@ requests.sessions: \ there" closed_at: '2019-10-03T14:35:15Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -2320,7 +2350,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/205 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2339,49 +2369,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.147083 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:37 GMT + ETag: W/"88246cb718bdf7c050faa6a1ec05e619132e69fa8a6578c1260325927a6e1086" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B8A4:5423E7:6075DC81 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4444' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '556' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/211: - metadata: - latency: 0.30182385444641113 + latency: 0.22434496879577637 module_call_list: - unittest.case - requre.online_replacing @@ -2412,7 +2437,7 @@ requests.sessions: \n" closed_at: '2020-03-03T15:49:36Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2498,7 +2523,7 @@ requests.sessions: updated_at: '2020-03-03T15:49:36Z' url: https://api.github.com/repos/packit/ogr/issues/211 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2517,49 +2542,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.224166 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:34 GMT + ETag: W/"d1f8cf815557194ff7f27e377c1b50211076efc3a2aaf6508f38649705af9dd1" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B863:542330:6075DC7E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4458' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '542' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/212: - metadata: - latency: 0.29431748390197754 + latency: 0.11499166488647461 module_call_list: - unittest.case - requre.online_replacing @@ -2588,9 +2608,27 @@ requests.sessions: Examples:\r\n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/commits\r\ \n- https://github.com/packit-service/ogr/pull/1/commits\r\n- https://pagure.io/ogr-tests/pull-request/7#commit_list\r\ \n" - closed_at: null - closed_by: null - comments: 5 + closed_at: '2021-02-03T19:24:22Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 9 comments_url: https://api.github.com/repos/packit/ogr/issues/212/comments created_at: '2019-09-19T18:48:58Z' events_url: https://api.github.com/repos/packit/ogr/issues/212/events @@ -2611,6 +2649,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -2639,6 +2684,13 @@ requests.sessions: name: low-prio node_id: MDU6TGFiZWwxNDMyNzc5MzQw url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale labels_url: https://api.github.com/repos/packit/ogr/issues/212/labels{/name} locked: false milestone: null @@ -2646,12 +2698,12 @@ requests.sessions: number: 212 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Add commits url to PullRequest class - updated_at: '2020-07-03T14:18:58Z' + updated_at: '2021-02-03T19:24:22Z' url: https://api.github.com/repos/packit/ogr/issues/212 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2670,49 +2722,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.114812 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:31 GMT + ETag: W/"9bb934c40c51e38d1f61d1d58836ea7c0d9a567c64d4c65432e2964388b6fe60" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B82A:542276:6075DC7B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4474' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '526' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/213: - metadata: - latency: 0.3164937496185303 + latency: 0.12432098388671875 module_call_list: - unittest.case - requre.online_replacing @@ -2745,7 +2792,7 @@ requests.sessions: \n- https://pagure.io/ogr-tests/" closed_at: '2019-09-24T08:53:16Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -2838,7 +2885,7 @@ requests.sessions: updated_at: '2019-09-25T06:07:53Z' url: https://api.github.com/repos/packit/ogr/issues/213 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2857,49 +2904,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.124139 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:37 GMT + ETag: W/"450a86cb6b68808bff70b5e038a8abce703eede6e50f97bcceb0f4bec4aab8fb" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B8A7:5423EC:6075DC81 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4443' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '557' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/215: - metadata: - latency: 0.29447412490844727 + latency: 0.12620759010314941 module_call_list: - unittest.case - requre.online_replacing @@ -2921,16 +2963,34 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Add method to project classes to delete project.\r\n\r\nAC:\r\n\ - - [ ] In each implementation, add the `delete` method to project class\ + body: "Add method to project classes to delete a project.\r\n\r\nAC:\r\ + \n- [ ] In each implementation, add the `delete` method to project class\ \ and implement it.\r\n - If possible/supported. (Document that if\ - \ it is not possible.)\r\n- [ ] Add tests for that.\r\n\r\nLinks:\r\n\ - - https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \ it is not possible and raise an exception with a good message.)\r\n\ + - [ ] Add tests for that.\r\n\r\nLinks:\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ \n- https://pagure.io/api/0/ (not found the possible API call for that\ \ on the first look)" - closed_at: null - closed_by: null + closed_at: '2020-10-21T11:18:39Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D comments: 8 comments_url: https://api.github.com/repos/packit/ogr/issues/215/comments created_at: '2019-09-20T05:36:56Z' @@ -2952,6 +3012,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -2987,12 +3054,12 @@ requests.sessions: number: 215 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Implement GitProject.delete() - updated_at: '2020-08-17T10:59:13Z' + updated_at: '2020-10-21T11:18:40Z' url: https://api.github.com/repos/packit/ogr/issues/215 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3011,49 +3078,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.126017 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:59:13 GMT + Date: Tue, 13 Apr 2021 18:01:32 GMT + ETag: W/"8299749c23bca23dae80126436dafdd9f2b789bfbf09572873e712084572cd19" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B82D:54227A:6075DC7B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4473' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '527' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/216: - metadata: - latency: 0.3470444679260254 + latency: 0.12038993835449219 module_call_list: - unittest.case - requre.online_replacing @@ -3073,7 +3135,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -3092,7 +3154,7 @@ requests.sessions: type: User url: https://api.github.com/users/shreyaspapi assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -3119,7 +3181,7 @@ requests.sessions: \n- https://pagure.io/api/0/ ( > Modify ACLs on a project ?)\r\n" closed_at: '2020-05-11T19:45:01Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -3198,7 +3260,7 @@ requests.sessions: updated_at: '2020-05-11T19:45:01Z' url: https://api.github.com/repos/packit/ogr/issues/216 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3217,49 +3279,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.120205 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 01:42:30 GMT + Date: Tue, 13 Apr 2021 18:01:33 GMT + ETag: W/"af0c314bc5f8e781233419e16ade879550ea6c27484f376ba73e1d0b603204b9" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B84C:5422E4:6075DC7D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4465' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '535' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/218: - metadata: - latency: 0.23111224174499512 + latency: 0.19745349884033203 module_call_list: - unittest.case - requre.online_replacing @@ -3279,7 +3336,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3298,7 +3355,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -3322,7 +3379,7 @@ requests.sessions: \ namespace (in case of Pagure projects)" closed_at: '2019-09-25T05:20:03Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -3401,7 +3458,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/218 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3420,49 +3477,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.197258 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:36 GMT + ETag: W/"99e1317a02371f2fccdecb6dcd99c16963f2ef54fbe5c6ac88f14bed8644f881" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B899:5423CE:6075DC80 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4447' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '553' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/230: - metadata: - latency: 0.29308605194091797 + latency: 0.11431694030761719 module_call_list: - unittest.case - requre.online_replacing @@ -3500,7 +3552,7 @@ requests.sessions: \ specific service could take the `raw_comment` in constructor?" closed_at: '2019-10-23T13:09:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -3579,7 +3631,7 @@ requests.sessions: updated_at: '2019-10-23T13:09:59Z' url: https://api.github.com/repos/packit/ogr/issues/230 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3598,49 +3650,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.114126 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:36 GMT + ETag: W/"2085dd0879384c393ffca146a2c4cf5bba4ccdf24d270edf533a1ee1cd110826" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B88F:5423A9:6075DC80 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4449' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '551' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/232: - metadata: - latency: 0.2614779472351074 + latency: 0.11777687072753906 module_call_list: - unittest.case - requre.online_replacing @@ -3660,7 +3707,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3679,7 +3726,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -3711,7 +3758,7 @@ requests.sessions: \ of caller\r\n\r\nRelated to #86" closed_at: '2019-10-11T06:36:16Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -3783,7 +3830,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/232 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3802,49 +3849,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.117603 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:37 GMT + ETag: W/"c7db90ec3cf35feb9c10542ee9df91f916faa0d4d6d5343a82335b185f276f63" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B89D:5423DA:6075DC80 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4446' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '554' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/240: - metadata: - latency: 0.2956111431121826 + latency: 0.376054048538208 module_call_list: - unittest.case - requre.online_replacing @@ -3864,7 +3906,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -3883,7 +3925,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -3910,7 +3952,7 @@ requests.sessions: \n - [ ] gitlab\r\n - [ ] pagure" closed_at: '2019-10-15T10:49:50Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -3996,7 +4038,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:47Z' url: https://api.github.com/repos/packit/ogr/issues/240 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4015,49 +4057,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.375862 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:36 GMT + ETag: W/"0c21b88f25a24de69cf760638f3a0f6b278578516cc32c95a09a602fae75200d" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B891:5423B5:6075DC80 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4448' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '552' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/245: - metadata: - latency: 0.2923455238342285 + latency: 0.20270061492919922 module_call_list: - unittest.case - requre.online_replacing @@ -4085,7 +4122,7 @@ requests.sessions: \n\r\n---\r\n\r\nThe follow-up to #242 ." closed_at: '2020-01-03T08:43:55Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -4136,7 +4173,7 @@ requests.sessions: updated_at: '2020-01-03T08:43:55Z' url: https://api.github.com/repos/packit/ogr/issues/245 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4155,49 +4192,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.202428 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:35 GMT + ETag: W/"21e4d259ef592e07715bc9219b5b4c892b77a55b1ff5435a87a4c71f71c106e3" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B86F:54235B:6075DC7F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4455' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '545' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/253: - metadata: - latency: 0.29236435890197754 + latency: 0.11493468284606934 module_call_list: - unittest.case - requre.online_replacing @@ -4217,7 +4249,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4236,7 +4268,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -4263,7 +4295,7 @@ requests.sessions: Blocked by #121" closed_at: '2019-11-26T08:52:22Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -4356,7 +4388,7 @@ requests.sessions: updated_at: '2019-11-26T08:52:22Z' url: https://api.github.com/repos/packit/ogr/issues/253 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4375,49 +4407,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.114747 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:36 GMT + ETag: W/"a62f42015149119bbab2058d8f5c56535292af6a5e035479fc11666da11e9037" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B88C:5423A0:6075DC80 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4450' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '550' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/254: - metadata: - latency: 0.2924675941467285 + latency: 0.12463641166687012 module_call_list: - unittest.case - requre.online_replacing @@ -4437,7 +4464,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4456,7 +4483,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -4484,7 +4511,7 @@ requests.sessions: \nPart of #86\r\nBlocked by #121" closed_at: '2019-11-29T10:21:52Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -4577,7 +4604,7 @@ requests.sessions: updated_at: '2019-11-29T10:21:52Z' url: https://api.github.com/repos/packit/ogr/issues/254 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4596,49 +4623,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.124459 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:35 GMT + ETag: W/"d12cce11e24ea614bdee384e3d6eb26978d7ac57cfcd51ed53818581ae2ea77e" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B87E:542377:6075DC7F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4452' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '548' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/255: - metadata: - latency: 0.3040165901184082 + latency: 0.1437680721282959 module_call_list: - unittest.case - requre.online_replacing @@ -4658,7 +4680,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4677,7 +4699,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -4702,7 +4724,7 @@ requests.sessions: \ to `PR`\r\n blocked by #254" closed_at: '2019-12-03T11:21:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -4781,7 +4803,7 @@ requests.sessions: updated_at: '2019-12-03T11:21:59Z' url: https://api.github.com/repos/packit/ogr/issues/255 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4800,49 +4822,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.143551 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:35 GMT + ETag: W/"c412d872115c1d937e828cdb757d0f9fe3c55f577233f368aee2364feac1eef5" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B877:54236E:6075DC7F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4453' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '547' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/302: - metadata: - latency: 0.29981327056884766 + latency: 0.19426178932189941 module_call_list: - unittest.case - requre.online_replacing @@ -4868,7 +4885,7 @@ requests.sessions: \ the API allows it.\r\n\r\nBlocked by: [Pagure's issue](https://pagure.io/pagure/issue/4704)" closed_at: '2020-04-20T12:38:20Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -4933,7 +4950,7 @@ requests.sessions: updated_at: '2020-04-20T12:38:20Z' url: https://api.github.com/repos/packit/ogr/issues/302 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -4952,49 +4969,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.194081 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:33 GMT + ETag: W/"5cfbe2f577d41cebbb57b0a1b0aca7e13f295f4e2e79ea6bfb35a49e10303db9" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B852:5422F1:6075DC7D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4463' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '537' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/308: - metadata: - latency: 0.2341938018798828 + latency: 0.2012653350830078 module_call_list: - unittest.case - requre.online_replacing @@ -5015,12 +5027,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Consider also other filtering options:\r\n\r\nThe options are:\r\ \nhttps://github.com/PyGithub/PyGithub/blob/master/github/Repository.py#L2172-L2195" closed_at: '2020-01-24T19:51:49Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -5085,7 +5097,7 @@ requests.sessions: updated_at: '2020-01-24T19:51:49Z' url: https://api.github.com/repos/packit/ogr/issues/308 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -5104,49 +5116,44 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.201088 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:01:34 GMT + ETag: W/"1d20d4d53f30b730aa89488f79623ff336bf1ee815b0a49563e858914935d98a" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B866:542344:6075DC7E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4457' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '543' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/310: - metadata: - latency: 0.3022744655609131 + latency: 0.11948394775390625 module_call_list: - unittest.case - requre.online_replacing @@ -5167,17 +5174,44 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Implement get_files() method in Pagure. - closed_at: null - closed_by: null - comments: 9 + author_association: CONTRIBUTOR + body: "Implement `get_files()` method in Pagure.\r\n\r\n- Structure can\ + \ be seen in the docstring of the code that implements that: https://pagure.io/pagure/blob/dd207ee/f/pagure/api/project.py#_709\r\ + \n- Example: https://pagure.io/api/0/pagure/tree\r\n" + closed_at: '2021-02-15T20:48:43Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/310/comments created_at: '2020-01-21T12:50:04Z' events_url: https://api.github.com/repos/packit/ogr/issues/310/events html_url: https://github.com/packit/ogr/issues/310 id: 552856957 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -5199,6 +5233,13 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -5213,12 +5254,12 @@ requests.sessions: number: 310 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Support get_files() in Pagure - updated_at: '2020-07-07T06:21:10Z' + updated_at: '2021-02-15T20:48:43Z' url: https://api.github.com/repos/packit/ogr/issues/310 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -5237,49 +5278,44 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova _next: null - elapsed: 0.2 + elapsed: 0.119304 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:01:31 GMT + ETag: W/"b69b8270a181ee52920c58b587d71959feafd55ca235d62bb735720c3eb37143" + Last-Modified: Tue, 09 Mar 2021 07:06:56 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B819:542251:6075DC7B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4479' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '521' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/329: - metadata: - latency: 0.253864049911499 + latency: 0.33912158012390137 module_call_list: - unittest.case - requre.online_replacing @@ -5299,43 +5335,43 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos - site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions - type: User - url: https://api.github.com/users/nasirhm + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos - site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions - type: User - url: https://api.github.com/users/nasirhm + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi author_association: CONTRIBUTOR body: "Is it possible to assign Issues to particular user-names using\ \ the issue object by any chance?\r\n\r\n#### Github\r\n- github-api:\ @@ -5353,9 +5389,27 @@ requests.sessions: \ tests for it\r\n- [ ] add the get/set property for the Issue classes\r\ \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ \ tests for it\r\n\r\n\r\nupdated by @lachmanfrantisek " - closed_at: null - closed_by: null - comments: 6 + closed_at: '2020-10-20T14:41:14Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/329/comments created_at: '2020-02-17T15:16:46Z' events_url: https://api.github.com/repos/packit/ogr/issues/329/events @@ -5376,11 +5430,18 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db + - color: be8fd8 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: a2eeef @@ -5411,12 +5472,12 @@ requests.sessions: number: 329 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Assigning Issues to based on usernames. - updated_at: '2020-07-17T06:32:56Z' + updated_at: '2020-10-20T14:41:14Z' url: https://api.github.com/repos/packit/ogr/issues/329 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} followers_url: https://api.github.com/users/saisankargochhayat/followers following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} @@ -5435,49 +5496,44 @@ requests.sessions: type: User url: https://api.github.com/users/saisankargochhayat _next: null - elapsed: 0.2 + elapsed: 0.338919 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 19:41:28 GMT + Date: Tue, 13 Apr 2021 18:01:32 GMT + ETag: W/"aa448dc93aff8f131aa1be3e47cddef66171d45d86e88900efc28703d8841bae" + Last-Modified: Tue, 13 Apr 2021 14:35:05 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B830:542286:6075DC7C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4472' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '528' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/330: - metadata: - latency: 0.21816778182983398 + latency: 0.1009521484375 module_call_list: - unittest.case - requre.online_replacing @@ -5496,16 +5552,52 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR body: "AFAIK at the moment it is not possible to get the info about whether\ \ the repository is private or not in pagure. Now we depend on the info\ \ that in src.fedoraproject.org and pagure.io, the private repositories\ \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" closed_at: null closed_by: null - comments: 4 + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments created_at: '2020-02-18T12:39:00Z' events_url: https://api.github.com/repos/packit/ogr/issues/330/events @@ -5519,6 +5611,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker - color: 42e529 default: false description: This issue was already processed and well defined. @@ -5535,10 +5634,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: better is_private method for pagure projects - updated_at: '2020-07-28T11:32:52Z' + updated_at: '2021-02-05T08:31:21Z' url: https://api.github.com/repos/packit/ogr/issues/330 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -5557,49 +5656,44 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.100786 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:01:31 GMT + ETag: W/"ddce3787a3fc9e6ce60343c79e40a65ed12633c63c569d871c981c6750b91d74" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B826:542267:6075DC7B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4476' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '524' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/331: - metadata: - latency: 0.2916269302368164 + latency: 0.1121211051940918 module_call_list: - unittest.case - requre.online_replacing @@ -5619,7 +5713,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -5638,7 +5732,7 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -5656,12 +5750,12 @@ requests.sessions: subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User url: https://api.github.com/users/sakalosj - author_association: MEMBER + author_association: CONTRIBUTOR body: pagure provides more detailed error info stored under 'errors' key, which is not currently not used in output closed_at: '2020-03-12T12:16:11Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -5713,7 +5807,7 @@ requests.sessions: updated_at: '2020-03-12T12:16:11Z' url: https://api.github.com/repos/packit/ogr/issues/331 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -5732,49 +5826,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.111927 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 18:01:34 GMT + ETag: W/"a10ef6f2e5565eac3a477444d92c6c3e13b927b9c939604fc1fc2536cbf8c33e" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B862:54232D:6075DC7E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4459' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '541' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/334: - metadata: - latency: 0.26230359077453613 + latency: 0.2707204818725586 module_call_list: - unittest.case - requre.online_replacing @@ -5794,7 +5883,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -5813,7 +5902,7 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + - 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} @@ -5831,13 +5920,13 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek - author_association: MEMBER + author_association: CONTRIBUTOR body: "edited by @lachmanfrantisek :\r\n\r\nTODO:\r\n- Add tests for https://github.com/packit-service/ogr/pull/333\ \ (better pagure error messages)\r\n - e.g. wrong URL, wrong token,\ \ not-found object,..." closed_at: '2020-04-09T11:55:54Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -5902,7 +5991,7 @@ requests.sessions: updated_at: '2020-04-09T11:55:54Z' url: https://api.github.com/repos/packit/ogr/issues/334 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -5921,49 +6010,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.270502 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:33 GMT + ETag: W/"162c7b9eaffb31207d7ded4ec16a8d816f26971f3ffddcb9f7b5e9528f6de53e" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B859:542311:6075DC7D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4461' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '539' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/338: - metadata: - latency: 0.7020690441131592 + latency: 0.11836004257202148 module_call_list: - unittest.case - requre.online_replacing @@ -5983,43 +6067,43 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos - site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions - type: User - url: https://api.github.com/users/dinolinjob + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos - site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions - type: User - url: https://api.github.com/users/dinolinjob + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 author_association: MEMBER body: "Multiple times in the code (mostly in the `parsing.py`), we need\ \ to parse the hostname of the instance.\r\n\r\n```python\r\nservice_repo_url\ @@ -6031,9 +6115,27 @@ requests.sessions: \n- [ ] hardcode the value for static instances (GitHub)\r\n- [ ] use\ \ that property in places, where we are getting hostname of the instance\r\ \n- [ ] create some unit tests for that" - closed_at: null - closed_by: null - comments: 4 + closed_at: '2020-09-18T14:55:56Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/338/comments created_at: '2020-02-21T08:57:50Z' events_url: https://api.github.com/repos/packit/ogr/issues/338/events @@ -6097,12 +6199,12 @@ requests.sessions: number: 338 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: hostname property in the service classes - updated_at: '2020-07-14T06:47:13Z' + updated_at: '2020-09-18T14:55:56Z' url: https://api.github.com/repos/packit/ogr/issues/338 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6121,49 +6223,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.11818 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 05:52:11 GMT + Date: Tue, 13 Apr 2021 18:01:32 GMT + ETag: W/"530fe08527cd0831c979cf17907404effdb9cf24a68696f072916385c441657b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B845:5422CB:6075DC7C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4468' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '532' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/339: - metadata: - latency: 0.30088138580322266 + latency: 0.1970963478088379 module_call_list: - unittest.case - requre.online_replacing @@ -6193,7 +6290,7 @@ requests.sessions: \ to the user." closed_at: '2020-04-07T12:06:30Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -6265,7 +6362,7 @@ requests.sessions: updated_at: '2020-04-07T12:06:30Z' url: https://api.github.com/repos/packit/ogr/issues/339 user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 events_url: https://api.github.com/users/cverna/events{/privacy} followers_url: https://api.github.com/users/cverna/followers following_url: https://api.github.com/users/cverna/following{/other_user} @@ -6284,49 +6381,44 @@ requests.sessions: type: User url: https://api.github.com/users/cverna _next: null - elapsed: 0.2 + elapsed: 0.196903 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 09:12:10 GMT + Date: Tue, 13 Apr 2021 18:01:34 GMT + ETag: W/"e018fb2de2ee635d353f785fd20861715eaa8ba5ff30e512cd5c1b3345a447c8" + Last-Modified: Mon, 12 Apr 2021 06:55:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B85C:54231E:6075DC7E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4460' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '540' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/344: - metadata: - latency: 0.2490396499633789 + latency: 0.11754751205444336 module_call_list: - unittest.case - requre.online_replacing @@ -6346,7 +6438,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 + avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 events_url: https://api.github.com/users/TomasJani/events{/privacy} followers_url: https://api.github.com/users/TomasJani/followers following_url: https://api.github.com/users/TomasJani/following{/other_user} @@ -6365,7 +6457,7 @@ requests.sessions: type: User url: https://api.github.com/users/TomasJani assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 events_url: https://api.github.com/users/TomasJani/events{/privacy} followers_url: https://api.github.com/users/TomasJani/followers following_url: https://api.github.com/users/TomasJani/following{/other_user} @@ -6392,7 +6484,7 @@ requests.sessions: \n- [x] tests for all implementations" closed_at: '2020-05-16T16:37:40Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -6478,7 +6570,7 @@ requests.sessions: updated_at: '2020-05-18T08:05:17Z' url: https://api.github.com/repos/packit/ogr/issues/344 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6497,49 +6589,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.117253 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 04 Aug 2020 10:09:27 GMT + Date: Tue, 13 Apr 2021 18:01:33 GMT + ETag: W/"94eedc26cf0b083b60644fce989272efd34e9095ccc11e11f4eef9d97791ca91" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B84A:5422D8:6075DC7D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4466' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '534' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/377: - metadata: - latency: 0.22809243202209473 + latency: 0.1999654769897461 module_call_list: - unittest.case - requre.online_replacing @@ -6560,12 +6647,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: PaureProject.get_files() not implemented. Maybe not possible because pagure api doesnt provide any possiblity to get repository content. closed_at: '2020-04-14T09:13:43Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6630,7 +6717,7 @@ requests.sessions: updated_at: '2020-04-14T09:13:43Z' url: https://api.github.com/repos/packit/ogr/issues/377 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -6649,49 +6736,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.199793 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 18:01:33 GMT + ETag: W/"43de849dc3d92584b2cb06e8b4af372f7fd3d20a0f2070c966f30de07c6818bf" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B855:5422F9:6075DC7D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4462' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '538' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/384: - metadata: - latency: 0.26088619232177734 + latency: 0.1029503345489502 module_call_list: - unittest.case - requre.online_replacing @@ -6719,7 +6801,7 @@ requests.sessions: \ flags easier." closed_at: null closed_by: null - comments: 2 + comments: 7 comments_url: https://api.github.com/repos/packit/ogr/issues/384/comments created_at: '2020-04-16T07:35:14Z' events_url: https://api.github.com/repos/packit/ogr/issues/384/events @@ -6763,10 +6845,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Create a class to hold information on pull-request flags - updated_at: '2020-08-24T06:39:05Z' + updated_at: '2021-03-08T17:43:30Z' url: https://api.github.com/repos/packit/ogr/issues/384 user: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -6785,49 +6867,44 @@ requests.sessions: type: User url: https://api.github.com/users/csomh _next: null - elapsed: 0.2 + elapsed: 0.102751 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 06:39:05 GMT + Date: Tue, 13 Apr 2021 18:01:31 GMT + ETag: W/"c26ef79c958d0e0bf0587c10ac71ec2be3e4b558ba55208bd1185f9610ee16cb" + Last-Modified: Thu, 01 Apr 2021 12:28:54 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B817:54224E:6075DC7B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4480' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '520' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/400: - metadata: - latency: 0.29340553283691406 + latency: 0.12369871139526367 module_call_list: - unittest.case - requre.online_replacing @@ -6847,7 +6924,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -6866,7 +6943,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -6897,7 +6974,7 @@ requests.sessions: \n - [ ] don't forget to support both and deprecate the old one" closed_at: '2020-04-30T16:23:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -6962,7 +7039,7 @@ requests.sessions: updated_at: '2020-04-30T16:23:19Z' url: https://api.github.com/repos/packit/ogr/issues/400 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6981,49 +7058,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.123516 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:33 GMT + ETag: W/"fe92ccdde369e18a48b046cdbf412e12ebf273d9ce33fd5be9fc448f2c663a90" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B850:5422EF:6075DC7D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4464' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '536' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/64: + https://api.github.com:443/repos/packit/ogr/issues/464: - metadata: - latency: 0.3012866973876953 + latency: 0.12542986869812012 module_call_list: - unittest.case - requre.online_replacing @@ -7044,38 +7116,75 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ - \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ - \nhas to be adapted, currenly I've added dependency on lower version\ - \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ - \nto avoid this issue." - closed_at: '2019-05-29T07:46:28Z' + author_association: NONE + body: "Sentry Issue: [RED-HAT-0P-2PA](https://sentry.io/organizations/red-hat-0p/issues/1785839618/?referrer=github_integration)\n\ + \n```\nRemoteDisconnected: Remote end closed connection without response\n\ + (2 additional frame(s) were not displayed)\n...\n File \"\"\ + , line 3, in raise_from\n # Permission is hereby granted, free of\ + \ charge, to any person obtaining a copy\n File \"urllib3/connectionpool.py\"\ + , line 416, in _make_request\n httplib_response = conn.getresponse()\n\ + \ File \"http/client.py\", line 1369, in getresponse\n response.begin()\n\ + \ File \"http/client.py\", line 310, in begin\n version, status,\ + \ reason = self._read_status()\n File \"http/client.py\", line 279,\ + \ in _read_status\n raise RemoteDisconnected(\"Remote end closed\ + \ connection without\"\n\nProtocolError: ('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))\n(6 additional frame(s)\ + \ were not displayed)\n...\n File \"\", line 3, in raise_from\n\ + \ # Permission is hereby granted, free of charge, to any person obtaining\ + \ a copy\n File \"urllib3/connectionpool.py\", line 416, in _make_request\n\ + \ httplib_response = conn.getresponse()\n File \"http/client.py\"\ + , line 1369, in getresponse\n response.begin()\n File \"http/client.py\"\ + , line 310, in begin\n version, status, reason = self._read_status()\n\ + \ File \"http/client.py\", line 279, in _read_status\n raise RemoteDisconnected(\"\ + Remote end closed connection without\"\n\nConnectionError: ('Connection\ + \ aborted.', RemoteDisconnected('Remote end closed connection without\ + \ response'))\n File \"ogr/services/pagure/service.py\", line 168,\ + \ in call_api_raw\n method=method, url=url, params=params, data=data\n\ + \ File \"ogr/services/pagure/service.py\", line 186, in get_raw_request\n\ + \ verify=not self.insecure,\n File \"requests/sessions.py\", line\ + \ 533, in request\n resp = self.send(prep, **send_kwargs)\n File\ + \ \"requests/sessions.py\", line 646, in send\n r = adapter.send(request,\ + \ **kwargs)\n File \"requests/adapters.py\", line 498, in send\n \ + \ raise ConnectionError(err, request=request)\n\nPagureAPIException:\ + \ (\"Cannot connect to url: 'https://git.stg.centos.org/api/0/source-git/acl/c/48d4feb54ebcb47cb593ab3c304ec36b755e8769/flag'.\"\ + , ConnectionError(ProtocolError('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))))\n(11 additional frame(s)\ + \ were not displayed)\n...\n File \"ogr/services/pagure/project.py\"\ + , line 464, in set_commit_status\n uid=uid,\n File \"ogr/services/pagure/flag.py\"\ + , line 88, in set\n \"c\", commit, \"flag\", method=\"POST\", data=data\n\ + \ File \"ogr/services/pagure/project.py\", line 129, in _call_project_api\n\ + \ url=request_url, method=method, params=params, data=data\n File\ + \ \"ogr/services/pagure/service.py\", line 128, in call_api\n response\ + \ = self.call_api_raw(url=url, method=method, params=params, data=data)\n\ + \ File \"ogr/services/pagure/service.py\", line 173, in call_api_raw\n\ + \ raise PagureAPIException(f\"Cannot connect to url: '{url}'.\",\ + \ er)\n```" + closed_at: '2021-02-12T12:22:11Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments - created_at: '2019-04-29T14:41:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/64/events - html_url: https://github.com/packit/ogr/issues/64 - id: 438351136 + url: https://api.github.com/users/mfocko + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/464/comments + created_at: '2020-09-16T07:25:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/464/events + html_url: https://github.com/packit/ogr/issues/464 + id: 702525467 labels: - color: 1d76db default: false @@ -7084,87 +7193,76 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/464/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzgzNTExMzY= - number: 64 + node_id: MDU6SXNzdWU3MDI1MjU0Njc= + number: 464 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'libpagure has changed ' - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/64 + title: '[Pagure] ProtocolError: (''Connection aborted.'', RemoteDisconnected(''Remote + end closed connection without response''))' + updated_at: '2021-02-12T12:22:11Z' + url: https://api.github.com/repos/packit/ogr/issues/464 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos - site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 + events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers + following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/sentry-io + id: 39604003 + login: sentry-io[bot] + node_id: MDM6Qm90Mzk2MDQwMDM= + organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events + repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/sentry-io%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.114905 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:01:31 GMT + ETag: W/"b15ec1eba19e61f4eb6d78f02e426d6b5b48ed01f7f8d5ac09714a3a8557ec8d" + Last-Modified: Fri, 12 Feb 2021 12:22:11 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B81C:542258:6075DC7B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4478' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '522' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/67: + https://api.github.com:443/repos/packit/ogr/issues/485: - metadata: - latency: 0.2912142276763916 + latency: 0.1645493507385254 module_call_list: - unittest.case - requre.online_replacing @@ -7183,137 +7281,166 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] + assignee: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar author_association: MEMBER - body: "While debugging https://github.com/packit-service/packit/issues/305\ - \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ - \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ - \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ attribute has a value `rpm/packit`, while libpagure probably expects\ - \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ - \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ - \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ - \ expects `/` in `self.repo`, which is probably not what `libpagure`\ - \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ - \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ - \ even more recently." - closed_at: '2019-05-29T07:46:28Z' - closed_by: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments - created_at: '2019-05-10T11:09:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/67/events - html_url: https://github.com/packit/ogr/issues/67 - id: 442664622 + body: "It would be nice to be able to list projects for given criteria:\r\ + \n\r\n- namespace\r\n- owner\r\n- search patter\r\n- order options (name,\ + \ update, activity, ...) (ascending x descending)\r\n- ... feel free\ + \ to add/propose more (we can implement only a subset for the first\ + \ version)\r\n\r\n\r\nAdd `list_projects` method:\r\n- [ ] to the `abstract.py`\ + \ to the `GitService` class\r\n- [ ] for each implementaion `GithubService`,\ + \ `GitlabService`, `PagureService`\r\n- [ ] implement all (or a subset)\ + \ of the options from the criteria list above" + closed_at: null + closed_by: null + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/485/comments + created_at: '2020-10-15T12:35:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/485/events + html_url: https://github.com/packit/ogr/issues/485 + id: 722295054 labels: - - color: 1d76db + - color: '000000' default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/485/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDI2NjQ2MjI= - number: 67 + node_id: MDU6SXNzdWU3MjIyOTUwNTQ= + number: 485 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: libpagure.Pagure expects '/' not in repo attribute - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/67 + state: open + title: Listing of the projects + updated_at: '2021-03-26T13:18:56Z' + url: https://api.github.com/repos/packit/ogr/issues/485 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.120606 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:01:30 GMT + ETag: W/"d62c8d939f94e3b8b231df4475be1307a6c408587d98d68d933d797518e65224" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B814:542241:6075DC7A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4481' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '519' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/74: + https://api.github.com:443/repos/packit/ogr/issues/64: - metadata: - latency: 0.3033163547515869 + latency: 0.1512608528137207 module_call_list: - unittest.case - requre.online_replacing @@ -7334,12 +7461,15 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ - \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" - closed_at: '2019-07-11T08:48:44Z' + author_association: CONTRIBUTOR + body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ + \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ + \nhas to be adapted, currenly I've added dependency on lower version\ + \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ + \nto avoid this issue." + closed_at: '2019-05-29T07:46:28Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -7357,20 +7487,13 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments - created_at: '2019-05-29T07:12:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/74/events - html_url: https://github.com/packit/ogr/issues/74 - id: 449635655 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments + created_at: '2019-04-29T14:41:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/64/events + html_url: https://github.com/packit/ogr/issues/64 + id: 438351136 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: 1d76db default: false description: Related to Pagure implementation. @@ -7378,101 +7501,82 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDk2MzU2NTU= - number: 74 + node_id: MDU6SXNzdWU0MzgzNTExMzY= + number: 64 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add a link to `GitTag` from `Release`. - updated_at: '2019-07-11T08:48:44Z' - url: https://api.github.com/repos/packit/ogr/issues/74 + title: 'libpagure has changed ' + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/64 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.150953 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:39 GMT + ETag: W/"30064b7d3456d857049cafc94791dd29cd04d57387275410becb238fd94c8e15" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B8CA:542461:6075DC83 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4434' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '566' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/86: + https://api.github.com:443/repos/packit/ogr/issues/67: - metadata: - latency: 0.29518961906433105 + latency: 0.24223756790161133 module_call_list: - unittest.case - requre.online_replacing @@ -7491,82 +7595,49 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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} + assignee: null + assignees: [] + author_association: MEMBER + body: "While debugging https://github.com/packit-service/packit/issues/305\ + \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ + \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ + \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ attribute has a value `rpm/packit`, while libpagure probably expects\ + \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ + \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ + \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ + \ expects `/` in `self.repo`, which is probably not what `libpagure`\ + \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ + \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ + \ even more recently." + closed_at: '2019-05-29T07:46:28Z' + closed_by: + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko - author_association: MEMBER - body: "- [ ] Forward some object to the issue/pr/... instances to allow\ - \ connection to the service. (Classes are not only data-holders.)\r\n\ - - [ ] All ogr classes to have properties with setters allowing to update\ - \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ - - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ - \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ - \ \r\n" - closed_at: null - closed_by: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments - created_at: '2019-06-25T13:15:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/86/events - html_url: https://github.com/packit/ogr/issues/86 - id: 460418171 - labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab + url: https://api.github.com/users/lachmanfrantisek + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments + created_at: '2019-05-10T11:09:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/67/events + html_url: https://github.com/packit/ogr/issues/67 + id: 442664622 + labels: - color: 1d76db default: false description: Related to Pagure implementation. @@ -7574,101 +7645,82 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA0MTgxNzE= - number: 86 + node_id: MDU6SXNzdWU0NDI2NjQ2MjI= + number: 67 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: object-specific methods bound to ogr classes - updated_at: '2020-03-27T13:50:33Z' - url: https://api.github.com/repos/packit/ogr/issues/86 + state: closed + title: libpagure.Pagure expects '/' not in repo attribute + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/67 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.242045 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:39 GMT + ETag: W/"a2e1cd1c698874d1ac7ff67b8a23a9443cfa8964be5814888c2d57f26491c02a" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B8CD:542467:6075DC83 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4433' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '567' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/87: + https://api.github.com:443/repos/packit/ogr/issues/74: - metadata: - latency: 0.30634140968322754 + latency: 0.21057343482971191 module_call_list: - unittest.case - requre.online_replacing @@ -7687,52 +7739,14 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "Add methods to `GithubProject`/`PagureProject` for editing title\ - \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ - \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ - \ information " - closed_at: '2019-06-28T06:51:21Z' + body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ + \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" + closed_at: '2019-07-11T08:48:44Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -7750,12 +7764,12 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments - created_at: '2019-06-26T07:17:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/87/events - html_url: https://github.com/packit/ogr/issues/87 - id: 460802132 + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments + created_at: '2019-05-29T07:12:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/74/events + html_url: https://github.com/packit/ogr/issues/74 + id: 449635655 labels: - color: '000000' default: false @@ -7785,19 +7799,26 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA4MDIxMzI= - number: 87 + node_id: MDU6SXNzdWU0NDk2MzU2NTU= + number: 74 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ' Update pull-request information' - updated_at: '2019-06-28T06:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/87 + title: Add a link to `GitTag` from `Release`. + updated_at: '2019-07-11T08:48:44Z' + url: https://api.github.com/repos/packit/ogr/issues/74 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -7816,49 +7837,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.210402 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:01:38 GMT + ETag: W/"975726ec8aeb3d52d10d4b73c344c4ac8951b74541d5e5930de8aa515e891e7c" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B8BD:54243B:6075DC82 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4437' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '563' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/88: + https://api.github.com:443/repos/packit/ogr/issues/86: - metadata: - latency: 0.23456025123596191 + latency: 0.22299885749816895 module_call_list: - unittest.case - requre.online_replacing @@ -7878,74 +7894,67 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + - 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/mfocko author_association: MEMBER - body: "It would be useful to have a method for getting the owner(s) of\ - \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ - \ `get_owners` and return list of strings." - closed_at: '2019-07-18T07:11:53Z' - closed_by: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments - created_at: '2019-06-26T07:44:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/88/events - html_url: https://github.com/packit/ogr/issues/88 - id: 460813032 + body: "- [x] Forward some object to the issue/pr/... instances to allow\ + \ connection to the service. (Classes are not only data-holders.)\r\n\ + - [x] All ogr classes to have properties with setters allowing to update\ + \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ + - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ + \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ + \ \r\n" + closed_at: null + closed_by: null + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments + created_at: '2019-06-25T13:15:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/86/events + html_url: https://github.com/packit/ogr/issues/86 + id: 460418171 labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC - color: '000000' default: false description: Related to GitHub implementation. @@ -7953,6 +7962,13 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 1d76db default: false description: Related to Pagure implementation. @@ -7960,6 +7976,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: a2eeef default: false description: New feature or a request for enhancement. @@ -7967,13 +7990,6 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -7981,19 +7997,53 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} locked: false - milestone: null - node_id: MDU6SXNzdWU0NjA4MTMwMzI= - number: 88 + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0NjA0MTgxNzE= + number: 86 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add get_owner/get_owners method to project classes - updated_at: '2019-07-18T07:11:53Z' - url: https://api.github.com/repos/packit/ogr/issues/88 + state: open + title: object-specific methods bound to ogr classes + updated_at: '2021-02-04T19:34:29Z' + url: https://api.github.com/repos/packit/ogr/issues/86 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8012,49 +8062,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.222818 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:31 GMT + ETag: W/"ff68db2cac4ecf77285ec29b17b05b9a7b06fad44311b6fbcc497d2f257eea67" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B828:54226C:6075DC7B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4475' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '525' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/90: + https://api.github.com:443/repos/packit/ogr/issues/87: - metadata: - latency: 0.29849672317504883 + latency: 0.1058039665222168 module_call_list: - unittest.case - requre.online_replacing @@ -8074,49 +8119,51 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + 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/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + 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/shreyanshrs44 + url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + - 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/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + 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/shreyanshrs44 + url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: It would be nice to implement `__str__` methods for all classes - (e.g. `GithubProject`, `Issue`,...). - closed_at: '2019-07-10T06:51:37Z' + body: "Add methods to `GithubProject`/`PagureProject` for editing title\ + \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ + \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ + \ information " + closed_at: '2019-06-28T06:51:21Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8134,12 +8181,12 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments - created_at: '2019-06-27T10:29:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/90/events - html_url: https://github.com/packit/ogr/issues/90 - id: 461449910 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments + created_at: '2019-06-26T07:17:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/87/events + html_url: https://github.com/packit/ogr/issues/87 + id: 460802132 labels: - color: '000000' default: false @@ -8155,6 +8202,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -8162,19 +8216,19 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE0NDk5MTA= - number: 90 + node_id: MDU6SXNzdWU0NjA4MDIxMzI= + number: 87 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: String representations for classes - updated_at: '2019-07-10T06:51:37Z' - url: https://api.github.com/repos/packit/ogr/issues/90 + title: ' Update pull-request information' + updated_at: '2019-06-28T06:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/87 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8193,56 +8247,52 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.104874 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:33:42 GMT + Date: Tue, 13 Apr 2021 18:01:38 GMT + ETag: W/"3e0ce9f7568aa5eb5375e46588be1f13c19af80c07f5f2296a2feeeea7c71205" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B8C6:542457:6075DC82 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4435' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '565' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues?state=all&labels=Pagure&sort=updated&direction=desc: + https://api.github.com:443/repos/packit/ogr/issues/88: - metadata: - latency: 0.6398200988769531 + latency: 0.11260151863098145 module_call_list: - unittest.case - requre.online_replacing - tests.integration.github.test_issues - ogr.services.github.project - ogr.services.github.issue - - github.PaginatedList + - github.Issue + - github.GithubObject - github.Requester - requests.sessions - requre.objects @@ -8252,22 +8302,83 @@ requests.sessions: output: __store_indicator: 2 _content: - - active_lock_reason: null - assignee: null - assignees: [] + active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm author_association: MEMBER - body: "In *Set PR flags in Pagure #381*, the `set_flag` method for Pagure\ - \ pull-requests was left to return the `dict` from the response. \r\n\ - \r\nWrap that response in a class to make working with these kind of\ - \ flags easier." - closed_at: null - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/384/comments - created_at: '2020-04-16T07:35:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/384/events - html_url: https://github.com/packit/ogr/issues/384 - id: 600814459 + body: "It would be useful to have a method for getting the owner(s) of\ + \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ + \ `get_owners` and return list of strings." + closed_at: '2019-07-18T07:11:53Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments + created_at: '2019-06-26T07:44:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/88/events + html_url: https://github.com/packit/ogr/issues/88 + id: 460813032 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: 1d76db default: false description: Related to Pagure implementation. @@ -8275,6 +8386,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -8289,7 +8407,426 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 + labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjA4MTMwMzI= + number: 88 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add get_owner/get_owners method to project classes + updated_at: '2019-07-18T07:11:53Z' + url: https://api.github.com/repos/packit/ogr/issues/88 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.112388 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:38 GMT + ETag: W/"706bb9a44272dc3beda64b5216d921e8e6ff33aa8c4ce1530006bb303c84a336" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 8872:1BB2:17B8B6:542416:6075DC82 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4439' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '561' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/90: + - metadata: + latency: 0.15448331832885742 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + author_association: MEMBER + body: It would be nice to implement `__str__` methods for all classes + (e.g. `GithubProject`, `Issue`,...). + closed_at: '2019-07-10T06:51:37Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments + created_at: '2019-06-27T10:29:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/90/events + html_url: https://github.com/packit/ogr/issues/90 + id: 461449910 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjE0NDk5MTA= + number: 90 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: String representations for classes + updated_at: '2019-07-10T06:51:37Z' + url: https://api.github.com/repos/packit/ogr/issues/90 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.154314 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:38 GMT + ETag: W/"b82d8503f56935c2de25774ecb3f682160c8b0c3be2bfa77b5228db7a4235c15" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 8872:1BB2:17B8C2:54244D:6075DC82 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4436' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '564' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues?state=all&labels=Pagure&sort=updated&direction=desc: + - metadata: + latency: 0.6063816547393799 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + author_association: MEMBER + body: "It would be nice to be able to list projects for given criteria:\r\ + \n\r\n- namespace\r\n- owner\r\n- search patter\r\n- order options (name,\ + \ update, activity, ...) (ascending x descending)\r\n- ... feel free\ + \ to add/propose more (we can implement only a subset for the first\ + \ version)\r\n\r\n\r\nAdd `list_projects` method:\r\n- [ ] to the `abstract.py`\ + \ to the `GitService` class\r\n- [ ] for each implementaion `GithubService`,\ + \ `GitlabService`, `PagureService`\r\n- [ ] implement all (or a subset)\ + \ of the options from the criteria list above" + closed_at: null + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/485/comments + created_at: '2020-10-15T12:35:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/485/events + html_url: https://github.com/packit/ogr/issues/485 + id: 722295054 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/485/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MjIyOTUwNTQ= + number: 485 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Listing of the projects + updated_at: '2021-03-26T13:18:56Z' + url: https://api.github.com/repos/packit/ogr/issues/485 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "In *Set PR flags in Pagure #381*, the `set_flag` method for Pagure\ + \ pull-requests was left to return the `dict` from the response. \r\n\ + \r\nWrap that response in a class to make working with these kind of\ + \ flags easier." + closed_at: null + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/384/comments + created_at: '2020-04-16T07:35:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/384/events + html_url: https://github.com/packit/ogr/issues/384 + id: 600814459 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 default: false description: Usability issue. id: 1432779464 @@ -8305,10 +8842,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Create a class to hold information on pull-request flags - updated_at: '2020-08-24T06:39:05Z' + updated_at: '2021-03-08T17:43:30Z' url: https://api.github.com/repos/packit/ogr/issues/384 user: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -8329,37 +8866,25 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Add method to project classes to delete project.\r\n\r\nAC:\r\n\ - - [ ] In each implementation, add the `delete` method to project class\ - \ and implement it.\r\n - If possible/supported. (Document that if\ - \ it is not possible.)\r\n- [ ] Add tests for that.\r\n\r\nLinks:\r\n\ - - https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ - \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ - \n- https://pagure.io/api/0/ (not found the possible API call for that\ - \ on the first look)" - closed_at: null - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/215/comments - created_at: '2019-09-20T05:36:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/215/events - html_url: https://github.com/packit/ogr/issues/215 - id: 496154927 + author_association: CONTRIBUTOR + body: "Implement `get_files()` method in Pagure.\r\n\r\n- Structure can\ + \ be seen in the docstring of the code that implements that: https://pagure.io/pagure/blob/dd207ee/f/pagure/api/project.py#_709\r\ + \n- Example: https://pagure.io/api/0/pagure/tree\r\n" + closed_at: '2021-02-15T20:48:43Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/310/comments + created_at: '2020-01-21T12:50:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/310/events + html_url: https://github.com/packit/ogr/issues/310 + id: 552856957 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b + - color: be8fd8 default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -8367,6 +8892,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker - color: a2eeef default: false description: New feature or a request for enhancement. @@ -8381,57 +8913,147 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 + - color: 42e529 default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/215/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/310/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTYxNTQ5Mjc= - number: 215 + node_id: MDU6SXNzdWU1NTI4NTY5NTc= + number: 310 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Implement GitProject.delete() - updated_at: '2020-08-17T10:59:13Z' - url: https://api.github.com/repos/packit/ogr/issues/215 + state: closed + title: Support get_files() in Pagure + updated_at: '2021-02-15T20:48:43Z' + url: https://api.github.com/repos/packit/ogr/issues/310 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/lbarcziova + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "Sentry Issue: [RED-HAT-0P-2PA](https://sentry.io/organizations/red-hat-0p/issues/1785839618/?referrer=github_integration)\n\ + \n```\nRemoteDisconnected: Remote end closed connection without response\n\ + (2 additional frame(s) were not displayed)\n...\n File \"\"\ + , line 3, in raise_from\n # Permission is hereby granted, free of\ + \ charge, to any person obtaining a copy\n File \"urllib3/connectionpool.py\"\ + , line 416, in _make_request\n httplib_response = conn.getresponse()\n\ + \ File \"http/client.py\", line 1369, in getresponse\n response.begin()\n\ + \ File \"http/client.py\", line 310, in begin\n version, status,\ + \ reason = self._read_status()\n File \"http/client.py\", line 279,\ + \ in _read_status\n raise RemoteDisconnected(\"Remote end closed\ + \ connection without\"\n\nProtocolError: ('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))\n(6 additional frame(s)\ + \ were not displayed)\n...\n File \"\", line 3, in raise_from\n\ + \ # Permission is hereby granted, free of charge, to any person obtaining\ + \ a copy\n File \"urllib3/connectionpool.py\", line 416, in _make_request\n\ + \ httplib_response = conn.getresponse()\n File \"http/client.py\"\ + , line 1369, in getresponse\n response.begin()\n File \"http/client.py\"\ + , line 310, in begin\n version, status, reason = self._read_status()\n\ + \ File \"http/client.py\", line 279, in _read_status\n raise RemoteDisconnected(\"\ + Remote end closed connection without\"\n\nConnectionError: ('Connection\ + \ aborted.', RemoteDisconnected('Remote end closed connection without\ + \ response'))\n File \"ogr/services/pagure/service.py\", line 168,\ + \ in call_api_raw\n method=method, url=url, params=params, data=data\n\ + \ File \"ogr/services/pagure/service.py\", line 186, in get_raw_request\n\ + \ verify=not self.insecure,\n File \"requests/sessions.py\", line\ + \ 533, in request\n resp = self.send(prep, **send_kwargs)\n File\ + \ \"requests/sessions.py\", line 646, in send\n r = adapter.send(request,\ + \ **kwargs)\n File \"requests/adapters.py\", line 498, in send\n \ + \ raise ConnectionError(err, request=request)\n\nPagureAPIException:\ + \ (\"Cannot connect to url: 'https://git.stg.centos.org/api/0/source-git/acl/c/48d4feb54ebcb47cb593ab3c304ec36b755e8769/flag'.\"\ + , ConnectionError(ProtocolError('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))))\n(11 additional frame(s)\ + \ were not displayed)\n...\n File \"ogr/services/pagure/project.py\"\ + , line 464, in set_commit_status\n uid=uid,\n File \"ogr/services/pagure/flag.py\"\ + , line 88, in set\n \"c\", commit, \"flag\", method=\"POST\", data=data\n\ + \ File \"ogr/services/pagure/project.py\", line 129, in _call_project_api\n\ + \ url=request_url, method=method, params=params, data=data\n File\ + \ \"ogr/services/pagure/service.py\", line 128, in call_api\n response\ + \ = self.call_api_raw(url=url, method=method, params=params, data=data)\n\ + \ File \"ogr/services/pagure/service.py\", line 173, in call_api_raw\n\ + \ raise PagureAPIException(f\"Cannot connect to url: '{url}'.\",\ + \ er)\n```" + closed_at: '2021-02-12T12:22:11Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/464/comments + created_at: '2020-09-16T07:25:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/464/events + html_url: https://github.com/packit/ogr/issues/464 + id: 702525467 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + labels_url: https://api.github.com/repos/packit/ogr/issues/464/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MDI1MjU0Njc= + number: 464 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[Pagure] ProtocolError: (''Connection aborted.'', RemoteDisconnected(''Remote + end closed connection without response''))' + updated_at: '2021-02-12T12:22:11Z' + url: https://api.github.com/repos/packit/ogr/issues/464 + user: + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 + events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers + following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/sentry-io + id: 39604003 + login: sentry-io[bot] + node_id: MDM6Qm90Mzk2MDQwMDM= + organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events + repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/sentry-io%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "We have `get_username` method in GitUser class. At the moment we\ - \ are missing method `get_email` for both Github and Pagure services.\r\ - \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" + author_association: CONTRIBUTOR + body: Figure out how to handle releases in Pagure. closed_at: null - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments - created_at: '2019-07-18T07:56:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/126/events - html_url: https://github.com/packit/ogr/issues/126 - id: 469623000 + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/112/comments + created_at: '2019-07-11T08:51:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/112/events + html_url: https://github.com/packit/ogr/issues/112 + id: 466754779 labels: - color: 1d76db default: false @@ -8447,13 +9069,6 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -8461,46 +9076,116 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/126/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/112/labels{/name} locked: false - milestone: null - node_id: MDU6SXNzdWU0Njk2MjMwMDA= - number: 126 + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0NjY3NTQ3Nzk= + number: 112 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: get_email for GitUser - updated_at: '2020-07-31T10:43:43Z' - url: https://api.github.com/repos/packit/ogr/issues/126 + title: Support releases in Pagure + updated_at: '2021-02-05T08:49:37Z' + url: https://api.github.com/repos/packit/ogr/issues/112 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR body: "AFAIK at the moment it is not possible to get the info about whether\ \ the repository is private or not in pagure. Now we depend on the info\ \ that in src.fedoraproject.org and pagure.io, the private repositories\ \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" closed_at: null - comments: 4 + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments created_at: '2020-02-18T12:39:00Z' events_url: https://api.github.com/repos/packit/ogr/issues/330/events @@ -8514,6 +9199,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker - color: 42e529 default: false description: This issue was already processed and well defined. @@ -8530,10 +9222,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: better is_private method for pagure projects - updated_at: '2020-07-28T11:32:52Z' + updated_at: '2021-02-05T08:31:21Z' url: https://api.github.com/repos/packit/ogr/issues/330 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -8553,67 +9245,190 @@ requests.sessions: url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos - site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions - type: User - url: https://api.github.com/users/nasirhm + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos - site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions - type: User - url: https://api.github.com/users/nasirhm - author_association: CONTRIBUTOR - body: "Is it possible to assign Issues to particular user-names using\ - \ the issue object by any chance?\r\n\r\n#### Github\r\n- github-api:\ - \ https://developer.github.com/v3/issues/assignees/#add-assignees-to-an-issue\r\ - \n- pygithub: https://pygithub.readthedocs.io/en/latest/github_objects/Issue.html\r\ - \n\r\n#### Gitlab\r\n- gitlab-api: https://docs.gitlab.com/ee/api/issues.html#edit-issue\r\ - \n- python-gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ - \n- example of the code: https://gitlab.fi.muni.cz/xlachma1/figitool/blob/master/figitool/figitool.py#L576\r\ - \n```python\r\n user_id = gitlab_instance.users.list(username=login)[0].id\r\ - \n gitlab_mr.assignee_id = user_id\r\n gitlab_mr.save()\r\ - \n```\r\n\r\n#### Pagure:\r\n- https://src.fedoraproject.org/api/0/#issues\r\ - \n - -> Create a new issue\r\n - -> Assign an issue\r\n\r\n### TODO:\r\ - \n\r\n- [ ] add `assignee` argument to methods for creating the issue\r\ - \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ - \ tests for it\r\n- [ ] add the get/set property for the Issue classes\r\ - \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ - \ tests for it\r\n\r\n\r\nupdated by @lachmanfrantisek " + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "- [x] Forward some object to the issue/pr/... instances to allow\ + \ connection to the service. (Classes are not only data-holders.)\r\n\ + - [x] All ogr classes to have properties with setters allowing to update\ + \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ + - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ + \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ + \ \r\n" closed_at: null - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/329/comments - created_at: '2020-02-17T15:16:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/329/events - html_url: https://github.com/packit/ogr/issues/329 - id: 566364748 + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments + created_at: '2019-06-25T13:15:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/86/events + html_url: https://github.com/packit/ogr/issues/86 + id: 460418171 + labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + locked: false + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0NjA0MTgxNzE= + number: 86 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: object-specific methods bound to ogr classes + updated_at: '2021-02-04T19:34:29Z' + url: https://api.github.com/repos/packit/ogr/issues/86 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "When working with PRs, there are also URLs linking directly to\ + \ commit list tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the\ + \ `url_commits` and implement it.\r\n - Use API if possible, otherwise\ + \ \"guess\" the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\n\ + Examples:\r\n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/commits\r\ + \n- https://github.com/packit-service/ogr/pull/1/commits\r\n- https://pagure.io/ogr-tests/pull-request/7#commit_list\r\ + \n" + closed_at: '2021-02-03T19:24:22Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/212/comments + created_at: '2019-09-19T18:48:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/212/events + html_url: https://github.com/packit/ogr/issues/212 + id: 495968279 labels: - color: '000000' default: false @@ -8629,6 +9444,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -8650,109 +9472,70 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + - color: fef2c0 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/329/labels{/name} + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/212/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NjYzNjQ3NDg= - number: 329 + node_id: MDU6SXNzdWU0OTU5NjgyNzk= + number: 212 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Assigning Issues to based on usernames. - updated_at: '2020-07-17T06:32:56Z' - url: https://api.github.com/repos/packit/ogr/issues/329 + state: closed + title: Add commits url to PullRequest class + updated_at: '2021-02-03T19:24:22Z' + url: https://api.github.com/repos/packit/ogr/issues/212 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 - events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} - followers_url: https://api.github.com/users/saisankargochhayat/followers - following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} - gists_url: https://api.github.com/users/saisankargochhayat/gists{/gist_id} + 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/saisankargochhayat - id: 9396452 - login: saisankargochhayat - node_id: MDQ6VXNlcjkzOTY0NTI= - organizations_url: https://api.github.com/users/saisankargochhayat/orgs - received_events_url: https://api.github.com/users/saisankargochhayat/received_events - repos_url: https://api.github.com/users/saisankargochhayat/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions + 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/saisankargochhayat + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos - site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions - type: User - url: https://api.github.com/users/dinolinjob - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos - site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions - type: User - url: https://api.github.com/users/dinolinjob + assignee: null + assignees: [] author_association: MEMBER - body: "Multiple times in the code (mostly in the `parsing.py`), we need\ - \ to parse the hostname of the instance.\r\n\r\n```python\r\nservice_repo_url\ - \ = parse_git_repo(repo_url.get_instance_url())\r\nservice_repo_url.hostname\r\ - \n```\r\n\r\nIt would be useful to have a `hostame` property in service\ - \ classes`.\r\n\r\nTODO:\r\n- [ ] add the (read-only) property to the\ - \ `abstract.py`\r\n- [ ] implement the common behaviour in the `base.py`\ - \ (see the example above)\r\n - services with multiple instances possible\r\ - \n- [ ] hardcode the value for static instances (GitHub)\r\n- [ ] use\ - \ that property in places, where we are getting hostname of the instance\r\ - \n- [ ] create some unit tests for that" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/338/comments - created_at: '2020-02-21T08:57:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/338/events - html_url: https://github.com/packit/ogr/issues/338 - id: 568821401 + body: "Add method to project classes to delete a project.\r\n\r\nAC:\r\ + \n- [ ] In each implementation, add the `delete` method to project class\ + \ and implement it.\r\n - If possible/supported. (Document that if\ + \ it is not possible and raise an exception with a good message.)\r\n\ + - [ ] Add tests for that.\r\n\r\nLinks:\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ + \n- https://pagure.io/api/0/ (not found the possible API call for that\ + \ on the first look)" + closed_at: '2020-10-21T11:18:39Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/215/comments + created_at: '2019-09-20T05:36:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/215/events + html_url: https://github.com/packit/ogr/issues/215 + id: 496154927 labels: - - color: fbca04 - default: false - description: Reserved for the participants/applicants of the Google - Summer of Code. - id: 1867054141 - name: GSOC - node_id: MDU6TGFiZWwxODY3MDU0MTQx - url: https://api.github.com/repos/packit/ogr/labels/GSOC - color: '000000' default: false description: Related to GitHub implementation. @@ -8767,6 +9550,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -8774,6 +9564,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -8781,33 +9578,26 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 + - color: fef2c0 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/338/labels{/name} + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/215/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1Njg4MjE0MDE= - number: 338 + node_id: MDU6SXNzdWU0OTYxNTQ5Mjc= + number: 215 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: hostname property in the service classes - updated_at: '2020-07-14T06:47:13Z' - url: https://api.github.com/repos/packit/ogr/issues/338 + state: closed + title: Implement GitProject.delete() + updated_at: '2020-10-21T11:18:40Z' + url: https://api.github.com/repos/packit/ogr/issues/215 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8826,18 +9616,90 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: Implement get_files() method in Pagure. - closed_at: null - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/310/comments - created_at: '2020-01-21T12:50:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/310/events - html_url: https://github.com/packit/ogr/issues/310 - id: 552856957 + assignee: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + author_association: CONTRIBUTOR + body: "Is it possible to assign Issues to particular user-names using\ + \ the issue object by any chance?\r\n\r\n#### Github\r\n- github-api:\ + \ https://developer.github.com/v3/issues/assignees/#add-assignees-to-an-issue\r\ + \n- pygithub: https://pygithub.readthedocs.io/en/latest/github_objects/Issue.html\r\ + \n\r\n#### Gitlab\r\n- gitlab-api: https://docs.gitlab.com/ee/api/issues.html#edit-issue\r\ + \n- python-gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ + \n- example of the code: https://gitlab.fi.muni.cz/xlachma1/figitool/blob/master/figitool/figitool.py#L576\r\ + \n```python\r\n user_id = gitlab_instance.users.list(username=login)[0].id\r\ + \n gitlab_mr.assignee_id = user_id\r\n gitlab_mr.save()\r\ + \n```\r\n\r\n#### Pagure:\r\n- https://src.fedoraproject.org/api/0/#issues\r\ + \n - -> Create a new issue\r\n - -> Assign an issue\r\n\r\n### TODO:\r\ + \n\r\n- [ ] add `assignee` argument to methods for creating the issue\r\ + \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ + \ tests for it\r\n- [ ] add the get/set property for the Issue classes\r\ + \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ + \ tests for it\r\n\r\n\r\nupdated by @lachmanfrantisek " + closed_at: '2020-10-20T14:41:14Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/329/comments + created_at: '2020-02-17T15:16:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/329/events + html_url: https://github.com/packit/ogr/issues/329 + id: 566364748 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -8845,13 +9707,6 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: bc4812 - default: false - description: We are blocked! - id: 1432779229 - name: blocker - node_id: MDU6TGFiZWwxNDMyNzc5MjI5 - url: https://api.github.com/repos/packit/ogr/labels/blocker - color: a2eeef default: false description: New feature or a request for enhancement. @@ -8859,6 +9714,13 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -8866,69 +9728,87 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/310/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/329/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTI4NTY5NTc= - number: 310 + node_id: MDU6SXNzdWU1NjYzNjQ3NDg= + number: 329 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Support get_files() in Pagure - updated_at: '2020-07-07T06:21:10Z' - url: https://api.github.com/repos/packit/ogr/issues/310 + state: closed + title: Assigning Issues to based on usernames. + updated_at: '2020-10-20T14:41:14Z' + url: https://api.github.com/repos/packit/ogr/issues/329 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 + events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} + followers_url: https://api.github.com/users/saisankargochhayat/followers + following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} + gists_url: https://api.github.com/users/saisankargochhayat/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/saisankargochhayat + id: 9396452 + login: saisankargochhayat + node_id: MDQ6VXNlcjkzOTY0NTI= + organizations_url: https://api.github.com/users/saisankargochhayat/orgs + received_events_url: https://api.github.com/users/saisankargochhayat/received_events + repos_url: https://api.github.com/users/saisankargochhayat/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/saisankargochhayat - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "When working with PRs, there are also URLs linking directly to\ - \ commit list tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the\ - \ `url_commits` and implement it.\r\n - Use API if possible, otherwise\ - \ \"guess\" the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\n\ - Examples:\r\n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/commits\r\ - \n- https://github.com/packit-service/ogr/pull/1/commits\r\n- https://pagure.io/ogr-tests/pull-request/7#commit_list\r\ - \n" - closed_at: null - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/212/comments - created_at: '2019-09-19T18:48:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/212/events - html_url: https://github.com/packit/ogr/issues/212 - id: 495968279 + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: COLLABORATOR + body: "We have `get_username` method in GitUser class. At the moment we\ + \ are missing method `get_email` for both ~~Github~~ and Pagure services.\r\ + \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" + closed_at: '2020-10-12T12:16:21Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments + created_at: '2019-07-18T07:56:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/126/events + html_url: https://github.com/packit/ogr/issues/126 + id: 469623000 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 1d76db default: false description: Related to Pagure implementation. @@ -8950,65 +9830,105 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 + - color: 42e529 default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/212/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/126/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU5NjgyNzk= - number: 212 + node_id: MDU6SXNzdWU0Njk2MjMwMDA= + number: 126 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Add commits url to PullRequest class - updated_at: '2020-07-03T14:18:58Z' - url: https://api.github.com/repos/packit/ogr/issues/212 + state: closed + title: get_email for GitUser + updated_at: '2020-10-12T12:16:21Z' + url: https://api.github.com/repos/packit/ogr/issues/126 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Would be nice to be able to manipulate labels on pagure issues.\ - \ i.e. `get_issue_labels()` `add_issue_labels()`, etc.. \r\n\r\n\r\n\ - *update by @lachmanfrantisek:*\r\n\r\nTODO: \r\n- [x] `labels` property\ - \ for `PagureIssue` class (https://github.com/packit-service/ogr/pull/321\ - \ by @cverna )\r\n- [x] `labels` argument for `PagureIssue.create` and\ - \ `PagureProject.create_issue` (https://github.com/packit-service/ogr/pull/321\ - \ by @cverna)\r\n- [ ] `labels` property for `PagurePullRequest` class\r\ - \n- [ ] `labels` argument for `PagurePullRequest.create` and `PagureProject.create_pr`\r\ - \n- [ ] `add_label` methods blocked by the PagureAPI (https://pagure.io/pagure/issue/2175)\r\ - \n- [ ] add tests for all of those\r\n\r\n" + author_association: COLLABORATOR + body: "*Updated by @lachmanfrantisek :*\r\n\r\nWe have a lot of methods\ + \ related to the permissions (e.g. who can merge/close,..)\r\n\r\nIt's\ + \ not consistent, let's clean that!\r\n\r\nFeel free to solve this in\ + \ smaller parts. Just write on what you are going to work...\r\n\r\n\ + AC:\r\n- [ ] Make sure, that we have all of the provided methods in\ + \ the `abstract.py`\r\n (raising the `NotImplementedError`)\r\n- [\ + \ ] Make sure, that we have all of these in all the implementations:\r\ + \n - [ ] GitLab\r\n - [ ] GitHub\r\n - [ ] Pagure\r\n- [ ] Deprecate\ + \ the project methods related to specific issue/pull-request.\r\n- [\ + \ ] Move helping methods to the base classes.\r\n - The only exception\ + \ is a more efficient solution in the code of the specific implementation.\r\ + \n - Example:\r\nhttps://github.com/packit-service/ogr/blob/89435655150b8dd79ef93209c3463585d0715e0d/ogr/services/github/project.py#L219-L220\r\ + \n\r\nThe progress is tracked in the following tables. (Any update in\ + \ the comments is appreciated.)\r\n\r\n| Project | `who_can_close_issue()\ + \ -> Set[str]` | `who_can_merge_pr() -> Set[str]` | `can_close_issue(username:\ + \ str) -> bool` | `can_merge_pr(username: str) -> bool` |\r\n| --- |\ + \ --- | --- | --- | --- |\r\n| abstract | :+1: | :+1: | :exclamation:\ + \ deprecate the `Issue` argument | \r\n| base | nothing | nothing |\ + \ implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\n\ + | GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |\r\n\r\n| Issue\ + \ | `who_can_close() -> Set[str]` | `can_close(username: str) -> bool`\ + \ |\r\n| --- | --- | --- |\r\n| abstract | ? | ? |\r\n| base | nothing\ + \ | implement here |\r\n| Github | ? | ? |\r\n| GitLab | ? | ? |\r\n\ + | Pagure | ? | ? |\r\n\r\n| PullRequest | `who_can_close() -> Set[str]`\ + \ | `who_can_merge() -> Set[str]` | `can_close(username: str) -> bool`\ + \ | `can_merge(username: str) -> bool` |\r\n| --- | --- | --- | ---\ + \ | --- |\r\n| abstract | ? | ? | ? | ? | \r\n| base | nothing | nothing\ + \ | implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\ + \n| GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |" closed_at: null - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/147/comments - created_at: '2019-08-09T22:23:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/147/events - html_url: https://github.com/packit/ogr/issues/147 - id: 479187441 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/100/comments + created_at: '2019-07-05T07:09:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/100/events + html_url: https://github.com/packit/ogr/issues/100 + id: 464495604 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -9023,6 +9943,13 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: bf6b0b default: false description: '' @@ -9030,36 +9957,50 @@ requests.sessions: name: pinned node_id: MDU6TGFiZWwyMTAxODk4Njg3 url: https://api.github.com/repos/packit/ogr/labels/pinned - labels_url: https://api.github.com/repos/packit/ogr/issues/147/labels{/name} + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/100/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzkxODc0NDE= - number: 147 + node_id: MDU6SXNzdWU0NjQ0OTU2MDQ= + number: 100 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: create label* functions for pagure backend - updated_at: '2020-06-29T06:46:49Z' - url: https://api.github.com/repos/packit/ogr/issues/147 + title: user's permissions on Issues/PRs + updated_at: '2020-09-30T15:00:39Z' + url: https://api.github.com/repos/packit/ogr/issues/100 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 - events_url: https://api.github.com/users/dustymabe/events{/privacy} - followers_url: https://api.github.com/users/dustymabe/followers - following_url: https://api.github.com/users/dustymabe/following{/other_user} - gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dustymabe - id: 4530030 - login: dustymabe - node_id: MDQ6VXNlcjQ1MzAwMzA= - organizations_url: https://api.github.com/users/dustymabe/orgs - received_events_url: https://api.github.com/users/dustymabe/received_events - repos_url: https://api.github.com/users/dustymabe/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/dustymabe + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] @@ -9096,6 +10037,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -9133,10 +10081,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Do not let the external exception go to the user - updated_at: '2020-06-16T12:56:15Z' + updated_at: '2020-09-30T14:57:41Z' url: https://api.github.com/repos/packit/ogr/issues/199 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9155,46 +10103,71 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: COLLABORATOR - body: "*Updated by @lachmanfrantisek :*\r\n\r\nWe have a lot of methods\ - \ related to the permissions (e.g. who can merge/close,..)\r\n\r\nIt's\ - \ not consistent, let's clean that!\r\n\r\nFeel free to solve this in\ - \ smaller parts. Just write on what you are going to work...\r\n\r\n\ - AC:\r\n- [ ] Make sure, that we have all of the provided methods in\ - \ the `abstract.py`\r\n (raising the `NotImplementedError`)\r\n- [\ - \ ] Make sure, that we have all of these in all the implementations:\r\ - \n - [ ] GitLab\r\n - [ ] GitHub\r\n - [ ] Pagure\r\n- [ ] Deprecate\ - \ the project methods related to specific issue/pull-request.\r\n- [\ - \ ] Move helping methods to the base classes.\r\n - The only exception\ - \ is a more efficient solution in the code of the specific implementation.\r\ - \n - Example:\r\nhttps://github.com/packit-service/ogr/blob/89435655150b8dd79ef93209c3463585d0715e0d/ogr/services/github/project.py#L219-L220\r\ - \n\r\nThe progress is tracked in the following tables. (Any update in\ - \ the comments is appreciated.)\r\n\r\n| Project | `who_can_close_issue()\ - \ -> Set[str]` | `who_can_merge_pr() -> Set[str]` | `can_close_issue(username:\ - \ str) -> bool` | `can_merge_pr(username: str) -> bool` |\r\n| --- |\ - \ --- | --- | --- | --- |\r\n| abstract | :+1: | :+1: | :exclamation:\ - \ deprecate the `Issue` argument | \r\n| base | nothing | nothing |\ - \ implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\n\ - | GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |\r\n\r\n| Issue\ - \ | `who_can_close() -> Set[str]` | `can_close(username: str) -> bool`\ - \ |\r\n| --- | --- | --- |\r\n| abstract | ? | ? |\r\n| base | nothing\ - \ | implement here |\r\n| Github | ? | ? |\r\n| GitLab | ? | ? |\r\n\ - | Pagure | ? | ? |\r\n\r\n| PullRequest | `who_can_close() -> Set[str]`\ - \ | `who_can_merge() -> Set[str]` | `can_close(username: str) -> bool`\ - \ | `can_merge(username: str) -> bool` |\r\n| --- | --- | --- | ---\ - \ | --- |\r\n| abstract | ? | ? | ? | ? | \r\n| base | nothing | nothing\ - \ | implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\ - \n| GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |" - closed_at: null + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: MEMBER + body: "Multiple times in the code (mostly in the `parsing.py`), we need\ + \ to parse the hostname of the instance.\r\n\r\n```python\r\nservice_repo_url\ + \ = parse_git_repo(repo_url.get_instance_url())\r\nservice_repo_url.hostname\r\ + \n```\r\n\r\nIt would be useful to have a `hostame` property in service\ + \ classes`.\r\n\r\nTODO:\r\n- [ ] add the (read-only) property to the\ + \ `abstract.py`\r\n- [ ] implement the common behaviour in the `base.py`\ + \ (see the example above)\r\n - services with multiple instances possible\r\ + \n- [ ] hardcode the value for static instances (GitHub)\r\n- [ ] use\ + \ that property in places, where we are getting hostname of the instance\r\ + \n- [ ] create some unit tests for that" + closed_at: '2020-09-18T14:55:56Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/100/comments - created_at: '2019-07-05T07:09:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/100/events - html_url: https://github.com/packit/ogr/issues/100 - id: 464495604 + comments_url: https://api.github.com/repos/packit/ogr/issues/338/comments + created_at: '2020-02-21T08:57:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/338/events + html_url: https://github.com/packit/ogr/issues/338 + id: 568821401 labels: + - color: fbca04 + default: false + description: Reserved for the participants/applicants of the Google + Summer of Code. + id: 1867054141 + name: GSOC + node_id: MDU6TGFiZWwxODY3MDU0MTQx + url: https://api.github.com/repos/packit/ogr/labels/GSOC - color: '000000' default: false description: Related to GitHub implementation. @@ -9216,13 +10189,6 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -9230,13 +10196,6 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - color: c2ef58 default: false description: Technical debt - the code needs love. @@ -9251,56 +10210,58 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/100/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/338/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjQ0OTU2MDQ= - number: 100 + node_id: MDU6SXNzdWU1Njg4MjE0MDE= + number: 338 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: user's permissions on Issues/PRs - updated_at: '2020-06-01T08:47:32Z' - url: https://api.github.com/repos/packit/ogr/issues/100 + state: closed + title: hostname property in the service classes + updated_at: '2020-09-18T14:55:56Z' + url: https://api.github.com/repos/packit/ogr/issues/338 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Figure out how to handle releases in Pagure. + author_association: CONTRIBUTOR + body: "Would be nice to be able to manipulate labels on pagure issues.\ + \ i.e. `get_issue_labels()` `add_issue_labels()`, etc.. \r\n\r\n\r\n\ + *update by @lachmanfrantisek:*\r\n\r\nTODO: \r\n- [x] `labels` property\ + \ for `PagureIssue` class (https://github.com/packit-service/ogr/pull/321\ + \ by @cverna )\r\n- [x] `labels` argument for `PagureIssue.create` and\ + \ `PagureProject.create_issue` (https://github.com/packit-service/ogr/pull/321\ + \ by @cverna)\r\n- [ ] `labels` property for `PagurePullRequest` class\r\ + \n- [ ] `labels` argument for `PagurePullRequest.create` and `PagureProject.create_pr`\r\ + \n- [ ] `add_label` methods blocked by the PagureAPI (https://pagure.io/pagure/issue/2175)\r\ + \n- [ ] add tests for all of those\r\n\r\n" closed_at: null - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/112/comments - created_at: '2019-07-11T08:51:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/112/events - html_url: https://github.com/packit/ogr/issues/112 - id: 466754779 + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/147/comments + created_at: '2019-08-09T22:23:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/147/events + html_url: https://github.com/packit/ogr/issues/147 + id: 479187441 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - color: 1d76db default: false description: Related to Pagure implementation. @@ -9315,46 +10276,46 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + - color: bf6b0b default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/112/labels{/name} + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + labels_url: https://api.github.com/repos/packit/ogr/issues/147/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjY3NTQ3Nzk= - number: 112 + node_id: MDU6SXNzdWU0NzkxODc0NDE= + number: 147 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: Support releases in Pagure - updated_at: '2020-06-01T08:05:12Z' - url: https://api.github.com/repos/packit/ogr/issues/112 + title: create label* functions for pagure backend + updated_at: '2020-06-29T06:46:49Z' + url: https://api.github.com/repos/packit/ogr/issues/147 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 + events_url: https://api.github.com/users/dustymabe/events{/privacy} + followers_url: https://api.github.com/users/dustymabe/followers + following_url: https://api.github.com/users/dustymabe/following{/other_user} + gists_url: https://api.github.com/users/dustymabe/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/dustymabe + id: 4530030 + login: dustymabe + node_id: MDQ6VXNlcjQ1MzAwMzA= + organizations_url: https://api.github.com/users/dustymabe/orgs + received_events_url: https://api.github.com/users/dustymabe/received_events + repos_url: https://api.github.com/users/dustymabe/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dustymabe/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/dustymabe - active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 + avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 events_url: https://api.github.com/users/TomasJani/events{/privacy} followers_url: https://api.github.com/users/TomasJani/followers following_url: https://api.github.com/users/TomasJani/following{/other_user} @@ -9373,7 +10334,7 @@ requests.sessions: type: User url: https://api.github.com/users/TomasJani assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 events_url: https://api.github.com/users/TomasJani/events{/privacy} followers_url: https://api.github.com/users/TomasJani/followers following_url: https://api.github.com/users/TomasJani/following{/other_user} @@ -9467,7 +10428,7 @@ requests.sessions: updated_at: '2020-05-18T08:05:17Z' url: https://api.github.com/repos/packit/ogr/issues/344 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9487,7 +10448,7 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -9506,7 +10467,7 @@ requests.sessions: type: User url: https://api.github.com/users/shreyaspapi assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -9593,7 +10554,7 @@ requests.sessions: updated_at: '2020-05-11T19:45:01Z' url: https://api.github.com/repos/packit/ogr/issues/216 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9613,7 +10574,7 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -9632,7 +10593,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -9709,7 +10670,7 @@ requests.sessions: updated_at: '2020-04-30T16:23:19Z' url: https://api.github.com/repos/packit/ogr/issues/400 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9781,7 +10742,7 @@ requests.sessions: updated_at: '2020-04-20T12:38:20Z' url: https://api.github.com/repos/packit/ogr/issues/302 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -9802,7 +10763,7 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: PaureProject.get_files() not implemented. Maybe not possible because pagure api doesnt provide any possiblity to get repository content. closed_at: '2020-04-14T09:13:43Z' @@ -9853,7 +10814,7 @@ requests.sessions: updated_at: '2020-04-14T09:13:43Z' url: https://api.github.com/repos/packit/ogr/issues/377 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -9873,7 +10834,7 @@ requests.sessions: url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -9892,7 +10853,7 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + - 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} @@ -9910,7 +10871,7 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek - author_association: MEMBER + author_association: CONTRIBUTOR body: "edited by @lachmanfrantisek :\r\n\r\nTODO:\r\n- Add tests for https://github.com/packit-service/ogr/pull/333\ \ (better pagure error messages)\r\n - e.g. wrong URL, wrong token,\ \ not-found object,..." @@ -9962,7 +10923,7 @@ requests.sessions: updated_at: '2020-04-09T11:55:54Z' url: https://api.github.com/repos/packit/ogr/issues/334 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -10045,7 +11006,7 @@ requests.sessions: updated_at: '2020-04-07T12:06:30Z' url: https://api.github.com/repos/packit/ogr/issues/339 user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 events_url: https://api.github.com/users/cverna/events{/privacy} followers_url: https://api.github.com/users/cverna/followers following_url: https://api.github.com/users/cverna/following{/other_user} @@ -10065,141 +11026,7 @@ requests.sessions: url: https://api.github.com/users/cverna - active_lock_reason: null assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: MEMBER - body: "- [ ] Forward some object to the issue/pr/... instances to allow\ - \ connection to the service. (Classes are not only data-holders.)\r\n\ - - [ ] All ogr classes to have properties with setters allowing to update\ - \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ - - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ - \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ - \ \r\n" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments - created_at: '2019-06-25T13:15:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/86/events - html_url: https://github.com/packit/ogr/issues/86 - id: 460418171 - labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NjA0MTgxNzE= - number: 86 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: object-specific methods bound to ogr classes - updated_at: '2020-03-27T13:50:33Z' - url: https://api.github.com/repos/packit/ogr/issues/86 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -10218,7 +11045,7 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -10236,7 +11063,7 @@ requests.sessions: subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User url: https://api.github.com/users/sakalosj - author_association: MEMBER + author_association: CONTRIBUTOR body: pagure provides more detailed error info stored under 'errors' key, which is not currently not used in output closed_at: '2020-03-12T12:16:11Z' @@ -10274,7 +11101,7 @@ requests.sessions: updated_at: '2020-03-12T12:16:11Z' url: https://api.github.com/repos/packit/ogr/issues/331 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -10372,7 +11199,7 @@ requests.sessions: updated_at: '2020-03-03T15:49:36Z' url: https://api.github.com/repos/packit/ogr/issues/211 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -10393,7 +11220,7 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Consider also other filtering options:\r\n\r\nThe options are:\r\ \nhttps://github.com/PyGithub/PyGithub/blob/master/github/Repository.py#L2172-L2195" closed_at: '2020-01-24T19:51:49Z' @@ -10444,7 +11271,7 @@ requests.sessions: updated_at: '2020-01-24T19:51:49Z' url: https://api.github.com/repos/packit/ogr/issues/308 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -10527,7 +11354,7 @@ requests.sessions: updated_at: '2020-01-13T09:38:06Z' url: https://api.github.com/repos/packit/ogr/issues/133 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -10587,7 +11414,7 @@ requests.sessions: updated_at: '2020-01-03T08:43:55Z' url: https://api.github.com/repos/packit/ogr/issues/245 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -10671,7 +11498,7 @@ requests.sessions: updated_at: '2019-12-04T12:26:57Z' url: https://api.github.com/repos/packit/ogr/issues/193 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -10691,7 +11518,7 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -10710,7 +11537,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -10795,7 +11622,7 @@ requests.sessions: updated_at: '2019-12-03T11:21:59Z' url: https://api.github.com/repos/packit/ogr/issues/255 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -10815,7 +11642,7 @@ requests.sessions: url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -10834,7 +11661,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -10936,7 +11763,7 @@ requests.sessions: updated_at: '2019-11-29T10:21:52Z' url: https://api.github.com/repos/packit/ogr/issues/254 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -10954,9 +11781,128 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.57995 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:30 GMT + ETag: W/"73bbe46a20aacd01478caa6f9c7c2fba0b07e9dc657d5c3a588847e651b51bbb" + Link: ; + rel="next", ; + rel="last" + 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: 8872:1BB2:17B809:542223:6075DC7A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4482' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '518' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/labels/Pagure: + - metadata: + latency: 0.08150815963745117 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Repository + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + _next: null + elapsed: 0.081359 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:30 GMT + ETag: W/"7fa9beaa5ce0ed5d3dab64b9ac5156a6e8dac739ff9eb61812671833c06865cb" + Last-Modified: Tue, 02 Jul 2019 13:38:38 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: 8872:1BB2:17B805:54221D:6075DC7A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4483' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '517' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&labels=Pagure&sort=updated&direction=desc&page=2: + - metadata: + latency: 0.4100010395050049 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -10975,7 +11921,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -11076,7 +12022,7 @@ requests.sessions: updated_at: '2019-11-26T08:52:22Z' url: https://api.github.com/repos/packit/ogr/issues/253 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11174,7 +12120,7 @@ requests.sessions: updated_at: '2019-10-23T13:09:59Z' url: https://api.github.com/repos/packit/ogr/issues/230 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11192,138 +12138,9 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="next", ; - rel="last" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repos/packit/ogr/labels/Pagure: - - metadata: - latency: 0.29529571533203125 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.Repository - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 02 Jul 2019 13:38:38 GMT - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&labels=Pagure&sort=updated&direction=desc&page=2: - - metadata: - latency: 0.60935378074646 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11342,7 +12159,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -11436,7 +12253,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:47Z' url: https://api.github.com/repos/packit/ogr/issues/240 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -11456,7 +12273,7 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11475,7 +12292,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -11559,7 +12376,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/218 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11579,7 +12396,7 @@ requests.sessions: url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11598,7 +12415,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -11683,7 +12500,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/232 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11703,7 +12520,7 @@ requests.sessions: url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11722,7 +12539,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -11808,7 +12625,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/204 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -11828,7 +12645,7 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11847,7 +12664,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -11963,7 +12780,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/205 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12070,7 +12887,7 @@ requests.sessions: updated_at: '2019-09-25T06:07:53Z' url: https://api.github.com/repos/packit/ogr/issues/213 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12131,7 +12948,7 @@ requests.sessions: updated_at: '2019-09-09T08:16:44Z' url: https://api.github.com/repos/packit/ogr/issues/180 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12152,7 +12969,7 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "https://src.stg.fedoraproject.org/api/0/#pull-requests\r\n\r\n\ we just need to use the new fields such as repo_from which were added\ \ to the API in order to create PRs from forks to parent repos.\r\n\r\ @@ -12207,7 +13024,7 @@ requests.sessions: updated_at: '2019-09-09T08:16:38Z' url: https://api.github.com/repos/packit/ogr/issues/161 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -12277,7 +13094,7 @@ requests.sessions: updated_at: '2019-08-15T07:11:15Z' url: https://api.github.com/repos/packit/ogr/issues/146 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 events_url: https://api.github.com/users/dustymabe/events{/privacy} followers_url: https://api.github.com/users/dustymabe/followers following_url: https://api.github.com/users/dustymabe/following{/other_user} @@ -12297,7 +13114,7 @@ requests.sessions: url: https://api.github.com/users/dustymabe - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -12316,7 +13133,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -12400,7 +13217,7 @@ requests.sessions: updated_at: '2019-08-13T07:11:39Z' url: https://api.github.com/repos/packit/ogr/issues/124 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12469,7 +13286,7 @@ requests.sessions: updated_at: '2019-08-06T07:30:49Z' url: https://api.github.com/repos/packit/ogr/issues/129 user: - avatar_url: https://avatars1.githubusercontent.com/u/38399871?v=4 + avatar_url: https://avatars.githubusercontent.com/u/38399871?v=4 events_url: https://api.github.com/users/yzhang2907/events{/privacy} followers_url: https://api.github.com/users/yzhang2907/followers following_url: https://api.github.com/users/yzhang2907/following{/other_user} @@ -12489,7 +13306,7 @@ requests.sessions: url: https://api.github.com/users/yzhang2907 - active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -12508,7 +13325,7 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -12585,7 +13402,7 @@ requests.sessions: updated_at: '2019-07-18T07:11:53Z' url: https://api.github.com/repos/packit/ogr/issues/88 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12650,7 +13467,7 @@ requests.sessions: updated_at: '2019-07-12T21:59:06Z' url: https://api.github.com/repos/packit/ogr/issues/116 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -12723,7 +13540,7 @@ requests.sessions: updated_at: '2019-07-12T12:44:34Z' url: https://api.github.com/repos/packit/ogr/issues/101 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -12741,75 +13558,6 @@ requests.sessions: subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User url: https://api.github.com/users/marusinm - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #74' - closed_at: '2019-07-11T08:48:44Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/106/comments - created_at: '2019-07-10T07:38:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/106/events - html_url: https://github.com/packit/ogr/pull/106 - id: 466149524 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/106/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDQ2Mjc3 - number: 106 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/106.diff - html_url: https://github.com/packit/ogr/pull/106 - patch_url: https://github.com/packit/ogr/pull/106.patch - url: https://api.github.com/repos/packit/ogr/pulls/106 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: link to GitTag from Release added - updated_at: '2019-07-11T08:48:44Z' - url: https://api.github.com/repos/packit/ogr/issues/106 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - active_lock_reason: null assignee: null assignees: [] @@ -12871,7 +13619,7 @@ requests.sessions: updated_at: '2019-07-11T08:48:44Z' url: https://api.github.com/repos/packit/ogr/issues/74 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12889,9 +13637,78 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #74' + closed_at: '2019-07-11T08:48:44Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/106/comments + created_at: '2019-07-10T07:38:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/106/events + html_url: https://github.com/packit/ogr/pull/106 + id: 466149524 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/106/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDQ2Mjc3 + number: 106 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/106.diff + html_url: https://github.com/packit/ogr/pull/106 + patch_url: https://github.com/packit/ogr/pull/106.patch + url: https://api.github.com/repos/packit/ogr/pulls/106 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: link to GitTag from Release added + updated_at: '2019-07-11T08:48:44Z' + url: https://api.github.com/repos/packit/ogr/issues/106 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 - active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 + avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} followers_url: https://api.github.com/users/shreyanshrs44/followers following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} @@ -12910,7 +13727,7 @@ requests.sessions: type: User url: https://api.github.com/users/shreyanshrs44 assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} followers_url: https://api.github.com/users/shreyanshrs44/followers following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} @@ -12972,7 +13789,7 @@ requests.sessions: updated_at: '2019-07-10T06:51:37Z' url: https://api.github.com/repos/packit/ogr/issues/90 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -13055,7 +13872,7 @@ requests.sessions: updated_at: '2019-07-03T13:20:09Z' url: https://api.github.com/repos/packit/ogr/issues/95 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -13075,7 +13892,7 @@ requests.sessions: url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -13094,7 +13911,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -13165,7 +13982,7 @@ requests.sessions: updated_at: '2019-06-28T06:51:21Z' url: https://api.github.com/repos/packit/ogr/issues/87 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -13235,7 +14052,7 @@ requests.sessions: updated_at: '2019-05-29T11:00:10Z' url: https://api.github.com/repos/packit/ogr/issues/71 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -13256,7 +14073,7 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ \nhas to be adapted, currenly I've added dependency on lower version\ @@ -13296,7 +14113,7 @@ requests.sessions: updated_at: '2019-05-29T07:46:28Z' url: https://api.github.com/repos/packit/ogr/issues/64 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -13365,7 +14182,7 @@ requests.sessions: updated_at: '2019-05-29T07:46:28Z' url: https://api.github.com/repos/packit/ogr/issues/67 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -13384,45 +14201,40 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.402338 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:01:36 GMT + ETag: W/"9a002a61486af3a3e8dba0a906ba9fe9ed59ed7255bf7109dc5c051c313561d4" Link: ; rel="prev", ; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 8872:1BB2:17B87F:542382:6075DC7F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4451' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '549' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 diff --git a/tests/integration/github/test_data/test_issues/tests.integration.github.test_issues.Issues.test_list_contains_only_issues.yaml b/tests/integration/github/test_data/test_issues/Issues.test_list_contains_only_issues.yaml similarity index 72% rename from tests/integration/github/test_data/test_issues/tests.integration.github.test_issues.Issues.test_list_contains_only_issues.yaml rename to tests/integration/github/test_data/test_issues/Issues.test_list_contains_only_issues.yaml index f56f31c5..c502b014 100644 --- a/tests/integration/github/test_data/test_issues/tests.integration.github.test_issues.Issues.test_list_contains_only_issues.yaml +++ b/tests/integration/github/test_data/test_issues/Issues.test_list_contains_only_issues.yaml @@ -1,13 +1,13 @@ _requre: DataTypes: 1 key_strategy: StorageKeysInspectSimple - version_storage_file: 2 + version_storage_file: 3 requests.sessions: send: GET: https://api.github.com:443/repos/packit/ogr: - metadata: - latency: 0.4873473644256592 + latency: 0.2879455089569092 module_call_list: - unittest.case - requre.online_replacing @@ -41,7 +41,7 @@ requests.sessions: 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: master + 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 @@ -49,8 +49,8 @@ requests.sessions: downloads_url: https://api.github.com/repos/packit/ogr/downloads events_url: https://api.github.com/repos/packit/ogr/events fork: false - forks: 41 - forks_count: 41 + forks: 44 + forks_count: 44 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} @@ -59,7 +59,7 @@ requests.sessions: git_url: git://github.com/packit/ogr.git has_downloads: true has_issues: true - has_pages: false + has_pages: true has_projects: true has_wiki: true homepage: '' @@ -83,13 +83,13 @@ requests.sessions: milestones_url: https://api.github.com/repos/packit/ogr/milestones{/number} mirror_url: null name: ogr - network_count: 41 + network_count: 44 node_id: MDEwOlJlcG9zaXRvcnkxNjE2MzY3MDA= notifications_url: https://api.github.com/repos/packit/ogr/notifications{?since,all,participating} - open_issues: 37 - open_issues_count: 37 + open_issues: 29 + open_issues_count: 29 organization: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -108,7 +108,7 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit owner: - avatar_url: https://avatars3.githubusercontent.com/u/46870917?v=4 + 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} @@ -127,19 +127,19 @@ requests.sessions: type: Organization url: https://api.github.com/users/packit permissions: - admin: true + admin: false pull: true push: true private: false pulls_url: https://api.github.com/repos/packit/ogr/pulls{/number} - pushed_at: '2020-08-26T09:07:21Z' + pushed_at: '2021-04-13T16:27:14Z' releases_url: https://api.github.com/repos/packit/ogr/releases{/id} - size: 6997 + size: 10641 ssh_url: git@github.com:packit/ogr.git - stargazers_count: 29 + stargazers_count: 31 stargazers_url: https://api.github.com/repos/packit/ogr/stargazers statuses_url: https://api.github.com/repos/packit/ogr/statuses/{sha} - subscribers_count: 12 + 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 @@ -147,54 +147,49 @@ requests.sessions: teams_url: https://api.github.com/repos/packit/ogr/teams temp_clone_token: '' trees_url: https://api.github.com/repos/packit/ogr/git/trees{/sha} - updated_at: '2020-08-25T09:31:43Z' + updated_at: '2021-04-06T07:07:27Z' url: https://api.github.com/repos/packit/ogr - watchers: 29 - watchers_count: 29 + watchers: 31 + watchers_count: 31 _next: null - elapsed: 0.2 + elapsed: 0.287737 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 09:31:43 GMT + Date: Tue, 13 Apr 2021 18:01:41 GMT + ETag: W/"95f0d5738207f9e17c286d4bb703af5bb10de00b556d9c187d77997fd8ed5342" + Last-Modified: Tue, 06 Apr 2021 07:07:27 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78ECE3:1333112:6075DC85 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4432' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '568' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/100: - metadata: - latency: 0.3977694511413574 + latency: 0.1094822883605957 module_call_list: - unittest.case - requre.online_replacing @@ -268,6 +263,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -319,10 +321,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: user's permissions on Issues/PRs - updated_at: '2020-06-01T08:47:32Z' + updated_at: '2020-09-30T15:00:39Z' url: https://api.github.com/repos/packit/ogr/issues/100 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -341,49 +343,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.109276 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:52 GMT + ETag: W/"470db4a2c4ca9b0349b5273d8b92d6f6c0207d51617e43beb2446807bfa303a4" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EFED:1333A3C:6075DC90 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4368' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '632' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/103: - metadata: - latency: 0.30431199073791504 + latency: 0.20186209678649902 module_call_list: - unittest.case - requre.online_replacing @@ -414,7 +411,7 @@ requests.sessions: \ remote API or git-helper?" closed_at: '2019-07-16T13:56:45Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -472,7 +469,7 @@ requests.sessions: updated_at: '2019-07-16T13:56:45Z' url: https://api.github.com/repos/packit/ogr/issues/103 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -491,49 +488,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.201668 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:22 GMT + ETag: W/"7d97b36784716f45cbea99ccbaa2fd571b877d6fbab0ca56f3bc246ffd73c675" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F8A7:1335355:6075DCAE + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4228' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '772' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/107: - metadata: - latency: 0.2505769729614258 + latency: 0.12042117118835449 module_call_list: - unittest.case - requre.online_replacing @@ -553,7 +545,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -572,7 +564,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -606,7 +598,7 @@ requests.sessions: \ that.\r\n" closed_at: '2019-09-26T09:12:11Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -678,7 +670,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/107 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -697,49 +689,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.120214 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:02:12 GMT + ETag: W/"8b55b98ea37fbe1d572f20c58fd79ee1fb73584ef4c7aa73f2f5ab5323270f27" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F626:1334B5A:6075DCA4 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4271' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '729' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/111: - metadata: - latency: 0.2600059509277344 + latency: 0.20128297805786133 module_call_list: - unittest.case - requre.online_replacing @@ -759,7 +746,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -778,7 +765,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -802,7 +789,7 @@ requests.sessions: \nRelevant documentation:\r\nhttps://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_git_release" closed_at: '2019-07-17T07:14:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -867,7 +854,7 @@ requests.sessions: updated_at: '2019-07-17T07:14:35Z' url: https://api.github.com/repos/packit/ogr/issues/111 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -886,49 +873,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.200953 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:22 GMT + ETag: W/"6bd475a92c9c0b605fc6f9fe4fd4eb88c4461ef0f51050cf18d9d00ad2ae03b3" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F894:1335317:6075DCAD + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4229' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '771' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/112: - metadata: - latency: 0.24238204956054688 + latency: 0.1154024600982666 module_call_list: - unittest.case - requre.online_replacing @@ -949,7 +931,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: Figure out how to handle releases in Pagure. closed_at: null closed_by: null @@ -960,13 +942,6 @@ requests.sessions: html_url: https://github.com/packit/ogr/issues/112 id: 466754779 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - color: 1d76db default: false description: Related to Pagure implementation. @@ -990,17 +965,51 @@ requests.sessions: url: https://api.github.com/repos/packit/ogr/labels/triaged labels_url: https://api.github.com/repos/packit/ogr/issues/112/labels{/name} locked: false - milestone: null + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 node_id: MDU6SXNzdWU0NjY3NTQ3Nzk= number: 112 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open title: Support releases in Pagure - updated_at: '2020-06-01T08:05:12Z' + updated_at: '2021-02-05T08:49:37Z' url: https://api.github.com/repos/packit/ogr/issues/112 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -1019,49 +1028,44 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova _next: null - elapsed: 0.2 + elapsed: 0.11521 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:01:46 GMT + ETag: W/"484d2d3ca2a1c77e1a9f1dd794aca94e05f186c44dbf1c49d47d8d923fd93406" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EE5B:1333579:6075DC8A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4402' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '598' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/115: - metadata: - latency: 0.5090529918670654 + latency: 0.20286107063293457 module_call_list: - unittest.case - requre.online_replacing @@ -1091,7 +1095,7 @@ requests.sessions: \ to have such feature in ogr.)" closed_at: '2019-07-13T18:50:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1142,7 +1146,7 @@ requests.sessions: updated_at: '2019-07-13T18:50:35Z' url: https://api.github.com/repos/packit/ogr/issues/115 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -1161,49 +1165,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.202695 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:02:22 GMT + ETag: W/"71e1494d6c02f52433eaac43ed18ff4a5875d11bdebc637f87fe7e2130358913" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F8B8:133536F:6075DCAE + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4227' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '773' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/116: - metadata: - latency: 0.22868847846984863 + latency: 0.19880414009094238 module_call_list: - unittest.case - requre.online_replacing @@ -1229,7 +1228,7 @@ requests.sessions: We need this for Pagure too. closed_at: '2019-07-12T21:58:49Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1287,7 +1286,7 @@ requests.sessions: updated_at: '2019-07-12T21:59:06Z' url: https://api.github.com/repos/packit/ogr/issues/116 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -1306,49 +1305,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.198645 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:02:22 GMT + ETag: W/"f1fe054000294888a6ccee4b6a892a276e7b991a1b93ef10c8a246429c06f254" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F8C9:133539D:6075DCAE + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4226' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '774' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/121: - metadata: - latency: 0.3043694496154785 + latency: 0.2003018856048584 module_call_list: - unittest.case - requre.online_replacing @@ -1375,7 +1369,7 @@ requests.sessions: \n- [x] solution for method/classes" closed_at: '2019-11-27T12:02:53Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1433,7 +1427,7 @@ requests.sessions: updated_at: '2019-11-27T12:02:53Z' url: https://api.github.com/repos/packit/ogr/issues/121 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1452,49 +1446,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.200142 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:10 GMT + ETag: W/"0dfb39b82af4a819f350d22d5bfab5adbd1f6d4e89d0a732f65c96729f80f74b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F5A8:1334975:6075DCA2 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4280' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '720' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/123: - metadata: - latency: 0.2212231159210205 + latency: 0.2009286880493164 module_call_list: - unittest.case - requre.online_replacing @@ -1523,7 +1512,7 @@ requests.sessions: \ passing." closed_at: '2019-08-15T08:12:06Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -1574,7 +1563,7 @@ requests.sessions: updated_at: '2019-08-15T08:12:06Z' url: https://api.github.com/repos/packit/ogr/issues/123 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -1593,49 +1582,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.200767 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:02:20 GMT + ETag: W/"66a5a58d0d9425740bcd2e58e0efea963c251bd62b2df145d1728ccaaec65a69" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F817:1335195:6075DCAC + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4237' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '763' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/124: - metadata: - latency: 0.24791932106018066 + latency: 0.2169816493988037 module_call_list: - unittest.case - requre.online_replacing @@ -1655,7 +1639,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -1674,7 +1658,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -1698,7 +1682,7 @@ requests.sessions: \ the test responses." closed_at: '2019-08-13T07:11:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1777,7 +1761,7 @@ requests.sessions: updated_at: '2019-08-13T07:11:39Z' url: https://api.github.com/repos/packit/ogr/issues/124 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1796,49 +1780,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.216806 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:20 GMT + ETag: W/"07a0925e8f04ebd96988a629ad5eda856c750f6d020105fc40c0baf98a33533e" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F83C:133521F:6075DCAC + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4234' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '766' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/125: - metadata: - latency: 0.21960067749023438 + latency: 0.16012835502624512 module_call_list: - unittest.case - requre.online_replacing @@ -1858,7 +1837,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -1877,7 +1856,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -1901,7 +1880,7 @@ requests.sessions: \ code.\r\n\r\nThe documentation can be found here: https://python-gitlab.readthedocs.io/en/stable/" closed_at: '2019-08-15T14:34:37Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1959,7 +1938,7 @@ requests.sessions: updated_at: '2019-08-15T14:34:37Z' url: https://api.github.com/repos/packit/ogr/issues/125 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -1978,49 +1957,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.159965 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:20 GMT + ETag: W/"57a22c380411b090fe06e8f3a5df58d2f0a5c0deb426ffe01304500e736c4fe5" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F80B:1335186:6075DCAB + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4238' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '762' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/126: - metadata: - latency: 0.2939918041229248 + latency: 0.12213778495788574 module_call_list: - unittest.case - requre.online_replacing @@ -2039,15 +2013,69 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: COLLABORATOR body: "We have `get_username` method in GitUser class. At the moment we\ - \ are missing method `get_email` for both Github and Pagure services.\r\ + \ are missing method `get_email` for both ~~Github~~ and Pagure services.\r\ \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" - closed_at: null - closed_by: null - comments: 6 + closed_at: '2020-10-12T12:16:21Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 11 comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments created_at: '2019-07-18T07:56:31Z' events_url: https://api.github.com/repos/packit/ogr/issues/126/events @@ -2089,12 +2117,12 @@ requests.sessions: number: 126 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: get_email for GitUser - updated_at: '2020-07-31T10:43:43Z' + updated_at: '2020-10-12T12:16:21Z' url: https://api.github.com/repos/packit/ogr/issues/126 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -2113,49 +2141,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.121955 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:51 GMT + ETag: W/"ab76584da4be8abd2570b70dbbd698f06c4322f98bee31eee860298504015311" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF9D:1333944:6075DC8F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4374' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '626' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/127: - metadata: - latency: 0.2994575500488281 + latency: 0.1859571933746338 module_call_list: - unittest.case - requre.online_replacing @@ -2175,7 +2198,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -2194,7 +2217,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -2217,7 +2240,7 @@ requests.sessions: for it. closed_at: '2019-08-13T07:27:51Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2282,7 +2305,7 @@ requests.sessions: updated_at: '2019-08-13T07:27:51Z' url: https://api.github.com/repos/packit/ogr/issues/127 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 events_url: https://api.github.com/users/marusinm/events{/privacy} followers_url: https://api.github.com/users/marusinm/followers following_url: https://api.github.com/users/marusinm/following{/other_user} @@ -2301,49 +2324,44 @@ requests.sessions: type: User url: https://api.github.com/users/marusinm _next: null - elapsed: 0.2 + elapsed: 0.185786 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:20 GMT + ETag: W/"acdbcf44e29e31435ad828ea08346b5b673bcaead6ee51f2c7290a4bddac69d8" + Last-Modified: Thu, 11 Mar 2021 08:45:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F82E:13351F6:6075DCAC + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4235' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '765' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/13: - metadata: - latency: 0.39758944511413574 + latency: 0.11455106735229492 module_call_list: - unittest.case - requre.online_replacing @@ -2364,7 +2382,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "after installing `ogr` via ``pip3 install .``\r\nI wanted to run\ \ make check ``PYTHONPATH=`pwd` pytest-3 -v ./tests/``\r\n\r\nit leads\ \ to errors like:\r\n```\r\nE File \"/home/jscotka/git/userspace-containerization/ogr/ogr/abstract.py\"\ @@ -2374,7 +2392,7 @@ requests.sessions: \ is not accessible in ``python3-3.6.8-1.fc28.x86_64`` by default\r\n" closed_at: '2019-02-19T14:31:38Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -2411,7 +2429,7 @@ requests.sessions: updated_at: '2019-02-19T14:31:38Z' url: https://api.github.com/repos/packit/ogr/issues/13 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -2430,49 +2448,44 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.114371 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:02:27 GMT + ETag: W/"590bec36d46f774b769d5715fdbd6d5d601b5ef60364a278ece8a5c97155bb5e" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F9FC:133577D:6075DCB3 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4196' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '804' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/132: - metadata: - latency: 0.26184725761413574 + latency: 0.13579773902893066 module_call_list: - unittest.case - requre.online_replacing @@ -2681,7 +2694,7 @@ requests.sessions: push\":true,\"pull\":true}}]'\r\n```" closed_at: '2019-09-12T11:13:02Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 events_url: https://api.github.com/users/rpitonak/events{/privacy} followers_url: https://api.github.com/users/rpitonak/followers following_url: https://api.github.com/users/rpitonak/following{/other_user} @@ -2732,7 +2745,7 @@ requests.sessions: updated_at: '2019-09-12T15:19:54Z' url: https://api.github.com/repos/packit/ogr/issues/132 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -2751,49 +2764,44 @@ requests.sessions: type: User url: https://api.github.com/users/phracek _next: null - elapsed: 0.2 + elapsed: 0.134653 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 18:02:16 GMT + ETag: W/"9d59a8c26c90841f8623a4d36a614444511b84cc5b0dbba903c6ce7c80c6eabf" + Last-Modified: Fri, 26 Mar 2021 11:22:47 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F72A:1334EB3:6075DCA8 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4251' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '749' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/133: - metadata: - latency: 0.2933046817779541 + latency: 0.10836958885192871 module_call_list: - unittest.case - requre.online_replacing @@ -2823,7 +2831,7 @@ requests.sessions: \ statuses. Like nothing is shown and the pull request can not be merged." closed_at: '2020-01-13T09:38:06Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -2895,7 +2903,7 @@ requests.sessions: updated_at: '2020-01-13T09:38:06Z' url: https://api.github.com/repos/packit/ogr/issues/133 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -2914,49 +2922,44 @@ requests.sessions: type: User url: https://api.github.com/users/phracek _next: null - elapsed: 0.2 + elapsed: 0.1082 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 18:02:06 GMT + ETag: W/"97197892a244b6b9b58d5618d117a7574793bb1108ad13a1e51f9587faec6b29" + Last-Modified: Fri, 26 Mar 2021 11:22:47 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F49F:133464C:6075DC9E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4296' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '704' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/134: - metadata: - latency: 0.2454531192779541 + latency: 0.13844990730285645 module_call_list: - unittest.case - requre.online_replacing @@ -2981,7 +2984,7 @@ requests.sessions: body: '' closed_at: '2019-07-23T11:55:10Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -3032,7 +3035,7 @@ requests.sessions: updated_at: '2019-07-23T11:55:10Z' url: https://api.github.com/repos/packit/ogr/issues/134 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3051,49 +3054,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.138212 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:21 GMT + ETag: W/"ab07bd55e41442526bee2b609c9673f8c58d2279be219eb89e8b92e7f1c6995b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F86A:13352BC:6075DCAD + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4232' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '768' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/139: - metadata: - latency: 0.29488134384155273 + latency: 0.1165618896484375 module_call_list: - unittest.case - requre.online_replacing @@ -3114,7 +3112,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "they have a file called ogr.py:\r\n```\r\n$ rpm -ql python3-gdal\ \ | grep ogr\r\n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.opt-1.pyc\r\ \n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.pyc\r\ @@ -3140,7 +3138,7 @@ requests.sessions: \nNo idea how to fix this.\r\n\r\nWTF\r\n" closed_at: '2019-11-11T14:00:21Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -3184,7 +3182,7 @@ requests.sessions: updated_at: '2019-11-11T14:00:21Z' url: https://api.github.com/repos/packit/ogr/issues/139 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -3203,49 +3201,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.116388 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:11 GMT + ETag: W/"acec9e207a92472cf180cab9eb25764bd45e832b9b60626865ed2d4268e899a2" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F5D9:1334A1B:6075DCA2 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4276' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '724' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/143: - metadata: - latency: 0.29246997833251953 + latency: 0.1173253059387207 module_call_list: - unittest.case - requre.online_replacing @@ -3266,7 +3259,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\nTraceback (most recent call last): \ \ \ \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ @@ -3321,7 +3314,7 @@ requests.sessions: \n```" closed_at: '2019-09-19T14:18:04Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -3393,7 +3386,7 @@ requests.sessions: updated_at: '2019-09-19T14:18:04Z' url: https://api.github.com/repos/packit/ogr/issues/143 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -3412,49 +3405,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.117128 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:14 GMT + ETag: W/"cc52c172169ab79ec80714c5512a867e44999fdf629a0732503ef588fedc852b" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F6B4:1334D2B:6075DCA6 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4257' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '743' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/146: - metadata: - latency: 0.26983118057250977 + latency: 0.2017498016357422 module_call_list: - unittest.case - requre.online_replacing @@ -3485,7 +3473,7 @@ requests.sessions: \ So `i.url.replace('api/0/','')`. What is the intended behavior? " closed_at: '2019-08-15T07:11:15Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3543,7 +3531,7 @@ requests.sessions: updated_at: '2019-08-15T07:11:15Z' url: https://api.github.com/repos/packit/ogr/issues/146 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 events_url: https://api.github.com/users/dustymabe/events{/privacy} followers_url: https://api.github.com/users/dustymabe/followers following_url: https://api.github.com/users/dustymabe/following{/other_user} @@ -3562,49 +3550,44 @@ requests.sessions: type: User url: https://api.github.com/users/dustymabe _next: null - elapsed: 0.2 + elapsed: 0.201555 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 18 Aug 2020 18:39:23 GMT + Date: Tue, 13 Apr 2021 18:02:20 GMT + ETag: W/"42d36228e4a251f8169c7baae55480477dadcc94a3cd137c28bcfd28fd7eaf54" + Last-Modified: Mon, 12 Apr 2021 14:36:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F823:13351C4:6075DCAC + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4236' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '764' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/147: - metadata: - latency: 0.28107571601867676 + latency: 0.13416528701782227 module_call_list: - unittest.case - requre.online_replacing @@ -3638,7 +3621,7 @@ requests.sessions: \n- [ ] add tests for all of those\r\n\r\n" closed_at: null closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -3696,7 +3679,7 @@ requests.sessions: updated_at: '2020-06-29T06:46:49Z' url: https://api.github.com/repos/packit/ogr/issues/147 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 events_url: https://api.github.com/users/dustymabe/events{/privacy} followers_url: https://api.github.com/users/dustymabe/followers following_url: https://api.github.com/users/dustymabe/following{/other_user} @@ -3715,49 +3698,44 @@ requests.sessions: type: User url: https://api.github.com/users/dustymabe _next: null - elapsed: 0.2 + elapsed: 0.133991 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 18 Aug 2020 18:39:23 GMT + Date: Tue, 13 Apr 2021 18:01:56 GMT + ETag: W/"499d5185352c2af0de8b587bdc04685c25efb3a0873af1980a06bd7ff8203908" + Last-Modified: Mon, 12 Apr 2021 14:36:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F107:1333D82:6075DC93 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4345' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '655' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/15: - metadata: - latency: 0.295640230178833 + latency: 0.11031270027160645 module_call_list: - unittest.case - requre.online_replacing @@ -3782,7 +3760,7 @@ requests.sessions: body: Thank you in advance! closed_at: '2019-02-18T09:07:33Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -3833,7 +3811,7 @@ requests.sessions: updated_at: '2019-02-18T09:07:33Z' url: https://api.github.com/repos/packit/ogr/issues/15 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -3852,49 +3830,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.110153 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:27 GMT + ETag: W/"d28c7bd33d62ac0fb0f689f9829048d2cd0c35f659e04419f9693f15e22febe4" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78FA05:1335792:6075DCB3 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4195' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '805' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/157: - metadata: - latency: 0.29275965690612793 + latency: 0.1997056007385254 module_call_list: - unittest.case - requre.online_replacing @@ -3922,7 +3895,7 @@ requests.sessions: \ a bit)" closed_at: '2020-07-17T13:52:03Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -3987,7 +3960,7 @@ requests.sessions: updated_at: '2020-07-28T07:07:52Z' url: https://api.github.com/repos/packit/ogr/issues/157 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4006,49 +3979,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.19954 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:55 GMT + ETag: W/"3b23a7023d521f138967c804e78dc4857962d322adfafe484186a828f57606dc" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F0D0:1333CE4:6075DC93 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4348' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '652' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/158: - metadata: - latency: 0.3322434425354004 + latency: 0.26424193382263184 module_call_list: - unittest.case - requre.online_replacing @@ -4068,7 +4036,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -4087,7 +4055,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -4121,7 +4089,7 @@ requests.sessions: \n\r\n" closed_at: '2019-09-26T10:59:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4179,7 +4147,7 @@ requests.sessions: updated_at: '2019-09-26T10:59:40Z' url: https://api.github.com/repos/packit/ogr/issues/158 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4198,49 +4166,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.26407 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:14 GMT + ETag: W/"8716a33a27f3848e732abcc0e85dc1354ab18edc1f11814930bb91dd7f5b2211" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F682:1334C7F:6075DCA5 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4262' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '738' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/159: - metadata: - latency: 0.30217790603637695 + latency: 0.24561786651611328 module_call_list: - unittest.case - requre.online_replacing @@ -4260,7 +4223,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4279,7 +4242,7 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + - 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} @@ -4311,7 +4274,7 @@ requests.sessions: , token=\"asdasdasda\"),\r\n]\r\n```\r\n\r\n\r\n" closed_at: '2019-09-02T10:30:19Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -4362,7 +4325,7 @@ requests.sessions: updated_at: '2019-09-02T10:30:19Z' url: https://api.github.com/repos/packit/ogr/issues/159 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4381,49 +4344,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.245452 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:19 GMT + ETag: W/"df3b45a785b5542220854b8d8d2e52a37b6cdc64acd264e87757368c20de2179" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F7FB:1335170:6075DCAB + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4239' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '761' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/161: - metadata: - latency: 0.27559757232666016 + latency: 0.1435987949371338 module_call_list: - unittest.case - requre.online_replacing @@ -4444,7 +4402,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "https://src.stg.fedoraproject.org/api/0/#pull-requests\r\n\r\n\ we just need to use the new fields such as repo_from which were added\ \ to the API in order to create PRs from forks to parent repos.\r\n\r\ @@ -4453,7 +4411,7 @@ requests.sessions: likely packit will need some code changes to support this" closed_at: '2019-09-09T08:16:38Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4518,7 +4476,7 @@ requests.sessions: updated_at: '2019-09-09T08:16:38Z' url: https://api.github.com/repos/packit/ogr/issues/161 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -4537,49 +4495,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.143421 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:19 GMT + ETag: W/"97907ef545cc11ad6ce33e066ab1f9ae9b1a4298cceabc68031fb3da69d633f5" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F7DE:133512D:6075DCAB + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4241' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '759' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/162: - metadata: - latency: 0.30454063415527344 + latency: 0.16930937767028809 module_call_list: - unittest.case - requre.online_replacing @@ -4599,7 +4552,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4618,7 +4571,7 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + - 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} @@ -4644,7 +4597,7 @@ requests.sessions: \n" closed_at: '2019-09-05T09:00:25Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4716,7 +4669,7 @@ requests.sessions: updated_at: '2019-09-05T09:00:25Z' url: https://api.github.com/repos/packit/ogr/issues/162 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4735,49 +4688,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.169115 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:19 GMT + ETag: W/"4fe57cba5bc7bc39e75a2ab1b7ad332d7ebfd2d31a01bb45882a574f4292ffd8" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F7EE:133515E:6075DCAB + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4240' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '760' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/165: - metadata: - latency: 0.40564775466918945 + latency: 0.21503901481628418 module_call_list: - unittest.case - requre.online_replacing @@ -4804,7 +4752,7 @@ requests.sessions: \ describes the testing approach well.\r\n- [ ] Document `/packit` command." closed_at: '2020-08-14T09:27:22Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -4869,7 +4817,7 @@ requests.sessions: updated_at: '2020-08-14T17:30:15Z' url: https://api.github.com/repos/packit/ogr/issues/165 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -4888,49 +4836,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.214808 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 14 Aug 2020 17:30:15 GMT + Date: Tue, 13 Apr 2021 18:01:54 GMT + ETag: W/"30d417857aa482c0ca0d645662d3a2e044aa02baf71a757d602ee73fc3ec4587" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F07A:1333C0E:6075DC92 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4354' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '646' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/168: - metadata: - latency: 0.2428901195526123 + latency: 0.1214447021484375 module_call_list: - unittest.case - requre.online_replacing @@ -4950,7 +4893,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -4969,7 +4912,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -5032,7 +4975,7 @@ requests.sessions: \ %s not found\" % target_repo)\r\n\r\n return fork\r\n```" closed_at: '2019-09-12T10:04:41Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -5097,7 +5040,7 @@ requests.sessions: updated_at: '2019-09-12T10:04:41Z' url: https://api.github.com/repos/packit/ogr/issues/168 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -5116,49 +5059,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.121251 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:17 GMT + ETag: W/"88ab1fc03e944da9d56285586b34cae24a381dc2ac72d788944f3f67a0e9664d" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F743:1334F19:6075DCA9 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4248' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '752' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/169: - metadata: - latency: 0.2975120544433594 + latency: 0.19747686386108398 module_call_list: - unittest.case - requre.online_replacing @@ -5178,7 +5116,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -5197,7 +5135,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -5227,7 +5165,7 @@ requests.sessions: \n- https://docs.gitlab.com/ce/api/members.html" closed_at: '2019-09-26T10:43:41Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -5292,7 +5230,7 @@ requests.sessions: updated_at: '2019-09-26T10:43:41Z' url: https://api.github.com/repos/packit/ogr/issues/169 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -5311,49 +5249,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.197299 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:14 GMT + ETag: W/"1343c55e03a3e8715f993b5b4fcb0736d7ae55199eb02c54ac7a1155520e726e" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F68E:1334CBD:6075DCA6 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4261' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '739' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/17: - metadata: - latency: 0.34221744537353516 + latency: 0.11344313621520996 module_call_list: - unittest.case - requre.online_replacing @@ -5374,7 +5307,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\r\nit is unbale to get or install ``ansible-bender`` for ``make\ \ build`` target.\r\n\r\nIt is not part of Fedora-29.\r\n\r\nI've found\ \ that @TomasTomecek done this: https://github.com/TomasTomecek/ansible-bender\r\ @@ -5401,7 +5334,7 @@ requests.sessions: \ ``sudo dnf install buildah `` it finally works." closed_at: '2019-06-25T09:00:15Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -5438,7 +5371,7 @@ requests.sessions: updated_at: '2019-06-25T09:00:15Z' url: https://api.github.com/repos/packit/ogr/issues/17 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -5457,49 +5390,44 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.113186 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:02:25 GMT + ETag: W/"b93e4a1ef97979ea5cb37dd491364ce0644c6ff75cfcbc6d56e2135172e42ca0" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F972:13355B4:6075DCB1 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4213' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '787' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/170: - metadata: - latency: 0.3002159595489502 + latency: 0.14098191261291504 module_call_list: - unittest.case - requre.online_replacing @@ -5519,7 +5447,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -5538,7 +5466,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -5561,7 +5489,7 @@ requests.sessions: \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html" closed_at: '2019-09-10T14:30:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -5626,7 +5554,7 @@ requests.sessions: updated_at: '2019-09-10T14:30:35Z' url: https://api.github.com/repos/packit/ogr/issues/170 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -5645,49 +5573,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.140738 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:17 GMT + ETag: W/"2e445599f0245d7c3bbb2e874905b101209300f3cbdeb44718bacea1af6170bc" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F76D:1334F94:6075DCA9 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4245' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '755' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/171: - metadata: - latency: 0.22491240501403809 + latency: 0.11543083190917969 module_call_list: - unittest.case - requre.online_replacing @@ -5707,7 +5630,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -5726,7 +5649,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -5752,7 +5675,7 @@ requests.sessions: \n- https://docs.gitlab.com/ce/api/issues.html" closed_at: '2019-09-25T08:34:08Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -5817,7 +5740,7 @@ requests.sessions: updated_at: '2019-09-25T08:34:08Z' url: https://api.github.com/repos/packit/ogr/issues/171 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -5836,49 +5759,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.115258 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:14 GMT + ETag: W/"1af02450b9bfe3f29dfeaa01dcc8601bffd762b6dc40b3c5a3f263d5d62b1f37" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F69F:1334CF7:6075DCA6 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4259' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '741' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/172: - metadata: - latency: 0.3026618957519531 + latency: 0.2851274013519287 module_call_list: - unittest.case - requre.online_replacing @@ -5898,7 +5816,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -5917,7 +5835,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -5951,7 +5869,7 @@ requests.sessions: \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status" closed_at: '2019-09-19T09:46:56Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -6016,7 +5934,7 @@ requests.sessions: updated_at: '2019-09-19T09:46:56Z' url: https://api.github.com/repos/packit/ogr/issues/172 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6035,49 +5953,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.284942 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:15 GMT + ETag: W/"6379a81186f9d5e869ff30b66367bf768b5dea55315c287923d6f248115ab201" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F6E2:1334DE7:6075DCA7 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4255' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '745' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/173: - metadata: - latency: 0.2558462619781494 + latency: 0.3162655830383301 module_call_list: - unittest.case - requre.online_replacing @@ -6097,7 +6010,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -6116,7 +6029,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -6141,7 +6054,7 @@ requests.sessions: \n- https://docs.gitlab.com/ee/api/merge_requests.html" closed_at: '2019-09-12T08:58:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -6206,7 +6119,7 @@ requests.sessions: updated_at: '2019-09-12T08:58:35Z' url: https://api.github.com/repos/packit/ogr/issues/173 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6225,49 +6138,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.316097 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:17 GMT + ETag: W/"ce3639c62796c023d85543bb743799f217492e4b760e267eaf2f544d525ad815" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F751:1334F2F:6075DCA9 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4247' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '753' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/174: - metadata: - latency: 0.3036613464355469 + latency: 0.11589312553405762 module_call_list: - unittest.case - requre.online_replacing @@ -6287,7 +6195,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -6306,7 +6214,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -6331,7 +6239,7 @@ requests.sessions: \n- https://docs.gitlab.com/ee/api/merge_requests.html" closed_at: '2019-09-25T08:50:51Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6396,7 +6304,7 @@ requests.sessions: updated_at: '2019-09-25T08:50:51Z' url: https://api.github.com/repos/packit/ogr/issues/174 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6415,49 +6323,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.115659 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:14 GMT + ETag: W/"261df2bb9b4adb29ea079c7d7e8c562b16a33abdd7d3a16880ff0e4cb2b6b796" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F698:1334CE2:6075DCA6 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4260' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '740' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/175: - metadata: - latency: 0.3045482635498047 + latency: 0.33161377906799316 module_call_list: - unittest.case - requre.online_replacing @@ -6477,7 +6380,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -6496,7 +6399,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -6523,7 +6426,7 @@ requests.sessions: \n- https://docs.gitlab.com/ce/api/projects.html" closed_at: '2019-09-10T11:56:53Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -6588,7 +6491,7 @@ requests.sessions: updated_at: '2019-09-10T11:56:53Z' url: https://api.github.com/repos/packit/ogr/issues/175 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6607,49 +6510,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.331388 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:17 GMT + ETag: W/"e04ebd84873c2232309c0e9db72aaeabece32d77371d8ba2a1e11006e990b560" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F774:1334FB4:6075DCA9 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4244' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '756' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/176: - metadata: - latency: 0.23024868965148926 + latency: 0.11457991600036621 module_call_list: - unittest.case - requre.online_replacing @@ -6669,7 +6567,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -6688,7 +6586,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -6712,7 +6610,7 @@ requests.sessions: \n- https://docs.gitlab.com/ee/api/releases/" closed_at: '2019-09-10T11:44:35Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -6777,7 +6675,7 @@ requests.sessions: updated_at: '2019-09-10T11:44:35Z' url: https://api.github.com/repos/packit/ogr/issues/176 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -6796,49 +6694,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.114408 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:18 GMT + ETag: W/"c99e4874552a85cfccac393182728c391d04976b6fd5f61d91ca80ac6d0d8ab2" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F78E:1335015:6075DCAA + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4243' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '757' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/177: - metadata: - latency: 0.2927572727203369 + latency: 0.11810111999511719 module_call_list: - unittest.case - requre.online_replacing @@ -6859,7 +6752,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "see log: \r\nhttps://softwarefactory-project.io/logs/13/513/8c3c6370096e5834c90dc5ff06e47cf9f3443cde/check/tests-pip-deps/cd79e16/job-output.txt.gz\r\ \nwith git master it works, but pypi and rpm version of ogr fails with\ \ errors like:\r\n**TypeError: __init__() got an unexpected keyword\ @@ -6888,7 +6781,7 @@ requests.sessions: \ got an unexpected keyword argument 'exception'\r\n```" closed_at: '2019-09-12T11:08:06Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 events_url: https://api.github.com/users/rpitonak/events{/privacy} followers_url: https://api.github.com/users/rpitonak/followers following_url: https://api.github.com/users/rpitonak/following{/other_user} @@ -6926,7 +6819,7 @@ requests.sessions: updated_at: '2019-09-12T11:08:06Z' url: https://api.github.com/repos/packit/ogr/issues/177 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -6945,49 +6838,44 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.117915 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:02:17 GMT + ETag: W/"9f4ca2ab4b85c905bc60246e89c40546ebea15c2c16875c3fbbc9d5f11f08127" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F73C:1334EF9:6075DCA8 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4249' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '751' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/178: - metadata: - latency: 0.30130577087402344 + latency: 0.17624664306640625 module_call_list: - unittest.case - requre.online_replacing @@ -7016,7 +6904,7 @@ requests.sessions: \ library.\r\nUse such library in ogr." closed_at: '2019-11-29T11:43:21Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -7081,7 +6969,7 @@ requests.sessions: updated_at: '2019-11-29T11:43:21Z' url: https://api.github.com/repos/packit/ogr/issues/178 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -7100,49 +6988,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.176033 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:02:09 GMT + ETag: W/"20c87a08cf77fa1c5614353593b3f1e984dc3eecb6e6c98427bea133e94c8648" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F593:1334919:6075DCA1 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4282' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '718' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/181: - metadata: - latency: 0.29413342475891113 + latency: 0.12104249000549316 module_call_list: - unittest.case - requre.online_replacing @@ -7170,7 +7053,7 @@ requests.sessions: \ of `LAST_GENERATED_BY = ` constant." closed_at: '2019-09-19T08:09:47Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -7221,7 +7104,7 @@ requests.sessions: updated_at: '2019-09-19T08:09:47Z' url: https://api.github.com/repos/packit/ogr/issues/181 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -7240,49 +7123,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.120883 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:16 GMT + ETag: W/"3409d0ebc016e0ea6a163b44870ab6079b3b402103b4a58cb99b7db95a4f5f52" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F70E:1334E5C:6075DCA8 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4253' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '747' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/188: - metadata: - latency: 0.30474138259887695 + latency: 0.12316775321960449 module_call_list: - unittest.case - requre.online_replacing @@ -7303,11 +7181,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2019-09-11T07:59:58Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -7358,7 +7236,7 @@ requests.sessions: updated_at: '2019-09-11T07:59:58Z' url: https://api.github.com/repos/packit/ogr/issues/188 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -7377,49 +7255,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.123008 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:17 GMT + ETag: W/"3039b06ef41edfc4c2c73a194aae51ad98ad0da7d5082b3bdb0fd290099352ea" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F765:1334F7D:6075DCA9 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4246' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '754' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/193: - metadata: - latency: 0.49788975715637207 + latency: 0.2044973373413086 module_call_list: - unittest.case - requre.online_replacing @@ -7450,7 +7323,7 @@ requests.sessions: \ ] release-bot\r\n - https://github.com/user-cont/release-bot/blob/master/release_bot/github.py#L308" closed_at: '2019-12-04T12:26:57Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -7522,7 +7395,7 @@ requests.sessions: updated_at: '2019-12-04T12:26:57Z' url: https://api.github.com/repos/packit/ogr/issues/193 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -7541,49 +7414,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.204316 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:08 GMT + ETag: W/"82f1efd452a4abb342a0e16392be5373013fef506118178ca60f3b02e5a0a303" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F514:13347BD:6075DCA0 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4289' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '711' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/194: - metadata: - latency: 0.29395484924316406 + latency: 0.27768683433532715 module_call_list: - unittest.case - requre.online_replacing @@ -7608,7 +7476,7 @@ requests.sessions: body: '' closed_at: '2019-09-19T07:00:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -7645,7 +7513,7 @@ requests.sessions: updated_at: '2019-09-19T07:00:59Z' url: https://api.github.com/repos/packit/ogr/issues/194 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -7664,49 +7532,44 @@ requests.sessions: type: User url: https://api.github.com/users/phracek _next: null - elapsed: 0.2 + elapsed: 0.277465 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 18:02:16 GMT + ETag: W/"3be903170ee960ecc89092f5223b539896c63c8cf2e589035c4e773d3609bc12" + Last-Modified: Fri, 26 Mar 2021 11:22:47 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F717:1334E73:6075DCA8 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4252' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '748' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/196: - metadata: - latency: 0.257216215133667 + latency: 0.18125319480895996 module_call_list: - unittest.case - requre.online_replacing @@ -7726,7 +7589,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -7745,7 +7608,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -7780,7 +7643,7 @@ requests.sessions: \ the specific `ipynb` files." closed_at: '2020-08-13T10:28:26Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -7852,7 +7715,7 @@ requests.sessions: updated_at: '2020-08-13T10:28:26Z' url: https://api.github.com/repos/packit/ogr/issues/196 user: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 events_url: https://api.github.com/users/rpitonak/events{/privacy} followers_url: https://api.github.com/users/rpitonak/followers following_url: https://api.github.com/users/rpitonak/following{/other_user} @@ -7871,49 +7734,44 @@ requests.sessions: type: User url: https://api.github.com/users/rpitonak _next: null - elapsed: 0.2 + elapsed: 0.181071 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:54 GMT + ETag: W/"189cc5e4b8df8405b3a37dfc3b86638a802ae7e8fad4befc118422d88ea2eb24" + Last-Modified: Tue, 13 Apr 2021 14:48:33 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F08F:1333C52:6075DC92 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4353' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '647' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/199: - metadata: - latency: 0.29276275634765625 + latency: 0.10313606262207031 module_call_list: - unittest.case - requre.online_replacing @@ -7968,6 +7826,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -8005,10 +7870,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Do not let the external exception go to the user - updated_at: '2020-06-16T12:56:15Z' + updated_at: '2020-09-30T14:57:41Z' url: https://api.github.com/repos/packit/ogr/issues/199 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8027,49 +7892,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.102856 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:52 GMT + ETag: W/"8c84af66c1ddc723abe89fe5b4a4974d56325d28c147432e8fc0907df39e7941" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EFF6:1333A56:6075DC90 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4367' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '633' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/203: - metadata: - latency: 0.2910444736480713 + latency: 0.5209784507751465 module_call_list: - unittest.case - requre.online_replacing @@ -8089,7 +7949,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -8108,7 +7968,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -8139,7 +7999,7 @@ requests.sessions: \ `namespace`)\r\n" closed_at: '2019-09-19T09:13:21Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -8204,7 +8064,7 @@ requests.sessions: updated_at: '2019-09-19T09:27:27Z' url: https://api.github.com/repos/packit/ogr/issues/203 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8223,49 +8083,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.5208 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:16 GMT + ETag: W/"c989d734ed24e91934ce7bdd822009308e746483bdc503a25020681134a1339f" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F6F5:1334E0E:6075DCA7 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4254' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '746' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/204: - metadata: - latency: 0.3944237232208252 + latency: 0.11975932121276855 module_call_list: - unittest.case - requre.online_replacing @@ -8285,7 +8140,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -8304,7 +8159,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -8330,7 +8185,7 @@ requests.sessions: \ least two tests for that (with and without specifying `namespace`)" closed_at: '2019-10-15T07:33:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -8409,7 +8264,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/204 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8428,49 +8283,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.119573 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:12 GMT + ETag: W/"9d284ce065f224396bb84356f25b54c6ce9ac95a761679324d283fab1cec58e1" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F63D:1334BAA:6075DCA4 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4269' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '731' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/205: - metadata: - latency: 0.6433777809143066 + latency: 0.28051304817199707 module_call_list: - unittest.case - requre.online_replacing @@ -8490,7 +8340,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -8509,7 +8359,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -8551,7 +8401,7 @@ requests.sessions: \ there" closed_at: '2019-10-03T14:35:15Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -8644,7 +8494,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/205 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8663,49 +8513,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.280302 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:12 GMT + ETag: W/"88246cb718bdf7c050faa6a1ec05e619132e69fa8a6578c1260325927a6e1086" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F631:1334B69:6075DCA4 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4270' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '730' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/209: - metadata: - latency: 0.27674388885498047 + latency: 0.11873340606689453 module_call_list: - unittest.case - requre.online_replacing @@ -8737,9 +8582,27 @@ requests.sessions: \n - https://pagure.io/api/0/\r\n - https://pygithub.readthedocs.io/\r\ \n - https://python-gitlab.readthedocs.io/\r\n - ...\r\n \r\n\ - How to write a good git commit messages:\r\n - https://chris.beams.io/posts/git-commit/" - closed_at: null - closed_by: null - comments: 10 + closed_at: '2020-09-24T20:15:17Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 13 comments_url: https://api.github.com/repos/packit/ogr/issues/209/comments created_at: '2019-09-19T09:51:21Z' events_url: https://api.github.com/repos/packit/ogr/issues/209/events @@ -8767,12 +8630,12 @@ requests.sessions: number: 209 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Add info about git workflow to contribution guide (and other suggestions) - updated_at: '2020-07-21T09:28:36Z' + updated_at: '2020-09-24T20:15:17Z' url: https://api.github.com/repos/packit/ogr/issues/209 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -8791,49 +8654,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.118502 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:52 GMT + ETag: W/"cab9e5b75f1c031fb926580da22bf713892bb59a9710d7d9e5575db8c5f3b898" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EFFC:1333A72:6075DC90 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4366' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '634' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/21: - metadata: - latency: 0.33359384536743164 + latency: 0.10834813117980957 module_call_list: - unittest.case - requre.online_replacing @@ -8854,7 +8712,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\n138 Bytecompiling .py files below /builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6\ \ using /usr/bin/python3.6\r\n139 *** Error compiling '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/abstract.py'...\r\ \n140 File \"/usr/lib/python3.6/abstract.py\", line 1\r\n141 SyntaxError:\ @@ -8867,7 +8725,7 @@ requests.sessions: \ future feature annotations is not defined\r\n```\r\n" closed_at: '2019-02-27T08:38:17Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -8918,7 +8776,7 @@ requests.sessions: updated_at: '2019-02-27T08:38:17Z' url: https://api.github.com/repos/packit/ogr/issues/21 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -8937,49 +8795,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.108043 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:27 GMT + ETag: W/"1df904d1c3a2ff4ff52bfd2ea87e99b74ac68a50aa55f9bd4e34cc615c2f5725" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F9F5:1335760:6075DCB3 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4197' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '803' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/211: - metadata: - latency: 0.26338791847229004 + latency: 0.11550378799438477 module_call_list: - unittest.case - requre.online_replacing @@ -9010,7 +8863,7 @@ requests.sessions: \n" closed_at: '2020-03-03T15:49:36Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9096,7 +8949,7 @@ requests.sessions: updated_at: '2020-03-03T15:49:36Z' url: https://api.github.com/repos/packit/ogr/issues/211 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9115,49 +8968,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.115336 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:03 GMT + ETag: W/"d1f8cf815557194ff7f27e377c1b50211076efc3a2aaf6508f38649705af9dd1" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F3CF:1334419:6075DC9B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4307' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '693' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/212: - metadata: - latency: 0.21680808067321777 + latency: 0.2010650634765625 module_call_list: - unittest.case - requre.online_replacing @@ -9186,9 +9034,27 @@ requests.sessions: Examples:\r\n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/commits\r\ \n- https://github.com/packit-service/ogr/pull/1/commits\r\n- https://pagure.io/ogr-tests/pull-request/7#commit_list\r\ \n" - closed_at: null - closed_by: null - comments: 5 + closed_at: '2021-02-03T19:24:22Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 9 comments_url: https://api.github.com/repos/packit/ogr/issues/212/comments created_at: '2019-09-19T18:48:58Z' events_url: https://api.github.com/repos/packit/ogr/issues/212/events @@ -9209,6 +9075,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -9237,6 +9110,13 @@ requests.sessions: name: low-prio node_id: MDU6TGFiZWwxNDMyNzc5MzQw url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale labels_url: https://api.github.com/repos/packit/ogr/issues/212/labels{/name} locked: false milestone: null @@ -9244,12 +9124,12 @@ requests.sessions: number: 212 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Add commits url to PullRequest class - updated_at: '2020-07-03T14:18:58Z' + updated_at: '2021-02-03T19:24:22Z' url: https://api.github.com/repos/packit/ogr/issues/212 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9268,49 +9148,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.200889 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:48 GMT + ETag: W/"9bb934c40c51e38d1f61d1d58836ea7c0d9a567c64d4c65432e2964388b6fe60" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EEC8:13336D5:6075DC8C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4392' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '608' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/213: - metadata: - latency: 0.2767372131347656 + latency: 0.10259866714477539 module_call_list: - unittest.case - requre.online_replacing @@ -9343,7 +9218,7 @@ requests.sessions: \n- https://pagure.io/ogr-tests/" closed_at: '2019-09-24T08:53:16Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -9436,7 +9311,7 @@ requests.sessions: updated_at: '2019-09-25T06:07:53Z' url: https://api.github.com/repos/packit/ogr/issues/213 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9455,49 +9330,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.102398 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:14 GMT + ETag: W/"450a86cb6b68808bff70b5e038a8abce703eede6e50f97bcceb0f4bec4aab8fb" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F6A9:1334D11:6075DCA6 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4258' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '742' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/214: - metadata: - latency: 0.3973095417022705 + latency: 0.11605024337768555 module_call_list: - unittest.case - requre.online_replacing @@ -9528,9 +9398,9 @@ requests.sessions: \ raise an exception in methods like `get_project`\r\n - easier implementation\r\ \n - we need to connect to the remote service even when it is not\ \ needed" - closed_at: null + closed_at: '2020-10-30T23:47:21Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -9548,7 +9418,7 @@ requests.sessions: subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions type: Bot url: https://api.github.com/users/stale%5Bbot%5D - comments: 8 + comments: 11 comments_url: https://api.github.com/repos/packit/ogr/issues/214/comments created_at: '2019-09-19T19:30:39Z' events_url: https://api.github.com/repos/packit/ogr/issues/214/events @@ -9569,6 +9439,13 @@ requests.sessions: name: needs-design node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 url: https://api.github.com/repos/packit/ogr/labels/needs-design + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale - color: 8be567 default: false description: Usability issue. @@ -9583,12 +9460,12 @@ requests.sessions: number: 214 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: '[question] Allow objects representing nonexisting objects' - updated_at: '2020-08-17T12:28:02Z' + updated_at: '2021-02-05T08:34:05Z' url: https://api.github.com/repos/packit/ogr/issues/214 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9607,49 +9484,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.115874 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:28:02 GMT + Date: Tue, 13 Apr 2021 18:01:46 GMT + ETag: W/"7656756638b0b153b4b2b2c9db30f2e4b7526b30d2f56950b2d00f8ac4a16509" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EE67:1333598:6075DC8A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4401' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '599' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/215: - metadata: - latency: 0.3953585624694824 + latency: 0.2619211673736572 module_call_list: - unittest.case - requre.online_replacing @@ -9671,16 +9543,34 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Add method to project classes to delete project.\r\n\r\nAC:\r\n\ - - [ ] In each implementation, add the `delete` method to project class\ + body: "Add method to project classes to delete a project.\r\n\r\nAC:\r\ + \n- [ ] In each implementation, add the `delete` method to project class\ \ and implement it.\r\n - If possible/supported. (Document that if\ - \ it is not possible.)\r\n- [ ] Add tests for that.\r\n\r\nLinks:\r\n\ - - https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \ it is not possible and raise an exception with a good message.)\r\n\ + - [ ] Add tests for that.\r\n\r\nLinks:\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ \n- https://pagure.io/api/0/ (not found the possible API call for that\ \ on the first look)" - closed_at: null - closed_by: null + closed_at: '2020-10-21T11:18:39Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D comments: 8 comments_url: https://api.github.com/repos/packit/ogr/issues/215/comments created_at: '2019-09-20T05:36:56Z' @@ -9702,6 +9592,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -9737,12 +9634,12 @@ requests.sessions: number: 215 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Implement GitProject.delete() - updated_at: '2020-08-17T10:59:13Z' + updated_at: '2020-10-21T11:18:40Z' url: https://api.github.com/repos/packit/ogr/issues/215 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9761,49 +9658,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.261732 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:59:13 GMT + Date: Tue, 13 Apr 2021 18:01:50 GMT + ETag: W/"8299749c23bca23dae80126436dafdd9f2b789bfbf09572873e712084572cd19" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF69:13338B2:6075DC8E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4379' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '621' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/216: - metadata: - latency: 0.2928581237792969 + latency: 0.17010951042175293 module_call_list: - unittest.case - requre.online_replacing @@ -9823,7 +9715,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -9842,7 +9734,7 @@ requests.sessions: type: User url: https://api.github.com/users/shreyaspapi assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -9869,7 +9761,7 @@ requests.sessions: \n- https://pagure.io/api/0/ ( > Modify ACLs on a project ?)\r\n" closed_at: '2020-05-11T19:45:01Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -9948,7 +9840,7 @@ requests.sessions: updated_at: '2020-05-11T19:45:01Z' url: https://api.github.com/repos/packit/ogr/issues/216 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -9967,49 +9859,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.169917 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 01:42:30 GMT + Date: Tue, 13 Apr 2021 18:01:58 GMT + ETag: W/"af0c314bc5f8e781233419e16ade879550ea6c27484f376ba73e1d0b603204b9" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F1DB:1333F0E:6075DC96 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4333' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '667' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/218: - metadata: - latency: 0.30093979835510254 + latency: 0.1283106803894043 module_call_list: - unittest.case - requre.online_replacing @@ -10029,7 +9916,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -10048,7 +9935,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -10072,7 +9959,7 @@ requests.sessions: \ namespace (in case of Pagure projects)" closed_at: '2019-09-25T05:20:03Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -10151,7 +10038,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/218 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -10170,49 +10057,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.128075 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:13 GMT + ETag: W/"99e1317a02371f2fccdecb6dcd99c16963f2ef54fbe5c6ac88f14bed8644f881" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F657:1334BE0:6075DCA5 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4267' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '733' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/220: - metadata: - latency: 0.30905723571777344 + latency: 0.16733646392822266 module_call_list: - unittest.case - requre.online_replacing @@ -10244,7 +10126,7 @@ requests.sessions: \ offline?\r\n\r\n" closed_at: '2019-10-02T09:17:18Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -10295,7 +10177,7 @@ requests.sessions: updated_at: '2019-10-02T09:17:18Z' url: https://api.github.com/repos/packit/ogr/issues/220 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -10314,49 +10196,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.16712 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:13 GMT + ETag: W/"3b250ce386ae0bf7d81dd35741222998d65c92a2aa52f764869d6286d63a099a" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F668:1334C34:6075DCA5 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4265' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '735' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/222: - metadata: - latency: 0.2922649383544922 + latency: 0.1089935302734375 module_call_list: - unittest.case - requre.online_replacing @@ -10381,7 +10258,7 @@ requests.sessions: body: The release time is now! closed_at: '2019-09-26T11:11:51Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -10432,7 +10309,7 @@ requests.sessions: updated_at: '2019-09-26T11:11:51Z' url: https://api.github.com/repos/packit/ogr/issues/222 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -10451,49 +10328,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.10879 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:13 GMT + ETag: W/"9710a51eb383387920a929a08957f8d65f1dff679c906688aa451e53233a61d1" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F67B:1334C69:6075DCA5 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4263' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '737' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/224: - metadata: - latency: 0.2931399345397949 + latency: 0.12259149551391602 module_call_list: - unittest.case - requre.online_replacing @@ -10520,7 +10392,7 @@ requests.sessions: can we factor it out since it''s identical? ' closed_at: '2019-09-30T11:40:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -10578,7 +10450,7 @@ requests.sessions: updated_at: '2019-09-30T11:40:39Z' url: https://api.github.com/repos/packit/ogr/issues/224 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -10597,49 +10469,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.122203 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:13 GMT + ETag: W/"566dceab698b2c01d43d0f25e0d66773ea1a2e0ffb4dbe300457018ebe4fe4b2" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F675:1334C4E:6075DCA5 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4264' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '736' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/225: - metadata: - latency: 0.29324913024902344 + latency: 0.11970829963684082 module_call_list: - unittest.case - requre.online_replacing @@ -10660,13 +10527,13 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "After there will be done these stuff:\r\n - [ ] https://github.com/packit-service/ogr/pull/201\ \ will be merged\r\n - [ ] there will be fixed also ``packit`` to use\ \ ``requre``\r\n\r\nthen remove all mocking stuff from this project" closed_at: '2019-12-04T08:54:10Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -10717,7 +10584,7 @@ requests.sessions: updated_at: '2019-12-04T08:54:17Z' url: https://api.github.com/repos/packit/ogr/issues/225 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -10736,49 +10603,44 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.11948 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:02:08 GMT + ETag: W/"4409a4c609cf9d0bf8b00e32601df155c64c3a929935bf2a58a70c6515b54a5d" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F52F:133480C:6075DCA0 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4287' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '713' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/229: - metadata: - latency: 0.3962736129760742 + latency: 0.1030879020690918 module_call_list: - unittest.case - requre.online_replacing @@ -10854,7 +10716,7 @@ requests.sessions: updated_at: '2020-06-15T08:46:36Z' url: https://api.github.com/repos/packit/ogr/issues/229 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -10873,49 +10735,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.102834 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:56 GMT + ETag: W/"24e094effccdc63610851e69707c8ec68fa20fe69771269f4a0fcd2f95be10da" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F137:1333DE2:6075DC94 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4341' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '659' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/23: - metadata: - latency: 0.24566078186035156 + latency: 0.11185479164123535 module_call_list: - unittest.case - requre.online_replacing @@ -10940,7 +10797,7 @@ requests.sessions: body: Release bot, please! closed_at: '2019-02-28T10:42:18Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -10991,7 +10848,7 @@ requests.sessions: updated_at: '2019-02-28T10:42:18Z' url: https://api.github.com/repos/packit/ogr/issues/23 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -11010,49 +10867,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.111564 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:27 GMT + ETag: W/"e771fba13e0eadf00925145f37e545be3f98bee8eb22968c78fd8ea9f3a6c16b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F9EF:133574D:6075DCB3 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4198' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '802' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/230: - metadata: - latency: 0.2946627140045166 + latency: 0.20021796226501465 module_call_list: - unittest.case - requre.online_replacing @@ -11090,7 +10942,7 @@ requests.sessions: \ specific service could take the `raw_comment` in constructor?" closed_at: '2019-10-23T13:09:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -11169,7 +11021,7 @@ requests.sessions: updated_at: '2019-10-23T13:09:59Z' url: https://api.github.com/repos/packit/ogr/issues/230 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11188,49 +11040,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.199997 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:11 GMT + ETag: W/"2085dd0879384c393ffca146a2c4cf5bba4ccdf24d270edf533a1ee1cd110826" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F5F0:1334A76:6075DCA3 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4274' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '726' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/232: - metadata: - latency: 0.2906057834625244 + latency: 0.2819075584411621 module_call_list: - unittest.case - requre.online_replacing @@ -11250,7 +11097,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11269,7 +11116,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -11301,7 +11148,7 @@ requests.sessions: \ of caller\r\n\r\nRelated to #86" closed_at: '2019-10-11T06:36:16Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -11373,7 +11220,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:46Z' url: https://api.github.com/repos/packit/ogr/issues/232 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11392,49 +11239,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.281681 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:13 GMT + ETag: W/"c7db90ec3cf35feb9c10542ee9df91f916faa0d4d6d5343a82335b185f276f63" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F648:1334BCA:6075DCA4 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4268' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '732' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/233: - metadata: - latency: 0.27874183654785156 + latency: 0.1995563507080078 module_call_list: - unittest.case - requre.online_replacing @@ -11460,7 +11302,7 @@ requests.sessions: instead of `ogr.abstract` closed_at: '2019-10-07T11:02:37Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -11532,7 +11374,7 @@ requests.sessions: updated_at: '2019-10-07T11:02:38Z' url: https://api.github.com/repos/packit/ogr/issues/233 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11551,49 +11393,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.199332 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:13 GMT + ETag: W/"526e0f6e707dca1b976c000ff3e5a6e3fda0186174943e4dcd97dd93bbc0e164" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F65D:1334BFC:6075DCA5 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4266' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '734' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/237: - metadata: - latency: 0.26801180839538574 + latency: 0.19753670692443848 module_call_list: - unittest.case - requre.online_replacing @@ -11614,7 +11451,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "similar to https://github.com/packit-service/requre/issues/29\r\ \nplease add reverse dependency testing what will check that change\ \ will not break ``packit`` and in case it is broken, will raise that\ @@ -11622,7 +11459,7 @@ requests.sessions: \ that it found bug in ogr. " closed_at: '2020-04-07T08:41:19Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -11659,7 +11496,7 @@ requests.sessions: updated_at: '2020-04-07T08:41:19Z' url: https://api.github.com/repos/packit/ogr/issues/237 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 events_url: https://api.github.com/users/jscotka/events{/privacy} followers_url: https://api.github.com/users/jscotka/followers following_url: https://api.github.com/users/jscotka/following{/other_user} @@ -11678,49 +11515,44 @@ requests.sessions: type: User url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.19729 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:02:01 GMT + ETag: W/"1340234b314092470e12d8eeaac64f72b800308bba3e3184eed4bb391cb8baba" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F305:133419F:6075DC99 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4317' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '683' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/240: - metadata: - latency: 0.30120253562927246 + latency: 0.18926095962524414 module_call_list: - unittest.case - requre.online_replacing @@ -11740,7 +11572,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -11759,7 +11591,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -11786,7 +11618,7 @@ requests.sessions: \n - [ ] gitlab\r\n - [ ] pagure" closed_at: '2019-10-15T10:49:50Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -11872,7 +11704,7 @@ requests.sessions: updated_at: '2019-10-15T11:03:47Z' url: https://api.github.com/repos/packit/ogr/issues/240 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -11891,49 +11723,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.189053 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:12 GMT + ETag: W/"0c21b88f25a24de69cf760638f3a0f6b278578516cc32c95a09a602fae75200d" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F61A:1334B24:6075DCA4 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4272' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '728' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/245: - metadata: - latency: 0.41040611267089844 + latency: 0.12252569198608398 module_call_list: - unittest.case - requre.online_replacing @@ -11961,7 +11788,7 @@ requests.sessions: \n\r\n---\r\n\r\nThe follow-up to #242 ." closed_at: '2020-01-03T08:43:55Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -12012,7 +11839,7 @@ requests.sessions: updated_at: '2020-01-03T08:43:55Z' url: https://api.github.com/repos/packit/ogr/issues/245 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12031,49 +11858,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.122335 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:07 GMT + ETag: W/"21e4d259ef592e07715bc9219b5b4c892b77a55b1ff5435a87a4c71f71c106e3" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F4E4:13346FB:6075DC9F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4291' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '709' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/25: - metadata: - latency: 0.21846699714660645 + latency: 0.08902239799499512 module_call_list: - unittest.case - requre.online_replacing @@ -12094,12 +11916,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "we need this b/c 0.0.2 doesn't have specfile\r\n\r\nand I want\ \ to use packit to bring the release to fedora" closed_at: '2019-03-01T15:56:25Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -12150,7 +11972,7 @@ requests.sessions: updated_at: '2019-03-01T16:19:00Z' url: https://api.github.com/repos/packit/ogr/issues/25 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -12169,49 +11991,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.088855 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:27 GMT + ETag: W/"18f17d7a81b846d147b78db623c89326278d4ec9559f9b1dac5504964698e3e3" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F9E5:1335737:6075DCB3 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4199' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '801' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/250: - metadata: - latency: 0.29332756996154785 + latency: 0.11310338973999023 module_call_list: - unittest.case - requre.online_replacing @@ -12245,7 +12062,7 @@ requests.sessions: \ for both of them\r\n\r\n\r\n" closed_at: '2019-12-04T08:50:38Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12303,7 +12120,7 @@ requests.sessions: updated_at: '2019-12-04T08:50:38Z' url: https://api.github.com/repos/packit/ogr/issues/250 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -12322,49 +12139,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.112933 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:08 GMT + ETag: W/"32b1c834b2c48d532e11f712cf4f6cd2173d8f523a252b9edb653a121c687cd3" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F53D:1334821:6075DCA0 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4286' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '714' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/251: - metadata: - latency: 0.3037295341491699 + latency: 0.09994077682495117 module_call_list: - unittest.case - requre.online_replacing @@ -12399,54 +12211,88 @@ requests.sessions: \ cannot be easily fixed\r\n\r\nThis does not need to be done in one\ \ PR. Also, one fixed error can be useful to us.\r\n\r\n
\r\n\ 'mypy ogr --strict' output\r\n\r\n```\r\n$ mypy ogr\ - \ --strict\r\nogr/deprecation.py:23: error: Cannot find module named\ - \ 'deprecated'\r\nogr/deprecation.py:26: error: Function is missing\ - \ a type annotation\r\nogr/abstract.py:73: error: Function is missing\ - \ a return type annotation\r\nogr/abstract.py:94: error: Incompatible\ + \ --strict\r\nogr/deprecation.py:23: error: Cannot find implementation\ + \ or library stub for module named 'deprecated'\r\nogr/deprecation.py:26:\ + \ error: Function is missing a type annotation\r\nogr/services/github/auth_providers/abstract.py:6:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/auth_providers/abstract.py:6: note:\ + \ See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports\r\ + \nogr/services/github/auth_providers/abstract.py:32: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/parsing.py:99:\ + \ error: Function is missing a return type annotation\r\nogr/parsing.py:155:\ + \ error: Argument 1 to \"RepoUrl\" has incompatible type \"None\"; expected\ + \ \"str\"\r\nogr/services/github/auth_providers/token.py:6: error: Cannot\ + \ find implementation or library stub for module named 'github'\r\n\ + ogr/services/github/auth_providers/token.py:12: error: Function is missing\ + \ a type annotation for one or more arguments\r\nogr/services/github/auth_providers/token.py:35:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/auth_providers/token.py:35: error: Incompatible\ + \ default for argument \"token\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:7:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/auth_providers/github_app.py:26: error:\ + \ Returning Any from function declared to return \"bool\"\r\nogr/services/github/auth_providers/github_app.py:61:\ + \ error: Incompatible return value type (got \"None\", expected \"str\"\ + )\r\nogr/services/github/auth_providers/github_app.py:76: error: Incompatible\ + \ return value type (got \"None\", expected \"str\")\r\nogr/services/github/auth_providers/github_app.py:87:\ + \ error: unused 'type: ignore' comment\r\nogr/services/github/auth_providers/github_app.py:94:\ + \ error: unused 'type: ignore' comment\r\nogr/services/github/auth_providers/github_app.py:95:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/auth_providers/github_app.py:98: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/github/auth_providers/github_app.py:99:\ + \ error: Incompatible default for argument \"github_app_id\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:100:\ + \ error: Incompatible default for argument \"github_app_private_key\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:101:\ + \ error: Incompatible default for argument \"github_app_private_key_path\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/abstract.py:34:\ + \ error: Module 'functools' has no attribute 'cached_property'\r\nogr/abstract.py:82:\ + \ error: Function is missing a return type annotation\r\nogr/abstract.py:103:\ + \ error: Incompatible return value type (got \"Optional[datetime]\"\ + , expected \"datetime\")\r\nogr/abstract.py:107: error: Incompatible\ \ return value type (got \"Optional[datetime]\", expected \"datetime\"\ - )\r\nogr/abstract.py:98: error: Incompatible return value type (got\ - \ \"Optional[datetime]\", expected \"datetime\")\r\nogr/abstract.py:104:\ - \ error: Incompatible return value type (got \"Optional[Any]\", expected\ - \ \"Issue\")\r\nogr/abstract.py:113: error: Incompatible return value\ - \ type (got \"Optional[Any]\", expected \"PullRequest\")\r\nogr/abstract.py:159:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/abstract.py:227:\ - \ error: Incompatible default for argument \"filter_regex\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:227:\ - \ error: Incompatible default for argument \"author\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/abstract.py:282: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/abstract.py:282: error: Untyped decorator makes function \"__init__\"\ - \ untyped\r\nogr/abstract.py:373: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1079: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1099: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1248: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/utils.py:28: error: Cannot find module named 'git'\r\n\ - ogr/read_only.py:52: error: Missing type parameters for generic type\ - \ \"Callable\"\r\nogr/read_only.py:66: error: Function is missing a\ - \ type annotation\r\nogr/read_only.py:68: error: Function is missing\ - \ a type annotation\r\nogr/read_only.py:157: error: Call to untyped\ - \ function \"deprecate_and_set_removal\" in typed context\r\nogr/read_only.py:157:\ - \ error: Untyped decorator makes function \"pr_create\" untyped\r\n\ - ogr/read_only.py:169: error: Incompatible default for argument \"fork_username\"\ - \ (default has type \"None\", argument has type \"str\")\r\nogr/read_only.py:187:\ + )\r\nogr/abstract.py:113: error: Incompatible return value type (got\ + \ \"Optional[Any]\", expected \"Issue\")\r\nogr/abstract.py:122: error:\ + \ Incompatible return value type (got \"Optional[Any]\", expected \"\ + PullRequest\")\r\nogr/abstract.py:172: error: Missing type parameters\ + \ for generic type \"List\"\r\nogr/abstract.py:244: error: Incompatible\ + \ default for argument \"filter_regex\" (default has type \"None\",\ + \ argument has type \"str\")\r\nogr/abstract.py:244: error: Incompatible\ + \ default for argument \"author\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/abstract.py:299: error: Call to untyped function\ + \ \"deprecate_and_set_removal\" in typed context\r\nogr/abstract.py:299:\ + \ error: Untyped decorator makes function \"__init__\" untyped\r\nogr/abstract.py:420:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/read_only.py:208:\ - \ error: Incompatible default for argument \"commit\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/read_only.py:209: error:\ - \ Incompatible default for argument \"filename\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/read_only.py:210: error: Incompatible\ - \ default for argument \"row\" (default has type \"None\", argument\ - \ has type \"int\")\r\nogr/read_only.py:227: error: Returning Any from\ - \ function declared to return \"PullRequest\"\r\nogr/read_only.py:233:\ - \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/read_only.py:252: error: Returning Any from function declared\ - \ to return \"GitProject\"\r\nogr/factory.py:33: error: Function is\ - \ missing a return type annotation\r\nogr/factory.py:33: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/factory.py:57:\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:751:\ + \ error: Untyped decorator makes function \"hostname\" untyped\r\nogr/abstract.py:1204:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:1224:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:1373:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/read_only.py:52:\ + \ error: Missing type parameters for generic type \"Callable\"\r\nogr/read_only.py:66:\ + \ error: Function is missing a type annotation\r\nogr/read_only.py:68:\ + \ error: Function is missing a type annotation\r\nogr/read_only.py:165:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/read_only.py:165: error: Untyped decorator makes function\ + \ \"pr_create\" untyped\r\nogr/read_only.py:177: error: Incompatible\ + \ default for argument \"fork_username\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/read_only.py:195: error: Incompatible\ + \ default for argument \"fork_username\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/read_only.py:215: error: Incompatible\ + \ default for argument \"commit\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/read_only.py:216: error: Incompatible default\ + \ for argument \"filename\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/read_only.py:217: error: Incompatible default\ + \ for argument \"row\" (default has type \"None\", argument has type\ + \ \"int\")\r\nogr/read_only.py:233: error: Returning Any from function\ + \ declared to return \"PullRequest\"\r\nogr/read_only.py:239: error:\ + \ Returning Any from function declared to return \"PullRequest\"\r\n\ + ogr/read_only.py:257: error: Returning Any from function declared to\ + \ return \"GitProject\"\r\nogr/factory.py:33: error: Function is missing\ + \ a return type annotation\r\nogr/factory.py:33: error: Function is\ + \ missing a type annotation for one or more arguments\r\nogr/factory.py:57:\ \ error: Function is missing a type annotation\r\nogr/factory.py:59:\ \ error: Function is missing a return type annotation\r\nogr/factory.py:65:\ \ error: Call to untyped function \"decorator_cover\" in typed context\r\ @@ -12456,338 +12302,370 @@ requests.sessions: , argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:71:\ \ error: Incompatible default for argument \"custom_instances\" (default\ \ has type \"None\", argument has type \"Iterable[GitService]\")\r\n\ - ogr/factory.py:97: error: Item \"None\" of \"Optional[RepoUrl]\" has\ - \ no attribute \"get_instance_url\"\r\nogr/factory.py:103: error: Incompatible\ - \ default for argument \"service_mapping_update\" (default has type\ - \ \"None\", argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:125:\ - \ error: Incompatible default for argument \"service_mapping_update\"\ - \ (default has type \"None\", argument has type \"Dict[str, Type[GitService]]\"\ - )\r\nogr/factory.py:142: error: Implicit generic \"Any\". Use \"typing.Dict\"\ - \ and specify generic parameters\r\nogr/services/gitlab/comments.py:26:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/comments.py:41:\ + ogr/factory.py:86: error: Invalid index type \"Optional[str]\" for \"\ + Dict[str, Type[GitService]]\"; expected type \"str\"\r\nogr/factory.py:95:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + hostname\"\r\nogr/factory.py:105: error: Item \"None\" of \"Optional[RepoUrl]\"\ + \ has no attribute \"get_instance_url\"\r\nogr/factory.py:110: error:\ + \ Incompatible default for argument \"service_mapping_update\" (default\ + \ has type \"None\", argument has type \"Dict[str, Type[GitService]]\"\ + )\r\nogr/factory.py:132: error: Incompatible default for argument \"\ + service_mapping_update\" (default has type \"None\", argument has type\ + \ \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:149: error: Implicit\ + \ generic \"Any\". Use \"typing.Dict\" and specify generic parameters\r\ + \nogr/services/gitlab/comments.py:26: error: Cannot find implementation\ + \ or library stub for module named 'gitlab.v4.objects'\r\nogr/services/gitlab/comments.py:41:\ \ error: Returning Any from function declared to return \"str\"\r\n\ ogr/services/gitlab/comments.py:50: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/github/comments.py:25:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/comments.py:25:\ - \ note: See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports\r\ - \nogr/services/github/comments.py:38: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/comments.py:46:\ + \ declared to return \"datetime\"\r\nogr/services/github/comments.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.IssueComment'\r\nogr/services/github/comments.py:27: error:\ + \ Cannot find implementation or library stub for module named 'github.PullRequestComment'\r\ + \nogr/services/github/comments.py:42: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/comments.py:50:\ \ error: Returning Any from function declared to return \"datetime\"\ - \r\nogr/services/base.py:64: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:64: error: Untyped decorator\ - \ makes function \"get_pr_comments\" untyped\r\nogr/services/base.py:65:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/base.py:70: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/base.py:70: error: Incompatible default for argument\ + \r\nogr/services/github/auth_providers/tokman.py:7: error: Cannot find\ + \ implementation or library stub for module named 'github'\r\nogr/services/github/auth_providers/tokman.py:39:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/auth_providers/tokman.py:42: error: Function is\ + \ missing a type annotation for one or more arguments\r\nogr/services/github/auth_providers/tokman.py:42:\ + \ error: Incompatible default for argument \"tokman_instance_url\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:46:\ + \ error: Module 'functools' has no attribute 'cached_property'\r\nogr/services/base.py:55:\ + \ error: Untyped decorator makes function \"hostname\" untyped\r\nogr/services/base.py:60:\ + \ error: Argument \"potential_url\" to \"parse_git_repo\" has incompatible\ + \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/base.py:81:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:81: error: Untyped decorator makes\ + \ function \"get_pr_comments\" untyped\r\nogr/services/base.py:86: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/base.py:87: error: Incompatible default for argument \"\ + filter_regex\" (default has type \"None\", argument has type \"str\"\ + )\r\nogr/services/base.py:87: error: Incompatible default for argument\ \ \"author\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/base.py:83: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:83: error: Untyped decorator\ - \ makes function \"search_in_pr\" untyped\r\nogr/services/base.py:106:\ - \ error: Untyped decorator makes function \"pr_close\" untyped\r\nogr/services/base.py:107:\ + \nogr/services/base.py:100: error: Call to untyped function \"deprecate_and_set_removal\"\ + \ in typed context\r\nogr/services/base.py:100: error: Untyped decorator\ + \ makes function \"search_in_pr\" untyped\r\nogr/services/base.py:123:\ + \ error: Untyped decorator makes function \"pr_close\" untyped\r\nogr/services/base.py:124:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:107: error: Untyped decorator makes\ - \ function \"pr_close\" untyped\r\nogr/services/base.py:115: error:\ - \ Untyped decorator makes function \"pr_merge\" untyped\r\nogr/services/base.py:116:\ + \ context\r\nogr/services/base.py:124: error: Untyped decorator makes\ + \ function \"pr_close\" untyped\r\nogr/services/base.py:132: error:\ + \ Untyped decorator makes function \"pr_merge\" untyped\r\nogr/services/base.py:133:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:116: error: Untyped decorator makes\ - \ function \"pr_merge\" untyped\r\nogr/services/base.py:124: error:\ + \ context\r\nogr/services/base.py:133: error: Untyped decorator makes\ + \ function \"pr_merge\" untyped\r\nogr/services/base.py:141: error:\ \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:124: error: Untyped decorator makes function\ - \ \"get_pr_labels\" untyped\r\nogr/services/base.py:132: error: Call\ + \nogr/services/base.py:141: error: Untyped decorator makes function\ + \ \"get_pr_labels\" untyped\r\nogr/services/base.py:149: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:132: error: Untyped decorator makes function\ - \ \"add_pr_labels\" untyped\r\nogr/services/base.py:140: error: Call\ + \nogr/services/base.py:149: error: Untyped decorator makes function\ + \ \"add_pr_labels\" untyped\r\nogr/services/base.py:157: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:140: error: Untyped decorator makes function\ - \ \"get_pr_info\" untyped\r\nogr/services/base.py:148: error: Call to\ + \nogr/services/base.py:157: error: Untyped decorator makes function\ + \ \"get_pr_info\" untyped\r\nogr/services/base.py:165: error: Call to\ \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:148: error: Untyped decorator makes function \"\ - update_pr_info\" untyped\r\nogr/services/base.py:158: error: Call to\ + ogr/services/base.py:165: error: Untyped decorator makes function \"\ + update_pr_info\" untyped\r\nogr/services/base.py:175: error: Call to\ \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:158: error: Untyped decorator makes function \"\ - get_all_pr_commits\" untyped\r\nogr/services/base.py:166: error: Call\ + ogr/services/base.py:175: error: Untyped decorator makes function \"\ + get_all_pr_commits\" untyped\r\nogr/services/base.py:183: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:166: error: Untyped decorator makes function\ - \ \"_get_all_pr_comments\" untyped\r\nogr/services/base.py:174: error:\ - \ Untyped decorator makes function \"pr_comment\" untyped\r\nogr/services/base.py:178:\ + \nogr/services/base.py:183: error: Untyped decorator makes function\ + \ \"_get_all_pr_comments\" untyped\r\nogr/services/base.py:191: error:\ + \ Untyped decorator makes function \"pr_comment\" untyped\r\nogr/services/base.py:195:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:178: error: Untyped decorator makes\ - \ function \"pr_comment\" untyped\r\nogr/services/base.py:187: error:\ + \ context\r\nogr/services/base.py:195: error: Untyped decorator makes\ + \ function \"pr_comment\" untyped\r\nogr/services/base.py:204: error:\ \ Incompatible default for argument \"commit\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/services/base.py:188: error:\ + None\", argument has type \"str\")\r\nogr/services/base.py:205: error:\ \ Incompatible default for argument \"filename\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/services/base.py:189: error:\ + None\", argument has type \"str\")\r\nogr/services/base.py:206: error:\ \ Incompatible default for argument \"row\" (default has type \"None\"\ - , argument has type \"int\")\r\nogr/services/base.py:193: error: Call\ + , argument has type \"int\")\r\nogr/services/base.py:210: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:193: error: Untyped decorator makes function\ - \ \"get_issue_comments\" untyped\r\nogr/services/base.py:194: error:\ + \nogr/services/base.py:210: error: Untyped decorator makes function\ + \ \"get_issue_comments\" untyped\r\nogr/services/base.py:215: error:\ \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/base.py:201: error: Incompatible default for argument \"\ + ogr/services/base.py:218: error: Incompatible default for argument \"\ filter_regex\" (default has type \"None\", argument has type \"str\"\ - )\r\nogr/services/base.py:203: error: Incompatible default for argument\ + )\r\nogr/services/base.py:220: error: Incompatible default for argument\ \ \"author\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/base.py:207: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:207: error: Untyped decorator\ - \ makes function \"pr_create\" untyped\r\nogr/services/base.py:218:\ + \nogr/services/base.py:224: error: Call to untyped function \"deprecate_and_set_removal\"\ + \ in typed context\r\nogr/services/base.py:224: error: Untyped decorator\ + \ makes function \"pr_create\" untyped\r\nogr/services/base.py:235:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:228:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:245:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:228: error: Untyped decorator makes\ - \ function \"can_close_issue\" untyped\r\nogr/services/base.py:236:\ + \ context\r\nogr/services/base.py:245: error: Untyped decorator makes\ + \ function \"can_close_issue\" untyped\r\nogr/services/base.py:253:\ \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:236: error: Untyped decorator makes\ - \ function \"get_issue_info\" untyped\r\nogr/services/base.py:244: error:\ + \ context\r\nogr/services/base.py:253: error: Untyped decorator makes\ + \ function \"get_issue_info\" untyped\r\nogr/services/base.py:261: error:\ \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:244: error: Untyped decorator makes function\ - \ \"_get_all_issue_comments\" untyped\r\nogr/services/base.py:252: error:\ + \nogr/services/base.py:261: error: Untyped decorator makes function\ + \ \"_get_all_issue_comments\" untyped\r\nogr/services/base.py:269: error:\ \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:252: error: Untyped decorator makes function\ - \ \"issue_comment\" untyped\r\nogr/services/base.py:260: error: Call\ + \nogr/services/base.py:269: error: Untyped decorator makes function\ + \ \"issue_comment\" untyped\r\nogr/services/base.py:277: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:260: error: Untyped decorator makes function\ - \ \"issue_close\" untyped\r\nogr/services/base.py:268: error: Call to\ + \nogr/services/base.py:277: error: Untyped decorator makes function\ + \ \"issue_close\" untyped\r\nogr/services/base.py:285: error: Call to\ \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:268: error: Untyped decorator makes function \"\ - get_issue_labels\" untyped\r\nogr/services/base.py:276: error: Call\ + ogr/services/base.py:285: error: Untyped decorator makes function \"\ + get_issue_labels\" untyped\r\nogr/services/base.py:293: error: Call\ \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:276: error: Untyped decorator makes function\ - \ \"add_issue_labels\" untyped\r\nogr/services/base.py:330: error: Function\ - \ is missing a return type annotation\r\nogr/services/base.py:330: error:\ + \nogr/services/base.py:293: error: Untyped decorator makes function\ + \ \"add_issue_labels\" untyped\r\nogr/services/base.py:367: error: Function\ + \ is missing a return type annotation\r\nogr/services/base.py:367: error:\ \ Argument 1 of \"get_comments\" is incompatible with supertype \"PullRequest\"\ - ; supertype defines the argument type as \"Optional[str]\"\r\nogr/services/base.py:330:\ + ; supertype defines the argument type as \"Optional[str]\"\r\nogr/services/base.py:367:\ \ error: Argument 3 of \"get_comments\" is incompatible with supertype\ \ \"PullRequest\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/base.py:331: error: Incompatible default for argument\ + \r\nogr/services/base.py:368: error: Incompatible default for argument\ \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/base.py:331: error: Incompatible default for\ + str\")\r\nogr/services/base.py:368: error: Incompatible default for\ \ argument \"author\" (default has type \"None\", argument has type\ - \ \"str\")\r\nogr/services/base.py:336: error: Function is missing a\ - \ return type annotation\r\nogr/services/base.py:360: error: Incompatible\ + \ \"str\")\r\nogr/services/base.py:373: error: Function is missing a\ + \ return type annotation\r\nogr/services/base.py:397: error: Incompatible\ \ default for argument \"filter_regex\" (default has type \"None\",\ - \ argument has type \"str\")\r\nogr/services/base.py:360: error: Incompatible\ + \ argument has type \"str\")\r\nogr/services/base.py:397: error: Incompatible\ \ default for argument \"author\" (default has type \"None\", argument\ \ has type \"str\")\r\nogr/services/pagure/release.py:28: error: Name\ \ 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:37:\ \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:42:\ \ error: Function is missing a return type annotation\r\nogr/services/pagure/release.py:46:\ \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:38:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:40:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/pull_request.py:44:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:44:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/pull_request.py:51:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:39:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:41:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/pull_request.py:45:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:45:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/pull_request.py:52:\ \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:52: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:60:\ + ogr/services/pagure/pull_request.py:53: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:61:\ \ error: Returning Any from function declared to return \"int\"\r\n\ - ogr/services/pagure/pull_request.py:64: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:80:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:81: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:89:\ + ogr/services/pagure/pull_request.py:65: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:72:\ + \ error: List item 0 has incompatible type \"Optional[str]\"; expected\ + \ \"str\"\r\nogr/services/pagure/pull_request.py:81: error: Call to\ + \ untyped function \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:82:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/pull_request.py:93: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:97:\ + ogr/services/pagure/pull_request.py:90: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:94:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/pull_request.py:106: error: Function is missing\ - \ a type annotation for one or more arguments\r\nogr/services/pagure/pull_request.py:106:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/pull_request.py:107: error: Returning\ - \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/pull_request.py:113:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:118:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/pull_request.py:139:\ + ogr/services/pagure/pull_request.py:98: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:117:\ + \ error: Returning Any from function declared to return \"bytes\"\r\n\ + ogr/services/pagure/pull_request.py:121: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:124:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:145:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/pull_request.py:145: error: Implicit generic \"\ + Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/pull_request.py:146:\ + \ error: Returning Any from function declared to return \"Dict[Any,\ + \ Any]\"\r\nogr/services/pagure/pull_request.py:152: error: Name 'ogr_pagure.PagureProject'\ + \ is not defined\r\nogr/services/pagure/pull_request.py:157: error:\ + \ Incompatible default for argument \"fork_username\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/pull_request.py:178:\ \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/services/pagure/pull_request.py:139: error: Call to untyped\ - \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:142:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:144:\ + \r\nogr/services/pagure/pull_request.py:178: error: Call to untyped\ + \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:181:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:183:\ \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/services/pagure/pull_request.py:144: error: Call to untyped\ - \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:147:\ + \r\nogr/services/pagure/pull_request.py:183: error: Call to untyped\ + \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:186:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/pull_request.py:148: error: Name 'ogr_pagure.PagureProject'\ - \ is not defined\r\nogr/services/pagure/pull_request.py:160: error:\ + \nogr/services/pagure/pull_request.py:187: error: Name 'ogr_pagure.PagureProject'\ + \ is not defined\r\nogr/services/pagure/pull_request.py:199: error:\ \ Call to untyped function \"PagurePullRequest\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:181: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:228:\ + ogr/services/pagure/pull_request.py:219: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:266:\ \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:229: error: Returning Any from function\ - \ declared to return \"List[CommitFlag]\"\r\nogr/services/pagure/issue.py:33:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:35:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/issue.py:39:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/issue.py:39:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/issue.py:46:\ + ogr/services/pagure/pull_request.py:277: error: Implicit generic \"\ + Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/issue.py:34:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:36:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/issue.py:40:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/issue.py:40:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/issue.py:47:\ \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/issue.py:47: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:51: error:\ - \ Returning Any from function declared to return \"int\"\r\nogr/services/pagure/issue.py:55:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/issue.py:60: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:66: error:\ - \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:67:\ + ogr/services/pagure/issue.py:48: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/issue.py:56: error:\ + \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:57:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/pagure/issue.py:61: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/pagure/issue.py:65: error:\ + \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:70:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/issue.py:71: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:79: error:\ - \ Returning Any from function declared to return \"List[str]\"\r\nogr/services/pagure/issue.py:86:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:97:\ + ogr/services/pagure/issue.py:76: error: Call to untyped function \"\ + __update\" in typed context\r\nogr/services/pagure/issue.py:77: error:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/pagure/issue.py:85:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/issue.py:93: error: Returning Any from function\ + \ declared to return \"List[str]\"\r\nogr/services/pagure/issue.py:118:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:132:\ \ error: Returning Any from function declared to return \"Issue\"\r\n\ - ogr/services/pagure/issue.py:97: error: Call to untyped function \"\ - PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:100:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:102:\ + ogr/services/pagure/issue.py:132: error: Call to untyped function \"\ + PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:135:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:137:\ \ error: Returning Any from function declared to return \"Issue\"\r\n\ - ogr/services/pagure/issue.py:102: error: Call to untyped function \"\ - PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:106:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:118:\ + ogr/services/pagure/issue.py:137: error: Call to untyped function \"\ + PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:141:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:168:\ \ error: Call to untyped function \"PagureIssue\" in typed context\r\ - \nogr/services/pagure/issue.py:121: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/flag.py:41: error:\ - \ Function is missing a return type annotation\r\nogr/services/pagure/flag.py:41:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/flag.py:42:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:43:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:44:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:45:\ + \nogr/services/pagure/issue.py:171: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/flag.py:44: error:\ + \ Function is missing a return type annotation\r\nogr/services/pagure/flag.py:44:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/flag.py:45:\ \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:46:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:47:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:48:\ \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:49:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:58:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:64:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:52:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:61:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:67:\ \ error: Incompatible default for argument \"percent\" (default has\ - \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/flag.py:66:\ + \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/flag.py:69:\ \ error: Incompatible default for argument \"uid\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:47:\ - \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:53:\ - \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:54:\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/flag.py:97:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:103:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/project.py:58:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:64:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:65:\ \ error: Incompatible default for argument \"username\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:57:\ + \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:68:\ \ error: Argument 3 to \"__init__\" of \"GitProject\" has incompatible\ - \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/pagure/project.py:64:\ + \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/pagure/project.py:75:\ \ error: Incompatible types in assignment (expression has type \"Optional[str]\"\ - , variable has type \"str\")\r\nogr/services/pagure/project.py:88: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/pagure/project.py:93: error: Incompatible default for argument\ - \ \"method\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/pagure/project.py:94: error: Implicit generic \"Any\"\ - . Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/project.py:94:\ + , variable has type \"str\")\r\nogr/services/pagure/project.py:102:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/project.py:107: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/project.py:108: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/project.py:108:\ \ error: Incompatible default for argument \"params\" (default has type\ - \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:95:\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:109:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:95: error: Incompatible\ + \ parameters\r\nogr/services/pagure/project.py:109: error: Incompatible\ \ default for argument \"data\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:96:\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:110:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:108: error: Call to untyped\ - \ function \"_get_project_url\" in typed context\r\nogr/services/pagure/project.py:117:\ + \ parameters\r\nogr/services/pagure/project.py:122: error: Call to untyped\ + \ function \"_get_project_url\" in typed context\r\nogr/services/pagure/project.py:128:\ \ error: Returning Any from function declared to return \"Dict[Any,\ - \ Any]\"\r\nogr/services/pagure/project.py:119: error: Function is missing\ - \ a type annotation for one or more arguments\r\nogr/services/pagure/project.py:124:\ + \ Any]\"\r\nogr/services/pagure/project.py:132: error: Function is missing\ + \ a type annotation for one or more arguments\r\nogr/services/pagure/project.py:137:\ \ error: Incompatible default for argument \"method\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:125:\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:138:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:125: error: Incompatible\ + \ parameters\r\nogr/services/pagure/project.py:138: error: Incompatible\ \ default for argument \"params\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:126:\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:139:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:126: error: Incompatible\ + \ parameters\r\nogr/services/pagure/project.py:139: error: Incompatible\ \ default for argument \"data\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:139:\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:152:\ \ error: Call to untyped function \"_get_project_url\" in typed context\r\ - \nogr/services/pagure/project.py:148: error: Returning Any from function\ - \ declared to return \"RequestResponse\"\r\nogr/services/pagure/project.py:150:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/project.py:151:\ + \nogr/services/pagure/project.py:158: error: Returning Any from function\ + \ declared to return \"RequestResponse\"\r\nogr/services/pagure/project.py:162:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/project.py:163:\ \ error: Need type annotation for 'additional_parts' (hint: \"additional_parts:\ - \ List[] = ...\")\r\nogr/services/pagure/project.py:163: error:\ - \ Function is missing a return type annotation\r\nogr/services/pagure/project.py:169:\ + \ List[] = ...\")\r\nogr/services/pagure/project.py:174: error:\ + \ Function is missing a return type annotation\r\nogr/services/pagure/project.py:179:\ \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/pagure/project.py:172: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/project.py:172:\ + \r\nogr/services/pagure/project.py:182: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/project.py:182:\ \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:175: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:176:\ + \nogr/services/pagure/project.py:185: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:186:\ \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/pagure/project.py:180: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:189:\ + \r\nogr/services/pagure/project.py:190: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:199:\ \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:195: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/pagure/project.py:216:\ + \nogr/services/pagure/project.py:205: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/project.py:208:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/project.py:208:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/project.py:236:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/project.py:226: error: Untyped decorator makes\ - \ function \"create_pr\" untyped\r\nogr/services/pagure/project.py:233:\ + \nogr/services/pagure/project.py:246: error: Untyped decorator makes\ + \ function \"create_pr\" untyped\r\nogr/services/pagure/project.py:253:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:243:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:263:\ \ error: Untyped decorator makes function \"fork_create\" untyped\r\n\ - ogr/services/pagure/project.py:275: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:281:\ + ogr/services/pagure/project.py:295: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:301:\ \ error: Returning Any from function declared to return \"Optional[PagureProject]\"\ - \r\nogr/services/pagure/project.py:290: error: Function is missing a\ - \ return type annotation\r\nogr/services/pagure/project.py:301: error:\ - \ Call to untyped function \"exists\" in typed context\r\nogr/services/pagure/project.py:301:\ + \r\nogr/services/pagure/project.py:310: error: Function is missing a\ + \ return type annotation\r\nogr/services/pagure/project.py:342: error:\ + \ Call to untyped function \"exists\" in typed context\r\nogr/services/pagure/project.py:342:\ \ error: Item \"None\" of \"Optional[PagureProject]\" has no attribute\ - \ \"exists\"\r\nogr/services/pagure/project.py:304: error: Call to untyped\ - \ function \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:318:\ + \ \"exists\"\r\nogr/services/pagure/project.py:345: error: Call to untyped\ + \ function \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:359:\ \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:325: error: Returning Any from function\ - \ declared to return \"Dict[str, str]\"\r\nogr/services/pagure/project.py:335:\ + \nogr/services/pagure/project.py:366: error: Returning Any from function\ + \ declared to return \"Dict[str, str]\"\r\nogr/services/pagure/project.py:378:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/project.py:388:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/project.py:353: error: Argument 3 of \"commit_comment\"\ + \nogr/services/pagure/project.py:420: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/project.py:438:\ + \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ + \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/pagure/project.py:438: error: Argument 4 of \"commit_comment\"\ \ is incompatible with supertype \"GitProject\"; supertype defines the\ - \ argument type as \"Optional[str]\"\r\nogr/services/pagure/project.py:353:\ - \ error: Argument 4 of \"commit_comment\" is incompatible with supertype\ - \ \"GitProject\"; supertype defines the argument type as \"Optional[int]\"\ - \r\nogr/services/pagure/project.py:354: error: Incompatible default\ - \ for argument \"filename\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/pagure/project.py:354: error: Incompatible\ - \ default for argument \"row\" (default has type \"None\", argument\ - \ has type \"int\")\r\nogr/services/pagure/project.py:358: error: Untyped\ - \ decorator makes function \"set_commit_status\" untyped\r\nogr/services/pagure/project.py:366:\ - \ error: Incompatible default for argument \"percent\" (default has\ - \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/project.py:367:\ - \ error: Incompatible default for argument \"uid\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:440:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/user.py:31: error: Name 'ogr_pagure.PagureService'\ - \ is not defined\r\nogr/services/pagure/user.py:33: error: Name 'ogr_pagure.PagureService'\ - \ is not defined\r\nogr/services/pagure/user.py:43: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/pagure/service.py:42:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:44: error: Incompatible default for\ - \ argument \"token\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/pagure/service.py:81: error: Returning Any from\ - \ function declared to return \"bool\"\r\nogr/services/pagure/service.py:92:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:103: error: Item \"None\" of \"Optional[RepoUrl]\"\ - \ has no attribute \"repo\"\r\nogr/services/pagure/service.py:104: error:\ - \ Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"namespace\"\ - \r\nogr/services/pagure/service.py:105: error: Item \"None\" of \"Optional[RepoUrl]\"\ - \ has no attribute \"is_fork\"\r\nogr/services/pagure/service.py:106:\ + \ argument type as \"Optional[int]\"\r\nogr/services/pagure/project.py:439:\ + \ error: Incompatible default for argument \"filename\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:439:\ + \ error: Incompatible default for argument \"row\" (default has type\ + \ \"None\", argument has type \"int\")\r\nogr/services/pagure/project.py:443:\ + \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ + \nogr/services/pagure/project.py:451: error: Incompatible default for\ + \ argument \"percent\" (default has type \"None\", argument has type\ + \ \"int\")\r\nogr/services/pagure/project.py:452: error: Incompatible\ + \ default for argument \"uid\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/pagure/project.py:520: error: Call\ + \ to untyped function \"get_project_info\" in typed context\r\nogr/services/pagure/user.py:31:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/user.py:33:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/user.py:43:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/service.py:44: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/service.py:46:\ + \ error: Incompatible default for argument \"token\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/service.py:88:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/pagure/service.py:99: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/service.py:110:\ \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ - username\"\r\nogr/services/pagure/service.py:114: error: Function is\ - \ missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:115:\ - \ error: Incompatible default for argument \"method\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/service.py:115:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/service.py:115: error: Incompatible\ - \ default for argument \"params\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:116:\ + repo\"\r\nogr/services/pagure/service.py:111: error: Item \"None\" of\ + \ \"Optional[RepoUrl]\" has no attribute \"namespace\"\r\nogr/services/pagure/service.py:112:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + is_fork\"\r\nogr/services/pagure/service.py:113: error: Item \"None\"\ + \ of \"Optional[RepoUrl]\" has no attribute \"username\"\r\nogr/services/pagure/service.py:121:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/service.py:122: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/service.py:122: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:122:\ + \ error: Incompatible default for argument \"params\" (default has type\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:123:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/service.py:149: error: Returning\ - \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/service.py:151:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:151:\ + \ parameters\r\nogr/services/pagure/service.py:160: error: Returning\ + \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/service.py:162:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:162:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:152: error: Incompatible default for\ + \nogr/services/pagure/service.py:163: error: Incompatible default for\ \ argument \"method\" (default has type \"None\", argument has type\ - \ \"str\")\r\nogr/services/pagure/service.py:152: error: Implicit generic\ - \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:152:\ + \ \"str\")\r\nogr/services/pagure/service.py:163: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:163:\ \ error: Incompatible default for argument \"params\" (default has type\ - \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:165:\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:176:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:193: error: Function is missing a return\ - \ type annotation\r\nogr/services/pagure/service.py:196: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:209:\ + \nogr/services/pagure/service.py:204: error: Function is missing a return\ + \ type annotation\r\nogr/services/pagure/service.py:207: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:220:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/service.py:219: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/service.py:221:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:230:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:272:\ + ogr/services/pagure/service.py:230: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/service.py:232:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:241:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:283:\ \ error: Argument 2 to \"__handle_project_create_fail\" of \"PagureService\"\ \ has incompatible type \"Optional[str]\"; expected \"str\"\r\nogr/services/gitlab/user.py:28:\ \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:30:\ @@ -12802,133 +12680,161 @@ requests.sessions: \ is not defined\r\nogr/services/gitlab/release.py:46: error: Function\ \ is missing a return type annotation\r\nogr/services/gitlab/release.py:50:\ \ error: Function is missing a return type annotation\r\nogr/services/gitlab/pull_request.py:26:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/pull_request.py:36:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:40:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab.v4.objects'\r\nogr/services/gitlab/pull_request.py:37: error:\ + \ Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:38:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:42:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:49: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/gitlab/pull_request.py:61:\ + ogr/services/gitlab/pull_request.py:51: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/gitlab/pull_request.py:63:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:65: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:74:\ + ogr/services/gitlab/pull_request.py:67: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:76:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:78: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:82:\ + ogr/services/gitlab/pull_request.py:80: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:84:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:86: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/gitlab/pull_request.py:90:\ + ogr/services/gitlab/pull_request.py:88: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/gitlab/pull_request.py:92:\ \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/gitlab/pull_request.py:97: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/pull_request.py:102: error:\ - \ Incompatible default for argument \"fork_username\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/gitlab/pull_request.py:115:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:121:\ + \r\nogr/services/gitlab/pull_request.py:100: error: Returning Any from\ + \ function declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:103:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:117:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:122:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/pull_request.py:169:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:170:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:190:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:196:\ \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:26:\ - \ error: Cannot find module named 'gitlab'\r\nogr/services/gitlab/issue.py:27:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/issue.py:41:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/issue.py:27: error: Cannot find implementation\ + \ or library stub for module named 'gitlab.v4.objects'\r\nogr/services/gitlab/issue.py:41:\ \ error: Returning Any from function declared to return \"str\"\r\n\ ogr/services/gitlab/issue.py:50: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/gitlab/issue.py:62: error:\ - \ Returning Any from function declared to return \"str\"\r\nogr/services/gitlab/issue.py:66:\ + \ declared to return \"int\"\r\nogr/services/gitlab/issue.py:54: error:\ + \ Returning Any from function declared to return \"bool\"\r\nogr/services/gitlab/issue.py:66:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/issue.py:75: error: Returning Any from function\ + ogr/services/gitlab/issue.py:70: error: Returning Any from function\ \ declared to return \"str\"\r\nogr/services/gitlab/issue.py:79: error:\ - \ Returning Any from function declared to return \"datetime\"\r\nogr/services/gitlab/issue.py:82:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/services/gitlab/issue.py:83:\ - \ error: Returning Any from function declared to return \"List[Any]\"\ - \r\nogr/services/gitlab/issue.py:89: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/issue.py:94: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/issue.py:102: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/flag.py:27: error: Cannot find\ - \ module named 'gitlab'\r\nogr/services/gitlab/flag.py:52: error: Function\ - \ is missing a return type annotation\r\nogr/services/gitlab/flag.py:52:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/gitlab/flag.py:53:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/gitlab/issue.py:83:\ + \ error: Returning Any from function declared to return \"datetime\"\ + \r\nogr/services/gitlab/issue.py:86: error: Missing type parameters\ + \ for generic type \"List\"\r\nogr/services/gitlab/issue.py:87: error:\ + \ Returning Any from function declared to return \"List[Any]\"\r\nogr/services/gitlab/issue.py:94:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:107:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:115:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/flag.py:27:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/flag.py:53: error: Function is missing\ + \ a return type annotation\r\nogr/services/gitlab/flag.py:53: note:\ + \ Use \"-> None\" if function does not return a value\r\nogr/services/gitlab/flag.py:54:\ \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"sha\"\ - \r\nogr/services/gitlab/flag.py:54: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"status\"\r\nogr/services/gitlab/flag.py:55: error:\ - \ Item \"None\" of \"Optional[Any]\" has no attribute \"name\"\r\nogr/services/gitlab/flag.py:56:\ + \r\nogr/services/gitlab/flag.py:55: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"status\"\r\nogr/services/gitlab/flag.py:56: error:\ + \ Item \"None\" of \"Optional[Any]\" has no attribute \"name\"\r\nogr/services/gitlab/flag.py:57:\ \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ - \r\nogr/services/gitlab/flag.py:57: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"id\"\r\nogr/services/gitlab/flag.py:58: error:\ + \r\nogr/services/gitlab/flag.py:58: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"id\"\r\nogr/services/gitlab/flag.py:59: error:\ \ Item \"None\" of \"Optional[Any]\" has no attribute \"target_url\"\ - \r\nogr/services/gitlab/flag.py:61: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/flag.py:76: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/project.py:26: error: Cannot\ - \ find module named 'gitlab'\r\nogr/services/gitlab/project.py:27: error:\ - \ Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/project.py:53:\ - \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/project.py:55:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:58: error: Name 'ogr_gitlab.GitlabService'\ - \ is not defined\r\nogr/services/gitlab/project.py:126: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/gitlab/project.py:181:\ + \r\nogr/services/gitlab/flag.py:62: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/flag.py:77: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/flag.py:108: error: Item \"\ + None\" of \"Optional[Any]\" has no attribute \"created_at\"\r\nogr/services/gitlab/project.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/project.py:27: error: Cannot find\ + \ implementation or library stub for module named 'gitlab.v4.objects'\r\ + \nogr/services/gitlab/project.py:54: error: Name 'ogr_gitlab.GitlabService'\ + \ is not defined\r\nogr/services/gitlab/project.py:56: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/gitlab/project.py:59:\ + \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/project.py:129:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/gitlab/project.py:135: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:190:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:209: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/project.py:220:\ + \nogr/services/gitlab/project.py:256: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:267:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:231:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:278:\ \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/gitlab/project.py:231: error: Argument 4 of \"commit_comment\"\ + \r\nogr/services/gitlab/project.py:278: error: Argument 4 of \"commit_comment\"\ \ is incompatible with supertype \"GitProject\"; supertype defines the\ - \ argument type as \"Optional[int]\"\r\nogr/services/gitlab/project.py:232:\ + \ argument type as \"Optional[int]\"\r\nogr/services/gitlab/project.py:279:\ \ error: Incompatible default for argument \"filename\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:232:\ + \ type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:279:\ \ error: Incompatible default for argument \"row\" (default has type\ - \ \"None\", argument has type \"int\")\r\nogr/services/gitlab/project.py:317:\ - \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:323:\ + \ \"None\", argument has type \"int\")\r\nogr/services/gitlab/project.py:364:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:370:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:331: error: Incompatible default for\ - \ argument \"filter_regex\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/gitlab/project.py:389: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/services/gitlab/project.py:395:\ + \nogr/services/gitlab/project.py:373: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:378:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:449:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:413: error: Function is missing a return\ - \ type annotation\r\nogr/services/gitlab/project.py:437: error: Function\ - \ is missing a type annotation\r\nogr/services/gitlab/project.py:449:\ + \nogr/services/gitlab/project.py:455: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:473:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:505:\ + \ error: Function is missing a type annotation\r\nogr/services/gitlab/project.py:517:\ \ error: Call to untyped function \"_normalize_label_color\" in typed\ - \ context\r\nogr/services/gitlab/project.py:462: error: Function is\ - \ missing a type annotation\r\nogr/services/gitlab/project.py:468: error:\ + \ context\r\nogr/services/gitlab/project.py:530: error: Function is\ + \ missing a type annotation\r\nogr/services/gitlab/project.py:536: error:\ \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/gitlab/project.py:473: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:492:\ + ogr/services/gitlab/project.py:541: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:560:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/service.py:23: error: Cannot find module named 'gitlab'\r\ - \nogr/services/gitlab/service.py:36: error: Function is missing a type\ - \ annotation\r\nogr/services/gitlab/service.py:71: error: Returning\ - \ Any from function declared to return \"bool\"\r\nogr/services/gitlab/service.py:80:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/service.py:91: error: Argument 2 of \"project_create\"\ - \ is incompatible with supertype \"GitService\"; supertype defines the\ - \ argument type as \"Optional[str]\"\r\nogr/services/gitlab/service.py:91:\ - \ error: Incompatible default for argument \"namespace\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/github/release.py:23:\ - \ error: Cannot find module named 'github.GitRelease'\r\nogr/services/github/release.py:30:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/release.py:39:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/release.py:46:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/release.py:50:\ + ogr/services/gitlab/service.py:23: error: Cannot find implementation\ + \ or library stub for module named 'gitlab'\r\nogr/services/gitlab/service.py:37:\ + \ error: Function is missing a type annotation\r\nogr/services/gitlab/service.py:75:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/gitlab/service.py:84: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/service.py:104:\ + \ error: Argument 2 of \"project_create\" is incompatible with supertype\ + \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/gitlab/service.py:104: error: Incompatible default\ + \ for argument \"namespace\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/services/github/release.py:23: error: Cannot\ + \ find implementation or library stub for module named 'github.GitRelease'\r\ + \nogr/services/github/release.py:30: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/release.py:39: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/release.py:46: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/release.py:50:\ \ error: Function is missing a return type annotation\r\nogr/services/github/pull_request.py:27:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/pull_request.py:28:\ - \ error: Cannot find module named 'github.Label'\r\nogr/services/github/pull_request.py:29:\ - \ error: Cannot find module named 'github.PullRequest'\r\nogr/services/github/pull_request.py:43:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:47:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/pull_request.py:28: error: Cannot\ + \ find implementation or library stub for module named 'github.Label'\r\ + \nogr/services/github/pull_request.py:29: error: Cannot find implementation\ + \ or library stub for module named 'github.PullRequest'\r\nogr/services/github/pull_request.py:30:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.Repository'\r\nogr/services/github/pull_request.py:31: error:\ + \ Cannot find implementation or library stub for module named 'github.IssueComment'\r\ + \nogr/services/github/pull_request.py:32: error: Cannot find implementation\ + \ or library stub for module named 'github.PullRequestComment'\r\nogr/services/github/pull_request.py:45:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:46:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:50:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:58: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/github/pull_request.py:70:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:55: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/github/pull_request.py:67:\ + ogr/services/github/pull_request.py:74: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/pull_request.py:82:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:71: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/pull_request.py:79:\ + ogr/services/github/pull_request.py:86: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/pull_request.py:90:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:83: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/pull_request.py:87:\ + ogr/services/github/pull_request.py:94: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/pull_request.py:106:\ \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:91: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/github/pull_request.py:102:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:107:\ + ogr/services/github/pull_request.py:109: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/pull_request.py:124: error:\ + \ Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:129:\ \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/github/pull_request.py:129:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:135:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/pull_request.py:166:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:172:\ \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:26:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/issue.py:27:\ - \ error: Cannot find module named 'github.Issue'\r\nogr/services/github/issue.py:40:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/issue.py:27: error: Cannot find implementation\ + \ or library stub for module named 'github.Issue'\r\nogr/services/github/issue.py:40:\ \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:51:\ \ error: Returning Any from function declared to return \"str\"\r\n\ ogr/services/github/issue.py:59: error: Returning Any from function\ @@ -12938,81 +12844,97 @@ requests.sessions: ogr/services/github/issue.py:79: error: Returning Any from function\ \ declared to return \"str\"\r\nogr/services/github/issue.py:83: error:\ \ Returning Any from function declared to return \"datetime\"\r\nogr/services/github/issue.py:86:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/services/github/issue.py:93:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:98:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:104:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/flag.py:25:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/flag.py:42:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/flag.py:42:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/github/flag.py:43:\ + \ error: Missing type parameters for generic type \"List\"\r\nogr/services/github/issue.py:94:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:106:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:112:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/flag.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/flag.py:44: error: Function is missing\ + \ a return type annotation\r\nogr/services/github/flag.py:44: note:\ + \ Use \"-> None\" if function does not return a value\r\nogr/services/github/flag.py:45:\ \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"state\"\ - \r\nogr/services/github/flag.py:44: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"context\"\r\nogr/services/github/flag.py:45: error:\ + \r\nogr/services/github/flag.py:46: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"context\"\r\nogr/services/github/flag.py:47: error:\ \ Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ - \r\nogr/services/github/flag.py:48: error: Name 'ogr_github.GithubProject'\ - \ is not defined\r\nogr/services/github/flag.py:61: error: Name 'ogr_github.GithubProject'\ - \ is not defined\r\nogr/services/github/project.py:26: error: Cannot\ - \ find module named 'github'\r\nogr/services/github/project.py:33: error:\ - \ Cannot find module named 'github.GitRelease'\r\nogr/services/github/project.py:60:\ + \r\nogr/services/github/flag.py:48: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"target_url\"\r\nogr/services/github/flag.py:49:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"id\"\r\ + \nogr/services/github/flag.py:52: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/flag.py:67: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/flag.py:87: error: Returning\ + \ Any from function declared to return \"datetime\"\r\nogr/services/github/flag.py:87:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"created_at\"\ + \r\nogr/services/github/flag.py:91: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/flag.py:91:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"updated_at\"\ + \r\nogr/services/github/project.py:26: error: Cannot find implementation\ + \ or library stub for module named 'github'\r\nogr/services/github/project.py:28:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.Repository'\r\nogr/services/github/project.py:29: error: Cannot\ + \ find implementation or library stub for module named 'github.CommitComment'\r\ + \nogr/services/github/project.py:30: error: Cannot find implementation\ + \ or library stub for module named 'github.GitRelease'\r\nogr/services/github/project.py:58:\ \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/project.py:62:\ \ error: Function is missing a type annotation for one or more arguments\r\ \nogr/services/github/project.py:65: error: Name 'ogr_github.GithubService'\ \ is not defined\r\nogr/services/github/project.py:82: error: Function\ - \ is missing a return type annotation\r\nogr/services/github/project.py:99:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:150:\ + \ is missing a return type annotation\r\nogr/services/github/project.py:91:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:133:\ \ error: Returning Any from function declared to return \"bool\"\r\n\ - ogr/services/github/project.py:166: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/project.py:184:\ + ogr/services/github/project.py:150: error: Returning Any from function\ + \ declared to return \"bool\"\r\nogr/services/github/project.py:167:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/project.py:194: error: Function is missing a return\ + \ type annotation\r\nogr/services/github/project.py:194: note: Use \"\ + -> None\" if function does not return a value\r\nogr/services/github/project.py:213:\ \ error: Returning Any from function declared to return \"Optional[GithubProject]\"\ - \r\nogr/services/github/project.py:219: error: Function is missing a\ - \ type annotation for one or more arguments\r\nogr/services/github/project.py:222:\ + \r\nogr/services/github/project.py:248: error: Function is missing a\ + \ type annotation for one or more arguments\r\nogr/services/github/project.py:254:\ \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/github/project.py:261: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/github/project.py:271:\ + \ parameters\r\nogr/services/github/project.py:302: error: Returning\ + \ Any from function declared to return \"str\"\r\nogr/services/github/project.py:312:\ \ error: Untyped decorator makes function \"create_pr\" untyped\r\n\ - ogr/services/github/project.py:278: error: Incompatible default for\ + ogr/services/github/project.py:319: error: Incompatible default for\ \ argument \"fork_username\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/github/project.py:289: error: Untyped\ - \ decorator makes function \"commit_comment\" untyped\r\nogr/services/github/project.py:294:\ + \ type \"str\")\r\nogr/services/github/project.py:330: error: Untyped\ + \ decorator makes function \"commit_comment\" untyped\r\nogr/services/github/project.py:335:\ \ error: Incompatible default for argument \"filename\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:294:\ + \ type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:335:\ \ error: Incompatible default for argument \"row\" (default has type\ - \ \"None\", argument has type \"int\")\r\nogr/services/github/project.py:314:\ + \ \"None\", argument has type \"int\")\r\nogr/services/github/project.py:355:\ \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ - \nogr/services/github/project.py:315: error: Function is missing a return\ - \ type annotation\r\nogr/services/github/project.py:361: error: Untyped\ - \ decorator makes function \"fork_create\" untyped\r\nogr/services/github/project.py:372:\ - \ error: Argument \"repo\" to \"GithubProject\" has incompatible type\ - \ \"None\"; expected \"str\"\r\nogr/services/github/project.py:372:\ - \ error: Argument \"namespace\" to \"GithubProject\" has incompatible\ - \ type \"None\"; expected \"str\"\r\nogr/services/github/project.py:380:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:383:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:385: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/project.py:392:\ + \nogr/services/github/project.py:359: error: Function is missing a return\ + \ type annotation\r\nogr/services/github/project.py:402: error: Untyped\ + \ decorator makes function \"fork_create\" untyped\r\nogr/services/github/project.py:411:\ + \ error: Returning Any from function declared to return \"GithubProject\"\ + \r\nogr/services/github/project.py:415: error: Function is missing a\ + \ return type annotation\r\nogr/services/github/project.py:418: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/project.py:420: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/project.py:427:\ \ error: Incompatible default for argument \"filter_regex\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:463:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:470:\ - \ error: Function is missing a type annotation\r\nogr/services/github/project.py:481:\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:498:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:505:\ + \ error: Function is missing a type annotation\r\nogr/services/github/project.py:516:\ \ error: Call to untyped function \"_normalize_label_color\" in typed\ - \ context\r\nogr/services/github/project.py:490: error: Function is\ - \ missing a type annotation\r\nogr/services/github/project.py:495: error:\ + \ context\r\nogr/services/github/project.py:525: error: Function is\ + \ missing a type annotation\r\nogr/services/github/project.py:530: error:\ \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/github/project.py:499: error: Returning Any from function\ - \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:502:\ + ogr/services/github/project.py:534: error: Returning Any from function\ + \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:537:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:506: error: Returning Any from function\ - \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:509:\ + \nogr/services/github/project.py:541: error: Returning Any from function\ + \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:544:\ \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:518: error: Argument \"git_tag\" to\ + \nogr/services/github/project.py:553: error: Argument \"git_tag\" to\ \ \"_release_from_github_object\" of \"GithubProject\" has incompatible\ - \ type \"Optional[GitTag]\"; expected \"GitTag\"\r\nogr/services/github/project.py:524:\ + \ type \"Optional[GitTag]\"; expected \"GitTag\"\r\nogr/services/github/project.py:559:\ \ error: Argument \"git_tag\" to \"_release_from_github_object\" of\ \ \"GithubProject\" has incompatible type \"Optional[GitTag]\"; expected\ - \ \"GitTag\"\r\nogr/services/github/project.py:532: error: Argument\ + \ \"GitTag\"\r\nogr/services/github/project.py:567: error: Argument\ \ \"git_tag\" to \"_release_from_github_object\" of \"GithubProject\"\ \ has incompatible type \"Optional[GitTag]\"; expected \"GitTag\"\r\n\ - ogr/services/github/project.py:567: error: Returning Any from function\ + ogr/services/github/project.py:596: error: Returning Any from function\ \ declared to return \"str\"\r\nogr/services/github/user.py:31: error:\ \ Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:33:\ \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:40:\ @@ -13026,29 +12948,41 @@ requests.sessions: \r\nogr/services/github/user.py:61: error: Returning Any from function\ \ declared to return \"Optional[str]\"\r\nogr/services/github/user.py:63:\ \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/user.py:75:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/service.py:26:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/service.py:43:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/service.py:47: error: Incompatible default for\ - \ argument \"github_app_id\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/github/service.py:48: error: Incompatible\ - \ default for argument \"github_app_private_key\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/github/service.py:49:\ - \ error: Incompatible default for argument \"github_app_private_key_path\"\ - \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:64:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/service.py:105:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/service.py:25:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/service.py:37: error: Module 'ogr.services.github.auth_providers'\ + \ has no attribute 'GithubAuthentication'\r\nogr/services/github/service.py:37:\ + \ error: Module 'ogr.services.github.auth_providers' has no attribute\ + \ 'TokenAuthentication'\r\nogr/services/github/service.py:37: error:\ + \ Module 'ogr.services.github.auth_providers' has no attribute 'GithubApp'\r\ + \nogr/services/github/service.py:37: error: Module 'ogr.services.github.auth_providers'\ + \ has no attribute 'Tokman'\r\nogr/services/github/service.py:52: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/service.py:56: error: Incompatible default for argument\ + \ \"github_app_id\" (default has type \"None\", argument has type \"\ + str\")\r\nogr/services/github/service.py:57: error: Incompatible default\ + \ for argument \"github_app_private_key\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/services/github/service.py:58: error:\ + \ Incompatible default for argument \"github_app_private_key_path\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:59:\ + \ error: Incompatible default for argument \"tokman_instance_url\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:74:\ + \ error: Call to untyped function \"__set_authentication\" in typed\ + \ context\r\nogr/services/github/service.py:82: error: Function is missing\ + \ a type annotation\r\nogr/services/github/service.py:96: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/service.py:113:\ \ error: Returning Any from function declared to return \"bool\"\r\n\ - ogr/services/github/service.py:118: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/github/service.py:139:\ + ogr/services/github/service.py:121: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/github/service.py:152:\ \ error: Argument 2 of \"project_create\" is incompatible with supertype\ \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/github/service.py:139: error: Incompatible default\ + \r\nogr/services/github/service.py:152: error: Incompatible default\ \ for argument \"namespace\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/__init__.py:30: error: Module 'ogr.services.github'\ - \ has no attribute 'GithubService'\r\nogr/__init__.py:31: error: Module\ - \ 'ogr.services.pagure' has no attribute 'PagureService'\r\nogr/__init__.py:32:\ - \ error: Module 'ogr.services.gitlab' has no attribute 'GitlabService'\r\ - \nFound 439 errors in 30 files (checked 38 source files)\r\n```\r\n\ + \ type \"str\")\r\nogr/__init__.py:35: error: Module 'ogr.services.github'\ + \ has no attribute 'GithubService'\r\nogr/__init__.py:36: error: Module\ + \ 'ogr.services.gitlab' has no attribute 'GitlabService'\r\nogr/__init__.py:37:\ + \ error: Module 'ogr.services.pagure' has no attribute 'PagureService'\r\ + \nFound 512 errors in 34 files (checked 43 source files)\r\n```\r\n\
" closed_at: null closed_by: null @@ -13066,6 +13000,13 @@ requests.sessions: name: EPIC node_id: MDU6TGFiZWwxNDMyNzc5MjA3 url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 7057ff default: false description: Good for newcomers @@ -13089,10 +13030,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Strict mypy - updated_at: '2020-02-14T08:32:52Z' + updated_at: '2020-09-30T15:07:16Z' url: https://api.github.com/repos/packit/ogr/issues/251 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -13111,49 +13052,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.096745 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:52 GMT + ETag: W/"da98d9fd1add92eecdd31050b924ef34050bc5ae666fde88c2252909f720ae62" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EFEA:1333A2F:6075DC90 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4369' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '631' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/253: - metadata: - latency: 0.22524261474609375 + latency: 0.11166238784790039 module_call_list: - unittest.case - requre.online_replacing @@ -13173,7 +13109,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -13192,7 +13128,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -13219,7 +13155,7 @@ requests.sessions: Blocked by #121" closed_at: '2019-11-26T08:52:22Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -13312,7 +13248,7 @@ requests.sessions: updated_at: '2019-11-26T08:52:22Z' url: https://api.github.com/repos/packit/ogr/issues/253 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -13331,49 +13267,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.111488 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:10 GMT + ETag: W/"a62f42015149119bbab2058d8f5c56535292af6a5e035479fc11666da11e9037" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F5B6:1334999:6075DCA2 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4279' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '721' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/254: - metadata: - latency: 0.291487455368042 + latency: 0.2663285732269287 module_call_list: - unittest.case - requre.online_replacing @@ -13393,7 +13324,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -13412,7 +13343,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -13440,7 +13371,7 @@ requests.sessions: \nPart of #86\r\nBlocked by #121" closed_at: '2019-11-29T10:21:52Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -13533,7 +13464,7 @@ requests.sessions: updated_at: '2019-11-29T10:21:52Z' url: https://api.github.com/repos/packit/ogr/issues/254 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -13552,49 +13483,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.266042 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:09 GMT + ETag: W/"d12cce11e24ea614bdee384e3d6eb26978d7ac57cfcd51ed53818581ae2ea77e" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F598:1334932:6075DCA1 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4281' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '719' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/255: - metadata: - latency: 0.295698881149292 + latency: 0.1133575439453125 module_call_list: - unittest.case - requre.online_replacing @@ -13614,7 +13540,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -13633,7 +13559,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -13658,7 +13584,7 @@ requests.sessions: \ to `PR`\r\n blocked by #254" closed_at: '2019-12-03T11:21:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -13737,7 +13663,7 @@ requests.sessions: updated_at: '2019-12-03T11:21:59Z' url: https://api.github.com/repos/packit/ogr/issues/255 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -13756,49 +13682,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.113184 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:09 GMT + ETag: W/"c412d872115c1d937e828cdb757d0f9fe3c55f577233f368aee2364feac1eef5" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F58B:1334902:6075DCA1 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4283' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '717' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/261: - metadata: - latency: 0.3049633502960205 + latency: 0.1938786506652832 module_call_list: - unittest.case - requre.online_replacing @@ -13852,7 +13773,7 @@ requests.sessions: \n" closed_at: '2020-02-16T09:26:02Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -13897,7 +13818,7 @@ requests.sessions: updated_at: '2020-02-16T09:26:02Z' url: https://api.github.com/repos/packit/ogr/issues/261 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -13916,49 +13837,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.1937 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:02:04 GMT + ETag: W/"21156a6ec860364d5943741a5acb81dfc1b58e39c791d311c77c41b31ec02c55" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F404:13344A5:6075DC9C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4304' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '696' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/263: - metadata: - latency: 0.2696824073791504 + latency: 0.10623455047607422 module_call_list: - unittest.case - requre.online_replacing @@ -13978,7 +13894,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -13997,7 +13913,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -14068,7 +13984,7 @@ requests.sessions: updated_at: '2020-08-24T06:40:40Z' url: https://api.github.com/repos/packit/ogr/issues/263 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 events_url: https://api.github.com/users/svenharris/events{/privacy} followers_url: https://api.github.com/users/svenharris/followers following_url: https://api.github.com/users/svenharris/following{/other_user} @@ -14087,49 +14003,44 @@ requests.sessions: type: User url: https://api.github.com/users/svenharris _next: null - elapsed: 0.2 + elapsed: 0.105788 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 06:40:40 GMT + Date: Tue, 13 Apr 2021 18:01:53 GMT + ETag: W/"81809e6d6b3bb5fa8ebe5276921e35924acb92b7b9610bbc9836e076a965461b" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F04B:1333B7B:6075DC91 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4358' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '642' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/267: - metadata: - latency: 0.29434752464294434 + latency: 0.28546857833862305 module_call_list: - unittest.case - requre.online_replacing @@ -14150,11 +14061,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: Make it possible to clear check status on PR (optionally commit). closed_at: '2019-11-06T11:37:33Z' closed_by: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -14191,7 +14102,7 @@ requests.sessions: updated_at: '2019-11-06T11:37:33Z' url: https://api.github.com/repos/packit/ogr/issues/267 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -14210,49 +14121,44 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.285262 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:02:11 GMT + ETag: W/"5cd114b56829eef8f911f8465a8927a39e031fe989b28527bf43bd9442ff1dbb" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F5E1:1334A33:6075DCA3 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4275' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '725' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/270: - metadata: - latency: 0.2937748432159424 + latency: 0.36778926849365234 module_call_list: - unittest.case - requre.online_replacing @@ -14272,7 +14178,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/1866652?v=4 + 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} @@ -14291,7 +14197,7 @@ requests.sessions: type: User url: https://api.github.com/users/eliskasl assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/1866652?v=4 + - 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} @@ -14309,7 +14215,7 @@ requests.sessions: subscriptions_url: https://api.github.com/users/eliskasl/subscriptions type: User url: https://api.github.com/users/eliskasl - author_association: MEMBER + author_association: CONTRIBUTOR body: "https://github.com/PyGithub/PyGithub/pull/1135 is now merged\r\n\ \r\nUse the code above to initiate GitHubService, related code (which\ \ we are using in the meantime):\r\n\r\npretty much drop this:\r\nhttps://github.com/packit-service/ogr/blob/253e93bc87c079d0cd8f3dc87fc5e11f5078e53b/ogr/services/github_tweak.py#L11\r\ @@ -14317,7 +14223,7 @@ requests.sessions: \n\r\nAlso please write a test case for this." closed_at: '2019-11-20T15:17:22Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -14376,7 +14282,7 @@ requests.sessions: updated_at: '2019-11-20T15:17:22Z' url: https://api.github.com/repos/packit/ogr/issues/270 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -14395,49 +14301,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.367615 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:10 GMT + ETag: W/"bf4570ae918146a2b275484d0bf2075666d985f1d3eca77330feacde1373810a" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F5C7:13349D4:6075DCA2 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4277' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '723' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/271: - metadata: - latency: 0.26944923400878906 + latency: 0.20256400108337402 module_call_list: - unittest.case - requre.online_replacing @@ -14465,7 +14366,7 @@ requests.sessions: \ of docstrings." closed_at: '2020-04-23T11:37:34Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -14530,7 +14431,7 @@ requests.sessions: updated_at: '2020-04-23T11:37:34Z' url: https://api.github.com/repos/packit/ogr/issues/271 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -14549,49 +14450,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.202365 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:00 GMT + ETag: W/"22e3b4cac06e8ff40e8b3502c9a97976c417a294f3c0332b064e8c067a94d5f6" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F274:1334042:6075DC98 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4324' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '676' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/281: - metadata: - latency: 0.2667202949523926 + latency: 0.12572169303894043 module_call_list: - unittest.case - requre.online_replacing @@ -14620,7 +14516,7 @@ requests.sessions: \ has no attribute 'is_write_mode'`" closed_at: '2019-11-25T12:33:59Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -14657,7 +14553,7 @@ requests.sessions: updated_at: '2019-11-25T12:33:59Z' url: https://api.github.com/repos/packit/ogr/issues/281 user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 events_url: https://api.github.com/users/pawelkopka/events{/privacy} followers_url: https://api.github.com/users/pawelkopka/followers following_url: https://api.github.com/users/pawelkopka/following{/other_user} @@ -14676,49 +14572,44 @@ requests.sessions: type: User url: https://api.github.com/users/pawelkopka _next: null - elapsed: 0.2 + elapsed: 0.125537 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 19 Jun 2020 10:46:00 GMT + Date: Tue, 13 Apr 2021 18:02:10 GMT + ETag: W/"c4a44cfd6ec3365fc14cb6e1bb567741e16b3185c3643ef299ac2790c04472cc" + Last-Modified: Tue, 06 Apr 2021 11:26:28 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F5BC:13349B6:6075DCA2 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4278' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '722' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/288: - metadata: - latency: 0.5058081150054932 + latency: 0.13151264190673828 module_call_list: - unittest.case - requre.online_replacing @@ -14755,7 +14646,7 @@ requests.sessions: \n```" closed_at: '2019-12-03T16:04:47Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -14799,7 +14690,7 @@ requests.sessions: updated_at: '2019-12-03T16:04:47Z' url: https://api.github.com/repos/packit/ogr/issues/288 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -14818,49 +14709,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.131283 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:02:08 GMT + ETag: W/"1440172c0f6758544d46cb22d712cb863ef377f93c05973da689171dd01914d1" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F548:1334839:6075DCA0 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4285' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '715' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/29: - metadata: - latency: 0.3009350299835205 + latency: 0.11893272399902344 module_call_list: - unittest.case - requre.online_replacing @@ -14881,14 +14767,14 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "this means to use standard-test-roles to wrap our tests so they\ \ can run when we create PRs on dist-git\r\n\r\nsee [python-docker's\ \ test wrapper](https://src.fedoraproject.org/rpms/python-docker/blob/master/f/tests)\ \ for more details" closed_at: '2020-01-03T14:54:39Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -14953,7 +14839,7 @@ requests.sessions: updated_at: '2020-01-05T17:00:32Z' url: https://api.github.com/repos/packit/ogr/issues/29 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -14972,49 +14858,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.118703 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:07 GMT + ETag: W/"270c29a6e1ffe5b39eaa0243d78d81ad39c3689a2666952946773cb5199f5565" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F4C4:133468E:6075DC9F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4294' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '706' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/290: - metadata: - latency: 0.29461073875427246 + latency: 0.20098543167114258 module_call_list: - unittest.case - requre.online_replacing @@ -15040,7 +14921,7 @@ requests.sessions: a new one! closed_at: '2019-12-04T09:37:32Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -15091,7 +14972,7 @@ requests.sessions: updated_at: '2019-12-04T09:37:32Z' url: https://api.github.com/repos/packit/ogr/issues/290 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -15110,49 +14991,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.200802 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:08 GMT + ETag: W/"851e11d074e22b2ca4ea8bd7eba7ee05b09ae353295b2bd3ccf4e721c6f49224" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F525:13347F1:6075DCA0 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4288' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '712' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/295: - metadata: - latency: 0.2833831310272217 + latency: 0.15212535858154297 module_call_list: - unittest.case - requre.online_replacing @@ -15181,8 +15057,26 @@ requests.sessions: \ would check the same things, but each would need separate yaml for\ \ responses.\r\n\r\nSo I suggest transition from old to new tests right\ \ after 0.13.0 (or before 1.0.0, in case it will be released sooner)" - closed_at: null - closed_by: null + closed_at: '2020-09-24T19:43:18Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D comments: 6 comments_url: https://api.github.com/repos/packit/ogr/issues/295/comments created_at: '2019-12-05T10:40:23Z' @@ -15211,12 +15105,12 @@ requests.sessions: number: 295 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Restructure tests - updated_at: '2020-08-24T10:14:58Z' + updated_at: '2020-09-24T19:43:18Z' url: https://api.github.com/repos/packit/ogr/issues/295 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -15235,49 +15129,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.151918 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 10:14:58 GMT + Date: Tue, 13 Apr 2021 18:01:52 GMT + ETag: W/"69df3a9ad98a71228af0a482526d3417f7cc05b66244d923461dcfcf1bbeaf52" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F007:1333A92:6075DC90 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4365' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '635' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/299: - metadata: - latency: 0.34338903427124023 + latency: 0.13166499137878418 module_call_list: - unittest.case - requre.online_replacing @@ -15306,7 +15195,7 @@ requests.sessions: \ know about the bug." closed_at: '2020-01-03T10:13:01Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -15343,7 +15232,7 @@ requests.sessions: updated_at: '2020-01-03T10:13:01Z' url: https://api.github.com/repos/packit/ogr/issues/299 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -15362,49 +15251,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.131486 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:07 GMT + ETag: W/"0a172c31a059ac3bad106873ba1c4ffdd434e23ae473ed0f11a8f18efe7f815d" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F4CD:13346AA:6075DC9F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4293' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '707' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/301: - metadata: - latency: 0.23994708061218262 + latency: 0.1128227710723877 module_call_list: - unittest.case - requre.online_replacing @@ -15425,12 +15309,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: started porting upsint to ogr and realized that I can't get all labels defined on a repo closed_at: '2020-01-03T09:14:39Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -15474,7 +15358,7 @@ requests.sessions: updated_at: '2020-01-03T09:14:39Z' url: https://api.github.com/repos/packit/ogr/issues/301 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -15493,49 +15377,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.112655 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:07 GMT + ETag: W/"3eae066e7edfe99357c507ca1cea52e2144c2e16ff4550c82b8a1e116cf96ebc" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F4D6:13346CD:6075DC9F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4292' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '708' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/302: - metadata: - latency: 0.2848820686340332 + latency: 0.13473057746887207 module_call_list: - unittest.case - requre.online_replacing @@ -15561,7 +15440,7 @@ requests.sessions: \ the API allows it.\r\n\r\nBlocked by: [Pagure's issue](https://pagure.io/pagure/issue/4704)" closed_at: '2020-04-20T12:38:20Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -15626,7 +15505,7 @@ requests.sessions: updated_at: '2020-04-20T12:38:20Z' url: https://api.github.com/repos/packit/ogr/issues/302 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -15645,49 +15524,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.134511 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:00 GMT + ETag: W/"5cfbe2f577d41cebbb57b0a1b0aca7e13f295f4e2e79ea6bfb35a49e10303db9" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F2AA:13340AE:6075DC98 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4322' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '678' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/303: - metadata: - latency: 0.5063788890838623 + latency: 0.4056065082550049 module_call_list: - unittest.case - requre.online_replacing @@ -15708,7 +15582,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\nipdb> git_project \ \ \ \ \r\n raise APIError(output['error'])\r\ \nE libpagure.exceptions.APIError: Repo \"forks/ttomecek/sen\"\ @@ -16376,7 +16230,7 @@ requests.sessions: \ \"namespace\": self.namespace, \"wait\": True},\r\n```\r\n\r\nWDYT?" closed_at: '2019-03-26T16:18:24Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -16413,7 +16267,7 @@ requests.sessions: updated_at: '2019-03-26T16:18:24Z' url: https://api.github.com/repos/packit/ogr/issues/31 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -16432,49 +16286,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.187083 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:26 GMT + ETag: W/"be944f0562f27f7f1074411a11a8ece1ae2f11662f6b72a509e78174ff8889aa" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F9CA:13356A0:6075DCB2 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4202' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '798' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/310: - metadata: - latency: 0.30236363410949707 + latency: 0.1316845417022705 module_call_list: - unittest.case - requre.online_replacing @@ -16495,17 +16344,44 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Implement get_files() method in Pagure. - closed_at: null - closed_by: null - comments: 9 + author_association: CONTRIBUTOR + body: "Implement `get_files()` method in Pagure.\r\n\r\n- Structure can\ + \ be seen in the docstring of the code that implements that: https://pagure.io/pagure/blob/dd207ee/f/pagure/api/project.py#_709\r\ + \n- Example: https://pagure.io/api/0/pagure/tree\r\n" + closed_at: '2021-02-15T20:48:43Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/310/comments created_at: '2020-01-21T12:50:04Z' events_url: https://api.github.com/repos/packit/ogr/issues/310/events html_url: https://github.com/packit/ogr/issues/310 id: 552856957 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -16527,6 +16403,13 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -16541,12 +16424,12 @@ requests.sessions: number: 310 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Support get_files() in Pagure - updated_at: '2020-07-07T06:21:10Z' + updated_at: '2021-02-15T20:48:43Z' url: https://api.github.com/repos/packit/ogr/issues/310 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -16565,49 +16448,44 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova _next: null - elapsed: 0.2 + elapsed: 0.131452 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:01:44 GMT + ETag: W/"b69b8270a181ee52920c58b587d71959feafd55ca235d62bb735720c3eb37143" + Last-Modified: Tue, 09 Mar 2021 07:06:56 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EDC0:133336B:6075DC88 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4414' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '586' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/312: - metadata: - latency: 0.2915925979614258 + latency: 0.19936776161193848 module_call_list: - unittest.case - requre.online_replacing @@ -16632,7 +16510,7 @@ requests.sessions: body: Release-bot, it's time to work! closed_at: '2020-01-27T11:51:57Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -16683,7 +16561,7 @@ requests.sessions: updated_at: '2020-01-27T11:51:57Z' url: https://api.github.com/repos/packit/ogr/issues/312 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -16702,49 +16580,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.199203 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:05 GMT + ETag: W/"1a1ed59d2554ee8cdc5ef1ff1adb31e0dd48900196a7c87860546f554b483d36" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F464:1334596:6075DC9D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4299' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '701' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/314: - metadata: - latency: 0.27971982955932617 + latency: 0.19753646850585938 module_call_list: - unittest.case - requre.online_replacing @@ -16784,7 +16657,7 @@ requests.sessions: ' closed_at: '2020-01-28T14:17:18Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -16821,7 +16694,7 @@ requests.sessions: updated_at: '2020-01-28T14:17:18Z' url: https://api.github.com/repos/packit/ogr/issues/314 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -16840,49 +16713,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.197334 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:02:05 GMT + ETag: W/"d39ca5eb2b4dc4a63e4184676fe07574705b4b5372a2ce249ff25fa171f96f32" Last-Modified: Tue, 28 Jan 2020 14:17:18 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F421:13344D5:6075DC9D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4302' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '698' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/315: - metadata: - latency: 0.3018646240234375 + latency: 0.2943265438079834 module_call_list: - unittest.case - requre.online_replacing @@ -16922,7 +16790,7 @@ requests.sessions: ' closed_at: '2020-01-28T14:17:12Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -16959,7 +16827,7 @@ requests.sessions: updated_at: '2020-01-28T14:17:12Z' url: https://api.github.com/repos/packit/ogr/issues/315 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -16978,49 +16846,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.293995 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:02:05 GMT + ETag: W/"eedd4920eaf488997f48be0359a96500f1fe04b68f6e0754ccd88c9fd7639fb7" Last-Modified: Tue, 28 Jan 2020 14:17:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F432:133450B:6075DC9D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4301' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '699' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/316: - metadata: - latency: 0.2933642864227295 + latency: 0.31455349922180176 module_call_list: - unittest.case - requre.online_replacing @@ -17060,7 +16923,7 @@ requests.sessions: ' closed_at: '2020-01-28T14:17:02Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -17097,7 +16960,7 @@ requests.sessions: updated_at: '2020-01-28T14:17:02Z' url: https://api.github.com/repos/packit/ogr/issues/316 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -17116,49 +16979,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.314373 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:02:05 GMT + ETag: W/"d26beb56a93772139c2a9581e1ad829f6fa4efcc08e63b3abe86dd3ff19d8783" Last-Modified: Tue, 28 Jan 2020 14:17:02 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F44D:133454F:6075DC9D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4300' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '700' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/318: - metadata: - latency: 0.21009230613708496 + latency: 0.20495104789733887 module_call_list: - unittest.case - requre.online_replacing @@ -17179,12 +17037,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\n>>> from ogr.parsing import parse_git_repo\r\n>>> r = parse_git_repo('https://github.com/avocado-framework/avocado/')\r\ \n>>> r.namespace\r\n'avocado'\r\n>>> r.repo\r\n''\r\n```" closed_at: '2020-02-06T12:58:11Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -17235,7 +17093,7 @@ requests.sessions: updated_at: '2020-02-06T12:58:11Z' url: https://api.github.com/repos/packit/ogr/issues/318 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -17254,49 +17112,44 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.204686 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:02:04 GMT + ETag: W/"a6fa07700fdaa12b9816e66904b4b961a430394ab645a71605a77364f800f2f0" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F411:13344BE:6075DC9C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4303' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '697' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/323: - metadata: - latency: 0.2937586307525635 + latency: 0.45654797554016113 module_call_list: - unittest.case - requre.online_replacing @@ -17324,7 +17177,7 @@ requests.sessions: \ need to merge [that PR](https://src.fedoraproject.org/rpms/python-ogr/pull-request/159)." closed_at: '2020-03-12T12:24:37Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -17368,7 +17221,7 @@ requests.sessions: updated_at: '2020-03-12T12:24:37Z' url: https://api.github.com/repos/packit/ogr/issues/323 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -17387,49 +17240,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.456382 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:02:03 GMT + ETag: W/"081a84ba6e076c3faf000a6ba36c499f0df95eee3139585a8a46db26147d005a" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F386:1334337:6075DC9A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4311' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '689' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/325: - metadata: - latency: 0.3967764377593994 + latency: 0.12511992454528809 module_call_list: - unittest.case - requre.online_replacing @@ -17513,7 +17361,7 @@ requests.sessions: updated_at: '2020-05-18T08:42:29Z' url: https://api.github.com/repos/packit/ogr/issues/325 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -17532,49 +17380,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.124912 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:57 GMT + ETag: W/"8271078dc3769d1893a677ab64f8b27d5c2108e2ec14dd6ac439283d3d2e49cd" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F1D1:1333EF5:6075DC95 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4335' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '665' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/329: - metadata: - latency: 0.22169709205627441 + latency: 0.11783337593078613 module_call_list: - unittest.case - requre.online_replacing @@ -17594,43 +17437,43 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos - site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions - type: User - url: https://api.github.com/users/nasirhm + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/nasirhm + url: https://api.github.com/users/shreyaspapi author_association: CONTRIBUTOR body: "Is it possible to assign Issues to particular user-names using\ \ the issue object by any chance?\r\n\r\n#### Github\r\n- github-api:\ @@ -17648,9 +17491,27 @@ requests.sessions: \ tests for it\r\n- [ ] add the get/set property for the Issue classes\r\ \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ \ tests for it\r\n\r\n\r\nupdated by @lachmanfrantisek " - closed_at: null - closed_by: null - comments: 6 + closed_at: '2020-10-20T14:41:14Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/329/comments created_at: '2020-02-17T15:16:46Z' events_url: https://api.github.com/repos/packit/ogr/issues/329/events @@ -17671,6 +17532,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -17706,12 +17574,12 @@ requests.sessions: number: 329 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Assigning Issues to based on usernames. - updated_at: '2020-07-17T06:32:56Z' + updated_at: '2020-10-20T14:41:14Z' url: https://api.github.com/repos/packit/ogr/issues/329 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} followers_url: https://api.github.com/users/saisankargochhayat/followers following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} @@ -17730,49 +17598,44 @@ requests.sessions: type: User url: https://api.github.com/users/saisankargochhayat _next: null - elapsed: 0.2 + elapsed: 0.117591 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 19:41:28 GMT + Date: Tue, 13 Apr 2021 18:01:50 GMT + ETag: W/"aa448dc93aff8f131aa1be3e47cddef66171d45d86e88900efc28703d8841bae" + Last-Modified: Tue, 13 Apr 2021 14:35:05 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF7C:13338DA:6075DC8E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4378' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '622' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/33: - metadata: - latency: 0.27564549446105957 + latency: 0.12936782836914062 module_call_list: - unittest.case - requre.online_replacing @@ -17792,7 +17655,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -17811,7 +17674,7 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova assignees: - - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + - 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} @@ -17840,7 +17703,7 @@ requests.sessions: \n* https://pexpect.readthedocs.io" closed_at: '2019-07-09T09:29:53Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -17891,7 +17754,7 @@ requests.sessions: updated_at: '2019-07-09T09:29:53Z' url: https://api.github.com/repos/packit/ogr/issues/33 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -17910,49 +17773,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.129188 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:02:23 GMT + ETag: W/"0c56c36baaa8a1629bb4b2d657e6114c840daf68a668a86532d7d321e56f1a3c" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F908:133546D:6075DCAF + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4221' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '779' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/330: - metadata: - latency: 0.4981260299682617 + latency: 0.11482596397399902 module_call_list: - unittest.case - requre.online_replacing @@ -17971,16 +17829,52 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR body: "AFAIK at the moment it is not possible to get the info about whether\ \ the repository is private or not in pagure. Now we depend on the info\ \ that in src.fedoraproject.org and pagure.io, the private repositories\ \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" closed_at: null closed_by: null - comments: 4 + comments: 12 comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments created_at: '2020-02-18T12:39:00Z' events_url: https://api.github.com/repos/packit/ogr/issues/330/events @@ -17994,6 +17888,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker - color: 42e529 default: false description: This issue was already processed and well defined. @@ -18010,10 +17911,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: better is_private method for pagure projects - updated_at: '2020-07-28T11:32:52Z' + updated_at: '2021-02-05T08:31:21Z' url: https://api.github.com/repos/packit/ogr/issues/330 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -18032,49 +17933,44 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.114582 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:01:47 GMT + ETag: W/"ddce3787a3fc9e6ce60343c79e40a65ed12633c63c569d871c981c6750b91d74" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EE72:13335B8:6075DC8A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4400' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '600' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/331: - metadata: - latency: 0.2935304641723633 + latency: 0.14077043533325195 module_call_list: - unittest.case - requre.online_replacing @@ -18094,7 +17990,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -18113,7 +18009,7 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -18131,12 +18027,12 @@ requests.sessions: subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User url: https://api.github.com/users/sakalosj - author_association: MEMBER + author_association: CONTRIBUTOR body: pagure provides more detailed error info stored under 'errors' key, which is not currently not used in output closed_at: '2020-03-12T12:16:11Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -18188,7 +18084,7 @@ requests.sessions: updated_at: '2020-03-12T12:16:11Z' url: https://api.github.com/repos/packit/ogr/issues/331 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -18207,49 +18103,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.140548 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 18:02:03 GMT + ETag: W/"a10ef6f2e5565eac3a477444d92c6c3e13b927b9c939604fc1fc2536cbf8c33e" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F3AE:13343A9:6075DC9B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4310' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '690' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/334: - metadata: - latency: 0.3010377883911133 + latency: 0.27665042877197266 module_call_list: - unittest.case - requre.online_replacing @@ -18269,7 +18160,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -18288,7 +18179,7 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + - 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} @@ -18306,13 +18197,13 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek - author_association: MEMBER + author_association: CONTRIBUTOR body: "edited by @lachmanfrantisek :\r\n\r\nTODO:\r\n- Add tests for https://github.com/packit-service/ogr/pull/333\ \ (better pagure error messages)\r\n - e.g. wrong URL, wrong token,\ \ not-found object,..." closed_at: '2020-04-09T11:55:54Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -18377,7 +18268,7 @@ requests.sessions: updated_at: '2020-04-09T11:55:54Z' url: https://api.github.com/repos/packit/ogr/issues/334 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -18396,49 +18287,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.276397 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:01 GMT + ETag: W/"162c7b9eaffb31207d7ded4ec16a8d816f26971f3ffddcb9f7b5e9528f6de53e" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F2D5:133411A:6075DC98 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4319' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '681' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/338: - metadata: - latency: 0.29278087615966797 + latency: 0.11062836647033691 module_call_list: - unittest.case - requre.online_replacing @@ -18458,43 +18344,43 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} + 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/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions + 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/dinolinjob + url: https://api.github.com/users/lachmanfrantisek assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} + - 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/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions + 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/dinolinjob + url: https://api.github.com/users/lachmanfrantisek author_association: MEMBER body: "Multiple times in the code (mostly in the `parsing.py`), we need\ \ to parse the hostname of the instance.\r\n\r\n```python\r\nservice_repo_url\ @@ -18506,9 +18392,27 @@ requests.sessions: \n- [ ] hardcode the value for static instances (GitHub)\r\n- [ ] use\ \ that property in places, where we are getting hostname of the instance\r\ \n- [ ] create some unit tests for that" - closed_at: null - closed_by: null - comments: 4 + closed_at: '2020-09-18T14:55:56Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/338/comments created_at: '2020-02-21T08:57:50Z' events_url: https://api.github.com/repos/packit/ogr/issues/338/events @@ -18572,12 +18476,12 @@ requests.sessions: number: 338 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: hostname property in the service classes - updated_at: '2020-07-14T06:47:13Z' + updated_at: '2020-09-18T14:55:56Z' url: https://api.github.com/repos/packit/ogr/issues/338 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -18596,49 +18500,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.110433 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 05:52:11 GMT + Date: Tue, 13 Apr 2021 18:01:52 GMT + ETag: W/"530fe08527cd0831c979cf17907404effdb9cf24a68696f072916385c441657b" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F00D:1333AAB:6075DC90 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4364' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '636' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/339: - metadata: - latency: 0.22435379028320312 + latency: 0.1922900676727295 module_call_list: - unittest.case - requre.online_replacing @@ -18668,7 +18567,7 @@ requests.sessions: \ to the user." closed_at: '2020-04-07T12:06:30Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -18740,7 +18639,7 @@ requests.sessions: updated_at: '2020-04-07T12:06:30Z' url: https://api.github.com/repos/packit/ogr/issues/339 user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 events_url: https://api.github.com/users/cverna/events{/privacy} followers_url: https://api.github.com/users/cverna/followers following_url: https://api.github.com/users/cverna/following{/other_user} @@ -18759,49 +18658,44 @@ requests.sessions: type: User url: https://api.github.com/users/cverna _next: null - elapsed: 0.2 + elapsed: 0.192126 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 09:12:10 GMT + Date: Tue, 13 Apr 2021 18:02:01 GMT + ETag: W/"e018fb2de2ee635d353f785fd20861715eaa8ba5ff30e512cd5c1b3345a447c8" + Last-Modified: Mon, 12 Apr 2021 06:55:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F2F3:1334163:6075DC99 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4318' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '682' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/342: - metadata: - latency: 0.24741530418395996 + latency: 0.11885833740234375 module_call_list: - unittest.case - requre.online_replacing @@ -18821,7 +18715,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/20343475?v=4 + avatar_url: https://avatars.githubusercontent.com/u/20343475?v=4 events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} followers_url: https://api.github.com/users/RafayGhafoor/followers following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} @@ -18840,7 +18734,7 @@ requests.sessions: type: User url: https://api.github.com/users/RafayGhafoor assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/20343475?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/20343475?v=4 events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} followers_url: https://api.github.com/users/RafayGhafoor/followers following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} @@ -18866,7 +18760,7 @@ requests.sessions: \ lines." closed_at: '2020-05-25T14:18:31Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -18939,7 +18833,7 @@ requests.sessions: updated_at: '2020-05-25T14:18:31Z' url: https://api.github.com/repos/packit/ogr/issues/342 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -18958,49 +18852,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.11868 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 20 Aug 2020 13:20:29 GMT + Date: Tue, 13 Apr 2021 18:01:57 GMT + ETag: W/"1a4a469151089685ab03a2aa4855472e80b2380c06baca3dadfa58a9811f0739" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F199:1333EA5:6075DC95 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4337' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '663' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/344: - metadata: - latency: 0.39589881896972656 + latency: 0.11492705345153809 module_call_list: - unittest.case - requre.online_replacing @@ -19020,7 +18909,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 + avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 events_url: https://api.github.com/users/TomasJani/events{/privacy} followers_url: https://api.github.com/users/TomasJani/followers following_url: https://api.github.com/users/TomasJani/following{/other_user} @@ -19039,7 +18928,7 @@ requests.sessions: type: User url: https://api.github.com/users/TomasJani assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 + - avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 events_url: https://api.github.com/users/TomasJani/events{/privacy} followers_url: https://api.github.com/users/TomasJani/followers following_url: https://api.github.com/users/TomasJani/following{/other_user} @@ -19066,7 +18955,7 @@ requests.sessions: \n- [x] tests for all implementations" closed_at: '2020-05-16T16:37:40Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -19152,7 +19041,7 @@ requests.sessions: updated_at: '2020-05-18T08:05:17Z' url: https://api.github.com/repos/packit/ogr/issues/344 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -19171,49 +19060,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.114745 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 04 Aug 2020 10:09:27 GMT + Date: Tue, 13 Apr 2021 18:01:58 GMT + ETag: W/"94eedc26cf0b083b60644fce989272efd34e9095ccc11e11f4eef9d97791ca91" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F1D7:1333EFF:6075DC95 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4334' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '666' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/346: - metadata: - latency: 0.22282147407531738 + latency: 0.12363672256469727 module_call_list: - unittest.case - requre.online_replacing @@ -19238,7 +19122,7 @@ requests.sessions: body: '' closed_at: '2020-03-07T06:10:20Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -19289,7 +19173,7 @@ requests.sessions: updated_at: '2020-03-07T06:10:20Z' url: https://api.github.com/repos/packit/ogr/issues/346 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -19308,49 +19192,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.123473 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:02:03 GMT + ETag: W/"da1920640227af69105cea7ab831420d1bac653109f4d90b4fc95146972b4642" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F3C6:1334403:6075DC9B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4308' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '692' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/348: - metadata: - latency: 0.30081939697265625 + latency: 0.1301429271697998 module_call_list: - unittest.case - requre.online_replacing @@ -19399,7 +19278,7 @@ requests.sessions: ' closed_at: '2020-03-09T14:02:41Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -19436,7 +19315,7 @@ requests.sessions: updated_at: '2020-03-10T09:57:32Z' url: https://api.github.com/repos/packit/ogr/issues/348 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -19455,49 +19334,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.129941 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:02:03 GMT + ETag: W/"9db9b56fd102e46af8eb8dbdd8a46d6753be011f437ddf5610973680350f9956" Last-Modified: Tue, 10 Mar 2020 09:57:32 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F3BE:13343DB:6075DC9B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4309' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '691' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/353: - metadata: - latency: 0.3351297378540039 + latency: 0.15138554573059082 module_call_list: - unittest.case - requre.online_replacing @@ -19518,7 +19392,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "```\r\n$ tox\r\nGLOB sdist-make: /home/tt/g/user-cont/ogr/setup.py\ \ \r\npy36 inst-nodeps: /home/tt/g/user-cont/ogr/.tox/.tmp/package/1/ogr-0.11.1.dev4+g022e9df.zip\r\ \nWARNING: Discarding $PYTHONPATH from environment, to override specify\ @@ -19577,7 +19451,7 @@ requests.sessions: \ when I use older pygithub." closed_at: '2020-03-18T12:37:12Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -19621,7 +19495,7 @@ requests.sessions: updated_at: '2020-03-18T12:37:12Z' url: https://api.github.com/repos/packit/ogr/issues/353 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -19640,49 +19514,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.148964 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:02 GMT + ETag: W/"1856bcb7bf76df82e98169a619be0571d6832091dfa837c435afad165beb61f6" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F372:13342D9:6075DC9A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4313' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '687' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/354: - metadata: - latency: 0.3002464771270752 + latency: 0.12213993072509766 module_call_list: - unittest.case - requre.online_replacing @@ -19712,7 +19581,7 @@ requests.sessions: hosted Gitlab. ' closed_at: '2020-03-17T14:46:29Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -19756,7 +19625,7 @@ requests.sessions: updated_at: '2020-03-17T14:58:14Z' url: https://api.github.com/repos/packit/ogr/issues/354 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} followers_url: https://api.github.com/users/saisankargochhayat/followers following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} @@ -19775,49 +19644,44 @@ requests.sessions: type: User url: https://api.github.com/users/saisankargochhayat _next: null - elapsed: 0.2 + elapsed: 0.121901 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 20 Aug 2020 01:17:30 GMT + Date: Tue, 13 Apr 2021 18:02:02 GMT + ETag: W/"a5505d03804bc942bc51c9426ab9162eb078b4bcc6f6afe325035826f391222a" + Last-Modified: Tue, 13 Apr 2021 14:35:05 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F37E:1334313:6075DC9A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4312' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '688' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/356: - metadata: - latency: 0.4031224250793457 + latency: 0.10834550857543945 module_call_list: - unittest.case - requre.online_replacing @@ -19845,7 +19709,7 @@ requests.sessions: \n - ignore the SSL verification (`ssl_verify` argument)" closed_at: null closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -19863,7 +19727,7 @@ requests.sessions: subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions type: Bot url: https://api.github.com/users/stale%5Bbot%5D - comments: 4 + comments: 9 comments_url: https://api.github.com/repos/packit/ogr/issues/356/comments created_at: '2020-03-17T14:45:26Z' events_url: https://api.github.com/repos/packit/ogr/issues/356/events @@ -19877,6 +19741,13 @@ requests.sessions: name: documentation node_id: MDU6TGFiZWwxNDMyNzc5MjY3 url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: 42e529 default: false description: This issue was already processed and well defined. @@ -19893,10 +19764,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Document the usage of custom instances and certificates - updated_at: '2020-08-24T06:10:50Z' + updated_at: '2021-03-08T17:41:56Z' url: https://api.github.com/repos/packit/ogr/issues/356 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -19915,49 +19786,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.108124 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 06:10:50 GMT + Date: Tue, 13 Apr 2021 18:01:43 GMT + ETag: W/"c16752e39d98a4870c7d51ee909b668eb3415c3d5323de75a7b9f7ed923f884e" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78ED71:133327C:6075DC87 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4420' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '580' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/359: - metadata: - latency: 0.2952251434326172 + latency: 0.11269998550415039 module_call_list: - unittest.case - requre.online_replacing @@ -19978,22 +19844,30 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "and ideally link it with pull request and git project\r\n\r\nThe\ \ expectation here is that when ogr returns name of a branch, it would\ \ return a GitBranch instance instead.\r\n\r\nThe class should contain\ - \ at minimum:\r\n* name\r\n* be linked to a repository\r\n\r\nWould\ - \ be nice if:\r\n* there was a connection to a PR if there is one\r\n\ - * datetime it was created\r\n* datetime of last change" + \ at minimum:\r\n* name\r\n* be linked to a repository\r\n* commit SHA\ + \ of the HEAD\r\n\r\nWould be nice if:\r\n* there was a connection to\ + \ a PR if there is one\r\n* datetime it was created\r\n* datetime of\ + \ last change" closed_at: null closed_by: null - comments: 4 + comments: 6 comments_url: https://api.github.com/repos/packit/ogr/issues/359/comments created_at: '2020-03-23T12:36:31Z' events_url: https://api.github.com/repos/packit/ogr/issues/359/events html_url: https://github.com/packit/ogr/issues/359 id: 586176845 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -20024,10 +19898,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: introduce a class for a git branch - updated_at: '2020-08-10T09:23:58Z' + updated_at: '2021-02-09T08:39:32Z' url: https://api.github.com/repos/packit/ogr/issues/359 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -20046,49 +19920,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.112491 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:45 GMT + ETag: W/"53565dcdeeab393bcbf927921c5ecc5266ba41fc7f77f1486ddcd3d83a6b54af" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EE10:1333494:6075DC89 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4406' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '594' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/36: - metadata: - latency: 0.3798830509185791 + latency: 0.11130905151367188 module_call_list: - unittest.case - requre.online_replacing @@ -20109,11 +19978,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2019-03-18T17:45:29Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -20164,7 +20033,7 @@ requests.sessions: updated_at: '2019-03-18T17:45:29Z' url: https://api.github.com/repos/packit/ogr/issues/36 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -20183,49 +20052,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.111146 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:02:27 GMT + ETag: W/"a2868499e7e920a58636f2adc983e140a8b8d7cd0b23e26f35c69a9176b41ba2" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F9D3:13356C7:6075DCB2 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4201' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '799' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/360: - metadata: - latency: 0.31198740005493164 + latency: 0.12511992454528809 module_call_list: - unittest.case - requre.online_replacing @@ -20246,7 +20110,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "and ideally link it with pull request, branch, author and git project\r\ \n\r\nThe expectation here is that when ogr returns a commit has, it\ \ would return a GitCommit instance instead.\r\n\r\nThe class should\ @@ -20263,13 +20127,20 @@ requests.sessions: \ -> `Pull-request information`" closed_at: null closed_by: null - comments: 2 + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/360/comments created_at: '2020-03-23T12:38:34Z' events_url: https://api.github.com/repos/packit/ogr/issues/360/events html_url: https://github.com/packit/ogr/issues/360 id: 586178020 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -20300,10 +20171,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: introduce a new class for GitCommit - updated_at: '2020-08-10T09:23:51Z' + updated_at: '2021-02-04T19:58:47Z' url: https://api.github.com/repos/packit/ogr/issues/360 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -20322,49 +20193,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.124949 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:47 GMT + ETag: W/"2ed97c2a1da8bb26815148119c55fba2041dfc28d5d66f5a2d02d978053117a2" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EE86:13335FE:6075DC8B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4398' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '602' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/364: - metadata: - latency: 0.3255748748779297 + latency: 0.10828399658203125 module_call_list: - unittest.case - requre.online_replacing @@ -20385,7 +20251,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "* We first to need to create an abstraction on top of all forges\r\ \n* and then implement it for each\r\n\r\nThis is an example how pagure\ \ does it:\r\n```python\r\nmod_acls = {\r\n 'user_type': 'group',\r\ @@ -20395,7 +20261,7 @@ requests.sessions: \n data=mod_acls\r\n)\r\n```" closed_at: '2020-06-22T13:36:26Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -20453,7 +20319,7 @@ requests.sessions: updated_at: '2020-06-22T13:36:27Z' url: https://api.github.com/repos/packit/ogr/issues/364 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -20472,49 +20338,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.108004 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:56 GMT + ETag: W/"916c3293edc2d24363e38a5e7193932f524155f842c1d6a22c1a538b62133410" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F130:1333DD6:6075DC94 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4342' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '658' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/365: - metadata: - latency: 0.3932332992553711 + latency: 0.10637950897216797 module_call_list: - unittest.case - requre.online_replacing @@ -20535,18 +20396,43 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "* [ ] Project\r\n* [ ] Service (**don't** include secrets)\r\n\ * [ ] Release\r\n* [ ] PR\r\n* [ ] Issue" - closed_at: null - closed_by: null - comments: 4 + closed_at: '2020-12-09T11:20:42Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 6 comments_url: https://api.github.com/repos/packit/ogr/issues/365/comments created_at: '2020-03-25T13:23:05Z' events_url: https://api.github.com/repos/packit/ogr/issues/365/events html_url: https://github.com/packit/ogr/issues/365 id: 587692896 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -20582,12 +20468,12 @@ requests.sessions: number: 365 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: add __repr__ to classes - updated_at: '2020-08-10T09:23:44Z' + updated_at: '2020-12-09T11:20:42Z' url: https://api.github.com/repos/packit/ogr/issues/365 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -20606,49 +20492,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.106196 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:49 GMT + ETag: W/"4d18745dede2a5a18353c5b7504f166e331eeb946d708c4702c88fd4902c773a" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF2B:13337C7:6075DC8D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4384' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '616' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/368: - metadata: - latency: 0.22811222076416016 + latency: 0.2798798084259033 module_call_list: - unittest.case - requre.online_replacing @@ -20669,11 +20550,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: Implement PullRequest.head_commit for github and gitlab closed_at: '2020-04-30T13:57:51Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -20738,7 +20619,7 @@ requests.sessions: updated_at: '2020-04-30T13:57:51Z' url: https://api.github.com/repos/packit/ogr/issues/368 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -20757,49 +20638,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.279612 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 18:01:58 GMT + ETag: W/"59769038796085b7360f53d1f7a2ff2c7c3a13a17f26f4271b3b99bc6874148e" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F1F8:1333F5F:6075DC96 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4329' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '671' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/370: - metadata: - latency: 0.30171895027160645 + latency: 0.1233217716217041 module_call_list: - unittest.case - requre.online_replacing @@ -20820,11 +20696,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2020-04-01T08:33:46Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -20875,7 +20751,7 @@ requests.sessions: updated_at: '2020-04-01T08:33:46Z' url: https://api.github.com/repos/packit/ogr/issues/370 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -20894,49 +20770,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.123158 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 18:02:02 GMT + ETag: W/"16be6dfc10bf91e34ec208cfd6935e7e692184180458a63447929c28ca6b236f" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F361:13342B6:6075DC9A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4314' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '686' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/372: - metadata: - latency: 0.2936866283416748 + latency: 0.1470034122467041 module_call_list: - unittest.case - requre.online_replacing @@ -20985,7 +20856,7 @@ requests.sessions: ' closed_at: '2020-04-01T13:27:44Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -21022,7 +20893,7 @@ requests.sessions: updated_at: '2020-04-01T13:27:44Z' url: https://api.github.com/repos/packit/ogr/issues/372 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -21041,49 +20912,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.146838 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:02:02 GMT + ETag: W/"d5c6705a232fea71f2e886d0b3acd2d641bc2edb1ed3662d2ad53cf3ec9af2da" Last-Modified: Wed, 01 Apr 2020 13:27:44 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F352:133428D:6075DC9A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4315' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '685' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/377: - metadata: - latency: 0.33451318740844727 + latency: 0.14065337181091309 module_call_list: - unittest.case - requre.online_replacing @@ -21104,12 +20970,12 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: PaureProject.get_files() not implemented. Maybe not possible because pagure api doesnt provide any possiblity to get repository content. closed_at: '2020-04-14T09:13:43Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -21174,7 +21040,7 @@ requests.sessions: updated_at: '2020-04-14T09:13:43Z' url: https://api.github.com/repos/packit/ogr/issues/377 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -21193,49 +21059,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.140432 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 18:02:00 GMT + ETag: W/"43de849dc3d92584b2cb06e8b4af372f7fd3d20a0f2070c966f30de07c6818bf" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F2C5:13340E7:6075DC98 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4320' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '680' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/383: - metadata: - latency: 0.2796943187713623 + latency: 0.2589278221130371 module_call_list: - unittest.case - requre.online_replacing @@ -21256,7 +21117,7 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Shoudn't be this working?\r\n\r\nconfig:\r\n```\r\nauthentication:\r\ \n git.stg.centos.org:\r\n instance_url: https://git.stg.centos.org\r\ \n token: ---token---\r\n type: pagure\r\n```\r\nerror:\r\n```\r\ @@ -21281,9 +21142,27 @@ requests.sessions: \ for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ \ is missing in the config.\", OgrException('No matching service was\ \ found.'))\r\n```" - closed_at: null - closed_by: null - comments: 1 + closed_at: '2020-09-30T15:25:59Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 comments_url: https://api.github.com/repos/packit/ogr/issues/383/comments created_at: '2020-04-15T21:50:26Z' events_url: https://api.github.com/repos/packit/ogr/issues/383/events @@ -21311,13 +21190,13 @@ requests.sessions: number: 383 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: Initializing service via get_instances_from_dict() not working as expected - updated_at: '2020-04-23T11:27:50Z' + updated_at: '2020-09-30T15:25:59Z' url: https://api.github.com/repos/packit/ogr/issues/383 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -21336,49 +21215,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.258691 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 02 Jul 2020 06:02:50 GMT + Date: Tue, 13 Apr 2021 18:01:52 GMT + ETag: W/"6adeb324916f28d2da45cb455eb8236ed85e735ff1182f6a021ce0820b566249" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EFD8:13339FF:6075DC8F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4370' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '630' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/384: - metadata: - latency: 0.49610137939453125 + latency: 0.09972000122070312 module_call_list: - unittest.case - requre.online_replacing @@ -21406,7 +21280,7 @@ requests.sessions: \ flags easier." closed_at: null closed_by: null - comments: 2 + comments: 7 comments_url: https://api.github.com/repos/packit/ogr/issues/384/comments created_at: '2020-04-16T07:35:14Z' events_url: https://api.github.com/repos/packit/ogr/issues/384/events @@ -21450,10 +21324,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Create a class to hold information on pull-request flags - updated_at: '2020-08-24T06:39:05Z' + updated_at: '2021-03-08T17:43:30Z' url: https://api.github.com/repos/packit/ogr/issues/384 user: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -21472,49 +21346,44 @@ requests.sessions: type: User url: https://api.github.com/users/csomh _next: null - elapsed: 0.2 + elapsed: 0.099511 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 24 Aug 2020 06:39:05 GMT + Date: Tue, 13 Apr 2021 18:01:43 GMT + ETag: W/"c26ef79c958d0e0bf0587c10ac71ec2be3e4b558ba55208bd1185f9610ee16cb" + Last-Modified: Thu, 01 Apr 2021 12:28:54 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78ED69:1333265:6075DC87 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4421' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '579' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/385: - metadata: - latency: 0.22454333305358887 + latency: 0.36994099617004395 module_call_list: - unittest.case - requre.online_replacing @@ -21539,7 +21408,7 @@ requests.sessions: body: Thanks in advance! closed_at: '2020-04-24T07:15:34Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -21590,7 +21459,7 @@ requests.sessions: updated_at: '2020-04-24T07:15:34Z' url: https://api.github.com/repos/packit/ogr/issues/385 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -21609,49 +21478,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.369713 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:02:00 GMT + ETag: W/"c452605cae8a946515c16fb6251b089e10126992b274883c6702030829da10ae" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F234:1333FDE:6075DC97 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4325' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '675' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/387: - metadata: - latency: 0.2932775020599365 + latency: 0.19151759147644043 module_call_list: - unittest.case - requre.online_replacing @@ -21691,7 +21555,7 @@ requests.sessions: ' closed_at: '2020-04-16T14:27:25Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -21728,7 +21592,7 @@ requests.sessions: updated_at: '2020-04-16T15:02:35Z' url: https://api.github.com/repos/packit/ogr/issues/387 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -21747,49 +21611,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.191323 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:02:00 GMT + ETag: W/"0b1c45eba8927fc8dcc1d586c074dd582f05814908c036ebef89c63b6f682534" Last-Modified: Thu, 16 Apr 2020 15:02:35 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F2B7:13340CA:6075DC98 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4321' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '679' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/391: - metadata: - latency: 0.22717666625976562 + latency: 0.19249677658081055 module_call_list: - unittest.case - requre.online_replacing @@ -21809,7 +21668,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -21828,7 +21687,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -21852,7 +21711,7 @@ requests.sessions: \ have that on some other method." closed_at: '2020-04-22T13:38:46Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -21910,7 +21769,7 @@ requests.sessions: updated_at: '2020-04-22T13:38:46Z' url: https://api.github.com/repos/packit/ogr/issues/391 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -21929,49 +21788,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.192331 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:00 GMT + ETag: W/"de307d1d98cc7d71d7b60b74a4d4c9bdff2f9b854ef60250b9569ec206c69772" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F295:1334082:6075DC98 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4323' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '677' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/396: - metadata: - latency: 0.29547953605651855 + latency: 0.11782503128051758 module_call_list: - unittest.case - requre.online_replacing @@ -21991,7 +21845,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -22010,7 +21864,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -22036,7 +21890,7 @@ requests.sessions: \ ogr use apostrophes instead?" closed_at: '2020-04-26T19:23:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -22073,7 +21927,7 @@ requests.sessions: updated_at: '2020-04-26T19:23:07Z' url: https://api.github.com/repos/packit/ogr/issues/396 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -22092,49 +21946,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.117657 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:59 GMT + ETag: W/"21aa6dabead441ebc5382c21492aee87977c8c6ddb4dfa9ce02dd2059a06fc21" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F229:1333FBA:6075DC97 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4326' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '674' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/398: - metadata: - latency: 0.2565901279449463 + latency: 0.11005830764770508 module_call_list: - unittest.case - requre.online_replacing @@ -22183,7 +22032,7 @@ requests.sessions: ' closed_at: '2020-04-27T10:09:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -22220,7 +22069,7 @@ requests.sessions: updated_at: '2020-04-27T10:11:01Z' url: https://api.github.com/repos/packit/ogr/issues/398 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -22239,49 +22088,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.109888 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:01:59 GMT + ETag: W/"644e36cd1c4d01aef122496e063c12054a4ceed4158cdfcd44b9c9351b898328" Last-Modified: Mon, 27 Apr 2020 10:11:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F222:1333FB2:6075DC97 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4327' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '673' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/4: - metadata: - latency: 0.3024327754974365 + latency: 0.09956097602844238 module_call_list: - unittest.case - requre.online_replacing @@ -22316,7 +22160,7 @@ requests.sessions: \ [G]it-forge [R]uler @jpopelka @lachmanfrantisek @TomasTomecek " closed_at: '2019-02-14T13:28:27Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -22364,10 +22208,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: closed title: Better name - updated_at: '2020-08-21T07:51:33Z' + updated_at: '2020-08-26T10:58:41Z' url: https://api.github.com/repos/packit/ogr/issues/4 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -22386,49 +22230,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.09939 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:51:33 GMT + Date: Tue, 13 Apr 2021 18:01:53 GMT + ETag: W/"089a812bca6557755405c3698b899365e4a9d5c1c253b9a9a0d119947cf93de6" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F044:1333B5C:6075DC91 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4359' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '641' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/400: - metadata: - latency: 0.2936382293701172 + latency: 0.10889124870300293 module_call_list: - unittest.case - requre.online_replacing @@ -22448,7 +22287,7 @@ requests.sessions: _content: active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -22467,7 +22306,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -22498,7 +22337,7 @@ requests.sessions: \n - [ ] don't forget to support both and deprecate the old one" closed_at: '2020-04-30T16:23:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -22563,7 +22402,7 @@ requests.sessions: updated_at: '2020-04-30T16:23:19Z' url: https://api.github.com/repos/packit/ogr/issues/400 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -22582,49 +22421,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.108706 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:58 GMT + ETag: W/"fe92ccdde369e18a48b046cdbf412e12ebf273d9ce33fd5be9fc448f2c663a90" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F1EF:1333F43:6075DC96 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4330' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '670' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/406: - metadata: - latency: 0.3938264846801758 + latency: 0.1060647964477539 module_call_list: - unittest.case - requre.online_replacing @@ -22654,7 +22488,7 @@ requests.sessions: \ handle non-existing fork" closed_at: '2020-05-26T09:47:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -22698,7 +22532,7 @@ requests.sessions: updated_at: '2020-05-26T09:47:07Z' url: https://api.github.com/repos/packit/ogr/issues/406 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -22717,49 +22551,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.105882 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:57 GMT + ETag: W/"104f97f957bf19990c77d33c74d1cfdd65fe02c04296634a9dd72cd879ab8027" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F147:1333E1C:6075DC94 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4339' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '661' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/407: - metadata: - latency: 0.2917349338531494 + latency: 0.10931539535522461 module_call_list: - unittest.case - requre.online_replacing @@ -22784,7 +22613,7 @@ requests.sessions: body: Let's create a new release! closed_at: '2020-05-06T13:34:20Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -22835,7 +22664,7 @@ requests.sessions: updated_at: '2020-05-06T13:34:20Z' url: https://api.github.com/repos/packit/ogr/issues/407 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -22854,49 +22683,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.109155 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:58 GMT + ETag: W/"1757d39f0bfac05d6a3dc886a516dfbb2106aed90c47ddd3a546c0b73fd2fe25" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F1E1:1333F1C:6075DC96 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4332' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '668' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/409: - metadata: - latency: 0.3034498691558838 + latency: 0.2732210159301758 module_call_list: - unittest.case - requre.online_replacing @@ -22945,7 +22769,7 @@ requests.sessions: ' closed_at: '2020-05-21T11:58:35Z' closed_by: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -22982,7 +22806,7 @@ requests.sessions: updated_at: '2020-05-21T11:58:35Z' url: https://api.github.com/repos/packit/ogr/issues/409 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -23001,49 +22825,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.273031 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:01:57 GMT + ETag: W/"b5b88c3a1f9441620e65ffe26c853d9938665c42b9a499aa635320cbf0a58534" Last-Modified: Thu, 21 May 2020 11:58:35 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F1B1:1333EC3:6075DC95 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4336' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '664' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/412: - metadata: - latency: 0.2929720878601074 + latency: 0.11875057220458984 module_call_list: - unittest.case - requre.online_replacing @@ -23080,7 +22899,7 @@ requests.sessions: lachmanfrantisek\", repo=\"ogr\")\r\n```" closed_at: null closed_by: null - comments: 11 + comments: 18 comments_url: https://api.github.com/repos/packit/ogr/issues/412/comments created_at: '2020-05-19T20:57:01Z' events_url: https://api.github.com/repos/packit/ogr/issues/412/events @@ -23110,10 +22929,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Revisiting API for creating PRs - updated_at: '2020-07-21T09:28:30Z' + updated_at: '2021-03-26T14:19:55Z' url: https://api.github.com/repos/packit/ogr/issues/412 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -23132,49 +22951,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.118508 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:41 GMT + ETag: W/"59be0c54aa2355f4d264cfe5c2dc54ec4edbef0cf1e470b4b06444938c922d06" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78ED09:1333167:6075DC85 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4430' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '570' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/413: - metadata: - latency: 0.2954440116882324 + latency: 0.12324810028076172 module_call_list: - unittest.case - requre.online_replacing @@ -23203,9 +23017,27 @@ requests.sessions: 1. adding new commit flag that replaces old one\r\n2. adding new commit\ \ flag, but keeping the old one\r\n\r\nExample output from docs doesn't\ \ contain commit flag with same name." - closed_at: null - closed_by: null - comments: 1 + closed_at: '2021-01-22T13:24:39Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/413/comments created_at: '2020-05-20T21:27:51Z' events_url: https://api.github.com/repos/packit/ogr/issues/413/events @@ -23240,12 +23072,12 @@ requests.sessions: number: 413 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: edited on Gitlab's commit flag - updated_at: '2020-07-21T09:27:54Z' + updated_at: '2021-01-22T13:24:39Z' url: https://api.github.com/repos/packit/ogr/issues/413 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -23264,49 +23096,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.123048 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:48 GMT + ETag: W/"aa63d106d4bf6bac4c85a6c7d338f63796edd71cea6d91954cfc10ccb33caa35" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EEDC:13336FD:6075DC8C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4391' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '609' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/414: - metadata: - latency: 0.20855164527893066 + latency: 0.12275266647338867 module_call_list: - unittest.case - requre.online_replacing @@ -23335,7 +23162,7 @@ requests.sessions: \ blocked by #412" closed_at: '2020-06-25T10:41:12Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -23393,7 +23220,7 @@ requests.sessions: updated_at: '2020-06-25T10:41:12Z' url: https://api.github.com/repos/packit/ogr/issues/414 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -23412,49 +23239,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.122484 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:56 GMT + ETag: W/"7f37dabe11d76d6c99c534f5b4e9f25d1f164941a1bb497e985bbb3e54b32b67" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F110:1333D9B:6075DC94 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4344' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '656' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/416: - metadata: - latency: 0.21585822105407715 + latency: 0.09255552291870117 module_call_list: - unittest.case - requre.online_replacing @@ -23478,10 +23300,19 @@ requests.sessions: author_association: MEMBER body: "https://github.com/packit-service/ogr/pull/415 implements `PagurePullRequest.patch`\ \ property to get a patch from a pull request.\r\n`Gitlab` & `Github`\ - \ implementation are missing." + \ implementation are missing.\r\n\r\nUpdate by @lachmanfrantisek :\r\ + \n\r\nThe task is to implement `patch` property fo `GithubPullRequest`\ + \ and `GitlabPullRequest` that will return `patch` of the changes for\ + \ pull-request (not the URL of it).\r\n\r\n- Github:\r\n - URL of\ + \ patch: https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.patch_url\r\ + \n - The URL looks like this: https://patch-diff.githubusercontent.com/raw/packit/packit-service/pull/1003.patch\r\ + \n - But this one works as well: https://github.com/packit/ogr/issues/416.patch\r\ + \n- Gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ + \n - I am not sure if `diffs` will work.\r\n - The same approach\ + \ as in GitHub (adding `.patch` to the URL) works well: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/800.patch" closed_at: null closed_by: null - comments: 1 + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/416/comments created_at: '2020-05-22T16:21:38Z' events_url: https://api.github.com/repos/packit/ogr/issues/416/events @@ -23502,6 +23333,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -23509,13 +23347,13 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: fef2c0 + - color: 7057ff default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue labels_url: https://api.github.com/repos/packit/ogr/issues/416/labels{/name} locked: false milestone: null @@ -23525,10 +23363,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Implement patch property in GitlabPullRequest and GithubPullRequest - updated_at: '2020-07-23T11:20:56Z' + updated_at: '2021-02-25T13:04:37Z' url: https://api.github.com/repos/packit/ogr/issues/416 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -23547,49 +23385,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.092297 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:01:44 GMT + ETag: W/"b290c208df626f0fa849e3bfc6c36ce24c00aadbe3c0f3d8c7c7f39b2254e49f" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78ED99:13332F7:6075DC87 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4417' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '583' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/417: - metadata: - latency: 0.25284886360168457 + latency: 0.40054893493652344 module_call_list: - unittest.case - requre.online_replacing @@ -23625,7 +23458,7 @@ requests.sessions: \ only the pagure token, which allows both forking and creating PR." closed_at: '2020-05-26T05:56:28Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -23662,7 +23495,7 @@ requests.sessions: updated_at: '2020-05-26T05:56:28Z' url: https://api.github.com/repos/packit/ogr/issues/417 user: - avatar_url: https://avatars3.githubusercontent.com/u/6943409?v=4 + avatar_url: https://avatars.githubusercontent.com/u/6943409?v=4 events_url: https://api.github.com/users/Zlopez/events{/privacy} followers_url: https://api.github.com/users/Zlopez/followers following_url: https://api.github.com/users/Zlopez/following{/other_user} @@ -23681,49 +23514,44 @@ requests.sessions: type: User url: https://api.github.com/users/Zlopez _next: null - elapsed: 0.2 + elapsed: 0.400376 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 17:54:17 GMT + Date: Tue, 13 Apr 2021 18:01:57 GMT + ETag: W/"8da8ba2b0a0ed65b39b2956b35d7b93c699e4f38623af37618b31904127eeb90" + Last-Modified: Mon, 05 Apr 2021 14:44:21 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F158:1333E45:6075DC95 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4338' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '662' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/420: - metadata: - latency: 0.2909202575683594 + latency: 0.25371599197387695 module_call_list: - unittest.case - requre.online_replacing @@ -23760,7 +23588,7 @@ requests.sessions: \ for anything that can be implemented later." closed_at: null closed_by: null - comments: 4 + comments: 8 comments_url: https://api.github.com/repos/packit/ogr/issues/420/comments created_at: '2020-05-26T14:37:43Z' events_url: https://api.github.com/repos/packit/ogr/issues/420/events @@ -23790,10 +23618,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Support for GitLab pipelines - updated_at: '2020-08-03T07:28:07Z' + updated_at: '2021-02-09T08:43:48Z' url: https://api.github.com/repos/packit/ogr/issues/420 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -23812,49 +23640,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.25344 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 03 Aug 2020 07:28:07 GMT + Date: Tue, 13 Apr 2021 18:01:45 GMT + ETag: W/"ae83f5a0cb8811c49c55c0b41aa02ec3ebbfc00445f97cdeeaab2f331c75e803" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EE01:1333455:6075DC89 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4407' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '593' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/421: - metadata: - latency: 0.24440741539001465 + latency: 0.11324286460876465 module_call_list: - unittest.case - requre.online_replacing @@ -23875,11 +23698,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2020-05-26T15:00:38Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -23930,7 +23753,7 @@ requests.sessions: updated_at: '2020-05-26T15:00:38Z' url: https://api.github.com/repos/packit/ogr/issues/421 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -23949,49 +23772,44 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.113 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:01:56 GMT + ETag: W/"0bc36e6fc4dc64d6fc56f66f5e2b8341854fde0f9dff2d8cc5430ecd8a0071d4" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F13E:1333E01:6075DC94 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4340' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '660' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/423: - metadata: - latency: 0.39464831352233887 + latency: 0.12348341941833496 module_call_list: - unittest.case - requre.online_replacing @@ -24037,7 +23855,7 @@ requests.sessions: ' closed_at: '2020-08-09T16:57:04Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -24081,7 +23899,7 @@ requests.sessions: updated_at: '2020-08-09T16:57:04Z' url: https://api.github.com/repos/packit/ogr/issues/423 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -24100,49 +23918,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.123315 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:01:54 GMT + ETag: W/"f922d17b157210da50a38d7e1b0a40bcbb5bb96ab545c0ef76a313faef6b912c" Last-Modified: Sun, 09 Aug 2020 16:57:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F0AE:1333C7D:6075DC92 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4351' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '649' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/424: - metadata: - latency: 0.2941431999206543 + latency: 0.16840243339538574 module_call_list: - unittest.case - requre.online_replacing @@ -24172,7 +23985,7 @@ requests.sessions: \ diff comments on pull requests, e.g. `get_diff_comments`" closed_at: null closed_by: - avatar_url: https://avatars3.githubusercontent.com/in/1724?v=4 + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/stale%5Bbot%5D/followers following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} @@ -24190,13 +24003,20 @@ requests.sessions: subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions type: Bot url: https://api.github.com/users/stale%5Bbot%5D - comments: 2 + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/424/comments created_at: '2020-05-29T09:01:09Z' events_url: https://api.github.com/repos/packit/ogr/issues/424/events html_url: https://github.com/packit/ogr/issues/424 id: 627115330 labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: a2eeef default: false description: New feature or a request for enhancement. @@ -24220,10 +24040,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Diff/review comments on pull requests - updated_at: '2020-08-17T08:56:04Z' + updated_at: '2021-02-04T12:01:57Z' url: https://api.github.com/repos/packit/ogr/issues/424 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -24242,49 +24062,44 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.168234 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:01:47 GMT + ETag: W/"90ab58b464cd7c7b85b7a9a90fb8135bc367d5ea22456f16d05e9970265aff19" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EEBF:13336AF:6075DC8B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4393' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '607' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/432: - metadata: - latency: 0.3002171516418457 + latency: 0.20139455795288086 module_call_list: - unittest.case - requre.online_replacing @@ -24309,7 +24124,7 @@ requests.sessions: body: '' closed_at: '2020-07-09T07:36:32Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -24360,7 +24175,7 @@ requests.sessions: updated_at: '2020-07-09T07:36:32Z' url: https://api.github.com/repos/packit/ogr/issues/432 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -24379,49 +24194,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.201231 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:01:55 GMT + ETag: W/"629082dadd5bcf9aefd39a05be48c306b4390b0348aad4dd659358bbef1f2a5a" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F0F8:1333D54:6075DC93 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4346' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '654' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/434: - metadata: - latency: 0.30170321464538574 + latency: 0.20034408569335938 module_call_list: - unittest.case - requre.online_replacing @@ -24464,7 +24274,7 @@ requests.sessions: ' closed_at: '2020-07-10T05:57:19Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -24501,7 +24311,7 @@ requests.sessions: updated_at: '2020-07-10T09:36:14Z' url: https://api.github.com/repos/packit/ogr/issues/434 user: - avatar_url: https://avatars0.githubusercontent.com/in/29180?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} @@ -24520,49 +24330,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.200182 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:01:55 GMT + ETag: W/"05becbe7f4795187a8c8933607f25c5ca878a7ce4001f26140a66e18b71731ea" Last-Modified: Fri, 10 Jul 2020 09:36:14 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F0E5:1333D1F:6075DC93 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4347' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '653' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/437: - metadata: - latency: 0.26381516456604004 + latency: 0.14496493339538574 module_call_list: - unittest.case - requre.online_replacing @@ -24583,11 +24388,29 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: 'Related: https://github.com/packit-service/ogr/pull/436' closed_at: null - closed_by: null - comments: 0 + closed_by: + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 + events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/stale%5Bbot%5D/followers + following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/stale%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/stale + id: 26384082 + login: stale[bot] + node_id: MDM6Qm90MjYzODQwODI= + organizations_url: https://api.github.com/users/stale%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/stale%5Bbot%5D/received_events + repos_url: https://api.github.com/users/stale%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/stale%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/stale%5Bbot%5D + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/437/comments created_at: '2020-07-16T12:54:27Z' events_url: https://api.github.com/repos/packit/ogr/issues/437/events @@ -24631,10 +24454,10 @@ requests.sessions: repository_url: https://api.github.com/repos/packit/ogr state: open title: Support adding group permission for Gitlab and Github projects - updated_at: '2020-07-16T13:21:03Z' + updated_at: '2021-02-04T19:58:55Z' url: https://api.github.com/repos/packit/ogr/issues/437 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -24653,49 +24476,44 @@ requests.sessions: type: User url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.144692 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 14:50:43 GMT + Date: Tue, 13 Apr 2021 18:01:47 GMT + ETag: W/"4977f2a9d8cd97e279c669eb1f33aba2e20288dff5938b46f99860bb4161fb34" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EE7B:13335DD:6075DC8B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4399' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '601' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/440: - metadata: - latency: 0.29967498779296875 + latency: 0.12151455879211426 module_call_list: - unittest.case - requre.online_replacing @@ -24724,7 +24542,7 @@ requests.sessions: \ about the support (But unable to find anything here - https://pagure.io/api/0/#projects-tab)" closed_at: '2020-08-17T00:45:05Z' closed_by: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -24768,7 +24586,7 @@ requests.sessions: updated_at: '2020-08-17T00:45:05Z' url: https://api.github.com/repos/packit/ogr/issues/440 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -24787,49 +24605,44 @@ requests.sessions: type: User url: https://api.github.com/users/shreyaspapi _next: null - elapsed: 0.2 + elapsed: 0.121337 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 01:42:30 GMT + Date: Tue, 13 Apr 2021 18:01:54 GMT + ETag: W/"01a4ce4811880cfd8cbe7923cf743d3e82f93844db85f724e23f8643ea3061a0" + Last-Modified: Tue, 13 Apr 2021 01:50:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F076:1333BF3:6075DC92 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4355' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '645' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/442: - metadata: - latency: 0.2957649230957031 + latency: 0.1609020233154297 module_call_list: - unittest.case - requre.online_replacing @@ -24854,7 +24667,7 @@ requests.sessions: body: Example of Issue description closed_at: '2020-07-30T21:15:08Z' closed_by: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -24891,7 +24704,7 @@ requests.sessions: updated_at: '2020-07-31T12:43:32Z' url: https://api.github.com/repos/packit/ogr/issues/442 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 events_url: https://api.github.com/users/shreyaspapi/events{/privacy} followers_url: https://api.github.com/users/shreyaspapi/followers following_url: https://api.github.com/users/shreyaspapi/following{/other_user} @@ -24910,49 +24723,44 @@ requests.sessions: type: User url: https://api.github.com/users/shreyaspapi _next: null - elapsed: 0.2 + elapsed: 0.160744 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 26 Aug 2020 01:42:30 GMT + Date: Tue, 13 Apr 2021 18:01:55 GMT + ETag: W/"4d7abef3d596bc5feb5c49f1c4fa32a8d784bef2c7a031d07b4fcaaab04200de" + Last-Modified: Tue, 13 Apr 2021 01:50:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F0C4:1333CBC:6075DC93 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4349' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '651' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/445: - metadata: - latency: 0.27851438522338867 + latency: 0.10246062278747559 module_call_list: - unittest.case - requre.online_replacing @@ -24999,7 +24807,7 @@ requests.sessions: \ guide. " closed_at: null closed_by: null - comments: 0 + comments: 5 comments_url: https://api.github.com/repos/packit/ogr/issues/445/comments created_at: '2020-08-03T13:50:00Z' events_url: https://api.github.com/repos/packit/ogr/issues/445/events @@ -25016,10 +24824,10 @@ requests.sessions: state: open title: Regenerating the test data for the integration tests should be trivial - updated_at: '2020-08-03T13:50:00Z' + updated_at: '2021-02-08T08:27:43Z' url: https://api.github.com/repos/packit/ogr/issues/445 user: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -25038,49 +24846,44 @@ requests.sessions: type: User url: https://api.github.com/users/csomh _next: null - elapsed: 0.2 + elapsed: 0.102184 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 09:44:02 GMT + Date: Tue, 13 Apr 2021 18:01:45 GMT + ETag: W/"f0a46742e82603fc90b044e05d6ad475b2bcfebdfc19d506854c65c518d82184" + Last-Modified: Thu, 01 Apr 2021 12:28:54 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EE19:13334B7:6075DC89 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4405' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '595' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/446: - metadata: - latency: 0.24745798110961914 + latency: 0.1637725830078125 module_call_list: - unittest.case - requre.online_replacing @@ -25101,11 +24904,11 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' closed_at: '2020-08-05T14:20:46Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -25156,7 +24959,7 @@ requests.sessions: updated_at: '2020-08-05T14:20:46Z' url: https://api.github.com/repos/packit/ogr/issues/446 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -25175,49 +24978,44 @@ requests.sessions: type: User url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.163459 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 05 Aug 2020 14:20:46 GMT + Date: Tue, 13 Apr 2021 18:01:55 GMT + ETag: W/"aee3fedb69faa8ac66d31e64a9f317b68904f10829a9287ca6fbe776426a8599" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F0B8:1333C87:6075DC93 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4350' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '650' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/448: - metadata: - latency: 0.27839064598083496 + latency: 0.12115216255187988 module_call_list: - unittest.case - requre.online_replacing @@ -25261,15 +25059,40 @@ requests.sessions: the issue comment. ' - closed_at: null - closed_by: null - comments: 0 + closed_at: '2020-10-06T12:06:10Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 comments_url: https://api.github.com/repos/packit/ogr/issues/448/comments created_at: '2020-08-07T09:12:33Z' events_url: https://api.github.com/repos/packit/ogr/issues/448/events html_url: https://github.com/packit/ogr/issues/448 id: 674879684 - labels: [] + labels: + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale labels_url: https://api.github.com/repos/packit/ogr/issues/448/labels{/name} locked: false milestone: null @@ -25277,12 +25100,12 @@ requests.sessions: number: 448 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: '[packit] Propose update failed for release 0.13.0' - updated_at: '2020-08-07T09:12:33Z' + updated_at: '2020-10-06T12:06:10Z' url: https://api.github.com/repos/packit/ogr/issues/448 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -25301,49 +25124,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.120912 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 07 Aug 2020 09:12:33 GMT + Date: Tue, 13 Apr 2021 18:01:51 GMT + ETag: W/"50f33048cfca0933d4a6cd2e68290d5519af90d36195e1df06aa276d9159015f" + Last-Modified: Tue, 06 Oct 2020 12:06:10 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EFA6:133396A:6075DC8F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4373' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '627' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/449: - metadata: - latency: 0.4301154613494873 + latency: 0.15348029136657715 module_call_list: - unittest.case - requre.online_replacing @@ -25381,7 +25199,7 @@ requests.sessions: \ [] so that it does not fail on the line with `assert`." closed_at: '2020-08-13T07:00:04Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/26543671?v=4 + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} @@ -25440,7 +25258,7 @@ requests.sessions: updated_at: '2020-08-13T07:00:04Z' url: https://api.github.com/repos/packit/ogr/issues/449 user: - avatar_url: https://avatars2.githubusercontent.com/in/12637?v=4 + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} @@ -25459,186 +25277,176 @@ requests.sessions: type: Bot url: https://api.github.com/users/sentry-io%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.153196 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:01:54 GMT + ETag: W/"784b80a76c6f0fd81391546f3ec090023e3e7cc66c50bff93a731746ec1ea6c0" Last-Modified: Thu, 13 Aug 2020 07:00:04 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F0A5:1333C71:6075DC92 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4352' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '648' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repos/packit/ogr/issues/454: - metadata: - latency: 0.29383349418640137 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.Issue - - github.GithubObject - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-08-19T11:07:53Z' - closed_by: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos - 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 - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/454/comments - created_at: '2020-08-19T11:02:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/454/events - html_url: https://github.com/packit/ogr/issues/454 - id: 681751158 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/454/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2ODE3NTExNTg= - number: 454 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: New patch release - updated_at: '2020-08-19T11:07:53Z' - url: https://api.github.com/repos/packit/ogr/issues/454 - user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos - site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 11:07:53 GMT - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/456: - - metadata: - latency: 0.5054552555084229 + latency: 0.12044906616210938 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-08-19T11:07:53Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/454/comments + created_at: '2020-08-19T11:02:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/454/events + html_url: https://github.com/packit/ogr/issues/454 + id: 681751158 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/454/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2ODE3NTExNTg= + number: 454 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: New patch release + updated_at: '2020-08-19T11:07:53Z' + url: https://api.github.com/repos/packit/ogr/issues/454 + user: + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos + site_admin: false + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + type: User + url: https://api.github.com/users/sakalosj + _next: null + elapsed: 0.12023 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:53 GMT + ETag: W/"aa554a81afd50751b97f0d8ef7a8dd569583aaaf745baa5f7c5b49601c878db1" + Last-Modified: Tue, 13 Apr 2021 14:35:12 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: 88B1:19FC:78F055:1333B8F:6075DC91 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4357' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '643' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/456: + - metadata: + latency: 0.10998868942260742 module_call_list: - unittest.case - requre.online_replacing @@ -25681,9 +25489,27 @@ requests.sessions: the issue comment. ' - closed_at: null - closed_by: null - comments: 0 + closed_at: '2020-09-16T09:45:50Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 1 comments_url: https://api.github.com/repos/packit/ogr/issues/456/comments created_at: '2020-08-20T08:09:32Z' events_url: https://api.github.com/repos/packit/ogr/issues/456/events @@ -25697,12 +25523,12 @@ requests.sessions: number: 456 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open + state: closed title: '[packit] Propose update failed for release 0.13.1' - updated_at: '2020-08-20T08:09:32Z' + updated_at: '2020-09-16T09:45:50Z' url: https://api.github.com/repos/packit/ogr/issues/456 user: - avatar_url: https://avatars0.githubusercontent.com/in/29180?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} @@ -25721,49 +25547,44 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.109824 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 20 Aug 2020 08:09:32 GMT + Date: Tue, 13 Apr 2021 18:01:53 GMT + ETag: W/"35ed1c4dce80c1c60a53d49caa94ce3dad3634d67c1e885a3b573098decf3ed4" + Last-Modified: Wed, 16 Sep 2020 09:45:50 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F034:1333B25:6075DC91 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4361' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '639' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/49: + https://api.github.com:443/repos/packit/ogr/issues/457: - metadata: - latency: 0.27492785453796387 + latency: 0.27013468742370605 module_call_list: - unittest.case - requre.online_replacing @@ -25784,134 +25605,118 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\nName Stmts Miss Cover Missing\r\ - \n----------------------------------------------------------\r\nservices/github.py\ - \ 114 63 45% 17-19, 24-26, 30, 33-34, 41-42, 47, 51,\ - \ 58-61, 64, 67, 70, 73-79, 82-83, 86-87, 95-98, 108, 111, 114-115,\ - \ 118, 121, 124, 127-132, 135, 149, 170, 184, 193-203, 207-209, 212-213,\ - \ 216-217, 227, 230\r\nservices/gitlab.py 66 66 0%\ - \ 1-144\r\nservices/our_pagure.py 79 46 42% 33, 36-39,\ - \ 134-148, 160-176, 180-186, 249-256, 259-264, 267-270, 273, 276, 279-282,\ - \ 285-288, 291-294, 297-298\r\nutils.py 150 110\ - \ 27% 35-77, 82-83, 88-89, 94, 98-116, 120-130, 145-148, 163-165,\ - \ 169-176, 180-214, 219-248, 252, 260, 273\r\n```\r\n\r\nI know the\ - \ `gitlab` module is WIP, but the others deserve more tests IMHO" - closed_at: '2020-01-15T11:22:38Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-09-16T13:15:51Z' closed_by: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/49/comments - created_at: '2019-03-26T14:47:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/49/events - html_url: https://github.com/packit/ogr/issues/49 - id: 425463412 + url: https://api.github.com/users/usercont-release-bot + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/457/comments + created_at: '2020-09-01T13:57:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/457/events + html_url: https://github.com/packit/ogr/issues/457 + id: 690166541 labels: - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9d0c4 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/49/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/457/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjU0NjM0MTI= - number: 49 + node_id: MDU6SXNzdWU2OTAxNjY1NDE= + number: 457 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Modules with poor code coverage - updated_at: '2020-01-15T11:22:38Z' - url: https://api.github.com/repos/packit/ogr/issues/49 + title: New minor release + updated_at: '2020-09-16T13:15:51Z' + url: https://api.github.com/repos/packit/ogr/issues/457 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.269973 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:01:53 GMT + ETag: W/"5e1b4788896ff87598990c7ff356347b3e123a299e9a6f8448dff2faee37307c" + Last-Modified: Sun, 21 Mar 2021 14:49:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F01F:1333ADD:6075DC90 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4362' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '638' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/50: + https://api.github.com:443/repos/packit/ogr/issues/459: - metadata: - latency: 0.2570607662200928 + latency: 0.10018372535705566 module_call_list: - unittest.case - requre.online_replacing @@ -25932,123 +25737,124 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-03-27T09:03:50Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-02T08:18:37Z' closed_by: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lachmanfrantisek comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/50/comments - created_at: '2019-03-27T08:58:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/50/events - html_url: https://github.com/packit/ogr/issues/50 - id: 425835263 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/50/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/459/comments + created_at: '2020-09-02T07:22:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/459/events + html_url: https://github.com/packit/ogr/issues/459 + id: 690786308 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/459/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjU4MzUyNjM= - number: 50 + node_id: MDU6SXNzdWU2OTA3ODYzMDg= + number: 459 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.2.0 release - updated_at: '2019-03-27T09:03:50Z' - url: https://api.github.com/repos/packit/ogr/issues/50 + title: '[packit] Propose update failed for release 0.14.0' + updated_at: '2020-09-02T08:18:37Z' + url: https://api.github.com/repos/packit/ogr/issues/459 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.098937 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:53 GMT + ETag: W/"75fed87c38eaa7554f897c78f9f0a5267e8545e07ba24638e041c86bbafb95dc" + Last-Modified: Wed, 02 Sep 2020 08:18:37 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F03E:1333B40:6075DC91 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4360' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '640' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/52: + https://api.github.com:443/repos/packit/ogr/issues/461: - metadata: - latency: 0.2998778820037842 + latency: 0.12299489974975586 module_call_list: - unittest.case - requre.online_replacing @@ -26067,75 +25873,25 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "Just spent some time debugging an issue where packit.yaml was not\ - \ found while being 100 % it's in there.\r\n\r\nIt turned out that my\ - \ token was incorrect and github kept throwing 401: that should bubble\ - \ up, we should catch 404 only. " - closed_at: '2019-07-10T07:35:48Z' - closed_by: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/52/comments - created_at: '2019-03-27T21:00:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/52/events - html_url: https://github.com/packit/ogr/issues/52 - id: 426181525 + body: "There is a [check-runs API](https://docs.github.com/en/rest/reference/checks)\ + \ that allows more functionality and e.g `neutral` state requested in\ + \ https://github.com/packit/packit-service/issues/760.\r\n\r\nUnfortunately,\ + \ it's [not implemented in PyGithub yet](https://github.com/PyGithub/PyGithub/issues/1621).\r\ + \n\r\nThis project builds on top of `PyGithub` and implements that:\ + \ https://github.com/webknjaz/check-in/blob/master/check_in/github_api.py\r\ + \n\r\nWe can either help on `PyGithub` side or implement it here or\ + \ wait for `PyGithub`." + closed_at: null + closed_by: null + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/461/comments + created_at: '2020-09-08T07:02:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/461/events + html_url: https://github.com/packit/ogr/issues/461 + id: 695610247 labels: - color: '000000' default: false @@ -26144,101 +25900,89 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff + - color: a2eeef default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: ff9990 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/52/labels{/name} + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + labels_url: https://api.github.com/repos/packit/ogr/issues/461/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjYxODE1MjU= - number: 52 + node_id: MDU6SXNzdWU2OTU2MTAyNDc= + number: 461 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'get_file_content: catch only 404, raise everything else' - updated_at: '2019-07-10T07:35:48Z' - url: https://api.github.com/repos/packit/ogr/issues/52 + state: open + title: '[github] Use check-runs for richer API' + updated_at: '2021-03-26T13:15:58Z' + url: https://api.github.com/repos/packit/ogr/issues/461 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.122784 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:01:42 GMT + ETag: W/"e43f860711202e6b823d0ee418505e63aeaa431aca4032311a04fbf4214e5d0d" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78ED39:13331E4:6075DC86 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4428' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '572' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/53: + https://api.github.com:443/repos/packit/ogr/issues/464: - metadata: - latency: 0.29328393936157227 + latency: 0.095855712890625 module_call_list: - unittest.case - requre.online_replacing @@ -26260,116 +26004,152 @@ requests.sessions: assignee: null assignees: [] author_association: NONE - body: "There is no documentation on how to use the library, currently.\ - \ A documentation will help people on how to use ogr, and showcase it's\ - \ features and functions.\r\n\r\nThis can be done by adding the wiki\ - \ pages (on Github), since the documentation might be quite long and\ - \ the Wiki will help in segregating several topics (for instance, how\ - \ to use ogr for GitHub, GitLab and Pagure).\r\n\r\n" - closed_at: null - closed_by: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/53/comments - created_at: '2019-04-04T13:30:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/53/events - html_url: https://github.com/packit/ogr/issues/53 - id: 429280678 + body: "Sentry Issue: [RED-HAT-0P-2PA](https://sentry.io/organizations/red-hat-0p/issues/1785839618/?referrer=github_integration)\n\ + \n```\nRemoteDisconnected: Remote end closed connection without response\n\ + (2 additional frame(s) were not displayed)\n...\n File \"\"\ + , line 3, in raise_from\n # Permission is hereby granted, free of\ + \ charge, to any person obtaining a copy\n File \"urllib3/connectionpool.py\"\ + , line 416, in _make_request\n httplib_response = conn.getresponse()\n\ + \ File \"http/client.py\", line 1369, in getresponse\n response.begin()\n\ + \ File \"http/client.py\", line 310, in begin\n version, status,\ + \ reason = self._read_status()\n File \"http/client.py\", line 279,\ + \ in _read_status\n raise RemoteDisconnected(\"Remote end closed\ + \ connection without\"\n\nProtocolError: ('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))\n(6 additional frame(s)\ + \ were not displayed)\n...\n File \"\", line 3, in raise_from\n\ + \ # Permission is hereby granted, free of charge, to any person obtaining\ + \ a copy\n File \"urllib3/connectionpool.py\", line 416, in _make_request\n\ + \ httplib_response = conn.getresponse()\n File \"http/client.py\"\ + , line 1369, in getresponse\n response.begin()\n File \"http/client.py\"\ + , line 310, in begin\n version, status, reason = self._read_status()\n\ + \ File \"http/client.py\", line 279, in _read_status\n raise RemoteDisconnected(\"\ + Remote end closed connection without\"\n\nConnectionError: ('Connection\ + \ aborted.', RemoteDisconnected('Remote end closed connection without\ + \ response'))\n File \"ogr/services/pagure/service.py\", line 168,\ + \ in call_api_raw\n method=method, url=url, params=params, data=data\n\ + \ File \"ogr/services/pagure/service.py\", line 186, in get_raw_request\n\ + \ verify=not self.insecure,\n File \"requests/sessions.py\", line\ + \ 533, in request\n resp = self.send(prep, **send_kwargs)\n File\ + \ \"requests/sessions.py\", line 646, in send\n r = adapter.send(request,\ + \ **kwargs)\n File \"requests/adapters.py\", line 498, in send\n \ + \ raise ConnectionError(err, request=request)\n\nPagureAPIException:\ + \ (\"Cannot connect to url: 'https://git.stg.centos.org/api/0/source-git/acl/c/48d4feb54ebcb47cb593ab3c304ec36b755e8769/flag'.\"\ + , ConnectionError(ProtocolError('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))))\n(11 additional frame(s)\ + \ were not displayed)\n...\n File \"ogr/services/pagure/project.py\"\ + , line 464, in set_commit_status\n uid=uid,\n File \"ogr/services/pagure/flag.py\"\ + , line 88, in set\n \"c\", commit, \"flag\", method=\"POST\", data=data\n\ + \ File \"ogr/services/pagure/project.py\", line 129, in _call_project_api\n\ + \ url=request_url, method=method, params=params, data=data\n File\ + \ \"ogr/services/pagure/service.py\", line 128, in call_api\n response\ + \ = self.call_api_raw(url=url, method=method, params=params, data=data)\n\ + \ File \"ogr/services/pagure/service.py\", line 173, in call_api_raw\n\ + \ raise PagureAPIException(f\"Cannot connect to url: '{url}'.\",\ + \ er)\n```" + closed_at: '2021-02-12T12:22:11Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/464/comments + created_at: '2020-09-16T07:25:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/464/events + html_url: https://github.com/packit/ogr/issues/464 + id: 702525467 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: 42e529 + - color: 1d76db default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/53/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + labels_url: https://api.github.com/repos/packit/ogr/issues/464/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjkyODA2Nzg= - number: 53 + node_id: MDU6SXNzdWU3MDI1MjU0Njc= + number: 464 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Add a documentation for API - updated_at: '2020-06-01T08:45:12Z' - url: https://api.github.com/repos/packit/ogr/issues/53 + state: closed + title: '[Pagure] ProtocolError: (''Connection aborted.'', RemoteDisconnected(''Remote + end closed connection without response''))' + updated_at: '2021-02-12T12:22:11Z' + url: https://api.github.com/repos/packit/ogr/issues/464 user: - avatar_url: https://avatars3.githubusercontent.com/u/31067398?v=4 - events_url: https://api.github.com/users/Aniket-Pradhan/events{/privacy} - followers_url: https://api.github.com/users/Aniket-Pradhan/followers - following_url: https://api.github.com/users/Aniket-Pradhan/following{/other_user} - gists_url: https://api.github.com/users/Aniket-Pradhan/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 + events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers + following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/Aniket-Pradhan - id: 31067398 - login: Aniket-Pradhan - node_id: MDQ6VXNlcjMxMDY3Mzk4 - organizations_url: https://api.github.com/users/Aniket-Pradhan/orgs - received_events_url: https://api.github.com/users/Aniket-Pradhan/received_events - repos_url: https://api.github.com/users/Aniket-Pradhan/repos + html_url: https://github.com/apps/sentry-io + id: 39604003 + login: sentry-io[bot] + node_id: MDM6Qm90Mzk2MDQwMDM= + organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events + repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/Aniket-Pradhan/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/Aniket-Pradhan/subscriptions - type: User - url: https://api.github.com/users/Aniket-Pradhan + starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/sentry-io%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.095603 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Thu, 20 Aug 2020 07:31:02 GMT + Date: Tue, 13 Apr 2021 18:01:44 GMT + ETag: W/"b15ec1eba19e61f4eb6d78f02e426d6b5b48ed01f7f8d5ac09714a3a8557ec8d" + Last-Modified: Fri, 12 Feb 2021 12:22:11 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EDC9:133338D:6075DC88 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4413' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '587' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/54: + https://api.github.com:443/repos/packit/ogr/issues/466: - metadata: - latency: 0.2930431365966797 + latency: 0.12259888648986816 module_call_list: - unittest.case - requre.online_replacing @@ -26390,118 +26170,124 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "we need this in packit this sprint when we start building in copr\r\ - \n\r\nthis should be implemented soonish and land in next release\r\n\ - \r\nrelevant code for github:\r\nhttps://github.com/packit-service/packit/blob/04793f16d5ced27b5e7fec7d963d650b065a4276/packit/watcher.py#L94" - closed_at: '2019-06-25T07:31:05Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-16T15:47:15Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/54/comments - created_at: '2019-04-04T14:24:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/54/events - html_url: https://github.com/packit/ogr/issues/54 - id: 429309114 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/54/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/466/comments + created_at: '2020-09-16T15:33:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/466/events + html_url: https://github.com/packit/ogr/issues/466 + id: 702867074 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/466/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjkzMDkxMTQ= - number: 54 + node_id: MDU6SXNzdWU3MDI4NjcwNzQ= + number: 466 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add a way to set check results for a commit - updated_at: '2019-06-25T07:31:05Z' - url: https://api.github.com/repos/packit/ogr/issues/54 + title: '[packit] Propose update failed for release 0.15.0' + updated_at: '2020-09-16T15:47:15Z' + url: https://api.github.com/repos/packit/ogr/issues/466 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.122327 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:52 GMT + ETag: W/"8ebfd19a9d7aedfb20e0729b2e31b1b81e1a4ba9dc2de53186cb08d4226a99da" + Last-Modified: Wed, 16 Sep 2020 15:47:15 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F015:1333ABF:6075DC90 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4363' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '637' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/56: + https://api.github.com:443/repos/packit/ogr/issues/472: - metadata: - latency: 0.2888014316558838 + latency: 0.12131190299987793 module_call_list: - unittest.case - requre.online_replacing @@ -26523,112 +26309,118 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "The `@readonly` decorator should be renamed as it can confuse newcomers\ - \ that the method itself is \"readonly\". The fact is that it has the\ - \ opposite meaning of the read-only.\r\n\r\nFeel free to add your ideas\ - \ as a single comment so we can easily vote.\r\n\r\n-----\r\n\r\nFollow-up\ - \ from #48" - closed_at: '2019-06-24T14:46:14Z' + body: "Introduced in #452 \r\n\r\nThere's a missing response for GitLab\ + \ (F31 version of python-gitlab) tests" + closed_at: '2020-11-30T08:37:14Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/56/comments - created_at: '2019-04-09T08:17:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/56/events - html_url: https://github.com/packit/ogr/issues/56 - id: 430829968 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/56/labels{/name} + url: https://api.github.com/users/csomh + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/472/comments + created_at: '2020-09-24T19:38:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/472/events + html_url: https://github.com/packit/ogr/issues/472 + id: 708425597 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/472/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzA4Mjk5Njg= - number: 56 + node_id: MDU6SXNzdWU3MDg0MjU1OTc= + number: 472 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'better name for @readonly decorator ' - updated_at: '2019-06-24T14:46:14Z' - url: https://api.github.com/repos/packit/ogr/issues/56 + title: Missing response for F31 + updated_at: '2020-11-30T08:37:14Z' + url: https://api.github.com/repos/packit/ogr/issues/472 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.121145 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:49 GMT + ETag: W/"d4e6e8dee72ebb9eb9fcaee0f5f42980ca1c149538fd09ff25175e0564f619fd" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF45:133382C:6075DC8D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4382' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '618' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/58: + https://api.github.com:443/repos/packit/ogr/issues/473: - metadata: - latency: 0.2339344024658203 + latency: 0.10830163955688477 module_call_list: - unittest.case - requre.online_replacing @@ -26647,51 +26439,165 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars1.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} + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2020-10-14T15:44:17Z' + closed_by: + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - assignees: - - avatar_url: https://avatars1.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} + url: https://api.github.com/users/usercont-release-bot + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/473/comments + created_at: '2020-09-30T09:36:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/473/events + html_url: https://github.com/packit/ogr/issues/473 + id: 711792673 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/473/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MTE3OTI2NzM= + number: 473 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: New minor release + updated_at: '2020-10-14T15:44:17Z' + url: https://api.github.com/repos/packit/ogr/issues/473 + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - author_association: MEMBER - body: "FML!\r\n\r\nSo my fork of packit is named source-git, not packit.\r\ - \n\r\nWe should use an API call to obtain github forks, not a guess\ - \ work." - closed_at: '2019-06-27T10:34:34Z' + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.10813 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:51 GMT + ETag: W/"ec8018ffb29071c99f18cc54730689ee500f96f0a5444cea811e678f003b1ac9" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 88B1:19FC:78EF95:133392B:6075DC8F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4375' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '625' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/475: + - metadata: + latency: 0.0968177318572998 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-01T08:40:05Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -26709,101 +26615,82 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/58/comments - created_at: '2019-04-15T11:38:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/58/events - html_url: https://github.com/packit/ogr/issues/58 - id: 433234905 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/58/labels{/name} + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/475/comments + created_at: '2020-09-30T19:27:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/475/events + html_url: https://github.com/packit/ogr/issues/475 + id: 712218395 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/475/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzMyMzQ5MDU= - number: 58 + node_id: MDU6SXNzdWU3MTIyMTgzOTU= + number: 475 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github: fork repository name may not match the upstream repo name' - updated_at: '2019-06-27T10:34:34Z' - url: https://api.github.com/repos/packit/ogr/issues/58 + title: '[packit] Propose update failed for release 0.16.0' + updated_at: '2020-10-01T08:40:06Z' + url: https://api.github.com/repos/packit/ogr/issues/475 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.096599 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:51 GMT + ETag: W/"092cc3233cb74c50389ef98bb668aadfb4f133ad22e6e562d19e665a105e2c6c" + Last-Modified: Thu, 01 Oct 2020 08:40:06 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EFCF:13339E6:6075DC8F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4371' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '629' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/61: + https://api.github.com:443/repos/packit/ogr/issues/478: - metadata: - latency: 0.2553868293762207 + latency: 0.11382341384887695 module_call_list: - unittest.case - requre.online_replacing @@ -26822,38 +26709,82 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "as integration tests needs regeneration stored yaml API communication.\r\ - \nWould be nice to add there target to be able to regenerate these files" - closed_at: '2019-06-25T14:47:44Z' + assignee: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + author_association: MEMBER + body: "Change all exceptions that are raised for an unsupported feature\ + \ to `OperationNotSupported` (from the default `NotImplementedError`)\r\ + \n\r\ncloser info: https://github.com/packit/ogr/pull/477#discussion_r503077265" + closed_at: null closed_by: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 + events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/stale%5Bbot%5D/followers + following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/stale%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/stale + id: 26384082 + login: stale[bot] + node_id: MDM6Qm90MjYzODQwODI= + organizations_url: https://api.github.com/users/stale%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/stale%5Bbot%5D/received_events + repos_url: https://api.github.com/users/stale%5Bbot%5D/repos 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 - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/61/comments - created_at: '2019-04-26T07:35:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/61/events - html_url: https://github.com/packit/ogr/issues/61 - id: 437538907 + starred_url: https://api.github.com/users/stale%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/stale%5Bbot%5D + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/478/comments + created_at: '2020-10-12T12:23:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/478/events + html_url: https://github.com/packit/ogr/issues/478 + id: 719337260 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 7057ff default: false description: Good for newcomers @@ -26861,80 +26792,89 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/61/labels{/name} + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/478/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Mzc1Mzg5MDc= - number: 61 + node_id: MDU6SXNzdWU3MTkzMzcyNjA= + number: 478 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: create target for makefile for regeneration testing yaml files - updated_at: '2019-06-25T14:47:44Z' - url: https://api.github.com/repos/packit/ogr/issues/61 + state: open + title: Refactor exceptions for non-supported features + updated_at: '2021-03-25T16:21:38Z' + url: https://api.github.com/repos/packit/ogr/issues/478 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.11354 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:01:42 GMT + ETag: W/"5db0cc05435063a247b6bf3932d60400785a04cfe309cd565ba36176eb1279c0" + Last-Modified: Tue, 30 Mar 2021 15:22:21 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78ED40:13331EF:6075DC86 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4427' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '573' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/62: + https://api.github.com:443/repos/packit/ogr/issues/480: - metadata: - latency: 0.21140217781066895 + latency: 0.11963129043579102 module_call_list: - unittest.case - requre.online_replacing @@ -26953,150 +26893,110 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "now each integration test class contains right one file with stored\ - \ API data.\r\nWe could reconsider it, and maybe have file for each\ - \ test, to avoid to regenerate big file and have big commits.\r\nWe\ - \ have to solve several issues:\r\n * How to handle it per test, now\ - \ there is right one service pytest fixture function what contains it\r\ - \n * How to regenerate just relevant part \r\n * maybe remove some\ - \ timestamps, UIDs and similar objects what can change on every request\r\ - \n * or manually(semiautomatically) call just affected tests - ie:\ - \ run tests, find failures (key errors) and then try to just regenerate\ - \ files for failed tests" - closed_at: '2019-04-30T19:32:17Z' + assignee: + avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu + author_association: MEMBER + body: "We already have `exists` method implemented for Pagure and the\ + \ #479 adds the support for GitLab. GitHub is the last one missing.\r\ + \n\r\n- [ ] Look at the other implementations and add `exists` method\ + \ to the `GithubProject` class." + closed_at: '2021-02-04T19:32:54Z' closed_by: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/62/comments - created_at: '2019-04-26T13:21:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/62/events - html_url: https://github.com/packit/ogr/issues/62 - id: 437670314 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/62/labels{/name} + url: https://api.github.com/users/mfocko + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/480/comments + created_at: '2020-10-14T08:39:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/480/events + html_url: https://github.com/packit/ogr/issues/480 + id: 721260961 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/480/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Mzc2NzAzMTQ= - number: 62 + node_id: MDU6SXNzdWU3MjEyNjA5NjE= + number: 480 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'testing: split yaml files with data for each test to avoid regeneration - big file and big commits' - updated_at: '2019-04-30T19:32:17Z' - url: https://api.github.com/repos/packit/ogr/issues/62 + title: Implement project.exists for GitHub + updated_at: '2021-02-04T19:32:54Z' + url: https://api.github.com/repos/packit/ogr/issues/480 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos - site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/64: - - metadata: - latency: 0.2936549186706543 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.Issue - - github.GithubObject - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ - \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ - \nhas to be adapted, currenly I've added dependency on lower version\ - \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ - \nto avoid this issue." - closed_at: '2019-05-29T07:46:28Z' - closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -27114,101 +27014,45 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments - created_at: '2019-04-29T14:41:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/64/events - html_url: https://github.com/packit/ogr/issues/64 - id: 438351136 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0MzgzNTExMzY= - number: 64 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'libpagure has changed ' - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/64 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos - site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.119431 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Fri, 21 Aug 2020 07:48:50 GMT + Date: Tue, 13 Apr 2021 18:01:47 GMT + ETag: W/"4c5f63b8e67c8dd28b60493ca7e02bc68bb526671777bda0061571dced1fc8e4" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EEB3:1333693:6075DC8B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4394' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '606' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/67: + https://api.github.com:443/repos/packit/ogr/issues/481: - metadata: - latency: 0.2956817150115967 + latency: 0.1397242546081543 module_call_list: - unittest.case - requre.online_replacing @@ -27230,53 +27074,45 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "While debugging https://github.com/packit-service/packit/issues/305\ - \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ - \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ - \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ attribute has a value `rpm/packit`, while libpagure probably expects\ - \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ - \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ - \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ - \ expects `/` in `self.repo`, which is probably not what `libpagure`\ - \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ - \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ - \ even more recently." - closed_at: '2019-05-29T07:46:28Z' + body: "ogr allows creating GitHub service instances without any authentication\ + \ (provides read-only access)\r\n\r\nBased on testing for #479 it's\ + \ been found out that we cannot create GitLab instance without providing\ + \ token (as we can with GitHub) *even though* it is supported by `python-gitlab`\ + \ (https://python-gitlab.readthedocs.io/en/stable/api-usage.html#gitlab-gitlab-class)" + closed_at: '2020-10-21T12:44:59Z' closed_by: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos 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 - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments - created_at: '2019-05-10T11:09:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/67/events - html_url: https://github.com/packit/ogr/issues/67 - id: 442664622 + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/481/comments + created_at: '2020-10-14T10:27:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/481/events + html_url: https://github.com/packit/ogr/issues/481 + id: 721337045 labels: - - color: 1d76db + - color: d93f0b default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: d73a4a default: true description: Something isn't working @@ -27284,80 +27120,82 @@ requests.sessions: name: bug node_id: MDU6TGFiZWwxMTYwMzExMjYy url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/481/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDI2NjQ2MjI= - number: 67 + node_id: MDU6SXNzdWU3MjEzMzcwNDU= + number: 481 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: libpagure.Pagure expects '/' not in repo attribute - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/67 + title: GitLab service cannot be created without providing auth + updated_at: '2020-10-21T12:44:59Z' + url: https://api.github.com/repos/packit/ogr/issues/481 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko _next: null - elapsed: 0.2 + elapsed: 0.139546 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:01:50 GMT + ETag: W/"36b4a9a570fa7fa09936e40a4369133efa70fc368cdea3402e4459baa813c4d7" + Last-Modified: Sat, 27 Mar 2021 10:55:58 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF62:1333890:6075DC8E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4380' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '620' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/68: + https://api.github.com:443/repos/packit/ogr/issues/484: - metadata: - latency: 0.2096247673034668 + latency: 0.09763741493225098 module_call_list: - unittest.case - requre.online_replacing @@ -27378,123 +27216,131 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-05-13T12:52:45Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `The distgit repository /tmp/packit-dist-gitbut5ttez is dirty.This + is not supported.` | + + | `f32` | `Cmd(''git'') failed due to: exit code(128) cmdline: git + reset --hard remotes/origin/0.17.0-f32-update stderr: ''fatal: ambiguous + argument ''remotes/origin/0.17.0-f32-update'': unknown revision or path + not in the working tree. Use ''--'' to separate paths from revisions, + like this: ''git [...] -- [...]''''` | + + | `f33` | `The distgit repository /tmp/packit-dist-gitbut5ttez is dirty.This + is not supported.` | + + | `master` | `The distgit repository /tmp/packit-dist-gitbut5ttez is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-15T07:28:47Z' closed_by: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/68/comments - created_at: '2019-05-13T12:50:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/68/events - html_url: https://github.com/packit/ogr/issues/68 - id: 443380561 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/68/labels{/name} + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/484/comments + created_at: '2020-10-15T06:05:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/484/events + html_url: https://github.com/packit/ogr/issues/484 + id: 722023608 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/484/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDMzODA1NjE= - number: 68 + node_id: MDU6SXNzdWU3MjIwMjM2MDg= + number: 484 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-05-13T12:52:45Z' - url: https://api.github.com/repos/packit/ogr/issues/68 + title: '[packit] Propose update failed for release 0.17.0' + updated_at: '2020-10-15T15:38:59Z' + url: https://api.github.com/repos/packit/ogr/issues/484 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.097464 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:01:50 GMT + ETag: W/"0f3ac76ab0f552d3c9d6d8aeedf822cc5b24e1d830c537c05293f8d3ecc0a81b" + Last-Modified: Thu, 15 Oct 2020 15:38:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF8C:1333913:6075DC8E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4376' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '624' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/73: + https://api.github.com:443/repos/packit/ogr/issues/485: - metadata: - latency: 0.22786283493041992 + latency: 0.5423994064331055 module_call_list: - unittest.case - requre.online_replacing @@ -27513,38 +27359,90 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "What about changing `CommitStatus`/`PullRequestStatus` to `CommitFlag`/`PullRequestFlag`?\r\ - \n\r\n_Original discussion: https://github.com/packit-service/ogr/pull/71#pullrequestreview-240461635_" - closed_at: '2019-07-17T12:52:02Z' - closed_by: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/73/comments - created_at: '2019-05-29T07:10:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/73/events - html_url: https://github.com/packit/ogr/issues/73 - id: 449635096 + assignee: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + author_association: MEMBER + body: "It would be nice to be able to list projects for given criteria:\r\ + \n\r\n- namespace\r\n- owner\r\n- search patter\r\n- order options (name,\ + \ update, activity, ...) (ascending x descending)\r\n- ... feel free\ + \ to add/propose more (we can implement only a subset for the first\ + \ version)\r\n\r\n\r\nAdd `list_projects` method:\r\n- [ ] to the `abstract.py`\ + \ to the `GitService` class\r\n- [ ] for each implementaion `GithubService`,\ + \ `GitlabService`, `PagureService`\r\n- [ ] implement all (or a subset)\ + \ of the options from the criteria list above" + closed_at: null + closed_by: null + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/485/comments + created_at: '2020-10-15T12:35:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/485/events + html_url: https://github.com/packit/ogr/issues/485 + id: 722295054 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: 7057ff default: false description: Good for newcomers @@ -27552,33 +27450,19 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/73/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/485/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDk2MzUwOTY= - number: 73 + node_id: MDU6SXNzdWU3MjIyOTUwNTQ= + number: 485 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Change "Status" to "Flag" in the class names - updated_at: '2019-07-17T12:52:02Z' - url: https://api.github.com/repos/packit/ogr/issues/73 + state: open + title: Listing of the projects + updated_at: '2021-03-26T13:18:56Z' + url: https://api.github.com/repos/packit/ogr/issues/485 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -27597,49 +27481,44 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek _next: null - elapsed: 0.2 + elapsed: 0.54201 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:42 GMT + ETag: W/"d62c8d939f94e3b8b231df4475be1307a6c408587d98d68d933d797518e65224" + Last-Modified: Tue, 13 Apr 2021 07:06:49 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78ED16:1333191:6075DC85 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4429' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '571' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/74: + https://api.github.com:443/repos/packit/ogr/issues/486: - metadata: - latency: 0.27498817443847656 + latency: 0.10058712959289551 module_call_list: - unittest.case - requre.online_replacing @@ -27660,12 +27539,31 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ - \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" - closed_at: '2019-07-11T08:48:44Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-19T07:46:55Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -27683,122 +27581,82 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments - created_at: '2019-05-29T07:12:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/74/events - html_url: https://github.com/packit/ogr/issues/74 - id: 449635655 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/486/comments + created_at: '2020-10-15T15:36:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/486/events + html_url: https://github.com/packit/ogr/issues/486 + id: 722446903 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/486/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDk2MzU2NTU= - number: 74 + node_id: MDU6SXNzdWU3MjI0NDY5MDM= + number: 486 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add a link to `GitTag` from `Release`. - updated_at: '2019-07-11T08:48:44Z' - url: https://api.github.com/repos/packit/ogr/issues/74 + title: '[packit] Propose update failed for release 0.17.0' + updated_at: '2020-10-19T07:46:55Z' + url: https://api.github.com/repos/packit/ogr/issues/486 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.100421 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:50 GMT + ETag: W/"9eea2912a06dfe691ebe56819e173be7e66dcba0df060ed1f83b04dbca8fd7cf" + Last-Modified: Mon, 19 Oct 2020 07:46:55 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF85:13338FA:6075DC8E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4377' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '623' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/76: + https://api.github.com:443/repos/packit/ogr/issues/49: - metadata: - latency: 0.4216756820678711 + latency: 0.3699202537536621 module_call_list: - unittest.case - requre.online_replacing @@ -27820,61 +27678,72 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-06-11T13:19:01Z' + body: "```\r\nName Stmts Miss Cover Missing\r\ + \n----------------------------------------------------------\r\nservices/github.py\ + \ 114 63 45% 17-19, 24-26, 30, 33-34, 41-42, 47, 51,\ + \ 58-61, 64, 67, 70, 73-79, 82-83, 86-87, 95-98, 108, 111, 114-115,\ + \ 118, 121, 124, 127-132, 135, 149, 170, 184, 193-203, 207-209, 212-213,\ + \ 216-217, 227, 230\r\nservices/gitlab.py 66 66 0%\ + \ 1-144\r\nservices/our_pagure.py 79 46 42% 33, 36-39,\ + \ 134-148, 160-176, 180-186, 249-256, 259-264, 267-270, 273, 276, 279-282,\ + \ 285-288, 291-294, 297-298\r\nutils.py 150 110\ + \ 27% 35-77, 82-83, 88-89, 94, 98-116, 120-130, 145-148, 163-165,\ + \ 169-176, 180-214, 219-248, 252, 260, 273\r\n```\r\n\r\nI know the\ + \ `gitlab` module is WIP, but the others deserve more tests IMHO" + closed_at: '2020-01-15T11:22:38Z' closed_by: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos 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 + 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/usercont-release-bot - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/76/comments - created_at: '2019-06-11T13:18:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/76/events - html_url: https://github.com/packit/ogr/issues/76 - id: 454685925 + url: https://api.github.com/users/jpopelka + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/49/comments + created_at: '2019-03-26T14:47:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/49/events + html_url: https://github.com/packit/ogr/issues/49 + id: 425463412 labels: - - color: ededed + - color: 7057ff default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9d0c4 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/76/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/49/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTQ2ODU5MjU= - number: 76 + node_id: MDU6SXNzdWU0MjU0NjM0MTI= + number: 49 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-06-11T13:19:01Z' - url: https://api.github.com/repos/packit/ogr/issues/76 + title: Modules with poor code coverage + updated_at: '2020-01-15T11:22:38Z' + url: https://api.github.com/repos/packit/ogr/issues/49 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -27893,49 +27762,44 @@ requests.sessions: type: User url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.369751 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 12 Aug 2020 12:13:25 GMT + Date: Tue, 13 Apr 2021 18:02:06 GMT + ETag: W/"2e97106eef837c84f82a8302297339d5304c65acec25fe08229c8d44114eecbb" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F47F:13345F8:6075DC9E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4297' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '703' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/79: + https://api.github.com:443/repos/packit/ogr/issues/490: - metadata: - latency: 0.2542860507965088 + latency: 0.12039017677307129 module_call_list: - unittest.case - requre.online_replacing @@ -27956,139 +27820,122 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "I'm trying to implement ogr into [release-bot](https://github.com/user-cont/release-bot)\ - \ and it's a little bit painful without documentation from ogr. \r\n\ - \r\nI was playing with ogr on my Github projects and everything is working\ - \ fine. When I tried to reimplement [release-bot's](https://github.com/user-cont/release-bot)\ - \ functionalities which communicate with Github via GraphQL or rest\ - \ API I got stuck. \r\n\r\nOne of the examples could be comments. I\ - \ want to implement commenting on Github issues and PRs via ogr. \r\n\ - - In [release-bot](https://github.com/user-cont/release-bot) it works\ - \ via graphQL and sending some `node_id` inside query which recognizes\ - \ a PR or an Issue. \r\n- In ogr there is `pr_comment` function in ogr/services/github.py.\ - \ If am I right this is an alternative I'm looking for. However, I don't\ - \ fully understand the function's parameters since it needs something\ - \ else then API query.\r\n\r\nI understand that this could be a very\ - \ complex problem since ogr need to preserve compatibility with all\ - \ git forges. I'm just looking for some starting point on how to change\ - \ GraphQL/rest API with ogr. Maybe I just misunderstand some ogr's fundamentals.\r\ - \n" - closed_at: '2019-06-27T12:40:34Z' + author_association: CONTRIBUTOR + body: "By running `pre-commit run --all-files` getting the below error\ + \ without using the strict mode. I am not sure what NotSet does in this\ + \ case.\r\n```\r\nogr/services/github/service.py:169: error: Module\ + \ has no attribute \"NotSet\"\r\n```\r\nThe changes were made in this\ + \ PR - https://github.com/packit/ogr/pull/476\r\n\r\n" + closed_at: '2021-03-16T04:50:13Z' closed_by: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/1724?v=4 + events_url: https://api.github.com/users/stale%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/stale%5Bbot%5D/followers + following_url: https://api.github.com/users/stale%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/stale%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/stale + id: 26384082 + login: stale[bot] + node_id: MDM6Qm90MjYzODQwODI= + organizations_url: https://api.github.com/users/stale%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/stale%5Bbot%5D/received_events + repos_url: https://api.github.com/users/stale%5Bbot%5D/repos 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 - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/79/comments - created_at: '2019-06-17T22:01:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/79/events - html_url: https://github.com/packit/ogr/issues/79 - id: 457168292 + starred_url: https://api.github.com/users/stale%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/stale%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/stale%5Bbot%5D + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/490/comments + created_at: '2020-10-21T05:27:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/490/events + html_url: https://github.com/packit/ogr/issues/490 + id: 726145698 labels: - color: '000000' default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/79/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/490/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTcxNjgyOTI= - number: 79 + node_id: MDU6SXNzdWU3MjYxNDU2OTg= + number: 490 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add compatibility with Github's GraphQL API v4 and rest API v3 - updated_at: '2019-06-27T12:40:34Z' - url: https://api.github.com/repos/packit/ogr/issues/79 + title: GithubObject has no attribute "NotSet" + updated_at: '2021-03-17T14:44:59Z' + url: https://api.github.com/repos/packit/ogr/issues/490 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/marusinm + url: https://api.github.com/users/shreyaspapi _next: null - elapsed: 0.2 + elapsed: 0.120185 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:42 GMT + ETag: W/"3aad46afc39629db0615cad3603ceec2815363aacb562f52dc0e401e1ad07e54" + Last-Modified: Tue, 13 Apr 2021 01:50:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78ED4E:1333214:6075DC86 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4425' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '575' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/8: + https://api.github.com:443/repos/packit/ogr/issues/492: - metadata: - latency: 0.29442739486694336 + latency: 0.11777091026306152 module_call_list: - unittest.case - requre.online_replacing @@ -28110,112 +27957,117 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "* [x] don't fail when PAGURE_{TOKEN,USER} are not specified\r\n\ - * [x] mock remote API and write complete unit tests using those data\ - \ (or even have a single test suite and enable it to run against live\ - \ instance and mocked data)\r\n* [x] [tox](https://developer.fedoraproject.org/tech/languages/python/multiple-pythons.html)-ify\ - \ it (#27)" - closed_at: '2019-06-25T08:59:43Z' + body: '' + closed_at: '2021-02-04T19:33:53Z' closed_by: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/8/comments - created_at: '2019-01-30T10:19:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/8/events - html_url: https://github.com/packit/ogr/issues/8 - id: 404698352 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/8/labels{/name} + url: https://api.github.com/users/mfocko + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/492/comments + created_at: '2020-10-27T12:41:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/492/events + html_url: https://github.com/packit/ogr/issues/492 + id: 730415953 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/492/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MDQ2OTgzNTI= - number: 8 + node_id: MDU6SXNzdWU3MzA0MTU5NTM= + number: 492 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve testing - updated_at: '2019-06-25T08:59:43Z' - url: https://api.github.com/repos/packit/ogr/issues/8 + title: New minor release + updated_at: '2021-02-04T19:33:53Z' + url: https://api.github.com/repos/packit/ogr/issues/492 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/jpopelka _next: null - elapsed: 0.2 + elapsed: 0.117608 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:47 GMT + ETag: W/"3052fdd3a353053772f77eb19a13e433a03b3eedddaa4f57521ec5780decd087" + Last-Modified: Fri, 09 Apr 2021 14:26:36 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EEAD:1333672:6075DC8B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4395' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '605' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/80: + https://api.github.com:443/repos/packit/ogr/issues/494: - metadata: - latency: 0.40575218200683594 + latency: 0.28084826469421387 module_call_list: - unittest.case - requre.online_replacing @@ -28234,50 +28086,33 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - author_association: COLLABORATOR - body: 'Based on our discussion on Issue #79, there is no functionality - in ogr for commenting on Github/Pagure issues.' - closed_at: '2019-07-10T06:57:03Z' + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-29T10:19:07Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -28295,94 +28130,82 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/80/comments - created_at: '2019-06-19T07:21:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/80/events - html_url: https://github.com/packit/ogr/issues/80 - id: 457847996 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/80/labels{/name} + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/494/comments + created_at: '2020-10-29T09:59:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/494/events + html_url: https://github.com/packit/ogr/issues/494 + id: 732170676 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/494/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTc4NDc5OTY= - number: 80 + node_id: MDU6SXNzdWU3MzIxNzA2NzY= + number: 494 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Commenting on Issues - updated_at: '2019-07-10T06:57:03Z' - url: https://api.github.com/repos/packit/ogr/issues/80 + title: '[packit] Propose update failed for release 0.18.0' + updated_at: '2020-10-29T10:19:07Z' + url: https://api.github.com/repos/packit/ogr/issues/494 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.280683 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:50 GMT + ETag: W/"b439f8d94487f6647b9bad1c3856c1a987b7907275692f0baa0415fabcb9da87" + Last-Modified: Thu, 29 Oct 2020 10:19:07 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF51:133384B:6075DC8E + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4381' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '619' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/82: + https://api.github.com:443/repos/packit/ogr/issues/496: - metadata: - latency: 0.28422117233276367 + latency: 0.2598116397857666 module_call_list: - unittest.case - requre.online_replacing @@ -28403,54 +28226,57 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\nHi, see lines in: https://github.com/packit-service/ogr/blob/master/tests/integration/test_github.py#L20\r\ - \nSo for regenereation these files, you have to use syntax eg:\r\n``FORCE_WRITE=yes\ - \ GITHUB_TOKEN=yourtoken GITHUB_USER=yourname pytest3 tests/integration/test_github.py``\r\ - \nor this will also work ``FORCE_WRITE=yes GITHUB_TOKEN=yourtoken GITHUB_USER=yourname\ - \ make check`` with make check, you have to have set PAGURE_TOKEN and\ - \ USER env vars\r\n```\r\n\r\n_Originally posted by @jscotka in https://github.com/packit-service/ogr/issues/80#issuecomment-503991164_\r\ - \n" - closed_at: '2019-06-27T12:56:06Z' + author_association: CONTRIBUTOR + body: "```\r\nIn [1]: from ogr.parsing import parse_git_repo \r\n\r\n\ + In [2]: parse_git_repo(\"git@gitlab.com:packit-service/src/libvirt.git\"\ + ) \r\n\r\nIn [3]: :( \r\n ...: \r\n```" + closed_at: '2020-12-01T11:46:18Z' closed_by: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos 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 - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/82/comments - created_at: '2019-06-21T09:12:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/82/events - html_url: https://github.com/packit/ogr/issues/82 - id: 459096186 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/82/labels{/name} + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/496/comments + created_at: '2020-11-26T14:01:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/496/events + html_url: https://github.com/packit/ogr/issues/496 + id: 751614853 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/496/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTkwOTYxODY= - number: 82 + node_id: MDU6SXNzdWU3NTE2MTQ4NTM= + number: 496 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Document how to save HTTP sessions for sake of testing - updated_at: '2019-06-27T12:56:06Z' - url: https://api.github.com/repos/packit/ogr/issues/82 + title: ogr can't parse a subnamespace in gitlab's URL + updated_at: '2020-12-03T12:08:10Z' + url: https://api.github.com/repos/packit/ogr/issues/496 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -28469,49 +28295,44 @@ requests.sessions: type: User url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.259646 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 08:25:11 GMT + Date: Tue, 13 Apr 2021 18:01:49 GMT + ETag: W/"173350297536a29d77cce0432097ee4ae0dee5332631049c1930dcf09b21808b" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF34:13337E5:6075DC8D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4383' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '617' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/86: + https://api.github.com:443/repos/packit/ogr/issues/50: - metadata: - latency: 0.25225162506103516 + latency: 0.09447121620178223 module_call_list: - unittest.case - requre.online_replacing @@ -28530,184 +28351,120 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-27T09:03:50Z' + closed_by: + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko - author_association: MEMBER - body: "- [ ] Forward some object to the issue/pr/... instances to allow\ - \ connection to the service. (Classes are not only data-holders.)\r\n\ - - [ ] All ogr classes to have properties with setters allowing to update\ - \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ - - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ - \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ - \ \r\n" - closed_at: null - closed_by: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments - created_at: '2019-06-25T13:15:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/86/events - html_url: https://github.com/packit/ogr/issues/86 - id: 460418171 + url: https://api.github.com/users/usercont-release-bot + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/50/comments + created_at: '2019-03-27T08:58:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/50/events + html_url: https://github.com/packit/ogr/issues/50 + id: 425835263 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/50/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA0MTgxNzE= - number: 86 + node_id: MDU6SXNzdWU0MjU4MzUyNjM= + number: 50 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: object-specific methods bound to ogr classes - updated_at: '2020-03-27T13:50:33Z' - url: https://api.github.com/repos/packit/ogr/issues/86 + state: closed + title: 0.2.0 release + updated_at: '2019-03-27T09:03:50Z' + url: https://api.github.com/repos/packit/ogr/issues/50 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.094305 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 10:13:59 GMT + Date: Tue, 13 Apr 2021 18:02:26 GMT + ETag: W/"5be585e1da3d53cb280a6087f18f456a5154490edbe679dc2a585644822bbfc0" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F9C4:1335694:6075DCB2 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4203' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '797' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/87: + https://api.github.com:443/repos/packit/ogr/issues/506: - metadata: - latency: 0.2955489158630371 + latency: 0.10777902603149414 module_call_list: - unittest.case - requre.online_replacing @@ -28726,178 +28483,125 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "Add methods to `GithubProject`/`PagureProject` for editing title\ - \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ - \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ - \ information " - closed_at: '2019-06-28T06:51:21Z' + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n2020-12-09 12:32:08.652548 | container | /usr/local/lib/python3.8/site-packages/ogr/abstract.py:47:\ + \ in __repr__\r\n2020-12-09 12:32:08.652556 | container | return\ + \ f\"<{str(self)}>\"\r\n2020-12-09 12:32:08.652565 | container | \ + \ self = <[RecursionError('maximum recursion depth exceeded')\ + \ raised in repr()] GitProject object at 0x7f8380a9ca90>\r\n2020-12-09\ + \ 12:32:08.652574 | container | /usr/local/lib/python3.8/site-packages/ogr/abstract.py:47:\ + \ in __repr__\r\n2020-12-09 12:32:08.652582 | container | return\ + \ f\"<{str(self)}>\"\r\n2020-12-09 12:32:08.652591 | container | E \ + \ RecursionError: maximum recursion depth exceeded\r\n2020-12-09 12:32:08.652599\ + \ | container | self = <[RecursionError('maximum recursion\ + \ depth exceeded') raised in repr()] GitProject object at 0x7f8380a9ca90>\r\ + \n2020-12-09 12:32:08.652608 | container | !!! Recursion detected (same\ + \ locals & position)\r\n```\r\n\r\nhttps://softwarefactory-project.io/logs/70/970/b8e3aa6794ccc0999106539acb1829d5ea08d03b/check/reverse-dep-packit-service-tests/bc1e055/job-output.txt.gz" + closed_at: '2020-12-09T13:21:57Z' closed_by: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments - created_at: '2019-06-26T07:17:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/87/events - html_url: https://github.com/packit/ogr/issues/87 - id: 460802132 + comments_url: https://api.github.com/repos/packit/ogr/issues/506/comments + created_at: '2020-12-09T13:19:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/506/events + html_url: https://github.com/packit/ogr/issues/506 + id: 760323336 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/506/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA4MDIxMzI= - number: 87 + node_id: MDU6SXNzdWU3NjAzMjMzMzY= + number: 506 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ' Update pull-request information' - updated_at: '2019-06-28T06:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/87 + title: python doesn't like the new __repr__ + updated_at: '2020-12-09T13:21:57Z' + url: https://api.github.com/repos/packit/ogr/issues/506 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek _next: null - elapsed: 0.2 + elapsed: 0.107569 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:11:20 GMT + Date: Tue, 13 Apr 2021 18:01:49 GMT + ETag: W/"b47ec75802b80ee62ba4ed5b5b36f9e3bfe3acb49e08a56dfe627542890ff2eb" + Last-Modified: Tue, 13 Apr 2021 15:04:09 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF23:13337B0:6075DC8D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4385' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '615' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/88: + https://api.github.com:443/repos/packit/ogr/issues/507: - metadata: - latency: 0.3334171772003174 + latency: 0.11947011947631836 module_call_list: - unittest.case - requre.online_replacing @@ -28916,184 +28620,120 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-09T13:27:43Z' + closed_by: + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - author_association: MEMBER - body: "It would be useful to have a method for getting the owner(s) of\ - \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ - \ `get_owners` and return list of strings." - closed_at: '2019-07-18T07:11:53Z' - closed_by: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments - created_at: '2019-06-26T07:44:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/88/events - html_url: https://github.com/packit/ogr/issues/88 - id: 460813032 + url: https://api.github.com/users/usercont-release-bot + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/507/comments + created_at: '2020-12-09T13:27:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/507/events + html_url: https://github.com/packit/ogr/issues/507 + id: 760329156 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/507/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA4MTMwMzI= - number: 88 + node_id: MDU6SXNzdWU3NjAzMjkxNTY= + number: 507 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add get_owner/get_owners method to project classes - updated_at: '2019-07-18T07:11:53Z' - url: https://api.github.com/repos/packit/ogr/issues/88 + title: New patch release + updated_at: '2020-12-09T13:27:43Z' + url: https://api.github.com/repos/packit/ogr/issues/507 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj _next: null - elapsed: 0.2 + elapsed: 0.11927 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Mon, 17 Aug 2020 12:52:25 GMT + Date: Tue, 13 Apr 2021 18:01:49 GMT + ETag: W/"c1d77aa9041afda643e2a965a26dccb03d129f1ea74a6ec206f8422f39f0433c" + Last-Modified: Tue, 13 Apr 2021 14:35:12 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF1A:1333799:6075DC8D + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4386' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '614' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/90: + https://api.github.com:443/repos/packit/ogr/issues/509: - metadata: - latency: 0.213087797164917 + latency: 0.17844414710998535 module_call_list: - unittest.case - requre.online_replacing @@ -29112,50 +28752,16 @@ requests.sessions: __store_indicator: 2 _content: active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos - site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions - type: User - url: https://api.github.com/users/shreyanshrs44 - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos - site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions - type: User - url: https://api.github.com/users/shreyanshrs44 + assignee: null + assignees: [] author_association: MEMBER - body: It would be nice to implement `__str__` methods for all classes - (e.g. `GithubProject`, `Issue`,...). - closed_at: '2019-07-10T06:51:37Z' + body: "Similar to how `get_tags()` return `GitTag` objects which also\ + \ store the commit sha, would be nice if `get_branches()` would return\ + \ `GitBranch` objects with a `head` attribute storing the commit sha\ + \ of the HEAD of the branch.\r\n\r\nMost probably related to #359." + closed_at: '2020-12-11T09:19:03Z' closed_by: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -29173,108 +28779,83 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments - created_at: '2019-06-27T10:29:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/90/events - html_url: https://github.com/packit/ogr/issues/90 - id: 461449910 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/509/comments + created_at: '2020-12-09T14:16:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/509/events + html_url: https://github.com/packit/ogr/issues/509 + id: 760368277 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/509/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE0NDk5MTA= - number: 90 + node_id: MDU6SXNzdWU3NjAzNjgyNzc= + number: 509 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: String representations for classes - updated_at: '2019-07-10T06:51:37Z' - url: https://api.github.com/repos/packit/ogr/issues/90 + title: '`project.get_branches()` should also return the HEAD commits for + each branch' + updated_at: '2020-12-11T09:19:03Z' + url: https://api.github.com/repos/packit/ogr/issues/509 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/csomh _next: null - elapsed: 0.2 + elapsed: 0.178232 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Tue, 25 Aug 2020 14:33:42 GMT + Date: Tue, 13 Apr 2021 18:01:48 GMT + ETag: W/"b333f99d7d86eef8679c4f410ffc4cfcae64b6a19f4149e9e083d7540a1fbd3a" + Last-Modified: Thu, 01 Apr 2021 12:28:54 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EEE7:1333735:6075DC8C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4389' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '611' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/91: + https://api.github.com:443/repos/packit/ogr/issues/511: - metadata: - latency: 0.33509111404418945 + latency: 0.1971287727355957 module_call_list: - unittest.case - requre.online_replacing @@ -29295,170 +28876,124 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "I would like to solve an issue https://github.com/packit-service/packit/issues/328\r\ - \nbut it failed with traceback:\r\n\r\n~~~\r\n$ packit -d propose-update\r\ - \n[..snip..]\r\n10:40:20.990 upstream.py DEBUG Version in spec\ - \ file: 0.16.3\r\nPicking version found in spec file.\r\nChecking out\ - \ upstream version 0.16.3\r\n10:40:21.013 base_git.py DEBUG Allowed\ - \ GPG keys are not set, skipping the verification.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running ActionName.pre_sync hook.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running ActionName.pre_sync.\r\n10:40:21.014 base_git.py\ - \ DEBUG Running default implementation for ActionName.pre_sync.\r\ - \nUsing 'master' dist-git branch\r\n10:40:21.017 base_git.py DEBUG\ - \ It seems that branch master already exists, checking it out.\r\n\ - 10:40:21.020 distgit.py DEBUG About to update branch 'master'\r\ - \n10:40:21.727 api.py DEBUG Path of README /tmp/tmpzla3qy3y/README.packit\r\ - \n10:40:21.728 base_git.py DEBUG Running ActionName.prepare_files.\r\ - \n10:40:21.729 base_git.py DEBUG Running default implementation\ - \ for ActionName.prepare_files.\r\n10:40:21.729 sync.py DEBUG\ - \ Copy synced files [RawSyncFilesItem(src=/home/vagrant/rebase-helper/.packit.yml,\ - \ dest=/tmp/tmpzla3qy3y/.packit.yml, dist_is_dir=False), RawSyncFilesItem(src=/home/vagrant/rebase-helper/rebase-helper.spec,\ - \ dest=/tmp/tmpzla3qy3y/rebase-helper.spec, dist_is_dir=False)]\r\n\ - 10:40:21.730 sync.py DEBUG src = /home/vagrant/rebase-helper/.packit.yml,\ - \ dest = /tmp/tmpzla3qy3y/.packit.yml\r\nCopying /home/vagrant/rebase-helper/.packit.yml\ - \ to /tmp/tmpzla3qy3y/.packit.yml.\r\n10:40:21.731 sync.py \ - \ DEBUG src = /home/vagrant/rebase-helper/rebase-helper.spec, dest\ - \ = /tmp/tmpzla3qy3y/rebase-helper.spec\r\nCopying /home/vagrant/rebase-helper/rebase-helper.spec\ - \ to /tmp/tmpzla3qy3y/rebase-helper.spec.\r\n10:40:21.814 distgit.py\ - \ DEBUG Upstream archive name is 'rebase-helper-0.16.3.tar.gz'\r\ - \nArchive rebase-helper-0.16.3.tar.gz found in lookaside cache (skipping\ - \ upload).\r\n10:40:22.347 distgit.py DEBUG Upstream archive\ - \ name is 'rebase-helper-0.16.3.tar.gz'\r\n10:40:22.348 base_git.py\ - \ DEBUG About to add all & commit\r\n10:40:22.366 distgit.py\ - \ DEBUG About to force push changes to branch 0.16.3-master-update\ - \ of a fork fork of the dist-git repo\r\n10:40:32.251 distgit.py \ - \ DEBUG About to create dist-git pull request from 0.16.3-master-update\ - \ to master\r\nERROR There was an error while creating the PR: PagureAPIException('Page\ - \ `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.')\r\nERROR Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.\r\nTraceback (most recent call\ - \ last):\r\n File \"/usr/local/lib/python3.7/site-packages/packit/cli/utils.py\"\ - , line 58, in covered_func\r\n func(config=config, *args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/packit/cli/update.py\"\ - , line 113, in update\r\n upstream_ref=upstream_ref,\r\n File \"\ - /usr/local/lib/python3.7/site-packages/packit/api.py\", line 229, in\ - \ sync_release\r\n dist_git_branch=dist_git_branch,\r\n File \"\ - /usr/local/lib/python3.7/site-packages/packit/api.py\", line 316, in\ - \ push_and_create_pr\r\n target_branch=dist_git_branch,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit/distgit.py\", line\ - \ 211, in create_pull\r\n target_branch=target_branch,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/ogr/mock_core.py\", line\ - \ 49, in readonly_func\r\n return func(self, *args, **kwargs)\r\n\ - \ File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 377, in pr_create\r\n \"initial_comment\": body,\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 232, in _call_project_api\r\n url=request_url, method=method,\ - \ params=params, data=data\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ - , line 71, in call_api\r\n raise PagureAPIException(f\"Page `{url}`\ - \ not found when calling Pagure API.\")\r\nogr.exceptions.PagureAPIException:\ - \ Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ - \ not found when calling Pagure API.\r\n10:40:34.958 local_project.py\ - \ DEBUG Cleaning: /tmp/tmpzla3qy3y\r\n~~~\r\n\r\n\r\nReferenced issues:\r\ - \nhttps://pagure.io/pagure/issue/4512\r\nhttps://github.com/packit-service/packit/issues/328\r\ - \n" - closed_at: '2019-09-12T11:17:19Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `f34` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can retrigger the update by adding a comment (`/packit propose-update`) + into this issue. + + ' + closed_at: '2020-12-11T09:14:01Z' closed_by: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 - events_url: https://api.github.com/users/rpitonak/events{/privacy} - followers_url: https://api.github.com/users/rpitonak/followers - following_url: https://api.github.com/users/rpitonak/following{/other_user} - gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + 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/rpitonak - id: 26160778 - login: rpitonak - node_id: MDQ6VXNlcjI2MTYwNzc4 - organizations_url: https://api.github.com/users/rpitonak/orgs - received_events_url: https://api.github.com/users/rpitonak/received_events - repos_url: https://api.github.com/users/rpitonak/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + 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/rpitonak + url: https://api.github.com/users/lachmanfrantisek comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/91/comments - created_at: '2019-06-27T10:41:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/91/events - html_url: https://github.com/packit/ogr/issues/91 - id: 461455149 + comments_url: https://api.github.com/repos/packit/ogr/issues/511/comments + created_at: '2020-12-10T11:17:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/511/events + html_url: https://github.com/packit/ogr/issues/511 + id: 761149749 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/91/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/511/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE0NTUxNDk= - number: 91 + node_id: MDU6SXNzdWU3NjExNDk3NDk= + number: 511 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ' Page `/fork/phracek/rpms/rebase-helper/pull-request/new` not - found when calling Pagure API' - updated_at: '2019-09-12T11:17:20Z' - url: https://api.github.com/repos/packit/ogr/issues/91 + title: '[packit] Propose update failed for release 0.18.1' + updated_at: '2020-12-11T09:14:01Z' + url: https://api.github.com/repos/packit/ogr/issues/511 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions - type: User - url: https://api.github.com/users/phracek + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.196912 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Wed, 19 Aug 2020 14:29:47 GMT + Date: Tue, 13 Apr 2021 18:01:48 GMT + ETag: W/"6b58cba8cb05f0af6ca405446c216b1c41f1827e9aa172a9d164c9497aeec020" + Last-Modified: Fri, 11 Dec 2020 09:14:01 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EEF8:133375A:6075DC8C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4388' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '612' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues/96: + https://api.github.com:443/repos/packit/ogr/issues/512: - metadata: - latency: 0.3963007926940918 + latency: 0.11293840408325195 module_call_list: - unittest.case - requre.online_replacing @@ -29479,131 +29014,127 @@ requests.sessions: active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "ReleaseBot, we would like to release a new version.\r\n\r\nThanks\ - \ in advance!" - closed_at: '2019-06-28T08:43:29Z' + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + + + You can retrigger the update by adding a comment (`/packit propose-update`) + into this issue. + + ' + closed_at: '2021-02-04T19:34:57Z' closed_by: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/mfocko comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/96/comments - created_at: '2019-06-28T08:38:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/96/events - html_url: https://github.com/packit/ogr/issues/96 - id: 461923699 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/96/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/512/comments + created_at: '2020-12-10T11:18:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/512/events + html_url: https://github.com/packit/ogr/issues/512 + id: 761150482 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/512/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE5MjM2OTk= - number: 96 + node_id: MDU6SXNzdWU3NjExNTA0ODI= + number: 512 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-06-28T08:43:29Z' - url: https://api.github.com/repos/packit/ogr/issues/96 + title: '[packit] Propose update failed for release 0.18.1' + updated_at: '2021-02-04T19:34:57Z' + url: https://api.github.com/repos/packit/ogr/issues/512 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.112767 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Last-Modified: Sat, 01 Aug 2020 14:49:20 GMT + Date: Tue, 13 Apr 2021 18:01:47 GMT + ETag: W/"9a52da98fc0157e599859e965ae27ef279bb50a62013f48cfb06f98b67276fa0" + Last-Modified: Thu, 04 Feb 2021 19:34:57 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EE91:1333620:6075DC8B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4397' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '603' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repos/packit/ogr/issues?state=all&sort=updated&direction=desc: + https://api.github.com:443/repos/packit/ogr/issues/52: - metadata: - latency: 0.7394106388092041 + latency: 0.2009878158569336 module_call_list: - unittest.case - requre.online_replacing - tests.integration.github.test_issues - ogr.services.github.project - ogr.services.github.issue - - github.PaginatedList + - github.Issue + - github.GithubObject - github.Requester - requests.sessions - requre.objects @@ -29613,178 +29144,364 @@ requests.sessions: output: __store_indicator: 2 _content: - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: there is just one issue, and it is that __init__.py has to be clear, - because now it causes confusion, and try sto store keys with various - depth -> raise error. - closed_at: null - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/452/comments - created_at: '2020-08-13T13:44:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/452/events - html_url: https://github.com/packit/ogr/pull/452 - id: 678448961 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/452/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDY3Mzk1MTgz - number: 452 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/452.diff - html_url: https://github.com/packit/ogr/pull/452 - patch_url: https://github.com/packit/ogr/pull/452.patch - url: https://api.github.com/repos/packit/ogr/pulls/452 - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: this is first draft how new tests could look like - updated_at: '2020-08-26T09:18:59Z' - url: https://api.github.com/repos/packit/ogr/issues/452 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + active_lock_reason: null + assignee: + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "- [x] Interface for token manager using github app\r\n- [x] Refactor\ - \ default solution\r\n- [x] Implement support for `tokman`" - closed_at: '2020-08-25T09:31:39Z' - comments: 18 - comments_url: https://api.github.com/repos/packit/ogr/issues/450/comments - created_at: '2020-08-11T09:16:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/450/events - html_url: https://github.com/packit/ogr/pull/450 - id: 676716034 + url: https://api.github.com/users/lbarcziova + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: CONTRIBUTOR + body: "Just spent some time debugging an issue where packit.yaml was not\ + \ found while being 100 % it's in there.\r\n\r\nIt turned out that my\ + \ token was incorrect and github kept throwing 401: that should bubble\ + \ up, we should catch 404 only. " + closed_at: '2019-07-10T07:35:48Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/52/comments + created_at: '2019-03-27T21:00:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/52/events + html_url: https://github.com/packit/ogr/issues/52 + id: 426181525 labels: - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/450/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/52/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDY1OTc3NzQ2 - number: 450 + node_id: MDU6SXNzdWU0MjYxODE1MjU= + number: 52 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/450.diff - html_url: https://github.com/packit/ogr/pull/450 - patch_url: https://github.com/packit/ogr/pull/450.patch - url: https://api.github.com/repos/packit/ogr/pulls/450 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Use tokman in ogr - updated_at: '2020-08-25T17:28:39Z' - url: https://api.github.com/repos/packit/ogr/issues/450 + title: 'get_file_content: catch only 404, raise everything else' + updated_at: '2019-07-10T07:35:48Z' + url: https://api.github.com/repos/packit/ogr/issues/52 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko - - active_lock_reason: null + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.200817 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:23 GMT + ETag: W/"7e2cc2656e978da31a8c40b0be6991beec16b2fc6ec3cd01d8572be58f579e90" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 88B1:19FC:78F8E7:13353FB:6075DCAE + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4224' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '776' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/520: + - metadata: + latency: 0.09874367713928223 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Split tests into files like the implementations are.\r\n\r\nAs\ - \ @lachmanfrantisek suggested, it would be great to have both old tests\ - \ (checking that deprecated interfaces are still usable) and new ones,\ - \ but this would lead to keeping duplicates of test_data, since they\ - \ would check the same things, but each would need separate yaml for\ - \ responses.\r\n\r\nSo I suggest transition from old to new tests right\ - \ after 0.13.0 (or before 1.0.0, in case it will be released sooner)" - closed_at: null - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/295/comments - created_at: '2019-12-05T10:40:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/295/events - html_url: https://github.com/packit/ogr/issues/295 - id: 533267519 - labels: - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/295/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `f34` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-01-07T12:55:21Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/520/comments + created_at: '2021-01-07T12:07:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/520/events + html_url: https://github.com/packit/ogr/issues/520 + id: 781266150 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/520/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MzMyNjc1MTk= - number: 295 + node_id: MDU6SXNzdWU3ODEyNjYxNTA= + number: 520 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Restructure tests - updated_at: '2020-08-24T10:14:58Z' - url: https://api.github.com/repos/packit/ogr/issues/295 + state: closed + title: '[packit] Propose downstream failed for release 0.19.0' + updated_at: '2021-01-07T12:55:21Z' + url: https://api.github.com/repos/packit/ogr/issues/520 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + _next: null + elapsed: 0.098413 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:48 GMT + ETag: W/"326b0e0c56a33ecb755026a437110c28f608faad596f218a5ed6ebbcdab84bb8" + Last-Modified: Thu, 07 Jan 2021 12:55:21 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: 88B1:19FC:78EEE4:1333721:6075DC8C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4390' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '610' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/529: + - metadata: + latency: 0.09735846519470215 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f33` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + | `main` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-02-05T09:28:13Z' + closed_by: + 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} @@ -29802,8 +29519,112 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/529/comments + created_at: '2021-02-05T09:07:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/529/events + html_url: https://github.com/packit/ogr/issues/529 + id: 801987621 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/529/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MDE5ODc2MjE= + number: 529 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose downstream failed for release 0.20.0' + updated_at: '2021-02-05T09:28:13Z' + url: https://api.github.com/repos/packit/ogr/issues/529 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + _next: null + elapsed: 0.096522 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:46 GMT + ETag: W/"f571ac93e347d70fe7a6382156886bd330752b3b151791f7eb8189c659cec7f0" + Last-Modified: Fri, 05 Feb 2021 09:28:13 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: 88B1:19FC:78EE58:1333560:6075DC8A + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4403' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '597' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/53: + - metadata: + latency: 0.1314237117767334 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "There is no documentation on how to use the library, currently.\ + \ A documentation will help people on how to use ogr, and showcase it's\ + \ features and functions.\r\n\r\nThis can be done by adding the wiki\ + \ pages (on Github), since the documentation might be quite long and\ + \ the Wiki will help in segregating several topics (for instance, how\ + \ to use ogr for GitHub, GitLab and Pagure).\r\n\r\n" + closed_at: '2021-02-09T14:13:50Z' + closed_by: + 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} @@ -29821,32 +29642,20 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - author_association: CONTRIBUTOR - body: "The current implementation of labels has no implementation of GitLabel\ - \ defined in the abstract classes, which would be consistent with what\ - \ is done for GitUser, GitProject etc. This is leading to inconsistent\ - \ typing in the library where we have the following function signatures\ - \ within the codebase:\r\n\r\nabstract.py\r\n`def get_issue_labels(self,\ - \ issue_id: int) -> List[Any]`\r\n\r\ngithub/project.py\r\n`def get_issue_labels(self,\ - \ issue_id: int) -> List[GithubLabel]`\r\n\r\ngitlab/project.py\r\n\ - `def get_issue_labels(self, issue_id: int) -> List[str]`\r\n\r\nWould\ - \ be good to make this consistent and inherit from a base class of GitLabel.\r\ - \n\r\n@lachmanfrantisek " - closed_at: null - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/263/comments - created_at: '2019-11-02T14:16:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/263/events - html_url: https://github.com/packit/ogr/issues/263 - id: 516607686 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/53/comments + created_at: '2019-04-04T13:30:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/53/events + html_url: https://github.com/packit/ogr/issues/53 + id: 429280678 labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation - color: bf6b0b default: false description: '' @@ -29854,66 +29663,296 @@ requests.sessions: name: pinned node_id: MDU6TGFiZWwyMTAxODk4Njg3 url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: c2ef58 + - color: 42e529 default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/263/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/53/labels{/name} locked: false - milestone: null - node_id: MDU6SXNzdWU1MTY2MDc2ODY= - number: 263 + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0MjkyODA2Nzg= + number: 53 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Improve class structure for Labels type - updated_at: '2020-08-24T06:40:40Z' - url: https://api.github.com/repos/packit/ogr/issues/263 + state: closed + title: Add a documentation for API + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/issues/53 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/31067398?v=4 + events_url: https://api.github.com/users/Aniket-Pradhan/events{/privacy} + followers_url: https://api.github.com/users/Aniket-Pradhan/followers + following_url: https://api.github.com/users/Aniket-Pradhan/following{/other_user} + gists_url: https://api.github.com/users/Aniket-Pradhan/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/Aniket-Pradhan + id: 31067398 + login: Aniket-Pradhan + node_id: MDQ6VXNlcjMxMDY3Mzk4 + organizations_url: https://api.github.com/users/Aniket-Pradhan/orgs + received_events_url: https://api.github.com/users/Aniket-Pradhan/received_events + repos_url: https://api.github.com/users/Aniket-Pradhan/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + starred_url: https://api.github.com/users/Aniket-Pradhan/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Aniket-Pradhan/subscriptions type: User - url: https://api.github.com/users/svenharris - - active_lock_reason: null + url: https://api.github.com/users/Aniket-Pradhan + _next: null + elapsed: 0.131132 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:45 GMT + ETag: W/"74459336ed4f9235731e89a68a212d4ad9cda17d51196193eda65922bc2d8e06" + Last-Modified: Mon, 12 Apr 2021 15:28:15 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: 88B1:19FC:78EDE6:13333ED:6075DC88 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4410' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '590' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/530: + - metadata: + latency: 0.11939024925231934 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `[Errno 2] No such file or directory: ''/tmp/packit-dist-gitl5r40_6q/sources''` + | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-02-12T12:21:06Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/530/comments + created_at: '2021-02-05T09:26:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/530/events + html_url: https://github.com/packit/ogr/issues/530 + id: 802000731 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/530/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MDIwMDA3MzE= + number: 530 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose downstream failed for release 0.20.0' + updated_at: '2021-02-12T12:21:06Z' + url: https://api.github.com/repos/packit/ogr/issues/530 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + _next: null + elapsed: 0.119079 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:44 GMT + ETag: W/"4a4fae61716fbbb3bf2f96b17988ef9767525e6acf8fb0064c25eccca359d1c5" + Last-Modified: Fri, 12 Feb 2021 12:21:06 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: 88B1:19FC:78EDCF:13333AA:6075DC88 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4412' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '588' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/532: + - metadata: + latency: 0.1228635311126709 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "In *Set PR flags in Pagure #381*, the `set_flag` method for Pagure\ - \ pull-requests was left to return the `dict` from the response. \r\n\ - \r\nWrap that response in a class to make working with these kind of\ - \ flags easier." + body: "Tools that we use for autogeneration of documentation support mainly\ + \ markdown (also optionally numpy or google style of docstrings). We\ + \ should transition from our current sphinx-style of comments to one\ + \ of those.\r\n\r\n- [ ] decide between markdown, numpy or google style\r\ + \n - [ ] update GitHub action for generating of documentation if necessary\r\ + \n- [ ] update docstrings to adhere to the chosen style/format\r\n\r\ + \nFollow-up of #531 " closed_at: null + closed_by: null comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/384/comments - created_at: '2020-04-16T07:35:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/384/events - html_url: https://github.com/packit/ogr/issues/384 - id: 600814459 + comments_url: https://api.github.com/repos/packit/ogr/issues/532/comments + created_at: '2021-02-09T13:57:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/532/events + html_url: https://github.com/packit/ogr/issues/532 + id: 804575574 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation - color: 7057ff default: false description: Good for newcomers @@ -29921,13 +29960,6 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - color: 8be567 default: false description: Usability issue. @@ -29935,51 +29967,119 @@ requests.sessions: name: user-experience node_id: MDU6TGFiZWwxNDMyNzc5NDY0 url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/384/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/532/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDA4MTQ0NTk= - number: 384 + node_id: MDU6SXNzdWU4MDQ1NzU1NzQ= + number: 532 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: Create a class to hold information on pull-request flags - updated_at: '2020-08-24T06:39:05Z' - url: https://api.github.com/repos/packit/ogr/issues/384 + title: Docstrings' format + updated_at: '2021-02-11T14:47:10Z' + url: https://api.github.com/repos/packit/ogr/issues/532 user: - avatar_url: https://avatars0.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} + 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/csomh - id: 11816497 - login: csomh - node_id: MDQ6VXNlcjExODE2NDk3 - organizations_url: https://api.github.com/users/csomh/orgs - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + 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/csomh - - active_lock_reason: null + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.122577 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:44 GMT + ETag: W/"a35500eab43af7acf0c5b3cc749fb8ea26a9e5a911690d6f58f99303c2057468" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 88B1:19FC:78EDDC:13333C8:6075DC88 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4411' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '589' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/533: + - metadata: + latency: 0.09638500213623047 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "We need to document usage of ogr on custom/internal instances:\r\ - \n\r\n- [ ] usage of `instance_url`\r\n- [ ] setup of custom/internal\ - \ certificates:\r\n - export `REQUESTS_CA_BUNDLE=/etc/pki/tls/certs/ca-bundle.crt`\r\ - \n - ignore the SSL verification (`ssl_verify` argument)" + body: "pdoc(3) supports inheriting of docstrings, there is no need to\ + \ have multiple identical docstrings and also try to rethink exporting\ + \ of the classes/modules through `__all__`, since it makes the documentation\ + \ harder to navigate\r\n\r\n- [ ] remove duplicit docstrings\r\n -\ + \ [ ] add specific docstrings where the interface deviates\r\n- [ ]\ + \ try to think about better structure of exports for `__all__` (shouldn't\ + \ be a problem in specific services, just clean it up at the top-level)\r\ + \n\r\nFollow-up of #531" closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/356/comments - created_at: '2020-03-17T14:45:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/356/events - html_url: https://github.com/packit/ogr/issues/356 - id: 583065980 + closed_by: null + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/533/comments + created_at: '2021-02-09T14:01:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/533/events + html_url: https://github.com/packit/ogr/issues/533 + id: 804579179 labels: - color: c5def5 default: true @@ -29988,387 +30088,277 @@ requests.sessions: name: documentation node_id: MDU6TGFiZWwxNDMyNzc5MjY3 url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: 42e529 + - color: c2ef58 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/356/labels{/name} + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/533/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODMwNjU5ODA= - number: 356 + node_id: MDU6SXNzdWU4MDQ1NzkxNzk= + number: 533 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: Document the usage of custom instances and certificates - updated_at: '2020-08-24T06:10:50Z' - url: https://api.github.com/repos/packit/ogr/issues/356 + title: Remove duplicit docstrings + make documentation easier to navigate + updated_at: '2021-02-09T14:01:52Z' + url: https://api.github.com/repos/packit/ogr/issues/533 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - - active_lock_reason: null + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.096173 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:45 GMT + ETag: W/"cadbc080a911170f5e4cbdac2307df66f6586d47d4aefd8c9d6e5572defe9131" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 88B1:19FC:78EDF9:1333436:6075DC89 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4408' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '592' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/534: + - metadata: + latency: 0.1339881420135498 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: changed description - closed_at: '2018-12-13T14:24:08Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/1/comments - created_at: '2018-12-13T13:01:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/1/events - html_url: https://github.com/packit/ogr/pull/1 - id: 390668872 + body: "Residing at https://packit.github.io/ogr\r\n\r\nFollow-up of #531 " + closed_at: '2021-03-12T17:37:21Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/534/comments + created_at: '2021-02-09T14:05:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/534/events + html_url: https://github.com/packit/ogr/issues/534 + id: 804582194 labels: - - color: ededed + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff default: false - description: null - id: 1457192587 - name: test_lb1 - node_id: MDU6TGFiZWwxNDU3MTkyNTg3 - url: https://api.github.com/repos/packit/ogr/labels/test_lb1 - - color: ededed + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 8be567 default: false - description: null - id: 1457192593 - name: test_lb2 - node_id: MDU6TGFiZWwxNDU3MTkyNTkz - url: https://api.github.com/repos/packit/ogr/labels/test_lb2 - labels_url: https://api.github.com/repos/packit/ogr/issues/1/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/534/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjM4MzgxNzIz - number: 1 + node_id: MDU6SXNzdWU4MDQ1ODIxOTQ= + number: 534 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/1.diff - html_url: https://github.com/packit/ogr/pull/1 - patch_url: https://github.com/packit/ogr/pull/1.patch - url: https://api.github.com/repos/packit/ogr/pulls/1 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'WIP: API' - updated_at: '2020-08-21T07:51:37Z' - url: https://api.github.com/repos/packit/ogr/issues/1 + title: Add a link to documentation to README + updated_at: '2021-03-12T17:37:21Z' + url: https://api.github.com/repos/packit/ogr/issues/534 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - - active_lock_reason: null + url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.133711 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:43 GMT + ETag: W/"e32a47040fa52be754996e5194b9241c2542d78e13adcca0515029fc9d48c9aa" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 88B1:19FC:78ED60:133323F:6075DC86 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4423' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '577' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/535: + - metadata: + latency: 0.10657310485839844 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "The `ogr` is a nice, short name, but the 'meaning' should be changed.\r\ - \n\r\nFeel free to edit this comment.\r\n\r\n| O | G | R |\r\n| - |\ - \ - | - |\r\n| our | git | rule |\r\n| one | git-forge | revolution\ - \ |\r\n| open | | rebellion |\r\n| object | | realm |\r\n| only | |\ - \ route |\r\n| omnipotent | | rocket |\r\n| | | recipe |\r\n| | | rainbow\ - \ |\r\n| | | roadway |\r\n| | | reactor |\r\n| | | reunion |\r\n| |\ - \ | rebel |\r\n| | | ruler |\r\n\r\nPossible combinations (and votes):\r\ - \n- our-git-rebel @phracek \r\n- open-git-rainbow @phracek @TomasTomecek\ - \ \r\n- object-git-reactor @phracek \r\n- the [O]ne [G]it [R]uler @TomasTomecek\ - \ \r\n- [O]ne [G]it library to [R]ule @TomasTomecek @jpopelka\r\n- [O]mniponent\ - \ [G]it-forge [R]uler @jpopelka @lachmanfrantisek @TomasTomecek " - closed_at: '2019-02-14T13:28:27Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/4/comments - created_at: '2019-01-17T08:26:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/4/events - html_url: https://github.com/packit/ogr/issues/4 - id: 400160755 - labels: - - color: ededed - default: false - description: null - id: 1457192587 - name: test_lb1 - node_id: MDU6TGFiZWwxNDU3MTkyNTg3 - url: https://api.github.com/repos/packit/ogr/labels/test_lb1 - - color: ededed - default: false - description: null - id: 1457192593 - name: test_lb2 - node_id: MDU6TGFiZWwxNDU3MTkyNTkz - url: https://api.github.com/repos/packit/ogr/labels/test_lb2 - labels_url: https://api.github.com/repos/packit/ogr/issues/4/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0MDAxNjA3NTU= - number: 4 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Better name - updated_at: '2020-08-21T07:51:33Z' - url: https://api.github.com/repos/packit/ogr/issues/4 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `Failed to init kerberos ticket:` | - - | `f32` | `Failed to init kerberos ticket:` | - - | `f33` | `Failed to init kerberos ticket:` | - - | `master` | `Failed to init kerberos ticket:` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' + body: "Currently we use [pdoc3](https://pypi.org/project/pdoc3/) to generate\ + \ our documentation, it would be in our interest to switch to original\ + \ project [pdoc](https://pypi.org/project/pdoc/), since it provides\ + \ built-in search feature and cleaner UI.\r\n\r\nCurrently can't be\ + \ used since there is a failure while parsing our source files.\r\n\r\ + \nFollow-up of #531" closed_at: null + closed_by: null comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/456/comments - created_at: '2020-08-20T08:09:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/456/events - html_url: https://github.com/packit/ogr/issues/456 - id: 682514734 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/456/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2ODI1MTQ3MzQ= - number: 456 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: '[packit] Propose update failed for release 0.13.1' - updated_at: '2020-08-20T08:09:32Z' - url: https://api.github.com/repos/packit/ogr/issues/456 - user: - avatar_url: https://avatars0.githubusercontent.com/in/29180?v=4 - events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service-stg - id: 49729116 - login: packit-as-a-service-stg[bot] - node_id: MDM6Qm90NDk3MjkxMTY= - organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* https://github.com/packit-service\ - \ -> https://github.com/packit\n* Add Jupyter examples\n* fix create\ - \ issue in Github and add test\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.13.1-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-08-20T07:58:30Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/455/comments - created_at: '2020-08-19T11:07:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/455/events - html_url: https://github.com/packit/ogr/pull/455 - id: 681753984 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/455/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDcwMDkyNTEx - number: 455 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/455.diff - html_url: https://github.com/packit/ogr/pull/455 - patch_url: https://github.com/packit/ogr/pull/455.patch - url: https://api.github.com/repos/packit/ogr/pulls/455 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.13.1 release - updated_at: '2020-08-20T08:04:32Z' - url: https://api.github.com/repos/packit/ogr/issues/455 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-08-19T11:07:53Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/454/comments - created_at: '2020-08-19T11:02:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/454/events - html_url: https://github.com/packit/ogr/issues/454 - id: 681751158 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/454/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2ODE3NTExNTg= - number: 454 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: New patch release - updated_at: '2020-08-19T11:07:53Z' - url: https://api.github.com/repos/packit/ogr/issues/454 - user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos - site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Currently, we can instantiate objects (i.e. GitProject), that does\ - \ not exist.\r\n\r\nWe probably need to agree on the common understanding\ - \ of this approach:\r\n\r\n1. allow creating non-existing objects\r\n\ - \ - add `exists() -> Bool` method\r\n - add `create() -> ????`\ - \ methods\r\n - we do not need to connect to servers on each instantiation\r\ - \n - due to laziness it can fail at not-predictable places\r\n2.\ - \ raise an exception in methods like `get_project`\r\n - easier implementation\r\ - \n - we need to connect to the remote service even when it is not\ - \ needed" - closed_at: null - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/214/comments - created_at: '2019-09-19T19:30:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/214/events - html_url: https://github.com/packit/ogr/issues/214 - id: 495986265 + comments_url: https://api.github.com/repos/packit/ogr/issues/535/comments + created_at: '2021-02-09T14:12:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/535/events + html_url: https://github.com/packit/ogr/issues/535 + id: 804588067 labels: - color: c5def5 default: true @@ -30377,13 +30367,6 @@ requests.sessions: name: documentation node_id: MDU6TGFiZWwxNDMyNzc5MjY3 url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: ff9990 - default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - color: 8be567 default: false description: Usability issue. @@ -30391,19 +30374,109 @@ requests.sessions: name: user-experience node_id: MDU6TGFiZWwxNDMyNzc5NDY0 url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/214/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/535/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU5ODYyNjU= - number: 214 + node_id: MDU6SXNzdWU4MDQ1ODgwNjc= + number: 535 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: '[question] Allow objects representing nonexisting objects' - updated_at: '2020-08-17T12:28:02Z' - url: https://api.github.com/repos/packit/ogr/issues/214 + title: Transition to pdoc from pdoc3 + updated_at: '2021-02-09T14:12:22Z' + url: https://api.github.com/repos/packit/ogr/issues/535 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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.106361 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:45 GMT + ETag: W/"779aedfa3597a1877418d3f560c5b291343dd30139ee40d16921d446ef85e0c6" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 88B1:19FC:78EDF4:1333416:6075DC89 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4409' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '591' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/54: + - metadata: + latency: 0.11884069442749023 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "we need this in packit this sprint when we start building in copr\r\ + \n\r\nthis should be implemented soonish and land in next release\r\n\ + \r\nrelevant code for github:\r\nhttps://github.com/packit-service/packit/blob/04793f16d5ced27b5e7fec7d963d650b065a4276/packit/watcher.py#L94" + closed_at: '2019-06-25T07:31:05Z' + closed_by: + 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} @@ -30421,47 +30494,13 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Add method to project classes to delete project.\r\n\r\nAC:\r\n\ - - [ ] In each implementation, add the `delete` method to project class\ - \ and implement it.\r\n - If possible/supported. (Document that if\ - \ it is not possible.)\r\n- [ ] Add tests for that.\r\n\r\nLinks:\r\n\ - - https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ - \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ - \n- https://pagure.io/api/0/ (not found the possible API call for that\ - \ on the first look)" - closed_at: null - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/215/comments - created_at: '2019-09-20T05:36:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/215/events - html_url: https://github.com/packit/ogr/issues/215 - id: 496154927 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/54/comments + created_at: '2019-04-04T14:24:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/54/events + html_url: https://github.com/packit/ogr/issues/54 + id: 429309114 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: a2eeef default: false description: New feature or a request for enhancement. @@ -30469,150 +30508,200 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/215/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/54/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTYxNTQ5Mjc= - number: 215 + node_id: MDU6SXNzdWU0MjkzMDkxMTQ= + number: 54 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Implement GitProject.delete() - updated_at: '2020-08-17T10:59:13Z' - url: https://api.github.com/repos/packit/ogr/issues/215 + state: closed + title: add a way to set check results for a commit + updated_at: '2019-06-25T07:31:05Z' + url: https://api.github.com/repos/packit/ogr/issues/54 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - - active_lock_reason: null + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.118638 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:25 GMT + ETag: W/"0d9ce5674f2349271cb9b36545162750aedb0a27b3aeba31c045fafd45adba7f" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 88B1:19FC:78F97C:13355CB:6075DCB1 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4211' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '789' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/540: + - metadata: + latency: 0.1163330078125 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-08-17T08:56:28Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/453/comments - created_at: '2020-08-13T16:21:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/453/events - html_url: https://github.com/packit/ogr/pull/453 - id: 678564351 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/453/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDY3NDkwMTYz - number: 453 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/453.diff - html_url: https://github.com/packit/ogr/pull/453 - patch_url: https://github.com/packit/ogr/pull/453.patch - url: https://api.github.com/repos/packit/ogr/pulls/453 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: https://github.com/packit-service -> https://github.com/packit - updated_at: '2020-08-17T09:27:06Z' - url: https://api.github.com/repos/packit/ogr/issues/453 - user: - avatar_url: https://avatars0.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} + body: "```py\r\n def get_latest_release(self) -> Release:\r\n```\r\n\ + \r\nIn case that no release exists, I'd expect to get `None` instead\ + \ of being smacked in face with exception.\r\n\r\n- GitHub throws 404\ + \ Exception\r\n- GitLab throws IndexError\r\n\r\nAction items:\r\n-\ + \ [ ] Switch return type from `Release` to `Optional[Release]`\r\n-\ + \ [ ] Update implementation to check for such situation\r\n\r\nCould\ + \ be used in refactor for packit/packit-service#985, currently is a\ + \ blocker, since we need to check non-existing release there." + closed_at: '2021-02-22T10:07:03Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "- [ ] Check tests and create them if necessary\r\n- [ ] Implement\ - \ creating diff comments for GitLab (already implemented for GitHub\ - \ and Pagure)\r\n- [ ] Create and implement interface for properties\ - \ of diff comments (`is_diff_comment`, `commit`, `path`, `position`;\ - \ consider new/old or only one)\r\n- [ ] Implement functions for acquiring\ - \ diff comments on pull requests, e.g. `get_diff_comments`" - closed_at: null - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/424/comments - created_at: '2020-05-29T09:01:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/424/events - html_url: https://github.com/packit/ogr/issues/424 - id: 627115330 + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/540/comments + created_at: '2021-02-18T11:00:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/540/events + html_url: https://github.com/packit/ogr/issues/540 + id: 810992567 labels: - - color: a2eeef + - color: '000000' default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: fef2c0 + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/424/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/540/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjcxMTUzMzA= - number: 424 + node_id: MDU6SXNzdWU4MTA5OTI1Njc= + number: 540 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Diff/review comments on pull requests - updated_at: '2020-08-17T08:56:04Z' - url: https://api.github.com/repos/packit/ogr/issues/424 + state: closed + title: '`get_latest_release` when no release exists' + updated_at: '2021-02-22T10:07:03Z' + url: https://api.github.com/repos/packit/ogr/issues/540 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -30630,265 +30719,1362 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null + _next: null + elapsed: 0.115998 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:44 GMT + ETag: W/"08055198b69a13cf95512e4c8f1e6db2c0e13b9bb3aec28e6df95d4fb0dd2e1b" + Last-Modified: Sat, 27 Mar 2021 10:55:58 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: 88B1:19FC:78EDB7:133334E:6075DC88 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4415' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '585' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/545: + - metadata: + latency: 0.2953953742980957 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Add method where user can request access for a project.\r\n\r\n\ - - Gitlab - Implemented here - #439 \r\n- Github - After looking into\ - \ https://pygithub.readthedocs.io/en/latest/index.html (Seems its not\ - \ possible in Github to request for project access)\r\n- Pagure - Unsure\ - \ about the support (But unable to find anything here - https://pagure.io/api/0/#projects-tab)" - closed_at: '2020-08-17T00:45:05Z' + body: "I believe this is a flake but wanna make sure it's not an actual\ + \ bug. The logs are coming from [a sandcastle CI run](https://github.com/packit/sandcastle/pull/104#issuecomment-784432707).\r\ + \n```\r\n2021-02-23 18:55:03.228152 | test-node | E sandcastle.exceptions.SandcastleCommandFailed:\ + \ Command failed (rc=2, reason={\"metadata\":{},\"status\":\"Failure\"\ + ,\"message\":\"command terminated with non-zero exit code: Error executing\ + \ in Docker Container: 2\",\"reason\":\"NonZeroExitCode\",\"details\"\ + :{\"causes\":[{\"reason\":\"ExitCode\",\"message\":\"2\"}]}})\r\n2021-02-23\ + \ 18:55:03.228239 | test-node | E 18:42:55.563 config.py DEBUG\ + \ Loading user config from directory: /home/sandcastle/.config\r\n\ + 2021-02-23 18:55:03.228250 | test-node | E 18:42:55.564 config.py \ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.yaml\r\ + \n2021-02-23 18:55:03.228256 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.yml\r\ + \n2021-02-23 18:55:03.228263 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.json\r\ + \n2021-02-23 18:55:03.228269 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.yaml\r\ + \n2021-02-23 18:55:03.228275 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.yml\r\ + \n2021-02-23 18:55:03.228281 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.json\r\ + \n2021-02-23 18:55:03.228310 | test-node | E 18:42:55.572 config.py\ + \ DEBUG Loaded config: Config(debug='False', fas_user='None',\ + \ keytab_path='None', upstream_git_remote='None', command_handler='RunCommandType.local',\ + \ command_handler_work_dir='/sandcastle', command_handler_pvc_env_var='SANDCASTLE_PVC',\ + \ command_handler_image_reference='docker.io/usercont/sandcastle', command_handler_k8s_namespace='myproject')\r\ + \n2021-02-23 18:55:03.228383 | test-node | E 18:42:55.572 logging.py\ + \ DEBUG Logging set to DEBUG\r\n2021-02-23 18:55:03.228398 |\ + \ test-node | E 18:42:55.574 packit_base.py DEBUG Packit 0.24.0\ + \ is being used.\r\n2021-02-23 18:55:03.228404 | test-node | E 18:42:55.574\ + \ types.py DEBUG Input is a directory: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902\r\ + \n2021-02-23 18:55:03.228420 | test-node | E 18:42:55.575 local_project.py\ + \ DEBUG Arguments received in the init method of the LocalProject\ + \ class:\r\n2021-02-23 18:55:03.228426 | test-node | E git_repo: None\r\ + \n2021-02-23 18:55:03.228433 | test-node | E working_dir: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902\r\ + \n2021-02-23 18:55:03.228439 | test-node | E ref: None\r\n2021-02-23\ + \ 18:55:03.228445 | test-node | E git_project: None\r\n2021-02-23 18:55:03.228451\ + \ | test-node | E git_service: None\r\n2021-02-23 18:55:03.228458 |\ + \ test-node | E git_url:\r\n2021-02-23 18:55:03.228464 | test-node\ + \ | E full_name:\r\n2021-02-23 18:55:03.228470 | test-node | E namespace:\r\ + \n2021-02-23 18:55:03.228476 | test-node | E repo_name:\r\n2021-02-23\ + \ 18:55:03.228482 | test-node | E offline: False\r\n2021-02-23 18:55:03.228488\ + \ | test-node | E refresh True\r\n2021-02-23 18:55:03.228494 | test-node\ + \ | E remote: None\r\n2021-02-23 18:55:03.228501 | test-node | E pr_id:\ + \ None\r\n2021-02-23 18:55:03.228507 | test-node | E\r\n2021-02-23 18:55:03.228559\ + \ | test-node | E 18:42:55.575 local_project.py DEBUG `working_dir`\ + \ is set and `git_repo` is not: let's discover...\r\n2021-02-23 18:55:03.228607\ + \ | test-node | E 18:42:55.575 local_project.py DEBUG It's a git\ + \ repo!\r\n2021-02-23 18:55:03.228615 | test-node | E 18:42:55.577\ + \ local_project.py DEBUG Parsed ref 'main' from the repo .\r\ + \n2021-02-23 18:55:03.228630 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed remote url 'https://github.com/packit/ogr.git' from\ + \ the repo .\r\ + \n2021-02-23 18:55:03.228651 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed namespace and repo name (packit, ogr) from url 'https://github.com/packit/ogr.git'.\r\ + \n2021-02-23 18:55:03.228660 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed full repo name 'packit/ogr'.\r\n2021-02-23 18:55:03.228666\ + \ | test-node | E 18:42:55.578 package_config.py DEBUG Local package\ + \ config found: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/.packit.yaml\r\ + \n2021-02-23 18:55:03.228673 | test-node | E 18:42:55.590 package_config.py\ + \ DEBUG Local spec files found: [PosixPath('fedora/python-ogr.spec')].\ + \ Taking: fedora/python-ogr.spec\r\n2021-02-23 18:55:03.228679 | test-node\ + \ | E 18:42:55.591 package_config.py DEBUG Package config:\r\n2021-02-23\ + \ 18:55:03.228685 | test-node | E {\r\n2021-02-23 18:55:03.228692 |\ + \ test-node | E \"specfile_path\": \"fedora/python-ogr.spec\",\r\ + \n2021-02-23 18:55:03.228698 | test-node | E \"synced_files\":\ + \ [\r\n2021-02-23 18:55:03.228720 | test-node | E \"fedora/changelog\"\ + \r\n2021-02-23 18:55:03.228728 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.228735 | test-node | E \"downstream_package_name\":\ + \ \"python-ogr\",\r\n2021-02-23 18:55:03.228741 | test-node | E \ + \ \"upstream_project_url\": \"https://github.com/packit/ogr\",\r\n\ + 2021-02-23 18:55:03.228747 | test-node | E \"upstream_package_name\"\ + : \"ogr\",\r\n2021-02-23 18:55:03.228754 | test-node | E \"copy_upstream_release_description\"\ + : true,\r\n2021-02-23 18:55:03.228760 | test-node | E \"actions\"\ + : {\r\n2021-02-23 18:55:03.228766 | test-node | E \"create-archive\"\ + : [\r\n2021-02-23 18:55:03.228772 | test-node | E \"python3\ + \ setup.py sdist --dist-dir ./fedora/\",\r\n2021-02-23 18:55:03.228786\ + \ | test-node | E \"bash -c \\\"ls -1t ./fedora/*.tar.gz\ + \ | head -n 1\\\"\"\r\n2021-02-23 18:55:03.228793 | test-node | E \ + \ ],\r\n2021-02-23 18:55:03.228799 | test-node | E \"\ + get-current-version\": \"python3 setup.py --version\"\r\n2021-02-23\ + \ 18:55:03.228805 | test-node | E },\r\n2021-02-23 18:55:03.228811\ + \ | test-node | E \"jobs\": [\r\n2021-02-23 18:55:03.228818 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.228824 | test-node | E \ + \ \"job\": \"sync_from_downstream\",\r\n2021-02-23 18:55:03.228967\ + \ | test-node | E \"trigger\": \"commit\"\r\n2021-02-23\ + \ 18:55:03.229025 | test-node | E },\r\n2021-02-23 18:55:03.229032\ + \ | test-node | E {\r\n2021-02-23 18:55:03.229039 | test-node\ + \ | E \"job\": \"propose_downstream\",\r\n2021-02-23 18:55:03.229045\ + \ | test-node | E \"trigger\": \"release\",\r\n2021-02-23\ + \ 18:55:03.229051 | test-node | E \"metadata\": {\r\n2021-02-23\ + \ 18:55:03.229058 | test-node | E \"dist_git_branches\"\ + : [\r\n2021-02-23 18:55:03.229064 | test-node | E \ + \ \"fedora-all\",\r\n2021-02-23 18:55:03.229070 | test-node | E \ + \ \"epel-8\"\r\n2021-02-23 18:55:03.229076 | test-node\ + \ | E ]\r\n2021-02-23 18:55:03.229082 | test-node |\ + \ E }\r\n2021-02-23 18:55:03.229089 | test-node | E \ + \ },\r\n2021-02-23 18:55:03.229095 | test-node | E {\r\ + \n2021-02-23 18:55:03.229101 | test-node | E \"job\": \"\ + copr_build\",\r\n2021-02-23 18:55:03.229107 | test-node | E \ + \ \"trigger\": \"pull_request\",\r\n2021-02-23 18:55:03.229114\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229120\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229126\ + \ | test-node | E \"fedora-all\",\r\n2021-02-23\ + \ 18:55:03.229132 | test-node | E \"epel-8\"\r\n\ + 2021-02-23 18:55:03.229138 | test-node | E ]\r\n2021-02-23\ + \ 18:55:03.229147 | test-node | E }\r\n2021-02-23 18:55:03.229185\ + \ | test-node | E },\r\n2021-02-23 18:55:03.229207 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.229217 | test-node | E \ + \ \"job\": \"tests\",\r\n2021-02-23 18:55:03.229237 | test-node\ + \ | E \"trigger\": \"pull_request\",\r\n2021-02-23 18:55:03.229245\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229252\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229258\ + \ | test-node | E \"fedora-all\",\r\n2021-02-23\ + \ 18:55:03.229264 | test-node | E \"epel-8\"\r\n\ + 2021-02-23 18:55:03.229270 | test-node | E ]\r\n2021-02-23\ + \ 18:55:03.229276 | test-node | E }\r\n2021-02-23 18:55:03.229282\ + \ | test-node | E },\r\n2021-02-23 18:55:03.229289 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.229303 | test-node | E \ + \ \"job\": \"production_build\",\r\n2021-02-23 18:55:03.229310\ + \ | test-node | E \"trigger\": \"pull_request\",\r\n2021-02-23\ + \ 18:55:03.229316 | test-node | E \"metadata\": {\r\n2021-02-23\ + \ 18:55:03.229322 | test-node | E \"scratch\": true,\r\ + \n2021-02-23 18:55:03.229328 | test-node | E \"targets\"\ + : [\r\n2021-02-23 18:55:03.229334 | test-node | E \ + \ \"fedora-development\"\r\n2021-02-23 18:55:03.229349 | test-node\ + \ | E ]\r\n2021-02-23 18:55:03.229355 | test-node |\ + \ E }\r\n2021-02-23 18:55:03.229362 | test-node | E \ + \ },\r\n2021-02-23 18:55:03.229368 | test-node | E {\r\ + \n2021-02-23 18:55:03.229374 | test-node | E \"job\": \"\ + copr_build\",\r\n2021-02-23 18:55:03.229380 | test-node | E \ + \ \"trigger\": \"commit\",\r\n2021-02-23 18:55:03.229386 | test-node\ + \ | E \"metadata\": {\r\n2021-02-23 18:55:03.229392 | test-node\ + \ | E \"branch\": \"master\",\r\n2021-02-23 18:55:03.229399\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229405\ + \ | test-node | E \"fedora-stable\"\r\n2021-02-23\ + \ 18:55:03.229411 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.229417 | test-node | E \"project\": \"packit-master\"\ + ,\r\n2021-02-23 18:55:03.229423 | test-node | E \"\ + list_on_homepage\": true,\r\n2021-02-23 18:55:03.229430 | test-node\ + \ | E \"preserve_project\": true\r\n2021-02-23 18:55:03.229436\ + \ | test-node | E }\r\n2021-02-23 18:55:03.229442 | test-node\ + \ | E },\r\n2021-02-23 18:55:03.229448 | test-node | E \ + \ {\r\n2021-02-23 18:55:03.229454 | test-node | E \ + \ \"job\": \"copr_build\",\r\n2021-02-23 18:55:03.229461 | test-node\ + \ | E \"trigger\": \"release\",\r\n2021-02-23 18:55:03.229467\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229473\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229479\ + \ | test-node | E \"fedora-stable\"\r\n2021-02-23\ + \ 18:55:03.229485 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.229518 | test-node | E \"project\": \"packit-releases\"\ + ,\r\n2021-02-23 18:55:03.229556 | test-node | E \"\ + list_on_homepage\": true,\r\n2021-02-23 18:55:03.229567 | test-node\ + \ | E \"preserve_project\": true\r\n2021-02-23 18:55:03.229601\ + \ | test-node | E }\r\n2021-02-23 18:55:03.229608 | test-node\ + \ | E }\r\n2021-02-23 18:55:03.229614 | test-node | E \ + \ ]\r\n2021-02-23 18:55:03.229620 | test-node | E }\r\n2021-02-23 18:55:03.230131\ + \ | test-node | E 18:42:55.594 package_config.py DEBUG PackageConfig(config_file_path='.packit.yaml',\ + \ specfile_path='fedora/python-ogr.spec', synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', jobs='[JobConfig(job=JobType.sync_from_downstream,\ + \ trigger=JobConfigTriggerType.commit, meta=JobMetadataConfig(targets=set(),\ + \ timeout=7200, owner=None, project=None, dist_git_branches=set(), branch=None,\ + \ scratch=False, list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.propose_downstream, trigger=JobConfigTriggerType.release,\ + \ meta=JobMetadataConfig(targets=set(), timeout=7200, owner=None, project=None,\ + \ dist_git_branches={'epel-8', 'fedora-all'}, branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'epel-8', 'fedora-all'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.tests, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'epel-8', 'fedora-all'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.production_build, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'fedora-development'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=True,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.commit,\ + \ meta=JobMetadataConfig(targets={'fedora-stable'}, timeout=7200, owner=None,\ + \ project=packit-master, dist_git_branches=set(), branch=master, scratch=False,\ + \ list_on_homepage=True, preserve_project=True, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.release,\ + \ meta=JobMetadataConfig(targets={'fedora-stable'}, timeout=7200, owner=None,\ + \ project=packit-releases, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=True, preserve_project=True, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True')]',\ + \ dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', archive_root_dir_template={upstream_pkg_name}-{version}',\ + \ patch_generation_ignore_paths='[]', copy_upstream_release_description='True')\r\ + \n2021-02-23 18:55:03.230260 | test-node | E 18:42:55.604 utils.py\ + \ DEBUG Input directory is an upstream repository.\r\n2021-02-23\ + \ 18:55:03.230290 | test-node | E 18:42:55.604 base_git.py DEBUG\ + \ Running ActionName.post_upstream_clone hook.\r\n2021-02-23 18:55:03.230298\ + \ | test-node | E 18:42:55.604 base_git.py DEBUG Running ActionName.post_upstream_clone.\r\ + \n2021-02-23 18:55:03.230305 | test-node | E 18:42:55.605 base_git.py\ + \ DEBUG Running default implementation for ActionName.post_upstream_clone.\r\ + \n2021-02-23 18:55:03.230312 | test-node | E Using user-defined script\ + \ for ActionName.get_current_version: [['python3', 'setup.py', '--version']]\r\ + \n2021-02-23 18:55:03.230318 | test-node | E 18:42:55.605 base_git.py\ + \ DEBUG Command handler: RunCommandType.local\r\n2021-02-23 18:55:03.230383\ + \ | test-node | E 18:42:55.605 commands.py DEBUG Command: python3\ + \ setup.py --version\r\n2021-02-23 18:55:03.230439 | test-node | E \ + \ WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None,\ + \ status=None)) after connection broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230479 | test-node | E WARNING: Retrying (Retry(total=3,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230504 | test-node | E WARNING: Retrying (Retry(total=2,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230515 | test-node | E WARNING: Retrying (Retry(total=1,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230525 | test-node | E WARNING: Retrying (Retry(total=0,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230597 | test-node | E ERROR: Exception:\r\n\ + 2021-02-23 18:55:03.230624 | test-node | E Traceback (most recent call\ + \ last):\r\n2021-02-23 18:55:03.230637 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 381, in _make_request\r\n2021-02-23 18:55:03.230655 | test-node\ + \ | E self._validate_conn(conn)\r\n2021-02-23 18:55:03.230665 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 976, in _validate_conn\r\n2021-02-23 18:55:03.230684 | test-node\ + \ | E conn.connect()\r\n2021-02-23 18:55:03.230711 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py\"\ + , line 361, in connect\r\n2021-02-23 18:55:03.230724 | test-node | E\ + \ self.sock = ssl_wrap_socket(\r\n2021-02-23 18:55:03.230733 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py\"\ + , line 377, in ssl_wrap_socket\r\n2021-02-23 18:55:03.230743 | test-node\ + \ | E return context.wrap_socket(sock, server_hostname=server_hostname)\r\ + \n2021-02-23 18:55:03.230752 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 500, in wrap_socket\r\n2021-02-23 18:55:03.230761 | test-node\ + \ | E return self.sslsocket_class._create(\r\n2021-02-23 18:55:03.230789\ + \ | test-node | E File \"/usr/lib64/python3.9/ssl.py\", line 1040,\ + \ in _create\r\n2021-02-23 18:55:03.230808 | test-node | E self.do_handshake()\r\ + \n2021-02-23 18:55:03.230831 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 1309, in do_handshake\r\n2021-02-23 18:55:03.230841 | test-node\ + \ | E self._sslobj.do_handshake()\r\n2021-02-23 18:55:03.230851\ + \ | test-node | E socket.timeout: _ssl.c:1106: The handshake operation\ + \ timed out\r\n2021-02-23 18:55:03.230879 | test-node | E\r\n2021-02-23\ + \ 18:55:03.230899 | test-node | E During handling of the above exception,\ + \ another exception occurred:\r\n2021-02-23 18:55:03.230909 | test-node\ + \ | E\r\n2021-02-23 18:55:03.230919 | test-node | E Traceback (most\ + \ recent call last):\r\n2021-02-23 18:55:03.230928 | test-node | E \ + \ File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 670, in urlopen\r\n2021-02-23 18:55:03.230937 | test-node | E\ + \ httplib_response = self._make_request(\r\n2021-02-23 18:55:03.230957\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 384, in _make_request\r\n2021-02-23 18:55:03.230983 | test-node\ + \ | E self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)\r\ + \n2021-02-23 18:55:03.230994 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 335, in _raise_timeout\r\n2021-02-23 18:55:03.231004 | test-node\ + \ | E raise ReadTimeoutError(\r\n2021-02-23 18:55:03.231031 | test-node\ + \ | E pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\r\n2021-02-23 18:55:03.231060\ + \ | test-node | E\r\n2021-02-23 18:55:03.231081 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.231090 | test-node | E\r\n2021-02-23 18:55:03.231100 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.231109\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 439, in send\r\n2021-02-23 18:55:03.231118 | test-node | E \ + \ resp = conn.urlopen(\r\n2021-02-23 18:55:03.231138 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231166 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231224 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231261 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231272 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231289 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231318 | test-node\ + \ | E [Previous line repeated 2 more times]\r\n2021-02-23 18:55:03.231347\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 724, in urlopen\r\n2021-02-23 18:55:03.231389 | test-node | E\ + \ retries = retries.increment(\r\n2021-02-23 18:55:03.231409 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py\"\ + , line 439, in increment\r\n2021-02-23 18:55:03.231418 | test-node |\ + \ E raise MaxRetryError(_pool, url, error or ResponseError(cause))\r\ + \n2021-02-23 18:55:03.231425 | test-node | E pip._vendor.urllib3.exceptions.MaxRetryError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.231432\ + \ | test-node | E\r\n2021-02-23 18:55:03.231438 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.231445 | test-node | E\r\n2021-02-23 18:55:03.231452 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.231458\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/base_command.py\"\ + , line 216, in _main\r\n2021-02-23 18:55:03.231465 | test-node | E \ + \ status = self.run(options, args)\r\n2021-02-23 18:55:03.231471\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/req_command.py\"\ + , line 182, in wrapper\r\n2021-02-23 18:55:03.231477 | test-node | E\ + \ return func(self, options, args)\r\n2021-02-23 18:55:03.231514\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/commands/wheel.py\"\ + , line 155, in run\r\n2021-02-23 18:55:03.231566 | test-node | E \ + \ requirement_set = resolver.resolve(\r\n2021-02-23 18:55:03.231604\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 184, in resolve\r\n2021-02-23 18:55:03.231611 | test-node | E\ + \ discovered_reqs.extend(self._resolve_one(requirement_set, req))\r\ + \n2021-02-23 18:55:03.231618 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 391, in _resolve_one\r\n2021-02-23 18:55:03.231624 | test-node\ + \ | E abstract_dist = self._get_abstract_dist_for(req_to_install)\r\ + \n2021-02-23 18:55:03.231631 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 343, in _get_abstract_dist_for\r\n2021-02-23 18:55:03.231656\ + \ | test-node | E abstract_dist = self.preparer.prepare_linked_requirement(req)\r\ + \n2021-02-23 18:55:03.231668 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 467, in prepare_linked_requirement\r\n2021-02-23 18:55:03.231675\ + \ | test-node | E local_file = unpack_url(\r\n2021-02-23 18:55:03.231681\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 255, in unpack_url\r\n2021-02-23 18:55:03.231688 | test-node\ + \ | E file = get_http_url(\r\n2021-02-23 18:55:03.231695 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 129, in get_http_url\r\n2021-02-23 18:55:03.231710 | test-node\ + \ | E from_path, content_type = _download_http_url(\r\n2021-02-23\ + \ 18:55:03.231716 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 278, in _download_http_url\r\n2021-02-23 18:55:03.231723 | test-node\ + \ | E download = downloader(link)\r\n2021-02-23 18:55:03.231730\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 170, in __call__\r\n2021-02-23 18:55:03.231736 | test-node |\ + \ E resp = _http_get_download(self._session, link)\r\n2021-02-23\ + \ 18:55:03.231743 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 139, in _http_get_download\r\n2021-02-23 18:55:03.231749 | test-node\ + \ | E resp = session.get(target_url, headers=HEADERS, stream=True)\r\ + \n2021-02-23 18:55:03.231756 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 543, in get\r\n2021-02-23 18:55:03.231763 | test-node | E \ + \ return self.request('GET', url, **kwargs)\r\n2021-02-23 18:55:03.231769\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/session.py\"\ + , line 421, in request\r\n2021-02-23 18:55:03.231775 | test-node | E\ + \ return super(PipSession, self).request(method, url, *args, **kwargs)\r\ + \n2021-02-23 18:55:03.231807 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 530, in request\r\n2021-02-23 18:55:03.231816 | test-node | E\ + \ resp = self.send(prep, **send_kwargs)\r\n2021-02-23 18:55:03.231823\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 643, in send\r\n2021-02-23 18:55:03.231829 | test-node | E \ + \ r = adapter.send(request, **kwargs)\r\n2021-02-23 18:55:03.231836\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py\"\ + , line 53, in send\r\n2021-02-23 18:55:03.231843 | test-node | E \ + \ resp = super(CacheControlAdapter, self).send(request, **kw)\r\n\ + 2021-02-23 18:55:03.231849 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 516, in send\r\n2021-02-23 18:55:03.231856 | test-node | E \ + \ raise ConnectionError(e, request=request)\r\n2021-02-23 18:55:03.231879\ + \ | test-node | E pip._vendor.requests.exceptions.ConnectionError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.231891\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.231898 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 128, in fetch_build_egg\r\n2021-02-23 18:55:03.231904 | test-node\ + \ | E subprocess.check_call(cmd)\r\n2021-02-23 18:55:03.231924\ + \ | test-node | E File \"/usr/lib64/python3.9/subprocess.py\", line\ + \ 373, in check_call\r\n2021-02-23 18:55:03.231936 | test-node | E \ + \ raise CalledProcessError(retcode, cmd)\r\n2021-02-23 18:55:03.231943\ + \ | test-node | E subprocess.CalledProcessError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.231970 | test-node\ + \ | E\r\n2021-02-23 18:55:03.231979 | test-node | E The above exception\ + \ was the direct cause of the following exception:\r\n2021-02-23 18:55:03.231991\ + \ | test-node | E\r\n2021-02-23 18:55:03.231998 | test-node | E Traceback\ + \ (most recent call last):\r\n2021-02-23 18:55:03.232005 | test-node\ + \ | E File \"/sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/setup.py\"\ + , line 5, in \r\n2021-02-23 18:55:03.232011 | test-node | E\ + \ setup(use_scm_version=True)\r\n2021-02-23 18:55:03.232018 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 164, in setup\r\n2021-02-23 18:55:03.232025 | test-node | E \ + \ _install_setup_requires(attrs)\r\n2021-02-23 18:55:03.232031 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 159, in _install_setup_requires\r\n2021-02-23 18:55:03.232039\ + \ | test-node | E dist.fetch_build_eggs(dist.setup_requires)\r\n\ + 2021-02-23 18:55:03.232052 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 699, in fetch_build_eggs\r\n2021-02-23 18:55:03.232084 | test-node\ + \ | E resolved_dists = pkg_resources.working_set.resolve(\r\n2021-02-23\ + \ 18:55:03.232102 | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 779, in resolve\r\n2021-02-23 18:55:03.232111 | test-node | E\ + \ dist = best[req.key] = env.best_match(\r\n2021-02-23 18:55:03.232121\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1064, in best_match\r\n2021-02-23 18:55:03.232130 | test-node\ + \ | E return self.obtain(req, installer)\r\n2021-02-23 18:55:03.232140\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1076, in obtain\r\n2021-02-23 18:55:03.232168 | test-node | E\ + \ return installer(requirement)\r\n2021-02-23 18:55:03.232217 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 758, in fetch_build_egg\r\n2021-02-23 18:55:03.232262 | test-node\ + \ | E return fetch_build_egg(self, req)\r\n2021-02-23 18:55:03.232274\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 130, in fetch_build_egg\r\n2021-02-23 18:55:03.232284 | test-node\ + \ | E raise DistutilsError(str(e)) from e\r\n2021-02-23 18:55:03.232312\ + \ | test-node | E distutils.errors.DistutilsError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.232333 | test-node\ + \ | E ERROR Command 'python3 setup.py --version' failed.\r\n2021-02-23\ + \ 18:55:03.232343 | test-node | E 18:44:34.521 commands.py DEBUG\ + \ Command stderr: WARNING: Retrying (Retry(total=4, connect=None,\ + \ read=None, redirect=None, status=None)) after connection broken by\ + \ 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232355 | test-node | E WARNING: Retrying (Retry(total=3,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232366 | test-node | E WARNING: Retrying (Retry(total=2,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232427 | test-node | E WARNING: Retrying (Retry(total=1,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232464 | test-node | E WARNING: Retrying (Retry(total=0,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232474 | test-node | E ERROR: Exception:\r\n\ + 2021-02-23 18:55:03.232481 | test-node | E Traceback (most recent call\ + \ last):\r\n2021-02-23 18:55:03.232487 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 381, in _make_request\r\n2021-02-23 18:55:03.232494 | test-node\ + \ | E self._validate_conn(conn)\r\n2021-02-23 18:55:03.232501 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 976, in _validate_conn\r\n2021-02-23 18:55:03.232508 | test-node\ + \ | E conn.connect()\r\n2021-02-23 18:55:03.232515 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py\"\ + , line 361, in connect\r\n2021-02-23 18:55:03.232522 | test-node | E\ + \ self.sock = ssl_wrap_socket(\r\n2021-02-23 18:55:03.232553 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py\"\ + , line 377, in ssl_wrap_socket\r\n2021-02-23 18:55:03.232566 | test-node\ + \ | E return context.wrap_socket(sock, server_hostname=server_hostname)\r\ + \n2021-02-23 18:55:03.232597 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 500, in wrap_socket\r\n2021-02-23 18:55:03.232605 | test-node\ + \ | E return self.sslsocket_class._create(\r\n2021-02-23 18:55:03.232612\ + \ | test-node | E File \"/usr/lib64/python3.9/ssl.py\", line 1040,\ + \ in _create\r\n2021-02-23 18:55:03.232619 | test-node | E self.do_handshake()\r\ + \n2021-02-23 18:55:03.232625 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 1309, in do_handshake\r\n2021-02-23 18:55:03.232632 | test-node\ + \ | E self._sslobj.do_handshake()\r\n2021-02-23 18:55:03.232638\ + \ | test-node | E socket.timeout: _ssl.c:1106: The handshake operation\ + \ timed out\r\n2021-02-23 18:55:03.232645 | test-node | E\r\n2021-02-23\ + \ 18:55:03.232651 | test-node | E During handling of the above exception,\ + \ another exception occurred:\r\n2021-02-23 18:55:03.232658 | test-node\ + \ | E\r\n2021-02-23 18:55:03.232678 | test-node | E Traceback (most\ + \ recent call last):\r\n2021-02-23 18:55:03.232689 | test-node | E \ + \ File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 670, in urlopen\r\n2021-02-23 18:55:03.232696 | test-node | E\ + \ httplib_response = self._make_request(\r\n2021-02-23 18:55:03.232702\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 384, in _make_request\r\n2021-02-23 18:55:03.232709 | test-node\ + \ | E self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)\r\ + \n2021-02-23 18:55:03.232716 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 335, in _raise_timeout\r\n2021-02-23 18:55:03.232742 | test-node\ + \ | E raise ReadTimeoutError(\r\n2021-02-23 18:55:03.232752 | test-node\ + \ | E pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\r\n2021-02-23 18:55:03.232758\ + \ | test-node | E\r\n2021-02-23 18:55:03.232765 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.232772 | test-node | E\r\n2021-02-23 18:55:03.232778 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.232785\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 439, in send\r\n2021-02-23 18:55:03.232791 | test-node | E \ + \ resp = conn.urlopen(\r\n2021-02-23 18:55:03.232798 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232804 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232811 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232832 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232844 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232850 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232857 | test-node\ + \ | E [Previous line repeated 2 more times]\r\n2021-02-23 18:55:03.232863\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 724, in urlopen\r\n2021-02-23 18:55:03.232870 | test-node | E\ + \ retries = retries.increment(\r\n2021-02-23 18:55:03.232876 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py\"\ + , line 439, in increment\r\n2021-02-23 18:55:03.232883 | test-node |\ + \ E raise MaxRetryError(_pool, url, error or ResponseError(cause))\r\ + \n2021-02-23 18:55:03.232890 | test-node | E pip._vendor.urllib3.exceptions.MaxRetryError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.232918\ + \ | test-node | E\r\n2021-02-23 18:55:03.232927 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.232934 | test-node | E\r\n2021-02-23 18:55:03.232940 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.232947\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/base_command.py\"\ + , line 216, in _main\r\n2021-02-23 18:55:03.232954 | test-node | E \ + \ status = self.run(options, args)\r\n2021-02-23 18:55:03.232960\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/req_command.py\"\ + , line 182, in wrapper\r\n2021-02-23 18:55:03.232967 | test-node | E\ + \ return func(self, options, args)\r\n2021-02-23 18:55:03.232974\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/commands/wheel.py\"\ + , line 155, in run\r\n2021-02-23 18:55:03.232980 | test-node | E \ + \ requirement_set = resolver.resolve(\r\n2021-02-23 18:55:03.232987\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 184, in resolve\r\n2021-02-23 18:55:03.233000 | test-node | E\ + \ discovered_reqs.extend(self._resolve_one(requirement_set, req))\r\ + \n2021-02-23 18:55:03.233007 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 391, in _resolve_one\r\n2021-02-23 18:55:03.233014 | test-node\ + \ | E abstract_dist = self._get_abstract_dist_for(req_to_install)\r\ + \n2021-02-23 18:55:03.233020 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 343, in _get_abstract_dist_for\r\n2021-02-23 18:55:03.233027\ + \ | test-node | E abstract_dist = self.preparer.prepare_linked_requirement(req)\r\ + \n2021-02-23 18:55:03.233035 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 467, in prepare_linked_requirement\r\n2021-02-23 18:55:03.233041\ + \ | test-node | E local_file = unpack_url(\r\n2021-02-23 18:55:03.233048\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 255, in unpack_url\r\n2021-02-23 18:55:03.233054 | test-node\ + \ | E file = get_http_url(\r\n2021-02-23 18:55:03.233061 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 129, in get_http_url\r\n2021-02-23 18:55:03.233068 | test-node\ + \ | E from_path, content_type = _download_http_url(\r\n2021-02-23\ + \ 18:55:03.233074 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 278, in _download_http_url\r\n2021-02-23 18:55:03.233081 | test-node\ + \ | E download = downloader(link)\r\n2021-02-23 18:55:03.233087\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 170, in __call__\r\n2021-02-23 18:55:03.233094 | test-node |\ + \ E resp = _http_get_download(self._session, link)\r\n2021-02-23\ + \ 18:55:03.233100 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 139, in _http_get_download\r\n2021-02-23 18:55:03.233107 | test-node\ + \ | E resp = session.get(target_url, headers=HEADERS, stream=True)\r\ + \n2021-02-23 18:55:03.233127 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 543, in get\r\n2021-02-23 18:55:03.233139 | test-node | E \ + \ return self.request('GET', url, **kwargs)\r\n2021-02-23 18:55:03.233148\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/session.py\"\ + , line 421, in request\r\n2021-02-23 18:55:03.233190 | test-node | E\ + \ return super(PipSession, self).request(method, url, *args, **kwargs)\r\ + \n2021-02-23 18:55:03.233213 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 530, in request\r\n2021-02-23 18:55:03.233220 | test-node | E\ + \ resp = self.send(prep, **send_kwargs)\r\n2021-02-23 18:55:03.233227\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 643, in send\r\n2021-02-23 18:55:03.233233 | test-node | E \ + \ r = adapter.send(request, **kwargs)\r\n2021-02-23 18:55:03.233240\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py\"\ + , line 53, in send\r\n2021-02-23 18:55:03.233246 | test-node | E \ + \ resp = super(CacheControlAdapter, self).send(request, **kw)\r\n\ + 2021-02-23 18:55:03.233253 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 516, in send\r\n2021-02-23 18:55:03.233259 | test-node | E \ + \ raise ConnectionError(e, request=request)\r\n2021-02-23 18:55:03.233274\ + \ | test-node | E pip._vendor.requests.exceptions.ConnectionError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.233308\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233318 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 128, in fetch_build_egg\r\n2021-02-23 18:55:03.233359 | test-node\ + \ | E subprocess.check_call(cmd)\r\n2021-02-23 18:55:03.233396\ + \ | test-node | E File \"/usr/lib64/python3.9/subprocess.py\", line\ + \ 373, in check_call\r\n2021-02-23 18:55:03.233405 | test-node | E \ + \ raise CalledProcessError(retcode, cmd)\r\n2021-02-23 18:55:03.233412\ + \ | test-node | E subprocess.CalledProcessError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.233420 | test-node\ + \ | E\r\n2021-02-23 18:55:03.233427 | test-node | E The above exception\ + \ was the direct cause of the following exception:\r\n2021-02-23 18:55:03.233433\ + \ | test-node | E\r\n2021-02-23 18:55:03.233440 | test-node | E Traceback\ + \ (most recent call last):\r\n2021-02-23 18:55:03.233446 | test-node\ + \ | E File \"/sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/setup.py\"\ + , line 5, in \r\n2021-02-23 18:55:03.233452 | test-node | E\ + \ setup(use_scm_version=True)\r\n2021-02-23 18:55:03.233458 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 164, in setup\r\n2021-02-23 18:55:03.233465 | test-node | E \ + \ _install_setup_requires(attrs)\r\n2021-02-23 18:55:03.233472 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 159, in _install_setup_requires\r\n2021-02-23 18:55:03.233478\ + \ | test-node | E dist.fetch_build_eggs(dist.setup_requires)\r\n\ + 2021-02-23 18:55:03.233484 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 699, in fetch_build_eggs\r\n2021-02-23 18:55:03.233491 | test-node\ + \ | E resolved_dists = pkg_resources.working_set.resolve(\r\n2021-02-23\ + \ 18:55:03.233497 | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 779, in resolve\r\n2021-02-23 18:55:03.233504 | test-node | E\ + \ dist = best[req.key] = env.best_match(\r\n2021-02-23 18:55:03.233510\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1064, in best_match\r\n2021-02-23 18:55:03.233517 | test-node\ + \ | E return self.obtain(req, installer)\r\n2021-02-23 18:55:03.233523\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1076, in obtain\r\n2021-02-23 18:55:03.233551 | test-node | E\ + \ return installer(requirement)\r\n2021-02-23 18:55:03.233565 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 758, in fetch_build_egg\r\n2021-02-23 18:55:03.233624 | test-node\ + \ | E return fetch_build_egg(self, req)\r\n2021-02-23 18:55:03.233636\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 130, in fetch_build_egg\r\n2021-02-23 18:55:03.233643 | test-node\ + \ | E raise DistutilsError(str(e)) from e\r\n2021-02-23 18:55:03.233649\ + \ | test-node | E distutils.errors.DistutilsError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.233665 | test-node\ + \ | E\r\n2021-02-23 18:55:03.233672 | test-node | E 18:44:34.522 commands.py\ + \ DEBUG Command stdout:\r\n2021-02-23 18:55:03.233678 | test-node\ + \ | E ERROR Preparing of the upstream to the SRPM build failed:\ + \ Command 'python3 setup.py --version' failed.\r\n2021-02-23 18:55:03.233685\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233691 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/api.py\"\ + , line 510, in create_srpm\r\n2021-02-23 18:55:03.233698 | test-node\ + \ | E self.up.prepare_upstream_for_srpm_creation(upstream_ref=upstream_ref)\r\ + \n2021-02-23 18:55:03.233704 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/upstream.py\"\ + , line 673, in prepare_upstream_for_srpm_creation\r\n2021-02-23 18:55:03.233711\ + \ | test-node | E current_git_describe_version = self.get_current_version()\r\ + \n2021-02-23 18:55:03.233717 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/upstream.py\"\ + , line 276, in get_current_version\r\n2021-02-23 18:55:03.233736 | test-node\ + \ | E action_output = self.get_output_from_action(\r\n2021-02-23\ + \ 18:55:03.233754 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/base_git.py\"\ + , line 314, in get_output_from_action\r\n2021-02-23 18:55:03.233761\ + \ | test-node | E self.command_handler.run_command(\r\n2021-02-23\ + \ 18:55:03.233768 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/command_handler.py\"\ + , line 100, in run_command\r\n2021-02-23 18:55:03.233774 | test-node\ + \ | E return commands.run_command(\r\n2021-02-23 18:55:03.233797\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/packit/utils/commands.py\"\ + , line 97, in run_command\r\n2021-02-23 18:55:03.233810 | test-node\ + \ | E raise PackitCommandFailedError(\r\n2021-02-23 18:55:03.233816\ + \ | test-node | E packit.exceptions.PackitCommandFailedError: Command\ + \ 'python3 setup.py --version' failed.\r\n2021-02-23 18:55:03.233823\ + \ | test-node | E\r\n2021-02-23 18:55:03.233829 | test-node | E The\ + \ above exception was the direct cause of the following exception:\r\ + \n2021-02-23 18:55:03.233836 | test-node | E\r\n2021-02-23 18:55:03.233843\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233849 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/cli/utils.py\"\ + , line 64, in covered_func\r\n2021-02-23 18:55:03.233856 | test-node\ + \ | E func(config=config, *args, **kwargs)\r\n2021-02-23 18:55:03.233862\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/packit/cli/srpm.py\"\ + , line 66, in srpm\r\n2021-02-23 18:55:03.233869 | test-node | E \ + \ srpm_path = api.create_srpm(output_file=output, upstream_ref=upstream_ref)\r\ + \n2021-02-23 18:55:03.233875 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/api.py\"\ + , line 512, in create_srpm\r\n2021-02-23 18:55:03.233882 | test-node\ + \ | E raise PackitSRPMException(\r\n2021-02-23 18:55:03.233889\ + \ | test-node | E packit.exceptions.PackitSRPMException: Preparing\ + \ of the upstream to the SRPM build failed: Command 'python3 setup.py\ + \ --version' failed.\r\n```\r\nMy assumption is this was a network flake\ + \ with files.pythonhosted.org but since the new retry mechanism can\ + \ be seen in play here, I wanna confirm this behaviour is expected.\r\ + \n" + closed_at: '2021-02-24T09:16:06Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/440/comments - created_at: '2020-07-28T17:53:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/440/events - html_url: https://github.com/packit/ogr/issues/440 - id: 667259796 + comments_url: https://api.github.com/repos/packit/ogr/issues/545/comments + created_at: '2021-02-24T08:26:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/545/events + html_url: https://github.com/packit/ogr/issues/545 + id: 815243822 labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/440/labels{/name} + - color: 008672 + default: true + description: Extra attention is needed + id: 1160311265 + name: help wanted + node_id: MDU6TGFiZWwxMTYwMzExMjY1 + url: https://api.github.com/repos/packit/ogr/labels/help%20wanted + labels_url: https://api.github.com/repos/packit/ogr/issues/545/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NjcyNTk3OTY= - number: 440 + node_id: MDU6SXNzdWU4MTUyNDM4MjI= + number: 545 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement request_access for project - updated_at: '2020-08-17T00:45:05Z' - url: https://api.github.com/repos/packit/ogr/issues/440 + title: Max retries exceeded with url files.pythonhosted.org + updated_at: '2021-02-24T12:53:54Z' + url: https://api.github.com/repos/packit/ogr/issues/545 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi - - active_lock_reason: null + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.294916 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:44 GMT + ETag: W/"237d07ddb0d564ba13a609cf12d68c18517706090bce1d168750f8349b7cf2b4" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 88B1:19FC:78EDA1:1333307:6075DC88 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4416' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '584' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/548: + - metadata: + latency: 0.10159730911254883 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Added unit test for Pagure.PullRequest.head_commit - closed_at: '2020-08-15T10:15:27Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/369/comments - created_at: '2020-03-27T14:53:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/369/events - html_url: https://github.com/packit/ogr/pull/369 - id: 589189620 - labels: - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/369/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzk0ODAwMjA0 - number: 369 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/369.diff - html_url: https://github.com/packit/ogr/pull/369 - patch_url: https://github.com/packit/ogr/pull/369.patch - url: https://api.github.com/repos/packit/ogr/pulls/369 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Added unit test for Pagure.PullRequest.head_commit - updated_at: '2020-08-15T10:15:27Z' - url: https://api.github.com/repos/packit/ogr/issues/369 - user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f33` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f34` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `main` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-03-08T08:50:33Z' + closed_by: + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "- [x] The contribution guide should be accessible from the README.md.\ - \ (#265 )\r\n- [ ] We need to be sure that the guide is current and\ - \ describes the testing approach well.\r\n- [ ] Document `/packit` command." - closed_at: '2020-08-14T09:27:22Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/165/comments - created_at: '2019-09-05T13:37:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/165/events - html_url: https://github.com/packit/ogr/issues/165 - id: 489761258 - labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/165/labels{/name} + url: https://api.github.com/users/csomh + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/548/comments + created_at: '2021-03-03T14:38:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/548/events + html_url: https://github.com/packit/ogr/issues/548 + id: 821170152 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/548/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODk3NjEyNTg= - number: 165 + node_id: MDU6SXNzdWU4MjExNzAxNTI= + number: 548 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update and link the contribution guide in README - updated_at: '2020-08-14T17:30:15Z' - url: https://api.github.com/repos/packit/ogr/issues/165 + title: '[packit] Propose downstream failed for release 0.22.0' + updated_at: '2021-03-08T08:50:33Z' + url: https://api.github.com/repos/packit/ogr/issues/548 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + _next: null + elapsed: 0.101368 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:43 GMT + ETag: W/"250aa5586efe6453976c847d48c28e0dcb59ea40d94eca2c99b4037dd9a0ef8e" + Last-Modified: Mon, 08 Mar 2021 08:50:33 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: 88B1:19FC:78ED77:133328E:6075DC87 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4419' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '581' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/551: + - metadata: + latency: 0.115966796875 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Closes #196 ' - closed_at: '2020-08-13T10:28:26Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/444/comments - created_at: '2020-08-03T09:30:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/444/events - html_url: https://github.com/packit/ogr/pull/444 - id: 671937907 + author_association: CONTRIBUTOR + body: "This is gonna be a fun one: I tried to use upsint to create a PR\ + \ in src.fedoraproject.org/rpms but failed because there are two different\ + \ servers for the forge API and a git server:\r\n\r\nI use SSH:\r\n\ + ```\r\nssh://ttomecek@pkgs.fedoraproject.org/rpms/python-ogr.git\r\n\ + ```\r\n\r\nBut pagure API is at\r\n```\r\nhttps://src.fedoraproject.org/rpms/python-ogr.git\r\ + \n```\r\n\r\nI'm wondering if it's possible to set up an authentication\ + \ entry which would recognize pkgs.fp.o but route API requests to src.fp.o.\ + \ Tried these but none of them worked with SSH:\r\n```\r\n fedora-dist-git:\r\ + \n type: pagure\r\n instance_url: \"https://src.fedoraproject.org/\"\ + \r\n token: ...\r\n fedora-dist-git2:\r\n type: pagure\r\n \ + \ instance_url: \"https://pkgs.fedoraproject.org/\"\r\n token: ...\r\ + \n```\r\n\r\nWorst case I could hard-code the logic to upsint though\ + \ I think it would be useful to have in ogr itself." + closed_at: '2021-03-10T14:34:28Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/551/comments + created_at: '2021-03-08T08:51:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/551/events + html_url: https://github.com/packit/ogr/issues/551 + id: 824335510 labels: - - color: 0e8a16 + - color: a2eeef default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/444/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/551/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDYyMDYyMjUw - number: 444 + node_id: MDU6SXNzdWU4MjQzMzU1MTA= + number: 551 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/444.diff - html_url: https://github.com/packit/ogr/pull/444 - patch_url: https://github.com/packit/ogr/pull/444.patch - url: https://api.github.com/repos/packit/ogr/pulls/444 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Jupyter examples - updated_at: '2020-08-13T10:29:44Z' - url: https://api.github.com/repos/packit/ogr/issues/444 + title: 'authentication: support alternative server for git and git-forge + API (src.fp.o)' + updated_at: '2021-03-10T14:34:28Z' + url: https://api.github.com/repos/packit/ogr/issues/551 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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} + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.11575 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:43 GMT + ETag: W/"5c03bc51c7b358b1fbf6d1559afef23743db86aaa42066360ce806eee3fc5047" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 88B1:19FC:78ED63:133324C:6075DC87 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4422' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '578' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/557: + - metadata: + latency: 0.13068532943725586 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n File \"/home/tt/g/user-cont/packit/packit/schema.py\"\ + , line 440, in make_instance \ + \ \ + \ \r\n return Config(**data) \ + \ \ + \ \r\ + \n File \"/home/tt/g/user-cont/packit/packit/config/config.py\", line\ + \ 99, in __init__ \ + \ \r\n self.services\ + \ = Config.load_authentication(kwargs) \ + \ \ + \ \r\n File \"/home/tt/g/user-cont/packit/packit/config/config.py\"\ + , line 164, in load_authentication \ + \ \r\n\ + \ services = get_instances_from_dict(instances=raw_dict[\"authentication\"\ + ]) \ + \ \r\n File \"/home/tt/g/user-cont/ogr/ogr/factory.py\"\ + , line 211, in get_instances_from_dict \ + \ \ + \ \r\n service_instance = service_kls(**value)\r\nTypeError:\ + \ __init__() got an unexpected keyword argument 'type'\r\n```\r\n\r\n\ + ```\r\nauthentication:\r\n gitlab.com:\r\n type: gitlab\r\n token:\ + \ \"...\"\r\n instance_url: \"https://gitlab.com/\"\r\n fedora-dist-git:\r\ + \n type: pagure\r\n instance_url: \"https://src.fedoraproject.org/\"\ + \r\n token: ...\r\n```\r\n\r\nIt's tracebacking on the `type: gitlab`\ + \ - I don't understand, what's wrong there? Especially when `type: pagure`\ + \ is fine." + closed_at: '2021-03-17T12:45:19Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26543671?v=4 + events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/followers + following_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/apps/softwarefactory-project-zuul + id: 33884098 + login: softwarefactory-project-zuul[bot] + node_id: MDM6Qm90MzM4ODQwOTg= + organizations_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/received_events + repos_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/softwarefactory-project-zuul%5Bbot%5D + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/557/comments + created_at: '2021-03-15T17:37:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/557/events + html_url: https://github.com/packit/ogr/issues/557 + id: 832040748 + labels: + - color: 008672 + default: false + description: We need more info from the requester. + id: 1432779351 + name: need-info + node_id: MDU6TGFiZWwxNDMyNzc5MzUx + url: https://api.github.com/repos/packit/ogr/labels/need-info + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/557/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MzIwNDA3NDg= + number: 557 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '`authentication: type: gitlab` results in `TypeError: __init__() + got an unexpected keyword argument ''type''`' + updated_at: '2021-03-17T12:45:19Z' + url: https://api.github.com/repos/packit/ogr/issues/557 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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/mfocko - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + url: https://api.github.com/users/TomasTomecek + _next: null + elapsed: 0.130443 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:42 GMT + ETag: W/"9c7ed88c8a7900309e8ff690679cceb7f5717d39a309164e6fe6f793bd8a786d" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 88B1:19FC:78ED55:133322B:6075DC86 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4424' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '576' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/559: + - metadata: + latency: 0.09582853317260742 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "The package is not PEP-561 compliant (see https://mypy.readthedocs.io/en/latest/installed_packages.html#creating-pep-561-compatible-packages).\r\ + \n\r\nThe file `py.typed` need to be added at the root of the ogr package." + closed_at: '2021-03-17T14:43:37Z' + closed_by: + 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} @@ -30906,175 +32092,298 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - author_association: CONTRIBUTOR - body: "We have recently added a short usage section into the README.md\ - \ (#195).\r\n\r\nIt would be nice to create a new folder in the root\ - \ of this repository called `examples` and demonstrate various ogr functions.\r\ - \n\r\nFor me, the best way how to do it is to create a [Jupyter notebook](https://jupyter.org/)\ - \ as it is supported by GitHub and we can easily combine code snippets,\ - \ with outputs and comments in Markdown.\r\n\r\n*update by @lachmanfrantisek*\r\ - \n\r\nTODO:\r\n- [ ] Update the example in the README (something short).\r\ - \n- [ ] Create a folder `examples`.\r\n- [ ] Create some interesting\ - \ examples / usecases using [jupyter-notebook](https://jupyter.org/)\ - \ in that folder (github can display the `ipynb` files pretty well).\r\ - \n - Be sure, that you are not commiting your authentication tokens..;)\r\ - \n- [ ] Link the examples in the README or link the `examples/README.md`\ - \ where we can have more descriptive text for examples and links for\ - \ the specific `ipynb` files." - closed_at: '2020-08-13T10:28:26Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/196/comments - created_at: '2019-09-12T10:02:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/196/events - html_url: https://github.com/packit/ogr/issues/196 - id: 492708275 - labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/196/labels{/name} + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/559/comments + created_at: '2021-03-15T20:43:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/559/events + html_url: https://github.com/packit/ogr/issues/559 + id: 832177415 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/559/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTI3MDgyNzU= - number: 196 + node_id: MDU6SXNzdWU4MzIxNzc0MTU= + number: 559 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Examples for ogr usage using Jupyter notebook - updated_at: '2020-08-13T10:28:26Z' - url: https://api.github.com/repos/packit/ogr/issues/196 + title: mypy cannot use the type annotation + updated_at: '2021-03-17T14:57:14Z' + url: https://api.github.com/repos/packit/ogr/issues/559 user: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 - events_url: https://api.github.com/users/rpitonak/events{/privacy} - followers_url: https://api.github.com/users/rpitonak/followers - following_url: https://api.github.com/users/rpitonak/following{/other_user} - gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/3617836?v=4 + events_url: https://api.github.com/users/Roming22/events{/privacy} + followers_url: https://api.github.com/users/Roming22/followers + following_url: https://api.github.com/users/Roming22/following{/other_user} + gists_url: https://api.github.com/users/Roming22/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/rpitonak - id: 26160778 - login: rpitonak - node_id: MDQ6VXNlcjI2MTYwNzc4 - organizations_url: https://api.github.com/users/rpitonak/orgs - received_events_url: https://api.github.com/users/rpitonak/received_events - repos_url: https://api.github.com/users/rpitonak/repos + html_url: https://github.com/Roming22 + id: 3617836 + login: Roming22 + node_id: MDQ6VXNlcjM2MTc4MzY= + organizations_url: https://api.github.com/users/Roming22/orgs + received_events_url: https://api.github.com/users/Roming22/received_events + repos_url: https://api.github.com/users/Roming22/repos site_admin: false - starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + starred_url: https://api.github.com/users/Roming22/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Roming22/subscriptions type: User - url: https://api.github.com/users/rpitonak - - active_lock_reason: null + url: https://api.github.com/users/Roming22 + _next: null + elapsed: 0.095565 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:42 GMT + ETag: W/"14fb23421ea16460e550a41efbb7d4de06b896909d759c23dc3ede6aa48efdf9" + Last-Modified: Mon, 12 Apr 2021 18:22:48 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: 88B1:19FC:78ED45:1333201:6075DC86 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4426' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '574' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/56: + - metadata: + latency: 0.10411548614501953 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: 'Fixes #449 ' - closed_at: '2020-08-13T07:00:04Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/451/comments - created_at: '2020-08-12T21:44:08Z' - events_url: https://api.github.com/repos/packit/ogr/issues/451/events - html_url: https://github.com/packit/ogr/pull/451 - id: 677997734 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/451/labels{/name} + author_association: MEMBER + body: "The `@readonly` decorator should be renamed as it can confuse newcomers\ + \ that the method itself is \"readonly\". The fact is that it has the\ + \ opposite meaning of the read-only.\r\n\r\nFeel free to add your ideas\ + \ as a single comment so we can easily vote.\r\n\r\n-----\r\n\r\nFollow-up\ + \ from #48" + closed_at: '2019-06-24T14:46:14Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/56/comments + created_at: '2019-04-09T08:17:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/56/events + html_url: https://github.com/packit/ogr/issues/56 + id: 430829968 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/56/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDY3MDIzODIw - number: 451 + node_id: MDU6SXNzdWU0MzA4Mjk5Njg= + number: 56 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/451.diff - html_url: https://github.com/packit/ogr/pull/451 - patch_url: https://github.com/packit/ogr/pull/451.patch - url: https://api.github.com/repos/packit/ogr/pulls/451 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Create issue in Github without labels - updated_at: '2020-08-13T07:00:04Z' - url: https://api.github.com/repos/packit/ogr/issues/451 + title: 'better name for @readonly decorator ' + updated_at: '2019-06-24T14:46:14Z' + url: https://api.github.com/repos/packit/ogr/issues/56 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi - - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: "Sentry Issue: [RED-HAT-0P-2RX](https://sentry.io/organizations/red-hat-0p/issues/1828647684/?referrer=github_integration)\r\ - \n\r\n```\r\nTypeError: 'NoneType' object is not iterable\r\n(2 additional\ - \ frame(s) were not displayed)\r\n...\r\n File \"packit_service/worker/handlers/abstract.py\"\ - , line 152, in run_n_clean\r\n return self.run()\r\n File \"packit_service/worker/handlers/github_handlers.py\"\ - , line 213, in run\r\n body=body_msg,\r\n File \"ogr/services/github/project.py\"\ - , line 313, in create_issue\r\n return GithubIssue.create(project=self,\ - \ title=title, body=body, labels=labels)\r\n File \"ogr/services/github/issue.py\"\ - , line 101, in create\r\n title=title, body=body, labels=labels\r\ - \n File \"github/Repository.py\", line 1063, in create_issue\r\n \ - \ assert labels is github.GithubObject.NotSet or all(isinstance(element,\ - \ github.Label.Label) or isinstance(element, str) for element in labels),\ - \ labels\r\n```\r\n\r\nRecently we added `labels` parameters to `create_issue`\ - \ method and it defaults to None, but it should probably default to\ - \ [] so that it does not fail on the line with `assert`." - closed_at: '2020-08-13T07:00:04Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/449/comments - created_at: '2020-08-10T07:47:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/449/events - html_url: https://github.com/packit/ogr/issues/449 - id: 675938538 + url: https://api.github.com/users/lachmanfrantisek + _next: null + elapsed: 0.103909 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:25 GMT + ETag: W/"9aafa410b6d1b6e1779d0e467ad27fa0d70d4e978358fde4634ae91f08163192" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 88B1:19FC:78F985:13355DB:6075DCB1 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4210' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '790' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/58: + - metadata: + latency: 0.2648897171020508 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR + body: "FML!\r\n\r\nSo my fork of packit is named source-git, not packit.\r\ + \n\r\nWe should use an API call to obtain github forks, not a guess\ + \ work." + closed_at: '2019-06-27T10:34:34Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/58/comments + created_at: '2019-04-15T11:38:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/58/events + html_url: https://github.com/packit/ogr/issues/58 + id: 433234905 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d73a4a default: true description: Something isn't working @@ -31082,103 +32391,19 @@ requests.sessions: name: bug node_id: MDU6TGFiZWwxMTYwMzExMjYy url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9e231 - default: false - description: High priority. - id: 1432779316 - name: high-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzE2 - url: https://api.github.com/repos/packit/ogr/labels/high-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/449/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/58/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NzU5Mzg1Mzg= - number: 449 + node_id: MDU6SXNzdWU0MzMyMzQ5MDU= + number: 58 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Creating issues in Github fails with TypeError: ''NoneType'' object - is not iterable' - updated_at: '2020-08-13T07:00:04Z' - url: https://api.github.com/repos/packit/ogr/issues/449 - user: - avatar_url: https://avatars2.githubusercontent.com/in/12637?v=4 - events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers - following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/sentry-io - id: 39604003 - login: sentry-io[bot] - node_id: MDM6Qm90Mzk2MDQwMDM= - organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events - repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/sentry-io%5Bbot%5D - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "and ideally link it with pull request and git project\r\n\r\nThe\ - \ expectation here is that when ogr returns name of a branch, it would\ - \ return a GitBranch instance instead.\r\n\r\nThe class should contain\ - \ at minimum:\r\n* name\r\n* be linked to a repository\r\n\r\nWould\ - \ be nice if:\r\n* there was a connection to a PR if there is one\r\n\ - * datetime it was created\r\n* datetime of last change" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/359/comments - created_at: '2020-03-23T12:36:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/359/events - html_url: https://github.com/packit/ogr/issues/359 - id: 586176845 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/359/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1ODYxNzY4NDU= - number: 359 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: introduce a class for a git branch - updated_at: '2020-08-10T09:23:58Z' - url: https://api.github.com/repos/packit/ogr/issues/359 + title: 'github: fork repository name may not match the upstream repo name' + updated_at: '2019-06-27T10:34:34Z' + url: https://api.github.com/repos/packit/ogr/issues/58 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -31196,66 +32421,71 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek - - active_lock_reason: null + _next: null + elapsed: 0.26463 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:24 GMT + ETag: W/"73e2be99ca269f3fe6e51cd0e206d8beb31b26bc68c4056cb5a3c714b2bebe8c" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 88B1:19FC:78F950:1335558:6075DCB0 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4215' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '785' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/61: + - metadata: + latency: 0.19942378997802734 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "and ideally link it with pull request, branch, author and git project\r\ - \n\r\nThe expectation here is that when ogr returns a commit has, it\ - \ would return a GitCommit instance instead.\r\n\r\nThe class should\ - \ contain at minimum:\r\n* sha\r\n* be linked to a repository\r\n* author\r\ - \n* datetime it was created\r\n* subject\r\n* body\r\n* branch it's\ - \ on\r\n\r\n@lachmanfrantisek added links to the documentation:\r\n\ - - Github:\r\n - https://pygithub.readthedocs.io/en/latest/examples/Commit.html\r\ - \n - https://pygithub.readthedocs.io/en/latest/github_objects/Commit.html\r\ - \n - https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.get_commits\r\ - \n - https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.merge_commit_sha\ - \ (?)\r\n- Gitlab:\r\n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html\r\ - \n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\ - \ -> `List commits of a MR:`\r\n- Pagure:\r\n - https://src.fedoraproject.org/api/0/\ - \ -> `Pull-request information`" - closed_at: null - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/360/comments - created_at: '2020-03-23T12:38:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/360/events - html_url: https://github.com/packit/ogr/issues/360 - id: 586178020 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/360/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1ODYxNzgwMjA= - number: 360 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: introduce a new class for GitCommit - updated_at: '2020-08-10T09:23:51Z' - url: https://api.github.com/repos/packit/ogr/issues/360 - user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + author_association: CONTRIBUTOR + body: "as integration tests needs regeneration stored yaml API communication.\r\ + \nWould be nice to add there target to be able to regenerate these files" + closed_at: '2019-06-25T14:47:44Z' + closed_by: + 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} @@ -31273,27 +32503,13 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "* [ ] Project\r\n* [ ] Service (**don't** include secrets)\r\n\ - * [ ] Release\r\n* [ ] PR\r\n* [ ] Issue" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/365/comments - created_at: '2020-03-25T13:23:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/365/events - html_url: https://github.com/packit/ogr/issues/365 - id: 587692896 + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/61/comments + created_at: '2019-04-26T07:35:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/61/events + html_url: https://github.com/packit/ogr/issues/61 + id: 437538907 labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -31301,430 +32517,347 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/365/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/61/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODc2OTI4OTY= - number: 365 + node_id: MDU6SXNzdWU0Mzc1Mzg5MDc= + number: 61 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: add __repr__ to classes - updated_at: '2020-08-10T09:23:44Z' - url: https://api.github.com/repos/packit/ogr/issues/365 + state: closed + title: create target for makefile for regeneration testing yaml files + updated_at: '2019-06-25T14:47:44Z' + url: https://api.github.com/repos/packit/ogr/issues/61 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/TomasTomecek - - active_lock_reason: null + url: https://api.github.com/users/jscotka + _next: null + elapsed: 0.199197 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:25 GMT + ETag: W/"ebd4d0c502d99971b3b587a46bc5f3d56013bb67ddb28c2416c1ab057653282d" + Last-Modified: Mon, 12 Apr 2021 14:45:59 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: 88B1:19FC:78F960:1335598:6075DCB0 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4214' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '786' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/62: + - metadata: + latency: 0.10654401779174805 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `The distgit repository /tmp/packit-dist-gitwfi22npg is dirty.This - is not supported.` | - - | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.12.1.tar.gz. - Reason: ''Not Found''. ` | - - | `master` | `The distgit repository /tmp/packit-dist-gitwfi22npg is - dirty.This is not supported.` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-08-09T16:57:04Z' + author_association: CONTRIBUTOR + body: "now each integration test class contains right one file with stored\ + \ API data.\r\nWe could reconsider it, and maybe have file for each\ + \ test, to avoid to regenerate big file and have big commits.\r\nWe\ + \ have to solve several issues:\r\n * How to handle it per test, now\ + \ there is right one service pytest fixture function what contains it\r\ + \n * How to regenerate just relevant part \r\n * maybe remove some\ + \ timestamps, UIDs and similar objects what can change on every request\r\ + \n * or manually(semiautomatically) call just affected tests - ie:\ + \ run tests, find failures (key errors) and then try to just regenerate\ + \ files for failed tests" + closed_at: '2019-04-30T19:32:17Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/423/comments - created_at: '2020-05-27T13:46:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/423/events - html_url: https://github.com/packit/ogr/issues/423 - id: 625711319 - labels: - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/423/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MjU3MTEzMTk= - number: 423 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[packit] Propose update failed for release 0.12.1' - updated_at: '2020-08-09T16:57:04Z' - url: https://api.github.com/repos/packit/ogr/issues/423 - user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Making create_issue uniform\ - \ by adding labels\n* Add support to create private issue\n* Fix getting\ - \ the installation ID after PyGithub 1.52\n* Org rename: fix integration\ - \ tests\n* zuul: org rename\n* request access to project on Gitlab\n\ - * Support add group for pagure\n* Revert \"Drop python 3.6\"\n* Update\ - \ ogr/utils.py\n* Remove unused util functions\n* Refactor using sourcery\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.13.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2020-08-07T09:09:02Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/447/comments - created_at: '2020-08-05T14:20:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/447/events - html_url: https://github.com/packit/ogr/pull/447 - id: 673578649 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/447/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/62/comments + created_at: '2019-04-26T13:21:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/62/events + html_url: https://github.com/packit/ogr/issues/62 + id: 437670314 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/62/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDYzNDE2MTE4 - number: 447 + node_id: MDU6SXNzdWU0Mzc2NzAzMTQ= + number: 62 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/447.diff - html_url: https://github.com/packit/ogr/pull/447 - patch_url: https://github.com/packit/ogr/pull/447.patch - url: https://api.github.com/repos/packit/ogr/pulls/447 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.13.0 release - updated_at: '2020-08-07T11:19:04Z' - url: https://api.github.com/repos/packit/ogr/issues/447 + title: 'testing: split yaml files with data for each test to avoid regeneration + big file and big commits' + updated_at: '2019-04-30T19:32:17Z' + url: https://api.github.com/repos/packit/ogr/issues/62 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos 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 + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot - - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `The distgit repository /tmp/packit-dist-git9pvi9zgh is dirty.This - is not supported.` | - - | `f32` | `The distgit repository /tmp/packit-dist-git9pvi9zgh is dirty.This - is not supported.` | - - | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.13.0.tar.gz. - Reason: ''Not Found''. ` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: null - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/448/comments - created_at: '2020-08-07T09:12:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/448/events - html_url: https://github.com/packit/ogr/issues/448 - id: 674879684 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/448/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2NzQ4Nzk2ODQ= - number: 448 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: '[packit] Propose update failed for release 0.13.0' - updated_at: '2020-08-07T09:12:33Z' - url: https://api.github.com/repos/packit/ogr/issues/448 - user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - - active_lock_reason: null + url: https://api.github.com/users/jscotka + _next: null + elapsed: 0.10636 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:26 GMT + ETag: W/"e4920d0fa6083d4019fdc09ceeab056327a9d5b82dd9fefc60c1a6bbc8750f2d" + Last-Modified: Mon, 12 Apr 2021 14:45:59 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: 88B1:19FC:78F9BE:133568E:6075DCB2 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4204' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '796' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/64: + - metadata: + latency: 0.11286735534667969 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-08-05T14:20:46Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/446/comments - created_at: '2020-08-05T14:16:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/446/events - html_url: https://github.com/packit/ogr/issues/446 - id: 673575463 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/446/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2NzM1NzU0NjM= - number: 446 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: New minor release - updated_at: '2020-08-05T14:20:46Z' - url: https://api.github.com/repos/packit/ogr/issues/446 - user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + author_association: CONTRIBUTOR + body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ + \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ + \nhas to be adapted, currenly I've added dependency on lower version\ + \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ + \nto avoid this issue." + closed_at: '2019-05-29T07:46:28Z' + closed_by: + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "- [x] Gitlab - Private issues are known as confidential issues\r\ - \n- [x] Github - Does not support private/confidential issues. (raised\ - \ an error here)\r\n- [x] Pagure" - closed_at: '2020-08-05T10:19:34Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/441/comments - created_at: '2020-07-30T14:00:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/441/events - html_url: https://github.com/packit/ogr/pull/441 - id: 668760747 + url: https://api.github.com/users/lachmanfrantisek + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments + created_at: '2019-04-29T14:41:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/64/events + html_url: https://github.com/packit/ogr/issues/64 + id: 438351136 labels: - - color: 0e8a16 + - color: 1d76db default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/441/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDU5MjA4ODA5 - number: 441 + node_id: MDU6SXNzdWU0MzgzNTExMzY= + number: 64 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/441.diff - html_url: https://github.com/packit/ogr/pull/441 - patch_url: https://github.com/packit/ogr/pull/441.patch - url: https://api.github.com/repos/packit/ogr/pulls/441 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add support to create private issues. - updated_at: '2020-08-05T10:19:34Z' - url: https://api.github.com/repos/packit/ogr/issues/441 + title: 'libpagure has changed ' + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/64 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/shreyaspapi + url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.112679 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="next", ; - rel="last" + Date: Tue, 13 Apr 2021 18:02:25 GMT + ETag: W/"30064b7d3456d857049cafc94791dd29cd04d57387275410becb238fd94c8e15" + Last-Modified: Mon, 12 Apr 2021 14:45:59 GMT Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F993:13355F4:6075DCB1 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4208' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '792' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=10: + https://api.github.com:443/repos/packit/ogr/issues/67: - metadata: - latency: 0.8511271476745605 + latency: 0.11073946952819824 module_call_list: - unittest.case - requre.online_replacing - tests.integration.github.test_issues - ogr.services.github.project - ogr.services.github.issue - - github.PaginatedList + - github.Issue + - github.GithubObject - github.Requester - requests.sessions - requre.objects @@ -31734,101 +32867,26 @@ requests.sessions: output: __store_indicator: 2 _content: - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "Since we merged [the PR with the basic GitLab support](https://github.com/packit-service/ogr/pull/150)\ - \ is there still something missing?\r\n\r\n- [x] service mapping (#156\ - \ )\r\n- [x] fix the mix of new and old API (#167 )\r\n- [x] missing\ - \ methods:\r\n - [x] forking: https://github.com/packit-service/ogr/issues/168\r\ - \n - [x] owners and permissions: https://github.com/packit-service/ogr/issues/169\r\ - \n - [x] get_sha_from_tag: https://github.com/packit-service/ogr/issues/170\r\ - \n - [x] issue labels: https://github.com/packit-service/ogr/issues/171\r\ - \n - [x] commit comment/status: https://github.com/packit-service/ogr/issues/172\r\ - \n - [x] pr close/merge: https://github.com/packit-service/ogr/issues/173\r\ - \n - [x] PR labels: https://github.com/packit-service/ogr/issues/174\r\ - \n - [x] project info: https://github.com/packit-service/ogr/issues/175\r\ - \n - [x] latest release: https://github.com/packit-service/ogr/issues/176\r\ - \n\r\n" - closed_at: '2019-09-26T10:59:39Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/158/comments - created_at: '2019-08-15T15:29:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/158/events - html_url: https://github.com/packit/ogr/issues/158 - id: 481206920 - labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/158/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0ODEyMDY5MjA= - number: 158 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Missing features in GitLab implementation - updated_at: '2019-09-26T10:59:40Z' - url: https://api.github.com/repos/packit/ogr/issues/158 - user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + body: "While debugging https://github.com/packit-service/packit/issues/305\ + \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ + \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ + \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ attribute has a value `rpm/packit`, while libpagure probably expects\ + \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ + \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ + \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ + \ expects `/` in `self.repo`, which is probably not what `libpagure`\ + \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ + \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ + \ even more recently." + closed_at: '2019-05-29T07:46:28Z' + closed_by: + 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} @@ -31846,141 +32904,278 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #169. I used https://docs.gitlab.com/ee/user/permissions.html#project-members-permissions, - but I am not sure about the permission for closing of the project issues, - I couldn''t find more information about that.' - closed_at: '2019-09-26T10:43:42Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/207/comments - created_at: '2019-09-18T13:54:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/207/events - html_url: https://github.com/packit/ogr/pull/207 - id: 495242377 + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments + created_at: '2019-05-10T11:09:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/67/events + html_url: https://github.com/packit/ogr/issues/67 + id: 442664622 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 0e8a16 + - color: 1d76db default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/207/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE4ODI1OTA4 - number: 207 + node_id: MDU6SXNzdWU0NDI2NjQ2MjI= + number: 67 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/207.diff - html_url: https://github.com/packit/ogr/pull/207 - patch_url: https://github.com/packit/ogr/pull/207.patch - url: https://api.github.com/repos/packit/ogr/pulls/207 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: methods for permissions - updated_at: '2019-09-26T10:43:42Z' - url: https://api.github.com/repos/packit/ogr/issues/207 + title: libpagure.Pagure expects '/' not in repo attribute + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/67 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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} + url: https://api.github.com/users/jpopelka + _next: null + elapsed: 0.110557 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:25 GMT + ETag: W/"a2e1cd1c698874d1ac7ff67b8a23a9443cfa8964be5814888c2d57f26491c02a" + Last-Modified: Fri, 09 Apr 2021 14:26:36 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: 88B1:19FC:78F99A:13355FE:6075DCB1 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4207' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '793' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/68: + - metadata: + latency: 0.10051989555358887 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-05-13T12:52:45Z' + closed_by: + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova - assignees: - - avatar_url: https://avatars3.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} + url: https://api.github.com/users/usercont-release-bot + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/68/comments + created_at: '2019-05-13T12:50:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/68/events + html_url: https://github.com/packit/ogr/issues/68 + id: 443380561 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/68/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDMzODA1NjE= + number: 68 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-05-13T12:52:45Z' + url: https://api.github.com/repos/packit/ogr/issues/68 + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/jpopelka + _next: null + elapsed: 0.100307 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:25 GMT + ETag: W/"10b55a8251fad2078c5a4625943a2560effbc0fe9b8bb48eb34c9ef1818992e7" + Last-Modified: Fri, 09 Apr 2021 14:26:36 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: 88B1:19FC:78F9A0:133560D:6075DCB1 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4206' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '794' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/73: + - metadata: + latency: 0.20123624801635742 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "```python\r\n def get_owners(self) -> List[str]:\r\n \ - \ raise NotImplementedError()\r\n\r\n def who_can_close_issue(self)\ - \ -> Set[str]:\r\n raise NotImplementedError()\r\n\r\n def\ - \ who_can_merge_pr(self) -> Set[str]:\r\n raise NotImplementedError()\r\ - \n\r\n def can_close_issue(self, username: str, issue: Issue) ->\ - \ bool:\r\n raise NotImplementedError()\r\n\r\n def can_merge_pr(self,\ - \ username) -> bool:\r\n raise NotImplementedError()\r\n```\r\ - \n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-members\r\ - \n- https://docs.gitlab.com/ce/api/members.html" - closed_at: '2019-09-26T10:43:41Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/169/comments - created_at: '2019-09-06T07:20:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/169/events - html_url: https://github.com/packit/ogr/issues/169 - id: 490171859 + body: "What about changing `CommitStatus`/`PullRequestStatus` to `CommitFlag`/`PullRequestFlag`?\r\ + \n\r\n_Original discussion: https://github.com/packit-service/ogr/pull/71#pullrequestreview-240461635_" + closed_at: '2019-07-17T12:52:02Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/73/comments + created_at: '2019-05-29T07:10:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/73/events + html_url: https://github.com/packit/ogr/issues/73 + id: 449635096 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -31988,6 +33183,13 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor - color: 42e529 default: false description: This issue was already processed and well defined. @@ -31995,19 +33197,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/169/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/73/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzE4NTk= - number: 169 + node_id: MDU6SXNzdWU0NDk2MzUwOTY= + number: 73 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for owners and permissions - updated_at: '2019-09-26T10:43:41Z' - url: https://api.github.com/repos/packit/ogr/issues/169 + title: Change "Status" to "Flag" in the class names + updated_at: '2019-07-17T12:52:02Z' + url: https://api.github.com/repos/packit/ogr/issues/73 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -32025,65 +33227,109 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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} + _next: null + elapsed: 0.200939 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:21 GMT + ETag: W/"c59a3e233d94baf66a98189cac03292f0e4ce0d6e6fabc780fd7fec1e44fb02f" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 88B1:19FC:78F884:13352E7:6075DCAD + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4230' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '770' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/74: + - metadata: + latency: 0.20141148567199707 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ + \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" + closed_at: '2019-07-11T08:48:44Z' + closed_by: + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova - author_association: MEMBER - body: "```python\r\n def get_pr_labels(self, pr_id: int) -> List:\r\ - \n pass\r\n\r\n def add_pr_labels(self, pr_id, labels) ->\ - \ None:\r\n pass\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ - \n- https://docs.gitlab.com/ee/api/merge_requests.html" - closed_at: '2019-09-25T08:50:51Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/174/comments - created_at: '2019-09-06T07:23:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/174/events - html_url: https://github.com/packit/ogr/issues/174 - id: 490172937 + url: https://api.github.com/users/lachmanfrantisek + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments + created_at: '2019-05-29T07:12:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/74/events + html_url: https://github.com/packit/ogr/issues/74 + id: 449635655 labels: - - color: d93f0b + - color: '000000' default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: a2eeef default: false description: New feature or a request for enhancement. @@ -32105,19 +33351,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/174/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzI5Mzc= - number: 174 + node_id: MDU6SXNzdWU0NDk2MzU2NTU= + number: 74 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for PR labels (merge-request labels) - updated_at: '2019-09-25T08:50:51Z' - url: https://api.github.com/repos/packit/ogr/issues/174 + title: Add a link to `GitTag` from `Release`. + updated_at: '2019-07-11T08:48:44Z' + url: https://api.github.com/repos/packit/ogr/issues/74 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -32135,155 +33381,218 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #171, #174' - closed_at: '2019-09-25T08:34:08Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/198/comments - created_at: '2019-09-12T12:07:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/198/events - html_url: https://github.com/packit/ogr/pull/198 - id: 492763927 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/198/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODczMjYx - number: 198 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/198.diff - html_url: https://github.com/packit/ogr/pull/198 - patch_url: https://github.com/packit/ogr/pull/198.patch - url: https://api.github.com/repos/packit/ogr/pulls/198 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: methods for pr and issue labels - updated_at: '2019-09-25T08:34:08Z' - url: https://api.github.com/repos/packit/ogr/issues/198 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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} + _next: null + elapsed: 0.201245 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:22 GMT + ETag: W/"975726ec8aeb3d52d10d4b73c344c4ac8951b74541d5e5930de8aa515e891e7c" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 88B1:19FC:78F8DA:13353CF:6075DCAE + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4225' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '775' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/76: + - metadata: + latency: 0.1006462574005127 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-06-11T13:19:01Z' + closed_by: + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova - author_association: MEMBER - body: "```python\r\n def get_issue_labels(self, issue_id: int) -> List:\r\ - \n raise NotImplementedError()\r\n\r\n def add_issue_labels(self,\ - \ issue_id, labels) -> None:\r\n raise NotImplementedError()\r\ - \n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ - \n- https://docs.gitlab.com/ce/api/issues.html" - closed_at: '2019-09-25T08:34:08Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/171/comments - created_at: '2019-09-06T07:22:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/171/events - html_url: https://github.com/packit/ogr/issues/171 - id: 490172449 + url: https://api.github.com/users/usercont-release-bot + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/76/comments + created_at: '2019-06-11T13:18:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/76/events + html_url: https://github.com/packit/ogr/issues/76 + id: 454685925 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/171/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/76/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzI0NDk= - number: 171 + node_id: MDU6SXNzdWU0NTQ2ODU5MjU= + number: 76 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for issue labels - updated_at: '2019-09-25T08:34:08Z' - url: https://api.github.com/repos/packit/ogr/issues/171 + title: new minor release + updated_at: '2019-06-11T13:19:01Z' + url: https://api.github.com/repos/packit/ogr/issues/76 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.100435 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:25 GMT + ETag: W/"c03a5da7506814e6163f9923bfc84b40baa4c3def79fc380998de58b94ed2c67" + Last-Modified: Fri, 09 Apr 2021 14:26:36 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: 88B1:19FC:78F98D:13355EA:6075DCB1 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4209' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '791' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/79: + - metadata: + latency: 0.11599326133728027 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "I'm trying to implement ogr into [release-bot](https://github.com/user-cont/release-bot)\ + \ and it's a little bit painful without documentation from ogr. \r\n\ + \r\nI was playing with ogr on my Github projects and everything is working\ + \ fine. When I tried to reimplement [release-bot's](https://github.com/user-cont/release-bot)\ + \ functionalities which communicate with Github via GraphQL or rest\ + \ API I got stuck. \r\n\r\nOne of the examples could be comments. I\ + \ want to implement commenting on Github issues and PRs via ogr. \r\n\ + - In [release-bot](https://github.com/user-cont/release-bot) it works\ + \ via graphQL and sending some `node_id` inside query which recognizes\ + \ a PR or an Issue. \r\n- In ogr there is `pr_comment` function in ogr/services/github.py.\ + \ If am I right this is an alternative I'm looking for. However, I don't\ + \ fully understand the function's parameters since it needs something\ + \ else then API query.\r\n\r\nI understand that this could be a very\ + \ complex problem since ogr need to preserve compatibility with all\ + \ git forges. I'm just looking for some starting point on how to change\ + \ GraphQL/rest API with ogr. Maybe I just misunderstand some ogr's fundamentals.\r\ + \n" + closed_at: '2019-06-27T12:40:34Z' + closed_by: + 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} @@ -32301,26 +33610,12 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "In GitProject we do not have a method for getting web URL of the\ - \ project.\r\n\r\nAC:\r\n\r\n- [ ] Add the method to `abstract.GitProject`.\ - \ (And raise `NotImplementedError`.)\r\n- [ ] Implement the method for\ - \ all forges (GitHub, GitLab, Pagure).\r\n- [ ] Add tests for this method.\r\ - \n\r\nLinks:\r\n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ - \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ - \n https://docs.gitlab.com/ce/api/projects.html\r\n- https://pagure.io/api/0/#projects\r\ - \n\r\nExamples:\r\n- https://github.com/packit-service/ogr\r\n- https://gitlab.com/packit-service/ogr-tests\r\ - \n- https://pagure.io/ogr-tests/" - closed_at: '2019-09-24T08:53:16Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/213/comments - created_at: '2019-09-19T19:19:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/213/events - html_url: https://github.com/packit/ogr/issues/213 - id: 495981567 + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/79/comments + created_at: '2019-06-17T22:01:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/79/events + html_url: https://github.com/packit/ogr/issues/79 + id: 457168292 labels: - color: '000000' default: false @@ -32329,257 +33624,152 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/213/labels{/name} + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/79/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU5ODE1Njc= - number: 213 + node_id: MDU6SXNzdWU0NTcxNjgyOTI= + number: 79 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitProject.get_url() - updated_at: '2019-09-25T06:07:53Z' - url: https://api.github.com/repos/packit/ogr/issues/213 + title: Add compatibility with Github's GraphQL API v4 and rest API v3 + updated_at: '2019-06-27T12:40:34Z' + url: https://api.github.com/repos/packit/ogr/issues/79 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null + url: https://api.github.com/users/marusinm + _next: null + elapsed: 0.115763 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:24 GMT + ETag: W/"b935ff4c0718dc7ee659bbd68b77586d1e97fbb2c84c2f0c954400811fcdc157" + Last-Modified: Thu, 11 Mar 2021 08:45:04 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: 88B1:19FC:78F948:133554C:6075DCB0 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4216' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '784' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/8: + - metadata: + latency: 0.11460685729980469 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Fixes: #143 \r\n\r\n*edited by @lachmanfrantisek to close this\ - \ after merge*" - closed_at: '2019-09-19T14:18:04Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/210/comments - created_at: '2019-09-19T11:24:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/210/events - html_url: https://github.com/packit/ogr/pull/210 - id: 495738504 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/210/labels{/name} + author_association: CONTRIBUTOR + body: "* [x] don't fail when PAGURE_{TOKEN,USER} are not specified\r\n\ + * [x] mock remote API and write complete unit tests using those data\ + \ (or even have a single test suite and enable it to run against live\ + \ instance and mocked data)\r\n* [x] [tox](https://developer.fedoraproject.org/tech/languages/python/multiple-pythons.html)-ify\ + \ it (#27)" + closed_at: '2019-06-25T08:59:43Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/8/comments + created_at: '2019-01-30T10:19:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/8/events + html_url: https://github.com/packit/ogr/issues/8 + id: 404698352 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/8/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE5MjI3MjM2 - number: 210 + node_id: MDU6SXNzdWU0MDQ2OTgzNTI= + number: 8 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/210.diff - html_url: https://github.com/packit/ogr/pull/210 - patch_url: https://github.com/packit/ogr/pull/210.patch - url: https://api.github.com/repos/packit/ogr/pulls/210 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add trim parameter to set_commit_status method - updated_at: '2019-09-19T15:46:39Z' - url: https://api.github.com/repos/packit/ogr/issues/210 + title: Improve testing + updated_at: '2019-06-25T08:59:43Z' + url: https://api.github.com/repos/packit/ogr/issues/8 user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "```\r\nTraceback (most recent call last): \ - \ \ - \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ - , line 385, in trace_task \ - \ \r\n R = retval = fun(*args,\ - \ **kwargs) \ - \ \ - \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ - , line 648, in __protected_call__ \ - \ \r\n return self.run(*args,\ - \ **kwargs) \ - \ \ - \ \r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ - , line 42, in process_message \ - \ \r\n return SteveJobs().process_message(event=event,\ - \ topic=topic) \ - \ \r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 126, in process_message \ - \ \r\n jobs_results = self.process_jobs(event_object)\ - \ \ - \ \r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 92, in process_jobs \ - \ \r\n handlers_results[job.job.value]\ - \ = handler.run() \ - \ \ - \ \r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/github_handlers.py\"\ - , line 330, in run \ - \ \r\n return self.handle_pull_request() \ - \ \ - \ \r\n\ - \ File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/github_handlers.py\"\ - , line 305, in handle_pull_request \ - \ \r\n r.report(\"failure\", msg)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/handler.py\"\ - , line 84, in report\r\n self.commit_sha, state, url, description,\ - \ check_name\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/read_only.py\"\ - , line 68, in readonly_func\r\n return func(self, *args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ - , line 541, in set_commit_status\r\n github_commit.create_status(state,\ - \ target_url, description, context)\r\n File \"/usr/local/lib/python3.7/site-packages/github/Commit.py\"\ - , line 189, in create_status\r\n input=post_parameters\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/github/Requester.py\", line\ - \ 276, in requestJsonAndCheck\r\n return self.__check(*self.requestJson(verb,\ - \ url, parameters, headers, input, self.__customConnection(url)))\r\n\ - \ File \"/usr/local/lib/python3.7/site-packages/github/Requester.py\"\ - , line 287, in __check\r\n raise self.__createException(status, responseHeaders,\ - \ output)\r\ngithub.GithubException.GithubException: 422 {'message':\ - \ 'Validation Failed', 'errors': [{'resource': 'Status', 'code': 'custom',\ - \ 'field': 'description', 'message': 'descript\r\nion is too long (maximum\ - \ is 140 characters)'}], 'documentation_url': 'https://developer.github.com/v3/repos/statuses/#create-a-status'}\r\ - \n```" - closed_at: '2019-09-19T14:18:04Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/143/comments - created_at: '2019-08-08T09:03:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/143/events - html_url: https://github.com/packit/ogr/issues/143 - id: 478340513 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9e231 - default: false - description: High priority. - id: 1432779316 - name: high-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzE2 - url: https://api.github.com/repos/packit/ogr/labels/high-prio - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/143/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NzgzNDA1MTM= - number: 143 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: GitHub check descriptions can only be 140 chars long - updated_at: '2019-09-19T14:18:04Z' - url: https://api.github.com/repos/packit/ogr/issues/143 - user: - avatar_url: https://avatars0.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} + 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 @@ -32593,163 +33783,107 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #172 ' - closed_at: '2019-09-19T09:46:56Z' - comments: 13 - comments_url: https://api.github.com/repos/packit/ogr/issues/206/comments - created_at: '2019-09-18T13:16:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/206/events - html_url: https://github.com/packit/ogr/pull/206 - id: 495219552 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/206/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE4ODA3MTU3 - number: 206 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/206.diff - html_url: https://github.com/packit/ogr/pull/206 - patch_url: https://github.com/packit/ogr/pull/206.patch - url: https://api.github.com/repos/packit/ogr/pulls/206 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: methods for commit status and commit comment - updated_at: '2019-09-19T09:46:56Z' - url: https://api.github.com/repos/packit/ogr/issues/206 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null + _next: null + elapsed: 0.102769 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:25 GMT + ETag: W/"9c31bf5a1152d3a4f249d2aacb8fe75473c8c7a584e93f961193b23410aaf431" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 88B1:19FC:78F977:13355C0:6075DCB1 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4212' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '788' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/80: + - metadata: + latency: 0.10884213447570801 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/marusinm assignees: - - avatar_url: https://avatars3.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} + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/lbarcziova - author_association: MEMBER - body: "```python\r\n def commit_comment(\r\n self, commit: str,\ - \ body: str, filename: str = None, row: int = None\r\n ) -> \"CommitComment\"\ - :\r\n raise NotImplementedError()\r\n\r\n def set_commit_status(\r\ - \n self, commit: str, state: str, target_url: str, description:\ - \ str, context: str\r\n ) -> \"CommitFlag\":\r\n raise NotImplementedError()\r\ - \n\r\n def get_commit_statuses(self, commit: str) -> List[CommitFlag]:\r\ - \n \"\"\"\r\n Something like this:\r\n commit_object\ - \ = self.gitlab_repo.commits.get(commit)\r\n raw_statuses = commit_object.statuses.list()\r\ - \n return [\r\n GitlabProject._commit_status_from_gitlab_object(raw_status)\r\ - \n for raw_status in raw_statuses\r\n ]\r\n \ - \ \"\"\"\r\n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html\r\ - \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-comments\r\ - \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status" - closed_at: '2019-09-19T09:46:56Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/172/comments - created_at: '2019-09-06T07:23:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/172/events - html_url: https://github.com/packit/ogr/issues/172 - id: 490172659 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/172/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0OTAxNzI2NTk= - number: 172 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Implement GitLab methods for commits - updated_at: '2019-09-19T09:46:56Z' - url: https://api.github.com/repos/packit/ogr/issues/172 - user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + url: https://api.github.com/users/marusinm + author_association: COLLABORATOR + body: 'Based on our discussion on Issue #79, there is no functionality + in ogr for commenting on Github/Pagure issues.' + closed_at: '2019-07-10T06:57:03Z' + closed_by: + 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} @@ -32767,71 +33901,13 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "```python\r\n def project_create(self, repo: str, namespace:\ - \ str = None) -> \"GithubProject\":\r\n pass\r\n```\r\n\r\nThe\ - \ methods for creating projects are in two places:\r\n\r\n- user:\r\n\ - \ - [Github.get_user](https://pygithub.readthedocs.io/en/latest/github.html#github.MainClass.Github.get_user)\r\ - \n - [User.create_repo](https://pygithub.readthedocs.io/en/latest/github_objects/AuthenticatedUser.html#github.AuthenticatedUser.AuthenticatedUser.create_repo)\r\ - \n- namespace:\r\n - [Github.get_organization](https://pygithub.readthedocs.io/en/latest/github.html#github.MainClass.Github.get_organization)\r\ - \n - [Organization.create_repo](https://pygithub.readthedocs.io/en/latest/github_objects/Organization.html#github.Organization.Organization.create_repo)\r\ - \n\r\nAC:\r\n\r\n- [x] implement the method in `GithubService`\r\n-\ - \ [x] create at least two tests for that (with and without specifying\ - \ `namespace`)\r\n" - closed_at: '2019-09-19T09:13:21Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/203/comments - created_at: '2019-09-18T09:06:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/203/events - html_url: https://github.com/packit/ogr/issues/203 - id: 495090506 + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/80/comments + created_at: '2019-06-19T07:21:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/80/events + html_url: https://github.com/packit/ogr/issues/80 + id: 457847996 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: a2eeef default: false description: New feature or a request for enhancement. @@ -32839,33 +33915,106 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/203/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/80/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTUwOTA1MDY= - number: 203 + node_id: MDU6SXNzdWU0NTc4NDc5OTY= + number: 80 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitHub method for create_project - updated_at: '2019-09-19T09:27:27Z' - url: https://api.github.com/repos/packit/ogr/issues/203 + title: Commenting on Issues + updated_at: '2019-07-10T06:57:03Z' + url: https://api.github.com/repos/packit/ogr/issues/80 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + _next: null + elapsed: 0.108613 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:23 GMT + ETag: W/"46c760ebd30738363bdc93b6f1c3f5acbbb3cf30f495da142b57b4d88779f6cf" + Last-Modified: Thu, 11 Mar 2021 08:45:04 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: 88B1:19FC:78F8F4:1335429:6075DCAF + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4223' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '777' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/82: + - metadata: + latency: 0.1092069149017334 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\nHi, see lines in: https://github.com/packit-service/ogr/blob/master/tests/integration/test_github.py#L20\r\ + \nSo for regenereation these files, you have to use syntax eg:\r\n``FORCE_WRITE=yes\ + \ GITHUB_TOKEN=yourtoken GITHUB_USER=yourname pytest3 tests/integration/test_github.py``\r\ + \nor this will also work ``FORCE_WRITE=yes GITHUB_TOKEN=yourtoken GITHUB_USER=yourname\ + \ make check`` with make check, you have to have set PAGURE_TOKEN and\ + \ USER env vars\r\n```\r\n\r\n_Originally posted by @jscotka in https://github.com/packit-service/ogr/issues/80#issuecomment-503991164_\r\ + \n" + closed_at: '2019-06-27T12:56:06Z' + closed_by: + 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} @@ -32883,44 +34032,346 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/82/comments + created_at: '2019-06-21T09:12:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/82/events + html_url: https://github.com/packit/ogr/issues/82 + id: 459096186 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/82/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTkwOTYxODY= + number: 82 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Document how to save HTTP sessions for sake of testing + updated_at: '2019-06-27T12:56:06Z' + url: https://api.github.com/repos/packit/ogr/issues/82 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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.108956 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:24 GMT + ETag: W/"20a741bcf2794d3d1bed898c662cbf95eeff8a7d5616b8f854fd1c6b3c9707b6" + Last-Modified: Tue, 13 Apr 2021 15:04:09 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: 88B1:19FC:78F943:1335531:6075DCB0 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4217' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '783' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/86: + - metadata: + latency: 0.15033721923828125 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: MEMBER - body: 'Fixes #203 ' - closed_at: '2019-09-19T09:13:22Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/208/comments - created_at: '2019-09-19T06:12:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/208/events - html_url: https://github.com/packit/ogr/pull/208 - id: 495593829 + body: "- [x] Forward some object to the issue/pr/... instances to allow\ + \ connection to the service. (Classes are not only data-holders.)\r\n\ + - [x] All ogr classes to have properties with setters allowing to update\ + \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ + - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ + \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ + \ \r\n" + closed_at: null + closed_by: null + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments + created_at: '2019-06-25T13:15:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/86/events + html_url: https://github.com/packit/ogr/issues/86 + id: 460418171 labels: - - color: 0e8a16 + - color: 134ac1 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/208/labels{/name} + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE5MTEwNjY0 - number: 208 + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0NjA0MTgxNzE= + number: 86 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/208.diff - html_url: https://github.com/packit/ogr/pull/208 - patch_url: https://github.com/packit/ogr/pull/208.patch - url: https://api.github.com/repos/packit/ogr/pulls/208 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: github method for creating projects added - updated_at: '2019-09-19T09:13:22Z' - url: https://api.github.com/repos/packit/ogr/issues/208 + state: open + title: object-specific methods bound to ogr classes + updated_at: '2021-02-04T19:34:29Z' + url: https://api.github.com/repos/packit/ogr/issues/86 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.150058 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:47 GMT + ETag: W/"ff68db2cac4ecf77285ec29b17b05b9a7b06fad44311b6fbcc497d2f257eea67" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 88B1:19FC:78EE9C:1333645:6075DC8B + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4396' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '604' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/87: + - metadata: + latency: 0.1335916519165039 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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} @@ -32938,61 +34389,14 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions type: User url: https://api.github.com/users/lbarcziova - - active_lock_reason: null - assignee: null - assignees: [] author_association: MEMBER - body: "- [x] Update Pagure response files and fix the tests.\r\n- [x]\ - \ Update GitHub response files and fix the tests.\r\n- ~~[ ] Update\ - \ GitLab response files and fix the tests if needed.~~\r\n\r\nFixes\ - \ #181 " - closed_at: '2019-09-19T08:09:47Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/202/comments - created_at: '2019-09-17T13:18:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/202/events - html_url: https://github.com/packit/ogr/pull/202 - id: 494619035 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/202/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE4MzM1NjYw - number: 202 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/202.diff - html_url: https://github.com/packit/ogr/pull/202 - patch_url: https://github.com/packit/ogr/pull/202.patch - url: https://api.github.com/repos/packit/ogr/pulls/202 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Update tests and response files - updated_at: '2019-09-19T08:09:51Z' - url: https://api.github.com/repos/packit/ogr/issues/202 - user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + body: "Add methods to `GithubProject`/`PagureProject` for editing title\ + \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ + \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ + \ information " + closed_at: '2019-06-28T06:51:21Z' + closed_by: + 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} @@ -33010,49 +34414,54 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Currently, we need to know the author of the generated files, because\ - \ we do not know the owner of the fork we are using. (When we are not\ - \ setting the `PAGURE_USER` token, e.i. in CI.)\r\n\r\nAI: Fix the need\ - \ of `LAST_GENERATED_BY = ` constant." - closed_at: '2019-09-19T08:09:47Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/181/comments - created_at: '2019-09-09T08:16:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/181/events - html_url: https://github.com/packit/ogr/issues/181 - id: 490947039 + comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments + created_at: '2019-06-26T07:17:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/87/events + html_url: https://github.com/packit/ogr/issues/87 + id: 460802132 labels: - - color: f9d0c4 + - color: '000000' default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 42e529 + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/181/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTA5NDcwMzk= - number: 181 + node_id: MDU6SXNzdWU0NjA4MDIxMzI= + number: 87 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Avoid saving author of the last generated response-files - updated_at: '2019-09-19T08:09:47Z' - url: https://api.github.com/repos/packit/ogr/issues/181 + title: ' Update pull-request information' + updated_at: '2019-06-28T06:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/87 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -33070,149 +34479,180 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: '' - closed_at: '2019-09-19T07:00:59Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/194/comments - created_at: '2019-09-12T08:49:07Z' - events_url: https://api.github.com/repos/packit/ogr/issues/194/events - html_url: https://github.com/packit/ogr/issues/194 - id: 492670435 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/194/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0OTI2NzA0MzU= - number: 194 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Release 0.7.0 by /packit propose-update - updated_at: '2019-09-19T07:00:59Z' - url: https://api.github.com/repos/packit/ogr/issues/194 - user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + _next: null + elapsed: 0.133227 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:24 GMT + ETag: W/"3e0ce9f7568aa5eb5375e46588be1f13c19af80c07f5f2296a2feeeea7c71205" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 88B1:19FC:78F938:1335514:6075DCB0 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4218' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '782' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/88: + - metadata: + latency: 0.19797444343566895 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/phracek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-09-17T09:05:10Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/200/comments - created_at: '2019-09-13T12:21:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/200/events - html_url: https://github.com/packit/ogr/pull/200 - id: 493295672 - labels: - - color: dd5f74 - default: false - description: Work in progress. - id: 1432779248 - name: do-not-merge - node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 - url: https://api.github.com/repos/packit/ogr/labels/do-not-merge - labels_url: https://api.github.com/repos/packit/ogr/issues/200/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE3MzAxMTYz - number: 200 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/200.diff - html_url: https://github.com/packit/ogr/pull/200 - patch_url: https://github.com/packit/ogr/pull/200.patch - url: https://api.github.com/repos/packit/ogr/pulls/200 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'WIP: use requre project and list modules for next work' - updated_at: '2019-09-17T09:07:25Z' - url: https://api.github.com/repos/packit/ogr/issues/200 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + url: https://api.github.com/users/marusinm + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/jscotka - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/marusinm author_association: MEMBER - body: '- Use returned GitLab repo instance in GitlabService.project_create.' - closed_at: '2019-09-12T18:18:59Z' + body: "It would be useful to have a method for getting the owner(s) of\ + \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ + \ `get_owners` and return list of strings." + closed_at: '2019-07-18T07:11:53Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/197/comments - created_at: '2019-09-12T10:18:06Z' - events_url: https://api.github.com/repos/packit/ogr/issues/197/events - html_url: https://github.com/packit/ogr/pull/197 - id: 492715580 + comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments + created_at: '2019-06-26T07:44:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/88/events + html_url: https://github.com/packit/ogr/issues/88 + id: 460813032 labels: - - color: d93f0b + - color: '000000' default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 0e8a16 + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/197/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODM0MDQ1 - number: 197 + node_id: MDU6SXNzdWU0NjA4MTMwMzI= + number: 88 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/197.diff - html_url: https://github.com/packit/ogr/pull/197 - patch_url: https://github.com/packit/ogr/pull/197.patch - url: https://api.github.com/repos/packit/ogr/pulls/197 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Set GitLab object on project_create - updated_at: '2019-09-12T19:29:31Z' - url: https://api.github.com/repos/packit/ogr/issues/197 + title: Add get_owner/get_owners method to project classes + updated_at: '2019-07-18T07:11:53Z' + url: https://api.github.com/repos/packit/ogr/issues/88 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -33230,202 +34670,130 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "In `packit-service`, I am using method `who_can_merge_pr` for getting\ - \ users who can merge PR.\r\n\r\n* `get_owners` for repository `packit-service/packit-service`\ - \ returns list `['packit-service']`\r\n```\r\n[2019-07-22 08:52:07,528:\ - \ DEBUG/ForkPoolWorker-1] Repository owners ['packit-service']\r\n```\r\ - \n* `who_can_merge_pr` for repository `rebase-helper/rebase-helper`\ - \ returns list like `{'FrNecas', 'uhliarik', 'phracek', 'nforro', 'thozza'}`\ - \ but for `packit-service/packit-service` repo it failed with traceback\r\ - \n\r\n```\r\n[2019-07-22 08:52:08,368: ERROR/ForkPoolWorker-1] Task\ - \ task.steve_jobs.process_message[9c44c1c8-5cf7-4a98-88d5-b0dbaca0262f]\ - \ raised unexpected: AttributeError(\"'Repository' object has no attribute\ - \ 'get_collaborator_permission'\")\r\nTraceback (most recent call last):\r\ - \n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ - , line 385, in trace_task\r\n R = retval = fun(*args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ - , line 648, in __protected_call__\r\n return self.run(*args, **kwargs)\r\ - \n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ - , line 31, in process_message\r\n return SteveJobs().process_message(event=event,\ - \ topic=topic)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 383, in process_message\r\n jobs_results = self.process_jobs(trigger,\ - \ package_config, event, project)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 341, in process_jobs\r\n handlers_results[job.job.value] =\ - \ handler.run()\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 793, in run\r\n return self.handle_pull_request()\r\n File\ - \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 717, in handle_pull_request\r\n collaborators = self.project.who_can_merge_pr()\r\ - \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ - , line 254, in who_can_merge_pr\r\n collaborators = self._get_collaborators_with_permission()\r\ - \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ - , line 294, in _get_collaborators_with_permission\r\n permission\ - \ = self.github_repo.get_collaborator_permission(user)\r\nAttributeError:\ - \ 'Repository' object has no attribute 'get_collaborator_permission'\r\ - \n```\r\n\r\nFunction GITHUB API function which gets all collaborators\ - \ returns\r\n```\r\n[2019-07-22 08:52:08,136: DEBUG/ForkPoolWorker-1]\ - \ GET https://api.github.com/repos/packit-service/hello-world/collaborators\ - \ \r\n{'Authorization': 'token (oauth token removed)', 'User-Agent':\ - \ 'PyGithub/Python'} None ==> 200 {'date': 'Mon, 22 Jul 2019 08:52:05\ - \ GMT', 'content-type': 'application/json; charset=utf-8', 'content-length':\ - \ '9897', 'server': 'GitHub.com', 'status': '200 OK', 'x-ratelimit-limit':\ - \ '5000', 'x-ratelimit-remaining': '4997', 'x-ratelimit-reset': '1563789120',\ - \ 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept-Encoding',\ - \ 'etag': '\"608e280b2b2bc2d96b1393ce9c294cee\"', 'x-github-media-type':\ - \ 'github.v3; format=json', 'access-control-expose-headers': 'ETag,\ - \ Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining,\ - \ X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval,\ - \ X-GitHub-Media-Type', 'access-control-allow-origin': '*', 'strict-transport-security':\ - \ 'max-age=31536000; includeSubdomains; preload', 'x-frame-options':\ - \ 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1;\ - \ mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin',\ - \ 'content-security-policy': \"default-src 'none'\", 'x-github-request-id':\ - \ '1110:253E:289043:3B0BB6:5D357935'}b'[\r\n{\"login\":\"jpopelka\"\ - ,\"id\":288686,\"node_id\":\"MDQ6VXNlcjI4ODY4Ng==\",\"avatar_url\":\"\ - https://avatars0.githubusercontent.com/u/288686?v=4\",\"gravatar_id\"\ - :\"\",\"url\":\"https://api.github.com/users/jpopelka\",\"html_url\"\ - :\"https://github.com/jpopelka\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/jpopelka/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/jpopelka/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/jpopelka/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/jpopelka/repos\",\"events_url\"\ - :\"https://api.github.com/users /jpopelka/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/jpopelka/received_events\",\"type\"\ - :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"TomasTomecek\",\"id\":1662493,\"\ - node_id\":\"MDQ6VXNlcjE2NjI0OTM=\",\"avatar_url\":\"https://avatars0.githubusercontent.com/u/1662493?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/TomasTomecek\"\ - ,\"html_url\":\"https://github.com/TomasTomecek\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/TomasTomecek/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/TomasTomecek/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/TomasTomecek/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/TomasTomecek/repos\",\"\ - events_url\":\"https://api.github.com/users/TomasTomecek/events{/privacy}\"\ - ,\"received_events_url\":\"https://api.github.com/users/TomasTomecek/received_events\"\ - ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ - push\":true,\"pull\":true}},\r\n{\"login\":\"eliskasl\",\"id\":1866652,\"\ - node_id\":\"MDQ6VXNlcjE4NjY2NTI=\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/1866652?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/eliskasl\"\ - ,\"html_url\":\"https://github.com/eliskasl\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/eliskasl/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/eliskasl/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/eliskasl/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/eliskasl/repos\",\"events_url\"\ - :\"https://api.github.com/users/eliskasl/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/ eliskasl/received_events\",\"type\"\ - :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"phracek\",\"id\":3416672,\"node_id\"\ - :\"MDQ6VXNlcjM0MTY2NzI=\",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/3416672?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/phracek\"\ - ,\"html_url\":\"https://github.com/phracek\",\"followers_url\":\"https://api.github.com/users/phracek/followers\"\ - ,\"following_url\":\"https://api.github.com/users/phracek/following{/other_user}\"\ - ,\"gists_url\":\"https://api.github.com/users/phracek/gists{/gist_id}\"\ - ,\"starred_url\":\"https://api.github.com/users/phracek/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/phracek/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/phracek/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/phracek/repos\",\"events_url\"\ - :\"https://api.github.com/users/phracek/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/phracek/received_events\",\"type\":\"\ - User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"jscotka\",\"id\":8735467,\"node_id\"\ - :\"MDQ6VXNlcjg3MzU0Njc=\",\"avatar_url\":\"https://avatars0.githubusercontent.com/u/8735467?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/jscotka\"\ - ,\"html_url\":\"https://github.com/jscotka\",\"followers_url\":\"https://api.github.com/users/jscotka/followers\"\ - ,\"following_url\":\"https://api.github.com/users/jscotka/following{/other_user}\"\ - ,\"gists_url\":\"https://api.github.com/users/jscotka/gists{/gist_id}\"\ - ,\"starred_url\":\"https://api.github.com/users/jscotka/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/jscotka/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/jscotka/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/jscotka/repos\",\"events_url\"\ - :\"https://api.github.com/users/jscotka/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/jscotka/received_events\",\"type\":\"\ - User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},{\"login\":\"lachmanfrantisek\",\"id\":202140\ - \ 43,\"node_id\":\"MDQ6VXNlcjIwMjE0MDQz\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/20214043?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/lachmanfrantisek\"\ - ,\"html_url\":\"https://github.com/lachmanfrantisek\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/lachmanfrantisek/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/lachmanfrantisek/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/lachmanfrantisek/repos\"\ - ,\"events_url\":\"https://api.github.com/users/lachmanfrantisek/events{/privacy}\"\ - ,\"received_events_url\":\"https://api.github.com/users/lachmanfrantisek/received_events\"\ - ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ - push\":true,\"pull\":true}},\r\n{\"login\":\"rpitonak\",\"id\":26160778,\"\ - node_id\":\"MDQ6VXNlcjI2MTYwNzc4\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/26160778?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/rpitonak\"\ - ,\"html_url\":\"https://github.com/rpitonak\",\"followers_url\":\"https://api.github.com/users/rpitonak/followers\"\ - ,\"following_url\":\"https://api.github.com/users/rpitonak/following{/other_user}\"\ - ,\"gists_url\":\"https://api.github.com/users/rpitonak/gists{/gist_id}\"\ - ,\"starred_url\":\"https://api.github.com/users/rpitonak/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/rpitonak/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/rpitonak/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/rpitonak/repos\",\"events_url\"\ - :\"https://api.github.com/users/rpitonak/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/rpitonak/received_events\",\"type\"\ - :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"dhodovsk\",\"id\":31201372,\"\ - node_id\":\"MDQ6VXNlcjMxMjAxMzcy \",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/31201372?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/dhodovsk\"\ - ,\"html_url\":\"https://github.com/dhodovsk\",\"followers_url\":\"https://api.github.com/users/dhodovsk/followers\"\ - ,\"following_url\":\"https://api.github.com/users/dhodovsk/following{/other_user}\"\ - ,\"gists_url\":\"https://api.github.com/users/dhodovsk/gists{/gist_id}\"\ - ,\"starred_url\":\"https://api.github.com/users/dhodovsk/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/dhodovsk/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/dhodovsk/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/dhodovsk/repos\",\"events_url\"\ - :\"https://api.github.com/users/dhodovsk/events{/privacy}\",\"received_events_url\"\ - :\"https://api.github.com/users/dhodovsk/received_events\",\"type\"\ - :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ - :true,\"pull\":true}},\r\n{\"login\":\"usercont-release-bot\",\"id\"\ - :36231209,\"node_id\":\"MDQ6VXNlcjM2MjMxMjA5\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/36231209?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/usercont-release-bot\"\ - ,\"html_url\":\"https://github.com/usercont-release-bot\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/usercont-release-bot/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/usercont-release-bot/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/usercont-release-bot/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/usercont-release-bot/repos\"\ - ,\"events_url\":\"https://api.github.com/users/usercont-release-bot/events{/privacy}\"\ - ,\"received_events_url\":\"https://api.github.com/users/usercont-release-bot/received_events\"\ - ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ - push\":true,\"pull\":true}},\r\n{\"login\":\"lbarcziova\",\"id\":49026743,\"\ - node_id\": \"MDQ6VXNlcjQ5MDI2NzQz\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/49026743?v=4\"\ - ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/lbarcziova\"\ - ,\"html_url\":\"https://github.com/lbarcziova\",\"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}\"\ - ,\"starred_url\":\"https://api.github.com/users/lbarcziova/starred{/owner}{/repo}\"\ - ,\"subscriptions_url\":\"https://api.github.com/users/lbarcziova/subscriptions\"\ - ,\"organizations_url\":\"https://api.github.com/users/lbarcziova/orgs\"\ - ,\"repos_url\":\"https://api.github.com/users/lbarcziova/repos\",\"\ - events_url\":\"https://api.github.com/users/lbarcziova/events{/privacy}\"\ - ,\"received_events_url\":\"https://api.github.com/users/lbarcziova/received_events\"\ - ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ - push\":true,\"pull\":true}}]'\r\n```" - closed_at: '2019-09-12T11:13:02Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/132/comments - created_at: '2019-07-22T09:03:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/132/events - html_url: https://github.com/packit/ogr/issues/132 - id: 470977370 + _next: null + elapsed: 0.19778 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:21 GMT + ETag: W/"706bb9a44272dc3beda64b5216d921e8e6ff33aa8c4ce1530006bb303c84a336" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 88B1:19FC:78F879:13352D1:6075DCAD + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4231' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '769' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/90: + - metadata: + latency: 0.16575217247009277 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + author_association: MEMBER + body: It would be nice to implement `__str__` methods for all classes + (e.g. `GithubProject`, `Issue`,...). + closed_at: '2019-07-10T06:51:37Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments + created_at: '2019-06-27T10:29:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/90/events + html_url: https://github.com/packit/ogr/issues/90 + id: 461449910 labels: - color: '000000' default: false @@ -33434,44 +34802,107 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/132/labels{/name} + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzA5NzczNzA= - number: 132 + node_id: MDU6SXNzdWU0NjE0NDk5MTA= + number: 90 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: fnc `who_can_merge_pr` fails with traceback - updated_at: '2019-09-12T15:19:54Z' - url: https://api.github.com/repos/packit/ogr/issues/132 + title: String representations for classes + updated_at: '2019-07-10T06:51:37Z' + url: https://api.github.com/repos/packit/ogr/issues/90 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + 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/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + 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/phracek - - active_lock_reason: null + url: https://api.github.com/users/lachmanfrantisek + _next: null + elapsed: 0.165486 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:23 GMT + ETag: W/"b82d8503f56935c2de25774ecb3f682160c8b0c3be2bfa77b5228db7a4235c15" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 88B1:19FC:78F8FA:1335444:6075DCAF + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4222' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '778' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/91: + - metadata: + latency: 0.11349129676818848 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR @@ -33537,6 +34968,25 @@ requests.sessions: \nhttps://pagure.io/pagure/issue/4512\r\nhttps://github.com/packit-service/packit/issues/328\r\ \n" closed_at: '2019-09-12T11:17:19Z' + closed_by: + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 + events_url: https://api.github.com/users/rpitonak/events{/privacy} + followers_url: https://api.github.com/users/rpitonak/followers + following_url: https://api.github.com/users/rpitonak/following{/other_user} + gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/rpitonak + id: 26160778 + login: rpitonak + node_id: MDQ6VXNlcjI2MTYwNzc4 + organizations_url: https://api.github.com/users/rpitonak/orgs + received_events_url: https://api.github.com/users/rpitonak/received_events + repos_url: https://api.github.com/users/rpitonak/repos + site_admin: false + starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + type: User + url: https://api.github.com/users/rpitonak comments: 1 comments_url: https://api.github.com/repos/packit/ogr/issues/91/comments created_at: '2019-06-27T10:41:41Z' @@ -33557,7 +35007,7 @@ requests.sessions: updated_at: '2019-09-12T11:17:20Z' url: https://api.github.com/repos/packit/ogr/issues/91 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -33575,97 +35025,355 @@ requests.sessions: subscriptions_url: https://api.github.com/users/phracek/subscriptions type: User url: https://api.github.com/users/phracek - - active_lock_reason: null + _next: null + elapsed: 0.113279 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:16 GMT + ETag: W/"4a81738105d6bd1cb234e00a25896781874286399218827800dbd06ede09849f" + Last-Modified: Fri, 26 Mar 2021 11:22:47 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: 88B1:19FC:78F736:1334ED4:6075DCA8 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4250' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '750' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues/96: + - metadata: + latency: 0.27144432067871094 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.Issue + - github.GithubObject + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "see log: \r\nhttps://softwarefactory-project.io/logs/13/513/8c3c6370096e5834c90dc5ff06e47cf9f3443cde/check/tests-pip-deps/cd79e16/job-output.txt.gz\r\ - \nwith git master it works, but pypi and rpm version of ogr fails with\ - \ errors like:\r\n**TypeError: __init__() got an unexpected keyword\ - \ argument 'exception'**\r\n\r\n```\r\n self = .ClassWithPersistentStorage\ - \ object at 0x7fa913e99450>\r\n2019-09-06 07:32:25.448747 | test-node\ - \ | url = 'https://src.fedoraproject.org//api/0/rpms/python-ogr/git/branches'\r\ - \n2019-09-06 07:32:25.448840 | test-node | method = 'GET', params =\ - \ None, data = None, header = None\r\n2019-09-06 07:32:25.448859 | test-node\ - \ |\r\n2019-09-06 07:32:25.448868 | test-node | def get_raw_request(\r\ - \n2019-09-06 07:32:25.448909 | test-node | self, url, method=\"\ - GET\", params=None, data=None, header=None\r\n2019-09-06 07:32:25.448924\ - \ | test-node | ):\r\n2019-09-06 07:32:25.448949 | test-node | \ - \ keys_internal = [method, url, params, data]\r\n2019-09-06 07:32:25.448977\ - \ | test-node | if self.persistent_storage.is_write_mode:\r\n\ - 2019-09-06 07:32:25.449005 | test-node | output = super().get_raw_request(\r\ - \n2019-09-06 07:32:25.449038 | test-node | url, method=method,\ - \ params=params, data=data, header=header\r\n2019-09-06 07:32:25.449066\ - \ | test-node | )\r\n2019-09-06 07:32:25.449078 | test-node\ - \ | self.persistent_storage.store(\r\n2019-09-06 07:32:25.449120\ - \ | test-node | keys=keys_internal, values=output.to_json_format()\r\ - \n2019-09-06 07:32:25.449148 | test-node | )\r\n2019-09-06\ - \ 07:32:25.449159 | test-node | else:\r\n2019-09-06 07:32:25.449190\ - \ | test-node | output_dict = self.persistent_storage.read(keys=keys_internal)\r\ - \n2019-09-06 07:32:25.449242 | test-node | > output = RequestResponse(**output_dict)\r\ - \n2019-09-06 07:32:25.449276 | test-node | E TypeError: __init__()\ - \ got an unexpected keyword argument 'exception'\r\n```" - closed_at: '2019-09-12T11:08:06Z' + body: "ReleaseBot, we would like to release a new version.\r\n\r\nThanks\ + \ in advance!" + closed_at: '2019-06-28T08:43:29Z' + closed_by: + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/177/comments - created_at: '2019-09-06T07:58:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/177/events - html_url: https://github.com/packit/ogr/issues/177 - id: 490185857 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/177/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/96/comments + created_at: '2019-06-28T08:38:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/96/events + html_url: https://github.com/packit/ogr/issues/96 + id: 461923699 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/96/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxODU4NTc= - number: 177 + node_id: MDU6SXNzdWU0NjE5MjM2OTk= + number: 96 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: adding storing exception to RecordRequest class in utils caused - regression - updated_at: '2019-09-12T11:08:06Z' - url: https://api.github.com/repos/packit/ogr/issues/177 + title: new minor release + updated_at: '2019-06-28T08:43:29Z' + url: https://api.github.com/repos/packit/ogr/issues/96 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/lachmanfrantisek + _next: null + elapsed: 0.271198 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:24 GMT + ETag: W/"0bf90597eed99fce8cf1d45ad4a480b5e1981104ec328200e94a19c2cdbebb53" + Last-Modified: Tue, 13 Apr 2021 07:06:49 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: 88B1:19FC:78F920:13354DF:6075DCAF + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4219' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '781' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repos/packit/ogr/issues?state=all&sort=updated&direction=desc: + - metadata: + latency: 0.385969877243042 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Refactor exceptions for non-supported features,\r\nchanging NotImplementedError\ + \ to OperationNotSupported\r\nwhere a method is not supported on a particular\ + \ Git forge.\r\n\r\nFixes ogr issue #478.\r\n\r\nSigned-off-by: Ben\ + \ Crocker \r\n" + closed_at: null + comments: 16 + comments_url: https://api.github.com/repos/packit/ogr/issues/564/comments + created_at: '2021-03-29T02:54:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/564/events + html_url: https://github.com/packit/ogr/pull/564 + id: 842920232 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/564/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjAyMzc4MzU5 + number: 564 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/564.diff + html_url: https://github.com/packit/ogr/pull/564 + patch_url: https://github.com/packit/ogr/pull/564.patch + url: https://api.github.com/repos/packit/ogr/pulls/564 + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Refactor exceptions for non-supported features, + updated_at: '2021-04-13T16:46:22Z' + url: https://api.github.com/repos/packit/ogr/issues/564 + user: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: When new people come to the OGR repository, I think it is worth - to have a simple example on the top part of README.md demonstrating - the usage. WDYT? - closed_at: '2019-09-12T10:57:56Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/195/comments - created_at: '2019-09-12T09:33:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/195/events - html_url: https://github.com/packit/ogr/pull/195 - id: 492693187 + body: '' + closed_at: '2021-04-13T06:20:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/568/comments + created_at: '2021-04-12T17:13:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/568/events + html_url: https://github.com/packit/ogr/pull/568 + id: 856181069 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/568/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjEzODAxMzc3 + number: 568 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/568.diff + html_url: https://github.com/packit/ogr/pull/568 + patch_url: https://github.com/packit/ogr/pull/568.patch + url: https://api.github.com/repos/packit/ogr/pulls/568 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-04-13T06:23:27Z' + url: https://api.github.com/repos/packit/ogr/issues/568 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: FIRST_TIME_CONTRIBUTOR + body: "Implemented list projects for GitServices (#485 )\r\n\r\n@lachmanfrantisek\ + \ \r\n@csomh " + closed_at: null + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/538/comments + created_at: '2021-02-12T04:22:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/538/events + html_url: https://github.com/packit/ogr/pull/538 + id: 806932377 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/538/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTcyMjY0NjU2 + number: 538 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/538.diff + html_url: https://github.com/packit/ogr/pull/538 + patch_url: https://github.com/packit/ogr/pull/538.patch + url: https://api.github.com/repos/packit/ogr/pulls/538 + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Implemented list projects for GitServices (#485 ) + updated_at: '2021-04-12T13:55:03Z' + url: https://api.github.com/repos/packit/ogr/issues/538 + user: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-04-06T07:07:24Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/567/comments + created_at: '2021-04-05T17:11:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/567/events + html_url: https://github.com/packit/ogr/pull/567 + id: 850515743 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -33673,55 +35381,275 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/195/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/567/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODE1NjE1 - number: 195 + node_id: MDExOlB1bGxSZXF1ZXN0NjA5MDc2MzEw + number: 567 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/195.diff - html_url: https://github.com/packit/ogr/pull/195 - patch_url: https://github.com/packit/ogr/pull/195.patch - url: https://api.github.com/repos/packit/ogr/pulls/195 + diff_url: https://github.com/packit/ogr/pull/567.diff + html_url: https://github.com/packit/ogr/pull/567 + patch_url: https://github.com/packit/ogr/pull/567.patch + url: https://api.github.com/repos/packit/ogr/pulls/567 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-04-06T07:07:26Z' + url: https://api.github.com/repos/packit/ogr/issues/567 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Makefile: Rewrite the prepare-check target to check for key\r\n\ + files (/usr/bin/python3.*, /usr/bin/tox, /usr/bin/requre-patch,\r\n\ + and /usr/share/doc/python3-flexmock) and install the requisite packages\r\ + \nif they are absent:\r\n\r\n- python36 (minimum)\r\n- python3-tox\r\ + \n- python3-requre\r\n- python3-flexmock\r\n\r\nCONTRIBUTING.md:\r\n\ + \r\nMention conditional installation of python3-requre and python3-flexmock.\r\ + \n" + closed_at: null + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/566/comments + created_at: '2021-03-31T18:05:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/566/events + html_url: https://github.com/packit/ogr/pull/566 + id: 847064663 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/566/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjA2MTA1OTc4 + number: 566 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/566.diff + html_url: https://github.com/packit/ogr/pull/566 + patch_url: https://github.com/packit/ogr/pull/566.patch + url: https://api.github.com/repos/packit/ogr/pulls/566 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Quickstart example - updated_at: '2019-09-12T10:57:56Z' - url: https://api.github.com/repos/packit/ogr/issues/195 + state: open + title: Update prepare-check to install python3-requre, python3-flexmock + updated_at: '2021-04-01T11:57:06Z' + url: https://api.github.com/repos/packit/ogr/issues/566 + user: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-03-29T17:45:41Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/565/comments + created_at: '2021-03-29T16:56:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/565/events + html_url: https://github.com/packit/ogr/pull/565 + id: 843571484 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/565/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NjAyOTMzODIy + number: 565 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/565.diff + html_url: https://github.com/packit/ogr/pull/565 + patch_url: https://github.com/packit/ogr/pull/565.patch + url: https://api.github.com/repos/packit/ogr/pulls/565 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-03-29T17:45:41Z' + url: https://api.github.com/repos/packit/ogr/issues/565 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Current API appears to be fully functional and sufficiently covered\ + \ by tests for GitHub and Pagure.\r\n\r\n## Services\r\n\r\n### GitHub\ + \ + GitLab\r\n\r\n- allows creating fork of forks\r\n- allows creating\ + \ PRs from one fork to another\r\n\r\n### Pagure\r\n\r\n- doesn't allow\ + \ creating fork of forks\r\n- allows creating PRs on a project (assuming\ + \ it's not a fork) or from fork to upstream\r\n\r\n## Current implementation\r\ + \n\r\n```python\r\ndef create_pr(\r\n self,\r\n title: str,\r\n body:\ + \ str,\r\n target_branch: str,\r\n source_branch: str,\r\n fork_username:\ + \ str = None,\r\n) -> \"PullRequest\":\r\n```\r\n\r\n## Example objects\ + \ used later\r\n\r\n```python\r\nupstream_project = service.get_project(namespace=\"\ + packit-service\", repo=\"ogr\")\r\nmy_fork = service.get_project(namespace=\"\ + mfocko\", repo=\"ogr\")\r\nfork_of_different_user = service.get_project(namespace=\"\ + lachmanfrantisek\", repo=\"ogr\")\r\n```" + closed_at: null + comments: 18 + comments_url: https://api.github.com/repos/packit/ogr/issues/412/comments + created_at: '2020-05-19T20:57:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/412/events + html_url: https://github.com/packit/ogr/issues/412 + id: 621279784 + labels: + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/412/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjEyNzk3ODQ= + number: 412 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Revisiting API for creating PRs + updated_at: '2021-03-26T14:19:55Z' + url: https://api.github.com/repos/packit/ogr/issues/412 user: - avatar_url: https://avatars3.githubusercontent.com/u/26160778?v=4 - events_url: https://api.github.com/users/rpitonak/events{/privacy} - followers_url: https://api.github.com/users/rpitonak/followers - following_url: https://api.github.com/users/rpitonak/following{/other_user} - gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + 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/rpitonak - id: 26160778 - login: rpitonak - node_id: MDQ6VXNlcjI2MTYwNzc4 - organizations_url: https://api.github.com/users/rpitonak/orgs - received_events_url: https://api.github.com/users/rpitonak/received_events - repos_url: https://api.github.com/users/rpitonak/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + 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/rpitonak + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Fixes #168 \r\nTest for creating fork succeeded first time and\ - \ since that it has been failing and I can't find out the reason." - closed_at: '2019-09-12T10:04:42Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/192/comments - created_at: '2019-09-11T12:39:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/192/events - html_url: https://github.com/packit/ogr/pull/192 - id: 492212114 + assignee: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar + author_association: MEMBER + body: "It would be nice to be able to list projects for given criteria:\r\ + \n\r\n- namespace\r\n- owner\r\n- search patter\r\n- order options (name,\ + \ update, activity, ...) (ascending x descending)\r\n- ... feel free\ + \ to add/propose more (we can implement only a subset for the first\ + \ version)\r\n\r\n\r\nAdd `list_projects` method:\r\n- [ ] to the `abstract.py`\ + \ to the `GitService` class\r\n- [ ] for each implementaion `GithubService`,\ + \ `GitlabService`, `PagureService`\r\n- [ ] implement all (or a subset)\ + \ of the options from the criteria list above" + closed_at: null + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/485/comments + created_at: '2020-10-15T12:35:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/485/events + html_url: https://github.com/packit/ogr/issues/485 + id: 722295054 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -33729,152 +35657,84 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef + - color: be8fd8 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 0e8a16 + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/192/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/485/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2NDI3NjE1 - number: 192 + node_id: MDU6SXNzdWU3MjIyOTUwNTQ= + number: 485 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/192.diff - html_url: https://github.com/packit/ogr/pull/192 - patch_url: https://github.com/packit/ogr/pull/192.patch - url: https://api.github.com/repos/packit/ogr/pulls/192 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Forking methods - updated_at: '2019-09-12T10:04:42Z' - url: https://api.github.com/repos/packit/ogr/issues/192 + state: open + title: Listing of the projects + updated_at: '2021-03-26T13:18:56Z' + url: https://api.github.com/repos/packit/ogr/issues/485 user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "```python\r\n @property\r\n def is_fork(self) -> bool:\r\n\ - \ raise NotImplementedError()\r\n\r\n @property\r\n def\ - \ parent(self) -> Optional[\"GitlabProject\"]:\r\n raise NotImplementedError()\r\ - \n\r\n def is_forked(self) -> bool:\r\n raise NotImplementedError()\r\ - \n\r\n def get_fork(self, create: bool = True) -> Optional[\"GitlabProject\"\ - ]:\r\n raise NotImplementedError()\r\n\r\n```\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\ - \ -> Fork a project\r\n- An old snippet of code that may be helpful:\r\ - \n\r\n```python\r\n @staticmethod\r\n def is_fork_of(user_repo,\ - \ target_repo):\r\n \"\"\" is provided repo fork of the {parent_repo}/?\ - \ \"\"\"\r\n return user_repo.forked_from_project[\"id\"] ==\ - \ target_repo.id\r\n\r\n def fork(self, target_repo):\r\n \ - \ target_repo_org, target_repo_name = target_repo.split(\"/\", 1)\r\n\ - \r\n target_repo_gl = self.gitlab_instance.projects.get(target_repo)\r\ - \n\r\n try:\r\n # is it already forked?\r\n \ - \ user_repo = self.gitlab_instance.projects.get(\r\n \ - \ \"{}/{}\".format(self.user.get_username(), target_repo_name)\r\ - \n )\r\n if not self.is_fork_of(user_repo, target_repo_gl):\r\ - \n raise RuntimeError(\r\n \"repo\ - \ %s is not a fork of %s\" % (user_repo, target_repo_gl)\r\n \ - \ )\r\n except Exception:\r\n # nope\r\n \ - \ user_repo = None\r\n\r\n if self.user.get_username()\ - \ == target_repo_org:\r\n # user wants to fork its own repo;\ - \ let's just set up remotes 'n stuff\r\n if not user_repo:\r\ - \n raise RuntimeError(\"repo %s not found\" % target_repo_name)\r\ - \n clone_repo_and_cd_inside(\r\n user_repo.path,\ - \ user_repo.attributes[\"ssh_url_to_repo\"], target_repo_org\r\n \ - \ )\r\n else:\r\n user_repo = user_repo or\ - \ self._fork_gracefully(target_repo_gl)\r\n\r\n clone_repo_and_cd_inside(\r\ - \n user_repo.path, user_repo.attributes[\"ssh_url_to_repo\"\ - ], target_repo_org\r\n )\r\n\r\n set_upstream_remote(\r\ - \n clone_url=target_repo_gl.attributes[\"http_url_to_repo\"\ - ],\r\n ssh_url=target_repo_gl.attributes[\"ssh_url_to_repo\"\ - ],\r\n pull_merge_name=\"merge-requests\",\r\n \ - \ )\r\n set_origin_remote(\r\n user_repo.attributes[\"\ - ssh_url_to_repo\"], pull_merge_name=\"merge-requests\"\r\n )\r\ - \n fetch_all()\r\n\r\n @staticmethod\r\n def _fork_gracefully(target_repo):\r\ - \n \"\"\" fork if not forked, return forked repo \"\"\"\r\n \ - \ try:\r\n logger.info(\"forking repo %s\", target_repo)\r\ - \n fork = target_repo.forks.create({})\r\n except\ - \ gitlab.GitlabCreateError:\r\n logger.error(\"repo %s cannot\ - \ be forked\" % target_repo)\r\n raise RuntimeError(\"repo\ - \ %s not found\" % target_repo)\r\n\r\n return fork\r\n```" - closed_at: '2019-09-12T10:04:41Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/168/comments - created_at: '2019-09-06T07:20:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/168/events - html_url: https://github.com/packit/ogr/issues/168 - id: 490171633 + body: "There is a [check-runs API](https://docs.github.com/en/rest/reference/checks)\ + \ that allows more functionality and e.g `neutral` state requested in\ + \ https://github.com/packit/packit-service/issues/760.\r\n\r\nUnfortunately,\ + \ it's [not implemented in PyGithub yet](https://github.com/PyGithub/PyGithub/issues/1621).\r\ + \n\r\nThis project builds on top of `PyGithub` and implements that:\ + \ https://github.com/webknjaz/check-in/blob/master/check_in/github_api.py\r\ + \n\r\nWe can either help on `PyGithub` side or implement it here or\ + \ wait for `PyGithub`." + closed_at: null + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/461/comments + created_at: '2020-09-08T07:02:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/461/events + html_url: https://github.com/packit/ogr/issues/461 + id: 695610247 labels: - - color: d93f0b + - color: '000000' default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: a2eeef default: false description: New feature or a request for enhancement. @@ -33882,33 +35742,26 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + - color: ff9990 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/168/labels{/name} + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + labels_url: https://api.github.com/repos/packit/ogr/issues/461/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzE2MzM= - number: 168 + node_id: MDU6SXNzdWU2OTU2MTAyNDc= + number: 461 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Implement GitLab methods for forking - updated_at: '2019-09-12T10:04:41Z' - url: https://api.github.com/repos/packit/ogr/issues/168 + state: open + title: '[github] Use check-runs for richer API' + updated_at: '2021-03-26T13:15:58Z' + url: https://api.github.com/repos/packit/ogr/issues/461 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -33926,18 +35779,175 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/20273495?v=4 + events_url: https://api.github.com/users/bcrocker15/events{/privacy} + followers_url: https://api.github.com/users/bcrocker15/followers + following_url: https://api.github.com/users/bcrocker15/following{/other_user} + gists_url: https://api.github.com/users/bcrocker15/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/bcrocker15 + id: 20273495 + login: bcrocker15 + node_id: MDQ6VXNlcjIwMjczNDk1 + organizations_url: https://api.github.com/users/bcrocker15/orgs + received_events_url: https://api.github.com/users/bcrocker15/received_events + repos_url: https://api.github.com/users/bcrocker15/repos + site_admin: false + starred_url: https://api.github.com/users/bcrocker15/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/bcrocker15/subscriptions + type: User + url: https://api.github.com/users/bcrocker15 + author_association: MEMBER + body: "Change all exceptions that are raised for an unsupported feature\ + \ to `OperationNotSupported` (from the default `NotImplementedError`)\r\ + \n\r\ncloser info: https://github.com/packit/ogr/pull/477#discussion_r503077265" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/478/comments + created_at: '2020-10-12T12:23:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/478/events + html_url: https://github.com/packit/ogr/issues/478 + id: 719337260 + labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/478/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MTkzMzcyNjA= + number: 478 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Refactor exceptions for non-supported features + updated_at: '2021-03-25T16:21:38Z' + url: https://api.github.com/repos/packit/ogr/issues/478 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-03-22T18:05:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/563/comments + created_at: '2021-03-22T17:06:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/563/events + html_url: https://github.com/packit/ogr/pull/563 + id: 837931345 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/563/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTk4MTkyMTYy + number: 563 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/563.diff + html_url: https://github.com/packit/ogr/pull/563 + patch_url: https://github.com/packit/ogr/pull/563.patch + url: https://api.github.com/repos/packit/ogr/pulls/563 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-03-22T18:08:07Z' + url: https://api.github.com/repos/packit/ogr/issues/563 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #173 + fix of get_pr_list and get_issue_list' - closed_at: '2019-09-12T08:58:35Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/191/comments - created_at: '2019-09-11T12:07:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/191/events - html_url: https://github.com/packit/ogr/pull/191 - id: 492196881 + body: '' + closed_at: '2021-03-19T10:10:52Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/562/comments + created_at: '2021-03-18T12:23:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/562/events + html_url: https://github.com/packit/ogr/pull/562 + id: 834742552 labels: - color: 0e8a16 default: false @@ -33946,173 +35956,159 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/191/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/562/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2NDE1MTM4 - number: 191 + node_id: MDExOlB1bGxSZXF1ZXN0NTk1NTA0ODUy + number: 562 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/191.diff - html_url: https://github.com/packit/ogr/pull/191 - patch_url: https://github.com/packit/ogr/pull/191.patch - url: https://api.github.com/repos/packit/ogr/pulls/191 + diff_url: https://github.com/packit/ogr/pull/562.diff + html_url: https://github.com/packit/ogr/pull/562 + patch_url: https://github.com/packit/ogr/pull/562.patch + url: https://api.github.com/repos/packit/ogr/pulls/562 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: pr close, merge methods - updated_at: '2019-09-12T08:58:35Z' - url: https://api.github.com/repos/packit/ogr/issues/191 + title: 0.23.0 release + updated_at: '2021-03-19T10:13:05Z' + url: https://api.github.com/repos/packit/ogr/issues/562 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/jpopelka - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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} + assignee: null + assignees: [] + author_association: NONE + body: "The package is not PEP-561 compliant (see https://mypy.readthedocs.io/en/latest/installed_packages.html#creating-pep-561-compatible-packages).\r\ + \n\r\nThe file `py.typed` need to be added at the root of the ogr package." + closed_at: '2021-03-17T14:43:37Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/559/comments + created_at: '2021-03-15T20:43:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/559/events + html_url: https://github.com/packit/ogr/issues/559 + id: 832177415 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/559/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MzIxNzc0MTU= + number: 559 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: mypy cannot use the type annotation + updated_at: '2021-03-17T14:57:14Z' + url: https://api.github.com/repos/packit/ogr/issues/559 + user: + avatar_url: https://avatars.githubusercontent.com/u/3617836?v=4 + events_url: https://api.github.com/users/Roming22/events{/privacy} + followers_url: https://api.github.com/users/Roming22/followers + following_url: https://api.github.com/users/Roming22/following{/other_user} + gists_url: https://api.github.com/users/Roming22/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/Roming22 + id: 3617836 + login: Roming22 + node_id: MDQ6VXNlcjM2MTc4MzY= + organizations_url: https://api.github.com/users/Roming22/orgs + received_events_url: https://api.github.com/users/Roming22/received_events + repos_url: https://api.github.com/users/Roming22/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/Roming22/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Roming22/subscriptions type: User - url: https://api.github.com/users/lbarcziova - author_association: MEMBER - body: "```python\r\n def pr_close(self, pr_id: int) -> \"PullRequest\"\ - :\r\n pass\r\n\r\n def pr_merge(self, pr_id: int) -> \"PullRequest\"\ - :\r\n pass\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ - \n- https://docs.gitlab.com/ee/api/merge_requests.html" - closed_at: '2019-09-12T08:58:35Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/173/comments - created_at: '2019-09-06T07:23:24Z' - events_url: https://api.github.com/repos/packit/ogr/issues/173/events - html_url: https://github.com/packit/ogr/issues/173 - id: 490172801 + url: https://api.github.com/users/Roming22 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "By running `pre-commit run --all-files` getting the below error\ + \ without using the strict mode. I am not sure what NotSet does in this\ + \ case.\r\n```\r\nogr/services/github/service.py:169: error: Module\ + \ has no attribute \"NotSet\"\r\n```\r\nThe changes were made in this\ + \ PR - https://github.com/packit/ogr/pull/476\r\n\r\n" + closed_at: '2021-03-16T04:50:13Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/490/comments + created_at: '2020-10-21T05:27:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/490/events + html_url: https://github.com/packit/ogr/issues/490 + id: 726145698 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: '000000' default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/173/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/490/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzI4MDE= - number: 173 + node_id: MDU6SXNzdWU3MjYxNDU2OTg= + number: 490 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab methods for pr close/merge - updated_at: '2019-09-12T08:58:35Z' - url: https://api.github.com/repos/packit/ogr/issues/173 + title: GithubObject has no attribute "NotSet" + updated_at: '2021-03-17T14:44:59Z' + url: https://api.github.com/repos/packit/ogr/issues/490 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Implement service.project_create for GitLab.\r\n\r\n\r\n(reason:\ - \ I would like to use OGR in my [figitool](https://gitlab.fi.muni.cz/xlachma1/figitool)\ - \ and this functionality is missing.)" - closed_at: '2019-09-12T08:09:14Z' + body: '' + closed_at: '2021-03-17T12:45:18Z' comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/189/comments - created_at: '2019-09-11T07:58:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/189/events - html_url: https://github.com/packit/ogr/pull/189 - id: 492077676 + comments_url: https://api.github.com/repos/packit/ogr/issues/561/comments + created_at: '2021-03-16T14:25:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/561/events + html_url: https://github.com/packit/ogr/pull/561 + id: 832857847 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -34120,138 +36116,370 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/189/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/561/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2MzIwMzE0 - number: 189 + node_id: MDExOlB1bGxSZXF1ZXN0NTkzOTUwNzI5 + number: 561 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/189.diff - html_url: https://github.com/packit/ogr/pull/189 - patch_url: https://github.com/packit/ogr/pull/189.patch - url: https://api.github.com/repos/packit/ogr/pulls/189 + diff_url: https://github.com/packit/ogr/pull/561.diff + html_url: https://github.com/packit/ogr/pull/561 + patch_url: https://github.com/packit/ogr/pull/561.patch + url: https://api.github.com/repos/packit/ogr/pulls/561 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Creating Gitlab projects - updated_at: '2019-09-12T08:09:18Z' - url: https://api.github.com/repos/packit/ogr/issues/189 + title: 'Authentication type: `gitlab` results in `TypeError`' + updated_at: '2021-03-17T14:29:37Z' + url: https://api.github.com/repos/packit/ogr/issues/561 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n File \"/home/tt/g/user-cont/packit/packit/schema.py\"\ + , line 440, in make_instance \ + \ \ + \ \r\n return Config(**data) \ + \ \ + \ \r\ + \n File \"/home/tt/g/user-cont/packit/packit/config/config.py\", line\ + \ 99, in __init__ \ + \ \r\n self.services\ + \ = Config.load_authentication(kwargs) \ + \ \ + \ \r\n File \"/home/tt/g/user-cont/packit/packit/config/config.py\"\ + , line 164, in load_authentication \ + \ \r\n\ + \ services = get_instances_from_dict(instances=raw_dict[\"authentication\"\ + ]) \ + \ \r\n File \"/home/tt/g/user-cont/ogr/ogr/factory.py\"\ + , line 211, in get_instances_from_dict \ + \ \ + \ \r\n service_instance = service_kls(**value)\r\nTypeError:\ + \ __init__() got an unexpected keyword argument 'type'\r\n```\r\n\r\n\ + ```\r\nauthentication:\r\n gitlab.com:\r\n type: gitlab\r\n token:\ + \ \"...\"\r\n instance_url: \"https://gitlab.com/\"\r\n fedora-dist-git:\r\ + \n type: pagure\r\n instance_url: \"https://src.fedoraproject.org/\"\ + \r\n token: ...\r\n```\r\n\r\nIt's tracebacking on the `type: gitlab`\ + \ - I don't understand, what's wrong there? Especially when `type: pagure`\ + \ is fine." + closed_at: '2021-03-17T12:45:19Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/557/comments + created_at: '2021-03-15T17:37:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/557/events + html_url: https://github.com/packit/ogr/issues/557 + id: 832040748 + labels: + - color: 008672 + default: false + description: We need more info from the requester. + id: 1432779351 + name: need-info + node_id: MDU6TGFiZWwxNDMyNzc5MzUx + url: https://api.github.com/repos/packit/ogr/labels/need-info + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/557/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MzIwNDA3NDg= + number: 557 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '`authentication: type: gitlab` results in `TypeError: __init__() + got an unexpected keyword argument ''type''`' + updated_at: '2021-03-17T12:45:19Z' + url: https://api.github.com/repos/packit/ogr/issues/557 + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - assignees: - - avatar_url: https://avatars1.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} + url: https://api.github.com/users/TomasTomecek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "This is the fix for [issue #559](https://github.com/packit/ogr/issues/559)\r\ + \n\r\nThe file py.typed need to be added at the root of the ogr package\ + \ for\r\nthe package to be PEP-561 compliant and have mypy be able to\ + \ use the\r\ntype information when importing the package in other projects." + closed_at: '2021-03-17T08:49:37Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/560/comments + created_at: '2021-03-15T21:32:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/560/events + html_url: https://github.com/packit/ogr/pull/560 + id: 832209610 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/560/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkzNDA2OTY4 + number: 560 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/560.diff + html_url: https://github.com/packit/ogr/pull/560 + patch_url: https://github.com/packit/ogr/pull/560.patch + url: https://api.github.com/repos/packit/ogr/pulls/560 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Export types in the package (PEP-561) + updated_at: '2021-03-17T08:49:38Z' + url: https://api.github.com/repos/packit/ogr/issues/560 + user: + avatar_url: https://avatars.githubusercontent.com/u/3617836?v=4 + events_url: https://api.github.com/users/Roming22/events{/privacy} + followers_url: https://api.github.com/users/Roming22/followers + following_url: https://api.github.com/users/Roming22/following{/other_user} + gists_url: https://api.github.com/users/Roming22/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Roming22 + id: 3617836 + login: Roming22 + node_id: MDQ6VXNlcjM2MTc4MzY= + organizations_url: https://api.github.com/users/Roming22/orgs + received_events_url: https://api.github.com/users/Roming22/received_events + repos_url: https://api.github.com/users/Roming22/repos + site_admin: false + starred_url: https://api.github.com/users/Roming22/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Roming22/subscriptions + type: User + url: https://api.github.com/users/Roming22 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: The file has been renamed since packit/packit@970ec25 + closed_at: '2021-03-16T10:53:09Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/558/comments + created_at: '2021-03-15T18:28:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/558/events + html_url: https://github.com/packit/ogr/pull/558 + id: 832080411 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/558/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkzMjk5ODYz + number: 558 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/558.diff + html_url: https://github.com/packit/ogr/pull/558 + patch_url: https://github.com/packit/ogr/pull/558.patch + url: https://api.github.com/repos/packit/ogr/pulls/558 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix reverse-dep-packit-tests + updated_at: '2021-03-16T10:53:25Z' + url: https://api.github.com/repos/packit/ogr/issues/558 + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-03-15T18:24:37Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/556/comments + created_at: '2021-03-15T17:02:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/556/events + html_url: https://github.com/packit/ogr/pull/556 + id: 832010690 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/556/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkzMjQxMjY5 + number: 556 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/556.diff + html_url: https://github.com/packit/ogr/pull/556 + patch_url: https://github.com/packit/ogr/pull/556.patch + url: https://api.github.com/repos/packit/ogr/pulls/556 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-03-15T18:24:39Z' + url: https://api.github.com/repos/packit/ogr/issues/556 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* changed sha\n* tests on\ - \ new repo\n* test fixed\n* raising exception\n* method get_sha_from_tag\n\ - * gitlab: project info methods\n* note added\n* method get_latest_release\n\ - * Fix some typing issues in factory.py\n* Not overwrite the gitlab token\ - \ when set on read-mode\n* Support GitlabAuthenticationError in response\ - \ files as well\n* fix backward compafibility for tests\n* Test creating\ - \ Pagure PRs and fix some username problems in Pagure tests\n* Creating\ - \ Pagure PRs calls upstream project url (not the url of fork)\n* Return\ - \ Gitlab specific release in get_latest_release in GitlabProject\n*\ - \ Remove create_from_remote_url since it is not used anywhere\n* Remove\ - \ unused+unrelated code from GitlabService class\n* Fix the naming issues\ - \ in GitLab API and add the skeleton of the non-implemented methods\n\ - * Fix API for update_pr_info\n* Update error msg with missing github-app\ - \ key as @TomasTomecek suggested\n* Improve handling of private-key\ - \ in github-app tests\n* Fix imports of the GitHub exceptions\n* Add\ - \ cryptography to dependencies to be able to authenticate as a github\ - \ app\n* Add test for github-app authentication\n* Add github_app_private_key_path\ - \ to GithubService\n* Document the `get_instances_from_dict`\n* Add\ - \ test for github app loading from dict\n* Improve __str__ for services\n\ - * Add method for loading services from dictionary\n* Add more gitlab\ - \ tests for service mapping\n* Remove repo specific methods from GitlabService\n\ - * Make the creation of gitlab objects lazy\n* Add tests for gitlab service-mapping\n\ - * Make the pagure service mapping more general\n* Add gitlab to service\ - \ mapping\n* Use non-None token for gitlab tests\n* tag tests added\n\ - * Save GitlabHttpError to response file\n* test responses added, test_nonexisting_file\ - \ fails\n* Fix loading of gitlab response files\n* Save responses for\ - \ gitlab\n* WIP: GitlabRelease, GitlabProject, GitlabUser added\n* WIP:\ - \ functions for gitlab\n* Run zuul tests both on pip and rpm\n* Remove\ - \ Jenkinsfile\n* [CONTRIBUTING.md] CentOS CI -> Zuul\n* pagure: use\ - \ web url in issue\n* [README.md] Zuul badge\n* removed Optional\n*\ - \ add suggested changes\n* edit_release as method, get_release changed\n\ - * add method edit_release\n* Rename get_pr_commits to get_all_pr_commits\n\ - * run tests on one repository\n* Better description\n* Add get_pr_commits\ - \ into abstract.py\n* Remove `assert commits` and check only first and\ - \ last commit\n* Update ogr/services/github.py\n* Add fnc for getting\ - \ all commits for PR\n* PersistenStorageException -> PersistentStorageException\n\ - * run pre-commit\n* git cherry-pick of PR#129 and make it works\n* Update\ - \ pagure.py\n* Update github.py\n* packit.yaml: propose_downstream:\ - \ s/_/-/\n\n\nYou can change it by editing `CHANGELOG.md` in the root\ - \ of this repository and pushing to `0.7.0-release` branch before merging\ - \ this PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-09-12T07:46:13Z' - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/190/comments - created_at: '2019-09-11T07:59:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/190/events - html_url: https://github.com/packit/ogr/pull/190 - id: 492078119 + body: "Residing at https://packit.github.io/ogr\r\n\r\nFollow-up of #531 " + closed_at: '2021-03-12T17:37:21Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/534/comments + created_at: '2021-02-09T14:05:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/534/events + html_url: https://github.com/packit/ogr/issues/534 + id: 804582194 labels: - - color: ededed + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/534/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MDQ1ODIxOTQ= + number: 534 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add a link to documentation to README + updated_at: '2021-03-12T17:37:21Z' + url: https://api.github.com/repos/packit/ogr/issues/534 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'worked on issue: https://github.com/packit/ogr/issues/534' + closed_at: '2021-03-11T16:13:53Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/555/comments + created_at: '2021-03-11T04:15:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/555/events + html_url: https://github.com/packit/ogr/pull/555 + id: 828701848 + labels: - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -34259,88 +36487,150 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed + labels_url: https://api.github.com/repos/packit/ogr/issues/555/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTkwNDc4MTk2 + number: 555 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/555.diff + html_url: https://github.com/packit/ogr/pull/555 + patch_url: https://github.com/packit/ogr/pull/555.patch + url: https://api.github.com/repos/packit/ogr/pulls/555 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: added packit.github.io/ogr to readme + updated_at: '2021-03-11T16:13:53Z' + url: https://api.github.com/repos/packit/ogr/issues/555 + user: + avatar_url: https://avatars.githubusercontent.com/u/6732513?v=4 + events_url: https://api.github.com/users/LilySu/events{/privacy} + followers_url: https://api.github.com/users/LilySu/followers + following_url: https://api.github.com/users/LilySu/following{/other_user} + gists_url: https://api.github.com/users/LilySu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/LilySu + id: 6732513 + login: LilySu + node_id: MDQ6VXNlcjY3MzI1MTM= + organizations_url: https://api.github.com/users/LilySu/orgs + received_events_url: https://api.github.com/users/LilySu/received_events + repos_url: https://api.github.com/users/LilySu/repos + site_admin: false + starred_url: https://api.github.com/users/LilySu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/LilySu/subscriptions + type: User + url: https://api.github.com/users/LilySu + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "PagureProject.create_pr dumped fork_username which made PR creation\ + \ from\r\na fork by passing this kwarg not working - one had to create\ + \ the PR from\r\nan actual fork instance instead of making it the parent\ + \ repo.\r\n\r\nThis commit:\r\n* makes sure the fork_username is passed\ + \ to PagurePullRequest.create\r\n* and also sets correct `repo_from[*]`\ + \ keys for the API request to\r\n create a PR\r\n\r\nWorked for: https://src.fedoraproject.org/rpms/packit/pull-request/125\r\ + \nAnd also this PR -_-\r\n\r\nFixes #551\r\n\r\n~~Please let me know\ + \ what tests I should write.~~\r\n\r\n* [x] Wrote a test case for this.\r\ + \n" + closed_at: '2021-03-10T14:34:28Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/552/comments + created_at: '2021-03-08T13:32:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/552/events + html_url: https://github.com/packit/ogr/pull/552 + id: 824560812 + labels: + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/190/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/552/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2MzIwNjY1 - number: 190 + node_id: MDExOlB1bGxSZXF1ZXN0NTg2NzczOTk1 + number: 552 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/190.diff - html_url: https://github.com/packit/ogr/pull/190 - patch_url: https://github.com/packit/ogr/pull/190.patch - url: https://api.github.com/repos/packit/ogr/pulls/190 + diff_url: https://github.com/packit/ogr/pull/552.diff + html_url: https://github.com/packit/ogr/pull/552 + patch_url: https://github.com/packit/ogr/pull/552.patch + url: https://api.github.com/repos/packit/ogr/pulls/552 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.7.0 release - updated_at: '2019-09-12T07:49:01Z' - url: https://api.github.com/repos/packit/ogr/issues/190 + title: 'pagure: enable creating PRs from fork via fork_username' + updated_at: '2021-03-10T14:53:29Z' + url: https://api.github.com/repos/packit/ogr/issues/552 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-09-11T07:59:58Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/188/comments - created_at: '2019-09-11T07:57:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/188/events - html_url: https://github.com/packit/ogr/issues/188 - id: 492077048 + author_association: CONTRIBUTOR + body: "This is gonna be a fun one: I tried to use upsint to create a PR\ + \ in src.fedoraproject.org/rpms but failed because there are two different\ + \ servers for the forge API and a git server:\r\n\r\nI use SSH:\r\n\ + ```\r\nssh://ttomecek@pkgs.fedoraproject.org/rpms/python-ogr.git\r\n\ + ```\r\n\r\nBut pagure API is at\r\n```\r\nhttps://src.fedoraproject.org/rpms/python-ogr.git\r\ + \n```\r\n\r\nI'm wondering if it's possible to set up an authentication\ + \ entry which would recognize pkgs.fp.o but route API requests to src.fp.o.\ + \ Tried these but none of them worked with SSH:\r\n```\r\n fedora-dist-git:\r\ + \n type: pagure\r\n instance_url: \"https://src.fedoraproject.org/\"\ + \r\n token: ...\r\n fedora-dist-git2:\r\n type: pagure\r\n \ + \ instance_url: \"https://pkgs.fedoraproject.org/\"\r\n token: ...\r\ + \n```\r\n\r\nWorst case I could hard-code the logic to upsint though\ + \ I think it would be useful to have in ogr itself." + closed_at: '2021-03-10T14:34:28Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/551/comments + created_at: '2021-03-08T08:51:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/551/events + html_url: https://github.com/packit/ogr/issues/551 + id: 824335510 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: a2eeef default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/188/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/551/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTIwNzcwNDg= - number: 188 + node_id: MDU6SXNzdWU4MjQzMzU1MTA= + number: 551 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-09-11T07:59:58Z' - url: https://api.github.com/repos/packit/ogr/issues/188 + title: 'authentication: support alternative server for git and git-forge + API (src.fp.o)' + updated_at: '2021-03-10T14:34:28Z' + url: https://api.github.com/repos/packit/ogr/issues/551 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -34362,15 +36652,14 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: I accidently deleted the testing repo, so I have regenerated the - tests on new repo [https://gitlab.com/packit-service/ogr-tests](url) - closed_at: '2019-09-11T06:44:23Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/187/comments - created_at: '2019-09-10T14:21:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/187/events - html_url: https://github.com/packit/ogr/pull/187 - id: 491705182 + body: Fixes http://artifacts.dev.testing-farm.io/0fc448fc-26c9-428a-ad9c-ed107e9e9c95 + closed_at: '2021-03-10T13:59:15Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/554/comments + created_at: '2021-03-10T11:25:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/554/events + html_url: https://github.com/packit/ogr/pull/554 + id: 827576846 labels: - color: 0e8a16 default: false @@ -34379,117 +36668,53 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/187/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/554/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE2MDIwMzM5 - number: 187 + node_id: MDExOlB1bGxSZXF1ZXN0NTg5NDczMzEz + number: 554 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/187.diff - html_url: https://github.com/packit/ogr/pull/187 - patch_url: https://github.com/packit/ogr/pull/187.patch - url: https://api.github.com/repos/packit/ogr/pulls/187 + diff_url: https://github.com/packit/ogr/pull/554.diff + html_url: https://github.com/packit/ogr/pull/554 + patch_url: https://github.com/packit/ogr/pull/554.patch + url: https://api.github.com/repos/packit/ogr/pulls/554 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: tests on new repo - updated_at: '2019-09-11T06:44:23Z' - url: https://api.github.com/repos/packit/ogr/issues/187 + title: Install rpmautospec-rpm-macros on Fedora only + updated_at: '2021-03-10T14:33:42Z' + url: https://api.github.com/repos/packit/ogr/issues/554 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=11: - - metadata: - latency: 0.5103461742401123 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #170 ' - closed_at: '2019-09-10T14:30:35Z' - comments: 24 - comments_url: https://api.github.com/repos/packit/ogr/issues/186/comments - created_at: '2019-09-10T10:45:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/186/events - html_url: https://github.com/packit/ogr/pull/186 - id: 491594645 + body: '' + closed_at: '2021-03-10T11:05:54Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/553/comments + created_at: '2021-03-09T16:01:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/553/events + html_url: https://github.com/packit/ogr/pull/553 + id: 826154736 labels: - color: 0e8a16 default: false @@ -34498,105 +36723,64 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/186/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/553/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTMwNzcy - number: 186 + node_id: MDExOlB1bGxSZXF1ZXN0NTg4MTc4ODE4 + number: 553 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/186.diff - html_url: https://github.com/packit/ogr/pull/186 - patch_url: https://github.com/packit/ogr/pull/186.patch - url: https://api.github.com/repos/packit/ogr/pulls/186 + diff_url: https://github.com/packit/ogr/pull/553.diff + html_url: https://github.com/packit/ogr/pull/553 + patch_url: https://github.com/packit/ogr/pull/553.patch + url: https://api.github.com/repos/packit/ogr/pulls/553 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: method get_sha_from_tag - updated_at: '2019-09-10T14:30:35Z' - url: https://api.github.com/repos/packit/ogr/issues/186 + title: Workflow for uploading to PyPI when a release is created + updated_at: '2021-03-10T11:05:55Z' + url: https://api.github.com/repos/packit/ogr/issues/553 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/jpopelka - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "```python\r\n def get_sha_from_tag(self, tag_name: str) -> str:\r\ - \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html" - closed_at: '2019-09-10T14:30:35Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/170/comments - created_at: '2019-09-06T07:21:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/170/events - html_url: https://github.com/packit/ogr/issues/170 - id: 490171969 + body: "In *Set PR flags in Pagure #381*, the `set_flag` method for Pagure\ + \ pull-requests was left to return the `dict` from the response. \r\n\ + \r\nWrap that response in a class to make working with these kind of\ + \ flags easier." + closed_at: null + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/384/comments + created_at: '2020-04-16T07:35:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/384/events + html_url: https://github.com/packit/ogr/issues/384 + id: 600814459 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef + - color: 1d76db default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: 7057ff default: false description: Good for newcomers @@ -34611,173 +36795,66 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/170/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0OTAxNzE5Njk= - number: 170 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'Implement GitLab method: get_sha_from_tag' - updated_at: '2019-09-10T14:30:35Z' - url: https://api.github.com/repos/packit/ogr/issues/170 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #175 ' - closed_at: '2019-09-10T11:56:53Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/184/comments - created_at: '2019-09-10T10:04:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/184/events - html_url: https://github.com/packit/ogr/pull/184 - id: 491575224 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 0e8a16 + - color: 8be567 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/184/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/384/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTE0OTk4 - number: 184 + node_id: MDU6SXNzdWU2MDA4MTQ0NTk= + number: 384 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/184.diff - html_url: https://github.com/packit/ogr/pull/184 - patch_url: https://github.com/packit/ogr/pull/184.patch - url: https://api.github.com/repos/packit/ogr/pulls/184 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'gitlab: project info methods' - updated_at: '2019-09-10T11:56:53Z' - url: https://api.github.com/repos/packit/ogr/issues/184 + state: open + title: Create a class to hold information on pull-request flags + updated_at: '2021-03-08T17:43:30Z' + url: https://api.github.com/repos/packit/ogr/issues/384 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/csomh - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "```python\r\n def get_description(self) -> str:\r\n #\ - \ Probably something like this:\r\n # return self.gitlab_repo.attributes[\"\ - description\"]\r\n raise NotImplementedError()\r\n\r\n def\ - \ get_git_urls(self) -> Dict[str, str]:\r\n pass\r\n```\r\n\r\ - \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ - \n- https://docs.gitlab.com/ce/api/projects.html" - closed_at: '2019-09-10T11:56:53Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/175/comments - created_at: '2019-09-06T07:24:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/175/events - html_url: https://github.com/packit/ogr/issues/175 - id: 490173038 + body: "We need to document usage of ogr on custom/internal instances:\r\ + \n\r\n- [ ] usage of `instance_url`\r\n- [ ] setup of custom/internal\ + \ certificates:\r\n - export `REQUESTS_CA_BUNDLE=/etc/pki/tls/certs/ca-bundle.crt`\r\ + \n - ignore the SSL verification (`ssl_verify` argument)" + closed_at: null + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/356/comments + created_at: '2020-03-17T14:45:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/356/events + html_url: https://github.com/packit/ogr/issues/356 + id: 583065980 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation - color: 7057ff default: false description: Good for newcomers @@ -34792,19 +36869,19 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/175/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/356/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzMwMzg= - number: 175 + node_id: MDU6SXNzdWU1ODMwNjU5ODA= + number: 356 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Implement GitLab methods for project info - updated_at: '2019-09-10T11:56:53Z' - url: https://api.github.com/repos/packit/ogr/issues/175 + state: open + title: Document the usage of custom instances and certificates + updated_at: '2021-03-08T17:41:56Z' + url: https://api.github.com/repos/packit/ogr/issues/356 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -34825,30 +36902,26 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #176 ' - closed_at: '2019-09-10T11:44:36Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/185/comments - created_at: '2019-09-10T10:10:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/185/events - html_url: https://github.com/packit/ogr/pull/185 - id: 491578586 + author_association: CONTRIBUTOR + body: 'Hunor is correct, our upstream release description used as a %changelog + + violates Fedora guidelines, so let packit assemble %changelog from + + git-log. + + + https://docs.fedoraproject.org/en-US/packaging-guidelines/#changelogs + + + https://packit.dev/docs/configuration/#copy_upstream_release_description' + closed_at: '2021-03-08T09:29:38Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/550/comments + created_at: '2021-03-07T20:24:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/550/events + html_url: https://github.com/packit/ogr/pull/550 + id: 824009825 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -34856,163 +36929,130 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/185/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/550/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTE3NzMx - number: 185 + node_id: MDExOlB1bGxSZXF1ZXN0NTg2MzIwNTM1 + number: 550 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/185.diff - html_url: https://github.com/packit/ogr/pull/185 - patch_url: https://github.com/packit/ogr/pull/185.patch - url: https://api.github.com/repos/packit/ogr/pulls/185 + diff_url: https://github.com/packit/ogr/pull/550.diff + html_url: https://github.com/packit/ogr/pull/550 + patch_url: https://github.com/packit/ogr/pull/550.patch + url: https://api.github.com/repos/packit/ogr/pulls/550 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: method get_latest_release - updated_at: '2019-09-10T11:44:36Z' - url: https://api.github.com/repos/packit/ogr/issues/185 + title: 'packit: create downstream %changelog from git-log' + updated_at: '2021-03-08T09:29:38Z' + url: https://api.github.com/repos/packit/ogr/issues/550 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "```python\r\n def get_latest_release(self) -> GitlabRelease:\r\ - \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-releases\r\ - \n- https://docs.gitlab.com/ee/api/releases/" - closed_at: '2019-09-10T11:44:35Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/176/comments - created_at: '2019-09-06T07:24:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/176/events - html_url: https://github.com/packit/ogr/issues/176 - id: 490173186 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/176/labels{/name} + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f33` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f34` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + | `main` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.22.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-03-08T08:50:33Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/548/comments + created_at: '2021-03-03T14:38:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/548/events + html_url: https://github.com/packit/ogr/issues/548 + id: 821170152 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/548/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAxNzMxODY= - number: 176 + node_id: MDU6SXNzdWU4MjExNzAxNTI= + number: 548 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement GitLab method for latest release - updated_at: '2019-09-10T11:44:35Z' - url: https://api.github.com/repos/packit/ogr/issues/176 + title: '[packit] Propose downstream failed for release 0.22.0' + updated_at: '2021-03-08T08:50:33Z' + url: https://api.github.com/repos/packit/ogr/issues/548 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Fix some typing issues in factory.py.\r\n\r\nReason: typing problems\ - \ in the packit code on top of it." - closed_at: '2019-09-10T11:00:14Z' + body: "The current behaviour of 'ogr.get_project()', when a list of\r\n\ + 'custom_instances' (already created GitService objects) is provided,\ + \ is\r\nto raise an OgrException if none of these matches the project\ + \ URL.\r\n\r\nIntroduce a 'force_custom_instance' flag, defaulting to\ + \ True to keep\r\nbackwards compatibility, in order to support the use\ + \ case where the user\r\nwould like to retrieve an existing service\ + \ *or create a new one* if none\r\nis matching in the 'custom_instances'\ + \ list.\r\n\r\nSigned-off-by: Hunor Csomort\xE1ni " + closed_at: '2021-03-04T11:53:23Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/183/comments - created_at: '2019-09-10T09:22:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/183/events - html_url: https://github.com/packit/ogr/pull/183 - id: 491553190 + comments_url: https://api.github.com/repos/packit/ogr/issues/549/comments + created_at: '2021-03-04T08:59:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/549/events + html_url: https://github.com/packit/ogr/pull/549 + id: 821917377 labels: - color: 0e8a16 default: false @@ -35021,1228 +37061,1226 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/183/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/549/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1ODk3MjEz - number: 183 + node_id: MDExOlB1bGxSZXF1ZXN0NTg0NjI2MzQx + number: 549 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/183.diff - html_url: https://github.com/packit/ogr/pull/183 - patch_url: https://github.com/packit/ogr/pull/183.patch - url: https://api.github.com/repos/packit/ogr/pulls/183 + diff_url: https://github.com/packit/ogr/pull/549.diff + html_url: https://github.com/packit/ogr/pull/549 + patch_url: https://github.com/packit/ogr/pull/549.patch + url: https://api.github.com/repos/packit/ogr/pulls/549 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix typing in factory - updated_at: '2019-09-10T11:21:08Z' - url: https://api.github.com/repos/packit/ogr/issues/183 + title: Allow ignoring custom instances when creating a project + updated_at: '2021-03-04T13:49:08Z' + url: https://api.github.com/repos/packit/ogr/issues/549 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/csomh + _next: null + elapsed: 0.380124 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:41 GMT + ETag: W/"3223cf7b96e232b7e09c6e6c9daab97dcbe78cd8da5c88808922c7039667157a" + Link: ; + rel="next", ; + rel="last" + 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: 88B1:19FC:78ECED:1333120:6075DC85 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4431' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '569' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=10: + - metadata: + latency: 0.4082207679748535 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Not overwrite the gitlab token when set on read-mode. - - - Support GitlabAuthenticationError in response files as well.' - closed_at: '2019-09-10T09:06:12Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/182/comments - created_at: '2019-09-09T10:59:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/182/events - html_url: https://github.com/packit/ogr/pull/182 - id: 491026784 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/182/labels{/name} + author_association: CONTRIBUTOR + body: improve pagure error response to show additional info stored under + 'errors' key + closed_at: '2020-02-19T08:19:55Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/333/comments + created_at: '2020-02-18T15:47:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/333/events + html_url: https://github.com/packit/ogr/pull/333 + id: 566983390 + labels: + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/333/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1NDc0NDYw - number: 182 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc2NjkyMzc5 + number: 333 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/182.diff - html_url: https://github.com/packit/ogr/pull/182 - patch_url: https://github.com/packit/ogr/pull/182.patch - url: https://api.github.com/repos/packit/ogr/pulls/182 + diff_url: https://github.com/packit/ogr/pull/333.diff + html_url: https://github.com/packit/ogr/pull/333 + patch_url: https://github.com/packit/ogr/pull/333.patch + url: https://api.github.com/repos/packit/ogr/pulls/333 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Support GitlabAuthenticationError - updated_at: '2019-09-10T09:07:59Z' - url: https://api.github.com/repos/packit/ogr/issues/182 + title: improve pagure error response + updated_at: '2020-02-19T08:19:55Z' + url: https://api.github.com/repos/packit/ogr/issues/333 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "fix the issue causing that older ogr does not know what is exception\ - \ in init.\r\ndo not store values what are empty" - closed_at: '2019-09-09T10:52:04Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/179/comments - created_at: '2019-09-06T12:29:16Z' - events_url: https://api.github.com/repos/packit/ogr/issues/179/events - html_url: https://github.com/packit/ogr/pull/179 - id: 490300829 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/179/labels{/name} + author_association: CONTRIBUTOR + body: 'fixes #331 ' + closed_at: '2020-02-18T15:30:01Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/332/comments + created_at: '2020-02-18T14:53:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/332/events + html_url: https://github.com/packit/ogr/pull/332 + id: 566946268 + labels: + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/332/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE0OTMzMDEy - number: 179 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc2NjYxODE0 + number: 332 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/179.diff - html_url: https://github.com/packit/ogr/pull/179 - patch_url: https://github.com/packit/ogr/pull/179.patch - url: https://api.github.com/repos/packit/ogr/pulls/179 + diff_url: https://github.com/packit/ogr/pull/332.diff + html_url: https://github.com/packit/ogr/pull/332 + patch_url: https://github.com/packit/ogr/pull/332.patch + url: https://api.github.com/repos/packit/ogr/pulls/332 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: fix backward compafibility for tests - updated_at: '2019-09-09T14:13:28Z' - url: https://api.github.com/repos/packit/ogr/issues/179 + title: Improve pagure error response + updated_at: '2020-02-18T15:38:49Z' + url: https://api.github.com/repos/packit/ogr/issues/332 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/jscotka + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Test creating Pagure PRs and fix some username problems in Pagure - tests. - - - Creating Pagure PRs calls upstream project url (not the url of fork). - - - Fixes: #161' - closed_at: '2019-09-09T08:16:38Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/180/comments - created_at: '2019-09-06T19:01:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/180/events - html_url: https://github.com/packit/ogr/pull/180 - id: 490477438 + body: '' + closed_at: '2020-02-17T15:39:51Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/327/comments + created_at: '2020-02-17T13:24:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/327/events + html_url: https://github.com/packit/ogr/pull/327 + id: 566296821 labels: - - color: 1d76db + - color: 0e8a16 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - labels_url: https://api.github.com/repos/packit/ogr/issues/180/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/327/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE1MDc2NjUy - number: 180 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc2MTM0NTY3 + number: 327 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/180.diff - html_url: https://github.com/packit/ogr/pull/180 - patch_url: https://github.com/packit/ogr/pull/180.patch - url: https://api.github.com/repos/packit/ogr/pulls/180 + diff_url: https://github.com/packit/ogr/pull/327.diff + html_url: https://github.com/packit/ogr/pull/327 + patch_url: https://github.com/packit/ogr/pull/327.patch + url: https://api.github.com/repos/packit/ogr/pulls/327 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix creating Pagure PRs - updated_at: '2019-09-09T08:16:44Z' - url: https://api.github.com/repos/packit/ogr/issues/180 + title: '[.packit.yaml] remove no-longer needed keys & use aliases' + updated_at: '2020-02-17T15:43:04Z' + url: https://api.github.com/repos/packit/ogr/issues/327 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "https://src.stg.fedoraproject.org/api/0/#pull-requests\r\n\r\n\ - we just need to use the new fields such as repo_from which were added\ - \ to the API in order to create PRs from forks to parent repos.\r\n\r\ - \nfollow up to https://github.com/packit-service/packit/pull/496\r\n\ - blocks https://github.com/packit-service/packit.dev/pull/42\r\n\r\n\ - likely packit will need some code changes to support this" - closed_at: '2019-09-09T08:16:38Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/161/comments - created_at: '2019-08-29T09:31:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/161/events - html_url: https://github.com/packit/ogr/issues/161 - id: 486845482 + body: '' + closed_at: '2020-02-14T16:46:09Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/326/comments + created_at: '2020-02-14T15:50:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/326/events + html_url: https://github.com/packit/ogr/pull/326 + id: 565409429 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9e231 + - color: 0e8a16 default: false - description: High priority. - id: 1432779316 - name: high-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzE2 - url: https://api.github.com/repos/packit/ogr/labels/high-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/161/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/326/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODY4NDU0ODI= - number: 161 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc1NDUzMzA5 + number: 326 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/326.diff + html_url: https://github.com/packit/ogr/pull/326 + patch_url: https://github.com/packit/ogr/pull/326.patch + url: https://api.github.com/repos/packit/ogr/pulls/326 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'pagure: support new way of creating PRs from forks' - updated_at: '2019-09-09T08:16:38Z' - url: https://api.github.com/repos/packit/ogr/issues/161 + title: '[CONTRIBUTING.md] update' + updated_at: '2020-02-17T08:52:51Z' + url: https://api.github.com/repos/packit/ogr/issues/326 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Fix the naming issues in GitLab API and add the skeleton of the - non-implemented methods. - - - Fix API for update_pr_info.' - closed_at: '2019-09-06T08:20:46Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/167/comments - created_at: '2019-09-06T06:33:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/167/events - html_url: https://github.com/packit/ogr/pull/167 - id: 490155512 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/167/labels{/name} + body: "Seeing this on prod:\r\n\r\n```\r\n | [2019-10-29 08:25:38,794:\ + \ INFO/MainProcess] Received task: task.steve_jobs.process_message[9b4d1ddc-72e3-4bd8-8ff9-fb2cf96d8efb]\r\ + \n\_ | [2019-10-29 08:25:38,810: INFO/ForkPoolWorker-1] Copr build event,\ + \ topic: org.fedoraproject.prod.copr.build.start\r\n\_ | [2019-10-29\ + \ 08:25:38,812: WARNING/ForkPoolWorker-1] Cannot get project for this\ + \ build id: 1081435\r\n\_ | [2019-10-29 08:25:38,819: ERROR/ForkPoolWorker-1]\ + \ Task task.steve_jobs.process_message[9b4d1ddc-72e3-4bd8-8ff9-fb2cf96d8efb]\ + \ raised unexpected: TypeError(\"argument of type 'NoneType' is not\ + \ iterable\")\r\n\_ | Traceback (most recent call last):\r\n\_ | File\ + \ \"/usr/lib/python3.7/site-packages/celery/app/trace.py\", line 382,\ + \ in trace_task\r\n\_ | R = retval = fun(*args, **kwargs)\r\n\_ | File\ + \ \"/usr/lib/python3.7/site-packages/celery/app/trace.py\", line 641,\ + \ in __protected_call__\r\n\_ | return self.run(*args, **kwargs)\r\n\ + \_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/celery.py\"\ + , line 155, in _inner\r\n\_ | reraise(*exc_info)\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/_compat.py\"\ + , line 57, in reraise\r\n\_ | raise value\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/celery.py\"\ + , line 150, in _inner\r\n\_ | return f(*args, **kwargs)\r\n\_ | File\ + \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ + , line 47, in process_message\r\n\_ | return SteveJobs().process_message(event=event,\ + \ topic=topic)\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 218, in process_message\r\n\_ | project\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/packit/config.py\"\ + , line 212, in _get_project\r\n\_ | project = get_project(url=url, custom_instances=self.services)\r\ + \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ + , line 83, in get_project\r\n\_ | kls = get_service_class(url=url, service_mapping_update=service_mapping_update)\r\ + \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ + , line 135, in get_service_class\r\n\_ | url=url, service_mapping_update=service_mapping_update\r\ + \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ + , line 118, in get_service_class_or_none\r\n\_ | if service in url:\r\ + \n\_ | TypeError: argument of type 'NoneType' is not iterable\r\n```\r\ + \n" + closed_at: '2020-02-16T09:26:02Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/261/comments + created_at: '2019-10-29T09:31:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/261/events + html_url: https://github.com/packit/ogr/issues/261 + id: 513793392 + labels: + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/261/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE0ODE1OTI3 - number: 167 + node_id: MDU6SXNzdWU1MTM3OTMzOTI= + number: 261 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/167.diff - html_url: https://github.com/packit/ogr/pull/167 - patch_url: https://github.com/packit/ogr/pull/167.patch - url: https://api.github.com/repos/packit/ogr/pulls/167 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix the inconsistences in the GitLab API - updated_at: '2019-09-06T08:20:50Z' - url: https://api.github.com/repos/packit/ogr/issues/167 + title: '[get_service_class_or_none()] TypeError: argument of type ''NoneType'' + is not iterable' + updated_at: '2020-02-16T09:26:02Z' + url: https://api.github.com/repos/packit/ogr/issues/261 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #162' - closed_at: '2019-09-05T09:00:25Z' - comments: 31 - comments_url: https://api.github.com/repos/packit/ogr/issues/163/comments - created_at: '2019-09-02T12:37:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/163/events - html_url: https://github.com/packit/ogr/pull/163 - id: 488169691 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/163/labels{/name} + author_association: CONTRIBUTOR + body: "This commit allows to pass a list of tags to pagure's create_issue\ + \ method.\r\n\r\nSigned-off-by: Clement Verna " + closed_at: '2020-02-12T09:56:00Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/321/comments + created_at: '2020-01-31T19:31:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/321/events + html_url: https://github.com/packit/ogr/pull/321 + id: 558328639 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/321/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzEzMjQ4MzIz - number: 163 + node_id: MDExOlB1bGxSZXF1ZXN0MzY5NzM3NjUy + number: 321 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/163.diff - html_url: https://github.com/packit/ogr/pull/163 - patch_url: https://github.com/packit/ogr/pull/163.patch - url: https://api.github.com/repos/packit/ogr/pulls/163 + diff_url: https://github.com/packit/ogr/pull/321.diff + html_url: https://github.com/packit/ogr/pull/321 + patch_url: https://github.com/packit/ogr/pull/321.patch + url: https://api.github.com/repos/packit/ogr/pulls/321 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Be able to set private key path for GitHub app - updated_at: '2019-09-05T09:00:29Z' - url: https://api.github.com/repos/packit/ogr/issues/163 + title: Add support for tags when creating pagure issues. + updated_at: '2020-02-12T09:56:00Z' + url: https://api.github.com/repos/packit/ogr/issues/321 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 + events_url: https://api.github.com/users/cverna/events{/privacy} + followers_url: https://api.github.com/users/cverna/followers + following_url: https://api.github.com/users/cverna/following{/other_user} + gists_url: https://api.github.com/users/cverna/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/cverna + id: 7237866 + login: cverna + node_id: MDQ6VXNlcjcyMzc4NjY= + organizations_url: https://api.github.com/users/cverna/orgs + received_events_url: https://api.github.com/users/cverna/received_events + repos_url: https://api.github.com/users/cverna/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/cverna/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/cverna - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - author_association: MEMBER - body: "When authenticating as a GitHub-app we currently need a private_key\ - \ as a string.\r\n\r\nIt would be very convenient (and very usefull\ - \ when having #160 ) to have another attribute for the private-key path.\r\ - \n\r\nThe code can be moved/stolen [from packit](https://github.com/packit-service/packit/blob/master/packit/upstream.py#L88).\r\ - \n" - closed_at: '2019-09-05T09:00:25Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/162/comments - created_at: '2019-09-02T09:12:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/162/events - html_url: https://github.com/packit/ogr/issues/162 - id: 488085461 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "While working on #319, I noticed that there was no `.gitignore`\ + \ file in the repository.\r\n\r\nTo solve my _own_ pain points while\ + \ developing, I generated this one, which should ignore standard files\ + \ for MacOS, Windows, & Linux, and additionally ignore files that are\ + \ generally good to ignore in Python projects." + closed_at: '2020-02-11T09:08:13Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/320/comments + created_at: '2020-01-31T01:20:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/320/events + html_url: https://github.com/packit/ogr/pull/320 + id: 557854734 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/162/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/320/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODgwODU0NjE= - number: 162 + node_id: MDExOlB1bGxSZXF1ZXN0MzY5MzY2NDA1 + number: 320 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/320.diff + html_url: https://github.com/packit/ogr/pull/320 + patch_url: https://github.com/packit/ogr/pull/320.patch + url: https://api.github.com/repos/packit/ogr/pulls/320 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Be able to use path to private_key for GitHub app authentication - updated_at: '2019-09-05T09:00:25Z' - url: https://api.github.com/repos/packit/ogr/issues/162 + title: Add `.gitignore` to repo + updated_at: '2020-02-11T09:08:13Z' + url: https://api.github.com/repos/packit/ogr/issues/320 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/434063?v=4 + events_url: https://api.github.com/users/birdcar/events{/privacy} + followers_url: https://api.github.com/users/birdcar/followers + following_url: https://api.github.com/users/birdcar/following{/other_user} + gists_url: https://api.github.com/users/birdcar/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/birdcar + id: 434063 + login: birdcar + node_id: MDQ6VXNlcjQzNDA2Mw== + organizations_url: https://api.github.com/users/birdcar/orgs + received_events_url: https://api.github.com/users/birdcar/received_events + repos_url: https://api.github.com/users/birdcar/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/birdcar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/birdcar/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/birdcar - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Add method for loading services from dictionary. - - - Tests included. - - - Fixes: #159' - closed_at: '2019-09-02T10:30:19Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/160/comments - created_at: '2019-08-21T08:47:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/160/events - html_url: https://github.com/packit/ogr/pull/160 - id: 483284044 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/160/labels{/name} + body: 'Closes #308 ' + closed_at: '2020-01-24T19:51:49Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/309/comments + created_at: '2020-01-17T13:36:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/309/events + html_url: https://github.com/packit/ogr/pull/309 + id: 551419531 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/309/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA5Mzg5NjA4 - number: 160 + node_id: MDExOlB1bGxSZXF1ZXN0MzY0MTQ0OTky + number: 309 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/160.diff - html_url: https://github.com/packit/ogr/pull/160 - patch_url: https://github.com/packit/ogr/pull/160.patch - url: https://api.github.com/repos/packit/ogr/pulls/160 + diff_url: https://github.com/packit/ogr/pull/309.diff + html_url: https://github.com/packit/ogr/pull/309 + patch_url: https://github.com/packit/ogr/pull/309.patch + url: https://api.github.com/repos/packit/ogr/pulls/309 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Loading services from dict - updated_at: '2019-09-02T10:47:59Z' - url: https://api.github.com/repos/packit/ogr/issues/160 + title: Add filtering of issues/PRs by author/assignee + updated_at: '2020-02-10T18:51:00Z' + url: https://api.github.com/repos/packit/ogr/issues/309 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - author_association: MEMBER - body: "In [packit](https://github.com/packit-service/packit) and [upsint](https://github.com/packit-service/upsint/),\ - \ we need to load authentication for services from files.\r\n\r\nIt\ - \ would be nice to have a method for loading instances from `dict` so\ - \ we can use it from multiple projects.\r\n\r\n```python\r\n>>> from\ - \ ogr import get_instances_from_dict\r\n>>> get_instances_from_dict({\r\ - \n... \"github.com\": {\"token\": \"abcd\"},\r\n... \"pagure.io\"\ - : {\"token\": \"defg\"},\r\n... \"src.fedoraproject.org\": {\"token\"\ - : \"asdasdasda\"},\r\n... })\r\n[\r\n GithubService(token=\"abcd\"\ - ),\r\n PagureService(instance_url=\"https://pagure.io\", token=\"\ - defg\"),\r\n PagureService(instance_url=\"https://src.fedoraproject.org\"\ - , token=\"asdasdasda\"),\r\n]\r\n```\r\n\r\n\r\n" - closed_at: '2019-09-02T10:30:19Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/159/comments - created_at: '2019-08-20T12:11:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/159/events - html_url: https://github.com/packit/ogr/issues/159 - id: 482822700 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hello there \U0001F44B \r\n\r\nThis came up in my `good-first-issue`\ + \ search and seemed like a fairly straightforward bug to fix.\r\n\r\n\ + I decided to treat it as a data problem and check for the existence\ + \ of a trailing slash in a simple if statement. It worked in the test\ + \ cases I passed it, and should be pretty straightforward to debug.\ + \ \r\n\r\nOpen to any/all criticism. Thanks for all you do!" + closed_at: '2020-02-06T12:58:10Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/319/comments + created_at: '2020-01-31T01:06:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/319/events + html_url: https://github.com/packit/ogr/pull/319 + id: 557850271 labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/159/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/319/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODI4MjI3MDA= - number: 159 + node_id: MDExOlB1bGxSZXF1ZXN0MzY5MzYzMTc2 + number: 319 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/319.diff + html_url: https://github.com/packit/ogr/pull/319 + patch_url: https://github.com/packit/ogr/pull/319.patch + url: https://api.github.com/repos/packit/ogr/pulls/319 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add method for loading instances from dict - updated_at: '2019-09-02T10:30:19Z' - url: https://api.github.com/repos/packit/ogr/issues/159 + title: Remove trailing slash from URLs before parsing + updated_at: '2020-02-06T17:15:07Z' + url: https://api.github.com/repos/packit/ogr/issues/319 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/434063?v=4 + events_url: https://api.github.com/users/birdcar/events{/privacy} + followers_url: https://api.github.com/users/birdcar/followers + following_url: https://api.github.com/users/birdcar/following{/other_user} + gists_url: https://api.github.com/users/birdcar/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/birdcar + id: 434063 + login: birdcar + node_id: MDQ6VXNlcjQzNDA2Mw== + organizations_url: https://api.github.com/users/birdcar/orgs + received_events_url: https://api.github.com/users/birdcar/received_events + repos_url: https://api.github.com/users/birdcar/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/birdcar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/birdcar/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/birdcar - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Remove repo specific methods from GitlabService.\r\n- Make the\ - \ creation of gitlab objects lazy.\r\n- Add tests for gitlab service-mapping.\r\ - \n- Make the pagure service mapping more general.\r\n- Add gitlab to\ - \ service mapping." - closed_at: '2019-08-20T11:55:31Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/156/comments - created_at: '2019-08-15T14:37:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/156/events - html_url: https://github.com/packit/ogr/pull/156 - id: 481182139 + author_association: CONTRIBUTOR + body: "```\r\n>>> from ogr.parsing import parse_git_repo\r\n>>> r = parse_git_repo('https://github.com/avocado-framework/avocado/')\r\ + \n>>> r.namespace\r\n'avocado'\r\n>>> r.repo\r\n''\r\n```" + closed_at: '2020-02-06T12:58:11Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/318/comments + created_at: '2020-01-29T13:10:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/318/events + html_url: https://github.com/packit/ogr/issues/318 + id: 556852319 labels: - - color: d93f0b + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - labels_url: https://api.github.com/repos/packit/ogr/issues/156/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/318/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3NzMxMDE1 - number: 156 + node_id: MDU6SXNzdWU1NTY4NTIzMTk= + number: 318 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/156.diff - html_url: https://github.com/packit/ogr/pull/156 - patch_url: https://github.com/packit/ogr/pull/156.patch - url: https://api.github.com/repos/packit/ogr/pulls/156 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add gitlab to service mapping - updated_at: '2019-08-20T11:55:35Z' - url: https://api.github.com/repos/packit/ogr/issues/156 + title: parse_git_repo fails to handle '/' at string end correctly + updated_at: '2020-02-06T12:58:11Z' + url: https://api.github.com/repos/packit/ogr/issues/318 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Fixes #125 \r\nTests fail because test responses can't be saved." - closed_at: '2019-08-15T14:34:37Z' - comments: 28 - comments_url: https://api.github.com/repos/packit/ogr/issues/150/comments - created_at: '2019-08-13T13:16:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/150/events - html_url: https://github.com/packit/ogr/pull/150 - id: 480151584 + body: '' + closed_at: '2020-02-06T12:47:41Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/322/comments + created_at: '2020-02-05T10:22:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/322/events + html_url: https://github.com/packit/ogr/pull/322 + id: 560273848 labels: - - color: d93f0b + - color: 18e033 default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - labels_url: https://api.github.com/repos/packit/ogr/issues/150/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/322/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA2OTAyMTg4 - number: 150 + node_id: MDExOlB1bGxSZXF1ZXN0MzcxMjkxODM1 + number: 322 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/150.diff - html_url: https://github.com/packit/ogr/pull/150 - patch_url: https://github.com/packit/ogr/pull/150.patch - url: https://api.github.com/repos/packit/ogr/pulls/150 + diff_url: https://github.com/packit/ogr/pull/322.diff + html_url: https://github.com/packit/ogr/pull/322 + patch_url: https://github.com/packit/ogr/pull/322.patch + url: https://api.github.com/repos/packit/ogr/pulls/322 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Functions for gitlab - updated_at: '2019-08-20T07:19:51Z' - url: https://api.github.com/repos/packit/ogr/issues/150 + title: Pre-commit changes + updated_at: '2020-02-06T12:47:46Z' + url: https://api.github.com/repos/packit/ogr/issues/322 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/jpopelka - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "It would be nice to finally start implementing the GitLab support.\r\ - \n\r\nWe can probably combine the code from GitHub and the already present\ - \ code.\r\n\r\nThe documentation can be found here: https://python-gitlab.readthedocs.io/en/stable/" - closed_at: '2019-08-15T14:34:37Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/125/comments - created_at: '2019-07-18T07:17:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/125/events - html_url: https://github.com/packit/ogr/issues/125 - id: 469608368 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: TomasTomecek vs Tomas Tomecek + closed_at: '2020-01-29T12:56:32Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/317/comments + created_at: '2020-01-28T15:19:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/317/events + html_url: https://github.com/packit/ogr/pull/317 + id: 556279456 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/125/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/317/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njk2MDgzNjg= - number: 125 + node_id: MDExOlB1bGxSZXF1ZXN0MzY4MDcxOTA1 + number: 317 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/317.diff + html_url: https://github.com/packit/ogr/pull/317 + patch_url: https://github.com/packit/ogr/pull/317.patch + url: https://api.github.com/repos/packit/ogr/pulls/317 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitLab support - updated_at: '2019-08-15T14:34:37Z' - url: https://api.github.com/repos/packit/ogr/issues/125 + title: 'github.pr.author: use login instead of name' + updated_at: '2020-01-30T08:42:02Z' + url: https://api.github.com/repos/packit/ogr/issues/317 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Run zuul tests both on pip and rpm.' - closed_at: '2019-08-15T14:20:14Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/155/comments - created_at: '2019-08-15T09:27:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/155/events - html_url: https://github.com/packit/ogr/pull/155 - id: 481069480 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-01-28T14:17:18Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/314/comments + created_at: '2020-01-28T14:05:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/314/events + html_url: https://github.com/packit/ogr/issues/314 + id: 556231299 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/155/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/314/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3NjQwNzUy - number: 155 + node_id: MDU6SXNzdWU1NTYyMzEyOTk= + number: 314 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/155.diff - html_url: https://github.com/packit/ogr/pull/155 - patch_url: https://github.com/packit/ogr/pull/155.patch - url: https://api.github.com/repos/packit/ogr/pulls/155 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Run zuul for pip and rpm - updated_at: '2019-08-15T14:20:18Z' - url: https://api.github.com/repos/packit/ogr/issues/155 + title: '[packit] Propose update failed for release 0.10.0' + updated_at: '2020-01-28T14:17:18Z' + url: https://api.github.com/repos/packit/ogr/issues/314 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Don't use the api url when populating the data for an issue. Use\r\ - \nthe web url so that it can be used in a web browser.\r\n\r\nFixes\ - \ #146" - closed_at: '2019-08-15T07:11:16Z' - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/151/comments - created_at: '2019-08-13T18:06:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/151/events - html_url: https://github.com/packit/ogr/pull/151 - id: 480292368 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-01-28T14:17:12Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/315/comments + created_at: '2020-01-28T14:05:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/315/events + html_url: https://github.com/packit/ogr/issues/315 + id: 556231476 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/151/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/315/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3MDE3Mjky - number: 151 + node_id: MDU6SXNzdWU1NTYyMzE0NzY= + number: 315 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/151.diff - html_url: https://github.com/packit/ogr/pull/151 - patch_url: https://github.com/packit/ogr/pull/151.patch - url: https://api.github.com/repos/packit/ogr/pulls/151 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'pagure: use web url in issue' - updated_at: '2019-08-15T13:23:23Z' - url: https://api.github.com/repos/packit/ogr/issues/151 + title: '[packit] Propose update failed for release 0.10.0' + updated_at: '2020-01-28T14:17:12Z' + url: https://api.github.com/repos/packit/ogr/issues/315 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 - events_url: https://api.github.com/users/dustymabe/events{/privacy} - followers_url: https://api.github.com/users/dustymabe/followers - following_url: https://api.github.com/users/dustymabe/following{/other_user} - gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dustymabe - id: 4530030 - login: dustymabe - node_id: MDQ6VXNlcjQ1MzAwMzA= - organizations_url: https://api.github.com/users/dustymabe/orgs - received_events_url: https://api.github.com/users/dustymabe/received_events - repos_url: https://api.github.com/users/dustymabe/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dustymabe/subscriptions - type: User - url: https://api.github.com/users/dustymabe + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #123 ' - closed_at: '2019-08-15T08:12:06Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/154/comments - created_at: '2019-08-14T15:25:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/154/events - html_url: https://github.com/packit/ogr/pull/154 - id: 480744033 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-01-28T14:17:02Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/316/comments + created_at: '2020-01-28T14:05:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/316/events + html_url: https://github.com/packit/ogr/issues/316 + id: 556231659 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/154/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/316/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3MzgxNTAw - number: 154 + node_id: MDU6SXNzdWU1NTYyMzE2NTk= + number: 316 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/154.diff - html_url: https://github.com/packit/ogr/pull/154 - patch_url: https://github.com/packit/ogr/pull/154.patch - url: https://api.github.com/repos/packit/ogr/pulls/154 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Mention Zuul in CONTRIBUTING.md and remove Jenkinsfile - updated_at: '2019-08-15T08:12:10Z' - url: https://api.github.com/repos/packit/ogr/issues/154 + title: '[packit] Propose update failed for release 0.10.0' + updated_at: '2020-01-28T14:17:02Z' + url: https://api.github.com/repos/packit/ogr/issues/316 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Can we please update the contribution guide. Ogr now uses new zuul\ - \ CI (or softwarefactory-project-zuul). \r\n\r\nI'm a little bit stuck\ - \ on what should I do to make my tests passing when PR is opened. On\ - \ my localhost, everything is working in the \"old way\" and tests are\ - \ passing." - closed_at: '2019-08-15T08:12:06Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/123/comments - created_at: '2019-07-17T12:03:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/123/events - html_url: https://github.com/packit/ogr/issues/123 - id: 469153115 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add tests for filtering\ + \ issues by author/assignee\n* Add filtering of issues by author/assignee\n\ + * Add response files\n* Add parameters to get_files method\n* WIP: add\ + \ method to list files\n* github: set repo & namespace when forking\n\ + * Implement get_tags for GithubProject\n* Fix update_pr_info (Pagure)\ + \ bug\n* Implement setters for Pagure PR\n* Implement Issue/PR setters\ + \ for Github/Gitlab\n* Add tests for PR/Issue setters for Github/Gitlab\n\ + * (#245) Improve Pagure's project_create* add reason of failure\n* Regenerate\ + \ gitlab tests after dep update\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.10.0-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-01-28T14:03:00Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/313/comments + created_at: '2020-01-27T11:51:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/313/events + html_url: https://github.com/packit/ogr/pull/313 + id: 555524947 labels: - - color: 008672 - default: true - description: Extra attention is needed - id: 1160311265 - name: help wanted - node_id: MDU6TGFiZWwxMTYwMzExMjY1 - url: https://api.github.com/repos/packit/ogr/labels/help%20wanted - - color: f9d0c4 + - color: ededed default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/123/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/313/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjkxNTMxMTU= - number: 123 + node_id: MDExOlB1bGxSZXF1ZXN0MzY3NDUwNDkz + number: 313 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/313.diff + html_url: https://github.com/packit/ogr/pull/313 + patch_url: https://github.com/packit/ogr/pull/313.patch + url: https://api.github.com/repos/packit/ogr/pulls/313 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: update contribution guide - updated_at: '2019-08-15T08:12:06Z' - url: https://api.github.com/repos/packit/ogr/issues/123 + title: 0.10.0 release + updated_at: '2020-01-28T14:05:46Z' + url: https://api.github.com/repos/packit/ogr/issues/313 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Just checking to see what is the desired behavior. I create an\ - \ issue and then print the url from the created issue. I'd then like\ - \ to open that url in a web browser and have it go to the graphical\ - \ UI and not the API.\r\n\r\nFor example:\r\n\r\n```\r\n>>> i = project.create_issue('TestIssue',\ - \ 'foo bar baz')\r\n>>> print(i.url)\r\nhttps://pagure.io/api/0/dusty/failed-composes/issue/2244\r\ - \n```\r\n\r\nBut what I really want is the url to the web frontent.\ - \ So `i.url.replace('api/0/','')`. What is the intended behavior? " - closed_at: '2019-08-15T07:11:15Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/146/comments - created_at: '2019-08-09T21:53:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/146/events - html_url: https://github.com/packit/ogr/issues/146 - id: 479180564 + author_association: MEMBER + body: Release-bot, it's time to work! + closed_at: '2020-01-27T11:51:57Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/312/comments + created_at: '2020-01-27T11:48:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/312/events + html_url: https://github.com/packit/ogr/issues/312 + id: 555523325 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/146/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/312/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzkxODA1NjQ= - number: 146 + node_id: MDU6SXNzdWU1NTU1MjMzMjU= + number: 312 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: the url in an issue object is the API url - updated_at: '2019-08-15T07:11:15Z' - url: https://api.github.com/repos/packit/ogr/issues/146 + title: new minor release + updated_at: '2020-01-27T11:51:57Z' + url: https://api.github.com/repos/packit/ogr/issues/312 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 - events_url: https://api.github.com/users/dustymabe/events{/privacy} - followers_url: https://api.github.com/users/dustymabe/followers - following_url: https://api.github.com/users/dustymabe/following{/other_user} - gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + 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/dustymabe - id: 4530030 - login: dustymabe - node_id: MDQ6VXNlcjQ1MzAwMzA= - organizations_url: https://api.github.com/users/dustymabe/orgs - received_events_url: https://api.github.com/users/dustymabe/received_events - repos_url: https://api.github.com/users/dustymabe/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + 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/dustymabe + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-08-14T12:37:27Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/153/comments - created_at: '2019-08-14T12:22:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/153/events - html_url: https://github.com/packit/ogr/pull/153 - id: 480648599 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/153/labels{/name} + author_association: CONTRIBUTOR + body: "Consider also other filtering options:\r\n\r\nThe options are:\r\ + \nhttps://github.com/PyGithub/PyGithub/blob/master/github/Repository.py#L2172-L2195" + closed_at: '2020-01-24T19:51:49Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/308/comments + created_at: '2020-01-16T10:24:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/308/events + html_url: https://github.com/packit/ogr/issues/308 + id: 550712442 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/308/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA3MzA0MjMx - number: 153 + node_id: MDU6SXNzdWU1NTA3MTI0NDI= + number: 308 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/153.diff - html_url: https://github.com/packit/ogr/pull/153 - patch_url: https://github.com/packit/ogr/pull/153.patch - url: https://api.github.com/repos/packit/ogr/pulls/153 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[README.md] Zuul badge' - updated_at: '2019-08-14T15:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/153 + title: Support listing issues based on creator + updated_at: '2020-01-24T19:51:49Z' + url: https://api.github.com/repos/packit/ogr/issues/308 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #127 ' - closed_at: '2019-08-13T07:27:51Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-01-21T11:27:06Z' comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/137/comments - created_at: '2019-07-25T10:41:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/137/events - html_url: https://github.com/packit/ogr/pull/137 - id: 472793637 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/137/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/297/comments + created_at: '2019-12-17T08:10:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/297/events + html_url: https://github.com/packit/ogr/pull/297 + id: 538905049 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/297/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzAxMDg1MDUw - number: 137 + node_id: MDExOlB1bGxSZXF1ZXN0MzUzOTcxMDUx + number: 297 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/137.diff - html_url: https://github.com/packit/ogr/pull/137 - patch_url: https://github.com/packit/ogr/pull/137.patch - url: https://api.github.com/repos/packit/ogr/pulls/137 + diff_url: https://github.com/packit/ogr/pull/297.diff + html_url: https://github.com/packit/ogr/pull/297 + patch_url: https://github.com/packit/ogr/pull/297.patch + url: https://api.github.com/repos/packit/ogr/pulls/297 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add method edit_release - updated_at: '2019-08-13T07:27:52Z' - url: https://api.github.com/repos/packit/ogr/issues/137 + title: Add method to list files + updated_at: '2020-01-21T11:27:06Z' + url: https://api.github.com/repos/packit/ogr/issues/297 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -36261,226 +38299,139 @@ requests.sessions: type: User url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: COLLABORATOR - body: Can we create a method for editing a release? We can use [this](https://pygithub.readthedocs.io/en/latest/github_objects/GitRelease.html#github.GitRelease.GitRelease.update_release) - for it. - closed_at: '2019-08-13T07:27:51Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/127/comments - created_at: '2019-07-18T08:08:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/127/events - html_url: https://github.com/packit/ogr/issues/127 - id: 469627928 + assignee: null + assignees: [] + author_association: MEMBER + body: 'Fixes #245' + closed_at: '2020-01-03T08:43:56Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/300/comments + created_at: '2019-12-30T18:09:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/300/events + html_url: https://github.com/packit/ogr/pull/300 + id: 543964942 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/127/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/300/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njk2Mjc5Mjg= - number: 127 + node_id: MDExOlB1bGxSZXF1ZXN0MzU4MTc5NDg3 + number: 300 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/300.diff + html_url: https://github.com/packit/ogr/pull/300 + patch_url: https://github.com/packit/ogr/pull/300.patch + url: https://api.github.com/repos/packit/ogr/pulls/300 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: edit Github release - updated_at: '2019-08-13T07:27:51Z' - url: https://api.github.com/repos/packit/ogr/issues/127 + title: Add resolution of failure of Pagure's project_create + updated_at: '2020-01-16T10:43:12Z' + url: https://api.github.com/repos/packit/ogr/issues/300 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #124 ' - closed_at: '2019-08-13T07:11:39Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/136/comments - created_at: '2019-07-25T07:39:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/136/events - html_url: https://github.com/packit/ogr/pull/136 - id: 472712760 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/136/labels{/name} + body: '' + closed_at: '2020-01-03T10:13:00Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/298/comments + created_at: '2019-12-19T21:12:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/298/events + html_url: https://github.com/packit/ogr/pull/298 + id: 540569497 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/298/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzAxMDE5ODMy - number: 136 + node_id: MDExOlB1bGxSZXF1ZXN0MzU1MzYwNjcy + number: 298 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/136.diff - html_url: https://github.com/packit/ogr/pull/136 - patch_url: https://github.com/packit/ogr/pull/136.patch - url: https://api.github.com/repos/packit/ogr/pulls/136 + diff_url: https://github.com/packit/ogr/pull/298.diff + html_url: https://github.com/packit/ogr/pull/298 + patch_url: https://github.com/packit/ogr/pull/298.patch + url: https://api.github.com/repos/packit/ogr/pulls/298 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: run tests on one repository - updated_at: '2019-08-13T07:11:39Z' - url: https://api.github.com/repos/packit/ogr/issues/136 + title: Setters for Issue/PR + updated_at: '2020-01-16T10:43:08Z' + url: https://api.github.com/repos/packit/ogr/issues/298 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "- Try to have only one project for testing (ideally OGR itself\ - \ in case of GitHub).\r\n- Then it is easy for everyone to regenerate\ - \ the test responses." - closed_at: '2019-08-13T07:11:39Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/124/comments - created_at: '2019-07-18T07:15:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/124/events - html_url: https://github.com/packit/ogr/issues/124 - id: 469607471 + body: "```\r\nName Stmts Miss Cover Missing\r\ + \n----------------------------------------------------------\r\nservices/github.py\ + \ 114 63 45% 17-19, 24-26, 30, 33-34, 41-42, 47, 51,\ + \ 58-61, 64, 67, 70, 73-79, 82-83, 86-87, 95-98, 108, 111, 114-115,\ + \ 118, 121, 124, 127-132, 135, 149, 170, 184, 193-203, 207-209, 212-213,\ + \ 216-217, 227, 230\r\nservices/gitlab.py 66 66 0%\ + \ 1-144\r\nservices/our_pagure.py 79 46 42% 33, 36-39,\ + \ 134-148, 160-176, 180-186, 249-256, 259-264, 267-270, 273, 276, 279-282,\ + \ 285-288, 291-294, 297-298\r\nutils.py 150 110\ + \ 27% 35-77, 82-83, 88-89, 94, 98-116, 120-130, 145-148, 163-165,\ + \ 169-176, 180-214, 219-248, 252, 260, 273\r\n```\r\n\r\nI know the\ + \ `gitlab` module is WIP, but the others deserve more tests IMHO" + closed_at: '2020-01-15T11:22:38Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/49/comments + created_at: '2019-03-26T14:47:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/49/events + html_url: https://github.com/packit/ogr/issues/49 + id: 425463412 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: 7057ff default: false description: Good for newcomers @@ -36488,13 +38439,6 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - color: f9d0c4 default: false description: Tests are impacted. @@ -36502,74 +38446,19 @@ requests.sessions: name: testing node_id: MDU6TGFiZWwxNDMyNzc5NDE5 url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/124/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/49/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njk2MDc0NzE= - number: 124 + node_id: MDU6SXNzdWU0MjU0NjM0MTI= + number: 49 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Run tests on the OGR project itself - updated_at: '2019-08-13T07:11:39Z' - url: https://api.github.com/repos/packit/ogr/issues/124 + title: Modules with poor code coverage + updated_at: '2020-01-15T11:22:38Z' + url: https://api.github.com/repos/packit/ogr/issues/49 user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-08-10T14:24:33Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/148/comments - created_at: '2019-08-10T13:32:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/148/events - html_url: https://github.com/packit/ogr/pull/148 - id: 479267763 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/148/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA2MjEyNjI0 - number: 148 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/148.diff - html_url: https://github.com/packit/ogr/pull/148 - patch_url: https://github.com/packit/ogr/pull/148.patch - url: https://api.github.com/repos/packit/ogr/pulls/148 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: testing - updated_at: '2019-08-10T14:30:25Z' - url: https://api.github.com/repos/packit/ogr/issues/148 - user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -36587,152 +38476,72 @@ requests.sessions: subscriptions_url: https://api.github.com/users/jpopelka/subscriptions type: User url: https://api.github.com/users/jpopelka - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=12: - - metadata: - latency: 0.6523966789245605 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ - \nBy PR #144 we add a bug. In `github.py` is mentioned https://github.com/packit-service/ogr/blob/master/ogr/services/github.py#L398\ - \ `get_all_pr_commits`.\r\n\r\nSuddenly it was not caught by PR review." - closed_at: '2019-08-09T14:48:39Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/145/comments - created_at: '2019-08-09T13:29:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/145/events - html_url: https://github.com/packit/ogr/pull/145 - id: 478987478 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/145/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA1OTkwNTI1 - number: 145 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/145.diff - html_url: https://github.com/packit/ogr/pull/145 - patch_url: https://github.com/packit/ogr/pull/145.patch - url: https://api.github.com/repos/packit/ogr/pulls/145 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Rename get_pr_commits to get_all_pr_commits in abstract.py - updated_at: '2019-08-09T14:48:39Z' - url: https://api.github.com/repos/packit/ogr/issues/145 - user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos - site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions - type: User - url: https://api.github.com/users/phracek - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ - \nAdd function `get_pr_commits` into `abstract.py`." - closed_at: '2019-08-08T14:03:49Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/144/comments - created_at: '2019-08-08T12:17:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/144/events - html_url: https://github.com/packit/ogr/pull/144 - id: 478434638 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/144/labels{/name} + body: "TLDR: Investigate if it is possible to reset PR/commit flags. (*added\ + \ by @lachmanfrantisek*)\r\n\r\n----\r\n\r\nI solved a problem with\ + \ reset Copr build statuses.\r\nLike can be seen here: https://github.com/packit-service/hello-world/pull/9\r\ + \n\r\nIt would be nice to look at the possibility if in case of the\ + \ pull request is not created by a collaborator to get rid of check\ + \ statuses. Like nothing is shown and the pull request can not be merged." + closed_at: '2020-01-13T09:38:06Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/133/comments + created_at: '2019-07-23T07:53:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/133/events + html_url: https://github.com/packit/ogr/issues/133 + id: 471540158 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: ff9990 + default: false + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + labels_url: https://api.github.com/repos/packit/ogr/issues/133/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA1NTQ5MTcw - number: 144 + node_id: MDU6SXNzdWU0NzE1NDAxNTg= + number: 133 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/144.diff - html_url: https://github.com/packit/ogr/pull/144 - patch_url: https://github.com/packit/ogr/pull/144.patch - url: https://api.github.com/repos/packit/ogr/pulls/144 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add get_pr_commits into abstract.py - updated_at: '2019-08-08T14:03:49Z' - url: https://api.github.com/repos/packit/ogr/issues/144 + title: Look at possibility for reseting or get rid off checkes in GitHub + updated_at: '2020-01-13T09:38:06Z' + url: https://api.github.com/repos/packit/ogr/issues/133 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 events_url: https://api.github.com/users/phracek/events{/privacy} followers_url: https://api.github.com/users/phracek/followers following_url: https://api.github.com/users/phracek/following{/other_user} @@ -36754,124 +38563,130 @@ requests.sessions: assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ - \nPull request adds a function for getting all commits for specific\ - \ PR.\r\nIt is useful when the user adds a comment into `packit-service`\ - \ like `/packit copr-build` and we would like to get especially the\ - \ latest commit from the PR.\r\n\r\nA real example:\r\nhttps://github.com/packit-service/packit-service/blob/master/packit_service/worker/github_handlers.py#L92\ - \ `pr_event/base_ref` cannot by `pr/9` but reference to the latest commit\ - \ for a pull request.\r\n\r\n- [x] Pull Request contains info about\ - \ SHA of the latest commit.\r\n- [x] tests are covered." - closed_at: '2019-08-08T10:10:30Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/140/comments - created_at: '2019-08-05T10:56:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/140/events - html_url: https://github.com/packit/ogr/pull/140 - id: 476794481 + body: '' + closed_at: '2020-01-09T08:17:00Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/305/comments + created_at: '2020-01-05T17:52:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/305/events + html_url: https://github.com/packit/ogr/pull/305 + id: 545446757 labels: - - color: 18e033 + - color: 0e8a16 default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/140/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/305/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA0MjQ5MTY2 - number: 140 + node_id: MDExOlB1bGxSZXF1ZXN0MzU5MzIyMjQw + number: 305 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/140.diff - html_url: https://github.com/packit/ogr/pull/140 - patch_url: https://github.com/packit/ogr/pull/140.patch - url: https://api.github.com/repos/packit/ogr/pulls/140 + diff_url: https://github.com/packit/ogr/pull/305.diff + html_url: https://github.com/packit/ogr/pull/305 + patch_url: https://github.com/packit/ogr/pull/305.patch + url: https://api.github.com/repos/packit/ogr/pulls/305 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Function for getting all commits from specific PR. - updated_at: '2019-08-08T10:10:30Z' - url: https://api.github.com/repos/packit/ogr/issues/140 + title: 'github: set repo & namespace when forking' + updated_at: '2020-01-09T08:40:00Z' + url: https://api.github.com/repos/packit/ogr/issues/305 user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} + 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/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions + 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/phracek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: I checked it's not used anywhere else. - closed_at: '2019-08-06T11:03:47Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/142/comments - created_at: '2019-08-06T10:20:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/142/events - html_url: https://github.com/packit/ogr/pull/142 - id: 477295662 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/142/labels{/name} + body: 'Fixes #303' + closed_at: '2020-01-06T08:18:34Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/304/comments + created_at: '2020-01-05T10:51:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/304/events + html_url: https://github.com/packit/ogr/pull/304 + id: 545401796 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/304/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA0NjQ3NzYz - number: 142 + node_id: MDExOlB1bGxSZXF1ZXN0MzU5MjkwMzMz + number: 304 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/142.diff - html_url: https://github.com/packit/ogr/pull/142 - patch_url: https://github.com/packit/ogr/pull/142.patch - url: https://api.github.com/repos/packit/ogr/pulls/142 + diff_url: https://github.com/packit/ogr/pull/304.diff + html_url: https://github.com/packit/ogr/pull/304 + patch_url: https://github.com/packit/ogr/pull/304.patch + url: https://api.github.com/repos/packit/ogr/pulls/304 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: PersistenStorageException -> PersistentStorageException - updated_at: '2019-08-06T11:03:50Z' - url: https://api.github.com/repos/packit/ogr/issues/142 + title: Implement get_tags for GithubProject + updated_at: '2020-01-06T08:48:26Z' + url: https://api.github.com/repos/packit/ogr/issues/304 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: '' - closed_at: '2019-08-06T07:30:48Z' - comments: 23 - comments_url: https://api.github.com/repos/packit/ogr/issues/129/comments - created_at: '2019-07-18T17:29:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/129/events - html_url: https://github.com/packit/ogr/pull/129 - id: 469897903 + body: "```\r\nipdb> git_project \ + \ \ + \ \r\n\r\n\r\nipdb> git_project.get_tags \ + \ \r\n>\r\n\r\nipdb> git_project.get_tags() \ + \ \r\n*** NotImplementedError\r\n```" + closed_at: '2020-01-06T08:18:34Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/303/comments + created_at: '2020-01-03T14:36:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/303/events + html_url: https://github.com/packit/ogr/issues/303 + id: 545018569 labels: - color: '000000' default: false @@ -36880,13 +38695,6 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: a2eeef default: false description: New feature or a request for enhancement. @@ -36894,123 +38702,93 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/129/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/303/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk5MDE3NDM2 - number: 129 + node_id: MDU6SXNzdWU1NDUwMTg1Njk= + number: 303 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/129.diff - html_url: https://github.com/packit/ogr/pull/129 - patch_url: https://github.com/packit/ogr/pull/129.patch - url: https://api.github.com/repos/packit/ogr/pulls/129 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Fix Issue #126, implemented get_email' - updated_at: '2019-08-06T07:30:49Z' - url: https://api.github.com/repos/packit/ogr/issues/129 + title: get_tags is not implemented for GithubProject + updated_at: '2020-01-06T08:18:34Z' + url: https://api.github.com/repos/packit/ogr/issues/303 user: - avatar_url: https://avatars1.githubusercontent.com/u/38399871?v=4 - events_url: https://api.github.com/users/yzhang2907/events{/privacy} - followers_url: https://api.github.com/users/yzhang2907/followers - following_url: https://api.github.com/users/yzhang2907/following{/other_user} - gists_url: https://api.github.com/users/yzhang2907/gists{/gist_id} + 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/yzhang2907 - id: 38399871 - login: yzhang2907 - node_id: MDQ6VXNlcjM4Mzk5ODcx - organizations_url: https://api.github.com/users/yzhang2907/orgs - received_events_url: https://api.github.com/users/yzhang2907/received_events - repos_url: https://api.github.com/users/yzhang2907/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/yzhang2907/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/yzhang2907/subscriptions + 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/yzhang2907 + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "I made `git cherry-pick` of all @yzhang2907 commits in PR #129\ - \ which solves #126. I also found out that there is no current way how\ - \ to get the user's email from Pagure API and @yzhang2907 code wouldn't\ - \ work for Pagure. However, the code for Github is fine now. \r\n\r\n" - closed_at: '2019-08-06T07:27:43Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/141/comments - created_at: '2019-08-05T12:28:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/141/events - html_url: https://github.com/packit/ogr/pull/141 - id: 476831775 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/141/labels{/name} + author_association: CONTRIBUTOR + body: "this means to use standard-test-roles to wrap our tests so they\ + \ can run when we create PRs on dist-git\r\n\r\nsee [python-docker's\ + \ test wrapper](https://src.fedoraproject.org/rpms/python-docker/blob/master/f/tests)\ + \ for more details" + closed_at: '2020-01-03T14:54:39Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/29/comments + created_at: '2019-03-01T17:18:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/29/events + html_url: https://github.com/packit/ogr/issues/29 + id: 416200836 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/29/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzA0Mjc5NjI3 - number: 141 + node_id: MDU6SXNzdWU0MTYyMDA4MzY= + number: 29 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/141.diff - html_url: https://github.com/packit/ogr/pull/141 - patch_url: https://github.com/packit/ogr/pull/141.patch - url: https://api.github.com/repos/packit/ogr/pulls/141 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get-email - updated_at: '2019-08-06T07:27:43Z' - url: https://api.github.com/repos/packit/ogr/issues/141 - user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: https://packit.dev/docs/configuration/#supported-jobs - closed_at: '2019-07-30T10:59:00Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/138/comments - created_at: '2019-07-30T07:31:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/138/events - html_url: https://github.com/packit/ogr/pull/138 - id: 474421629 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/138/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzAyMzY2NTU5 - number: 138 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/138.diff - html_url: https://github.com/packit/ogr/pull/138 - patch_url: https://github.com/packit/ogr/pull/138.patch - url: https://api.github.com/repos/packit/ogr/pulls/138 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'packit.yaml: propose_downstream: s/_/-/' - updated_at: '2019-07-30T14:27:13Z' - url: https://api.github.com/repos/packit/ogr/issues/138 + title: run our tests in Fedora CI + updated_at: '2020-01-05T17:00:32Z' + url: https://api.github.com/repos/packit/ogr/issues/29 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -37032,260 +38810,143 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* method _pr_from_github_object\ - \ differentiate closed and merged status\n* allow usage of PRStatus.merged\ - \ for github pull requests\n* add get_latest_release(), create Releases\ - \ class in test_github.py\n* Simplify imports\n* Split mocking and persistent_storage\n\ - * Fix github-app authentication\n* Rename env-var for mocking and allow\ - \ setting response file from RESPONSE_FILE env-var\n* Use PersistentObjectStorage\ - \ as a Singleton\n* Split mocking and read_only from mocking\n* Set\ - \ persistent storage only via class\n* Update mocking of GithubIntegration\ - \ from PyGithub\n* Improve mocking and add support for authentication\ - \ as a github-app\n* improve tests from previous commit\n* add labeling\ - \ github pull requests\n* mistake fixed\n* PRFlag changed back to PRStatus\n\ - * CommitStatus, PRStatus renamed to CommitFlag, PRFlag\n* use zuul for\ - \ realz now\n* test changed\n* method create release for github created\n\ - * add zuul config\n* bump base image to F30\n* add get_releses for Pagure\n\ - * unused functions removed\n* add get_releases/get_release into abstract.py\n\ - * add who_can_marge_pr and who_can_close_issue\n* delete obsolete comments\n\ - * fix review notes, add can_close_issue and can_merge_pr, remove who_can_close_issue\ - \ and who_can_merge_pr\n* fix mypy errors\n* get project's owners and\ - \ permissions of various users\n* split test_get_tag_from_tag_name\n\ - * value of git_tag in github Release set\n* link to GitTag from Release\ - \ added\n* collections.Hashable -> collections.abc.Hashable\n* Make\ - \ PersistentObjectStorage.__init__() backwards compatible\n* in get_file_content\ - \ catch only 404\n* subprocess.run fix\n* unify external command invocation\ - \ by subprocess.run\n* Add integration tests for factory and add more\ - \ unit tests\n* Add docstrings to factory and types to parsing\n* Add\ - \ get_project and get_service_class to global imports\n* Add tests for\ - \ parsing\n* Add tests for factory\n* Add __eq__ for projects and services\n\ - * Save more attributes about parsed url\n* [github] Be lazy with github_repo\ - \ object from pygithub\n* Fix __str__ after rebase\n* Add support for\ - \ services-mapping update\n* Import services in ogr/__init__.py to see\ - \ it in the mapping\n* Add method for creating projects from url\n*\ - \ Get project from url\n* fix code format issues\n* add tests, fix review\ - \ notes\n* creating/closing/commenting Pagure Issues\n* Fix formating\ - \ for __str__ methods\n* Changes requested to_str_method of classes\n\ - * Added instantiation-like syntax\n* Added __str__ method to classes\n\ - * Added __str__ method to classes\n\n\nYou can change it by editing\ - \ `CHANGELOG.md` in the root of this repository and pushing to `0.6.0-release`\ - \ branch before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2019-07-25T07:48:18Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/135/comments - created_at: '2019-07-23T11:55:07Z' - events_url: https://api.github.com/repos/packit/ogr/issues/135/events - html_url: https://github.com/packit/ogr/pull/135 - id: 471653597 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/135/labels{/name} + body: "During the implementation of setters for PR for Pagure (#298) I've\ + \ found out that Pagure's API requires title to be given (which seems\ + \ a bit odd, since why would you need to give title when you want to\ + \ update only description).\r\n\r\nWill fix in PR above, just letting\ + \ know about the bug." + closed_at: '2020-01-03T10:13:01Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/299/comments + created_at: '2019-12-26T21:35:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/299/events + html_url: https://github.com/packit/ogr/issues/299 + id: 542675897 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/299/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzAwMjYxMzU3 - number: 135 + node_id: MDU6SXNzdWU1NDI2NzU4OTc= + number: 299 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/135.diff - html_url: https://github.com/packit/ogr/pull/135 - patch_url: https://github.com/packit/ogr/pull/135.patch - url: https://api.github.com/repos/packit/ogr/pulls/135 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.6.0 release - updated_at: '2019-07-25T07:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/135 + title: Updating PullRequest info (Pagure) + updated_at: '2020-01-03T10:13:01Z' + url: https://api.github.com/repos/packit/ogr/issues/299 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Based on our discussion in PR #128 this code makes consistency\ - \ in `get_pr_list(status)` between Pagure and Github. We can use `PRStatus.merged`\ - \ for Github now.\r\n\r\nCan we close #128 without merging? It was easier\ - \ to create a new branch since the code is completely different.\r\n" - closed_at: '2019-07-23T11:51:08Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/130/comments - created_at: '2019-07-21T13:19:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/130/events - html_url: https://github.com/packit/ogr/pull/130 - id: 470780887 + author_association: CONTRIBUTOR + body: started porting upsint to ogr and realized that I can't get all + labels defined on a repo + closed_at: '2020-01-03T09:14:39Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/301/comments + created_at: '2020-01-02T12:24:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/301/events + html_url: https://github.com/packit/ogr/issues/301 + id: 544558708 labels: - - color: '000000' + - color: a2eeef default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/130/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk5NjM1NzU2 - number: 130 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/130.diff - html_url: https://github.com/packit/ogr/pull/130 - patch_url: https://github.com/packit/ogr/pull/130.patch - url: https://api.github.com/repos/packit/ogr/pulls/130 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: allow usage of PRStatus.merged for Github get_pr_list(status) - updated_at: '2019-07-23T12:16:08Z' - url: https://api.github.com/repos/packit/ogr/issues/130 - user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - - active_lock_reason: null - assignee: null - assignees: [] - author_association: COLLABORATOR - body: "It's pretty common looking for the latest release only. It would\ - \ be useful to have a fast method for it without looking for some identifier\ - \ or getting all releases. Here it is. \r\n\r\nI also think that tests\ - \ for releases were in the incorrect class. Release tests which are\ - \ increasing deserve its own class. " - closed_at: '2019-07-23T11:01:50Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/131/comments - created_at: '2019-07-21T15:22:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/131/events - html_url: https://github.com/packit/ogr/pull/131 - id: 470793486 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/131/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/301/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk5NjQ0MzIy - number: 131 + node_id: MDU6SXNzdWU1NDQ1NTg3MDg= + number: 301 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/131.diff - html_url: https://github.com/packit/ogr/pull/131 - patch_url: https://github.com/packit/ogr/pull/131.patch - url: https://api.github.com/repos/packit/ogr/pulls/131 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add get_latest_release(), create Releases class in test_github.py - updated_at: '2019-07-23T12:12:58Z' - url: https://api.github.com/repos/packit/ogr/issues/131 + title: 'RFE: get repo labels' + updated_at: '2020-01-03T09:14:39Z' + url: https://api.github.com/repos/packit/ogr/issues/301 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-07-23T11:55:10Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/134/comments - created_at: '2019-07-23T11:52:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/134/events - html_url: https://github.com/packit/ogr/issues/134 - id: 471652493 + body: "When creating a project in Pagure and setting the namespace, we\ + \ get a general `not a valid choice`.\r\n\r\nIt would be useful to determine\ + \ these two possibilities:\r\n\r\n- non-existing namespace\r\n- no permissions\r\ + \n\r\n---\r\n\r\nThe follow-up to #242 ." + closed_at: '2020-01-03T08:43:55Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/245/comments + created_at: '2019-10-14T13:29:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/245/events + html_url: https://github.com/packit/ogr/issues/245 + id: 506654479 labels: - - color: ededed + - color: 1d76db default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 8be567 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/134/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/245/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzE2NTI0OTM= - number: 134 + node_id: MDU6SXNzdWU1MDY2NTQ0Nzk= + number: 245 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-07-23T11:55:10Z' - url: https://api.github.com/repos/packit/ogr/issues/134 + title: Determine the reason of project_create failure in Pagure namespace + updated_at: '2020-01-03T08:43:55Z' + url: https://api.github.com/repos/packit/ogr/issues/245 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -37303,138 +38964,123 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + _next: null + elapsed: 0.407752 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:04 GMT + ETag: W/"0db7da5a59ca36178f88d071c9c0dd6e25f44a577d75fc3a857b105d24854c7c" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78F3E7:133446C:6075DC9C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4305' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '695' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=11: + - metadata: + latency: 0.5108993053436279 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "`PullRequest` class in abstract.py already has `status` field.\ - \ \r\n\r\nIn the case of Github, the set of values from API for this\ - \ field is `open`/`closed`/`all` and therefore there is missing value\ - \ `merged`. I added `is_merged` field into `PullRequest` class (since\ - \ it causes bugs in release-bot).\r\n\r\nI set the new `is_merged` field\ - \ also for Pagure." - closed_at: '2019-07-23T07:43:52Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/128/comments - created_at: '2019-07-18T10:12:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/128/events - html_url: https://github.com/packit/ogr/pull/128 - id: 469685206 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/128/labels{/name} + author_association: MEMBER + body: '' + closed_at: '2019-12-16T14:39:27Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/296/comments + created_at: '2019-12-16T11:17:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/296/events + html_url: https://github.com/packit/ogr/pull/296 + id: 538347978 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/296/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk4ODQ0ODYy - number: 128 + node_id: MDExOlB1bGxSZXF1ZXN0MzUzNTA4NTk4 + number: 296 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/128.diff - html_url: https://github.com/packit/ogr/pull/128 - patch_url: https://github.com/packit/ogr/pull/128.patch - url: https://api.github.com/repos/packit/ogr/pulls/128 + diff_url: https://github.com/packit/ogr/pull/296.diff + html_url: https://github.com/packit/ogr/pull/296 + patch_url: https://github.com/packit/ogr/pull/296.patch + url: https://api.github.com/repos/packit/ogr/pulls/296 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add is_merged field into PullRequest - updated_at: '2019-07-23T07:43:52Z' - url: https://api.github.com/repos/packit/ogr/issues/128 + title: Regenerate gitlab tests after dep update + updated_at: '2019-12-16T14:40:17Z' + url: https://api.github.com/repos/packit/ogr/issues/296 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "- Improve saving responses.\r\n - Use Singleton for `PersistentObjectStorage`.\r\ - \n - Enable saving responses by env-var (`RECORD_REQUESTS`).\r\n\ - - Add support for authentication as a github-app.\r\n\r\n\r\n-----\r\ - \n\r\n### Usage:\r\n- Set `RECORD_REQUESTS` env. variable to turn it\ - \ on and import services directly from ogr.\r\n - Use `from ogr import\ - \ PagureService`, not `from ogr.services.pagure import PagureService`.\r\ - \n - You can use the following code in the `__init__.py` to enable\ - \ mocking for whole module:\r\n ```python\r\n import os\r\n \ - \ os.environ[\"RECORD_REQUESTS\"] = \"TRUE\"\r\n ```\r\n- Set the\ - \ storage file name before the test:\r\n ```python\r\n PersistentObjectStorage().storage_file\ - \ = persistent_data_file\r\n ```\r\n - In OGR we are using file\ - \ per test -- we have the following code in the `setUp` in `TestCase`:\r\ - \n ```python\r\n test_name = self.id() or \"all\"\r\n \ - \ persistent_data_file = os.path.join(\r\n PERSISTENT_DATA_PREFIX,\ - \ f\"test_github_data_{test_name}.yaml\"\r\n )\r\n PersistentObjectStorage().storage_file\ - \ = persistent_data_file\r\n ```\r\n- You can use `PersistentObjectStorage().is_write_mode`\ - \ to check the mode.\r\n\r\n-----\r\n\r\nTODO:\r\n\r\n\r\n- [x] less\ - \ magic in ogr/__init__.py\r\n- ~~[ ] docs~~ will make a new PR\r\n\ - - ~~[ ] fix the test for github-app~~ I am having some problems with\ - \ python-crypto -- I can fix that later to not leave that here for so\ - \ long." - closed_at: '2019-07-23T07:42:32Z' - comments: 22 - comments_url: https://api.github.com/repos/packit/ogr/issues/113/comments - created_at: '2019-07-11T10:58:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/113/events - html_url: https://github.com/packit/ogr/pull/113 - id: 466821422 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/113/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2NTkxMzkx - number: 113 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/113.diff - html_url: https://github.com/packit/ogr/pull/113 - patch_url: https://github.com/packit/ogr/pull/113.patch - url: https://api.github.com/repos/packit/ogr/pulls/113 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Authentication as a github app and mocking upgrade - updated_at: '2019-07-23T07:42:46Z' - url: https://api.github.com/repos/packit/ogr/issues/113 - user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + assignee: + 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} @@ -37452,105 +39098,8 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - author_association: MEMBER - body: "It would be useful to have a method for getting the owner(s) of\ - \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ - \ `get_owners` and return list of strings." - closed_at: '2019-07-18T07:11:53Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments - created_at: '2019-06-26T07:44:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/88/events - html_url: https://github.com/packit/ogr/issues/88 - id: 460813032 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NjA4MTMwMzI= - number: 88 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add get_owner/get_owners method to project classes - updated_at: '2019-07-18T07:11:53Z' - url: https://api.github.com/repos/packit/ogr/issues/88 - user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + - 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} @@ -37568,164 +39117,286 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: COLLABORATOR - body: Just copied labeling from issues and create the same for pull requests. - closed_at: '2019-07-18T05:03:03Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/122/comments - created_at: '2019-07-17T11:08:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/122/events - html_url: https://github.com/packit/ogr/pull/122 - id: 469130471 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Change IntEnum to Enum\n\ + * Implement enum for CommitFlag states\n* Fix typos and add tests\n\ + * Implement flags for pull requests\n* Implement CommitFlag for services\n\ + * Add methods to abstract CommitFlag\n* Fix typo in comments\n* Move\ + \ deprecation to separate file\n* Fix backward compatibility on pull\ + \ requests\n* Change attribute comment to body on comments\n* Add backward\ + \ links to comments Closes #255\n* Implement editing comments\n* Return\ + \ smoke test\n* Increase version for packit propose-update\n* Implementation\ + \ of GitPython instead of calling subprocess\n* Fix remarks from review\n\ + * Fix tests\n* Fix small typos and add dummy parameters/attributes\n\ + * Rename pr_create to create_pr and pr_id to id\n* Implement static\ + \ methods for PRs\n* Move deprecated functions to base project and deprecate\ + \ them\n* Create read-only PullRequest class\n* Remove unused code,\ + \ refactor code, change name of method\n* Implement pull request for\ + \ Pagure\n* Implement pull request for Gitlab\n* Implement pull request\ + \ for Github\n* Implement base class for pull request\n* Add methods\ + \ to abstract PullRequest\n* Ignore smoke test\n* Add .fmf and setup\ + \ testing-farm\n* Rename deprecation decorator\n* Change deprecation\ + \ messages\n* Pass parameters to Issue functions explicitly\n* Update\ + \ deprecation warnings for Issue functions\n* Implement updating Issue\ + \ object for Pagure\n* Add tests for updating issue object\n* Deprecate\ + \ Issue functions and fix tests\n* Move issue create, get, get_list\ + \ to static methods\n* Update docstrings\n* Fix typos\n* Change get_labels\ + \ to property and add_labels to variable-length args\n* Create properties\ + \ for Issue and implement them\n* Move deprecated issue-related functions\ + \ to base class\n* Rename functions in Issue and move raw_issue/project\ + \ to abstract\n* Factor out `can_close_issue`\n* Implement separate\ + \ Issue for Pagure\n* Implement separate Issue for GitLab\n* Implement\ + \ separate Issue for GitHub\n* Add methods to abstract Issue and implement\ + \ BaseIssue\n* Remove unused import (AnyComment)\n* Factor out filtering\ + \ comments to only one method\n* Add methods to abstract Issue\n* Fis\ + \ integration tests. Change PersistentObjectStorage().is_write_mode\ + \ to PersistentObjectStorage().mode == StorageMode.write\n* Add requirements\ + \ to zuul yaml\n* Remove Deprecated from test env\n* Add Deprecated\ + \ to dependencies\n* Remove github_tweak to use upstream github function\n\ + * temporary integration test method PullRequest._pr_close_temp() removed\n\ + * GithbProject.pr_close() implemented, integration tests added\n* instegration\ + \ test splited, related function headers updated, precommit fixes\n\ + * pre-commit fixes\n* response file genrated\n* integration test added\n\ + * pre-commit fixes\n* github_pr_create_rework_250\n* Fix the path to\ + \ the packit tests\n* Use requre-purge to unify the dates and tags in\ + \ response files\n* Tweak the stale-bot config\n* throw exception when\ + \ repo not found\n* write bytes as bytes to file\n* fix changes with\ + \ type hint inheritance\n* update NoReturns\n* type hint changes\n*\ + \ type hint changes\n* improve typehints for abstract.py\n* improve\ + \ typehint coverage in utils.py\n* Update contributing text in README\n\ + * Add link to contribution guide to README\n* Fix mypy remarks in Pagure's\ + \ comments\n* Add config for stale bot\n* changes args to Any\n* type\ + \ hint changes\n* black format\n* improve typehints for exceptions.py\n\ + * Fix black formatting\n* improve typehints for parsing.py\n* Resolve\ + \ remarks from review\n* (#230) Refactor parsing raw_comment\n* Change\ + \ method name\n* (#230) Update constructors and factor out raw_comment\n\ + * Remove duplicit import\n* Use bond TypeVar for abstract comment typing\n\ + * (#230) Support services' Issue/PRComment creation as in superclass\n\ + * (#230) Added TODO for backward-link and added raw_comment to objects\n\ + * (#230) Pagure comments (PR, Issue) implementation\n* (#230) Keep GithubProject.pr_comment\ + \ return type as before\n* (#230) Gitlab comments (PR, Issue) implementation\n\ + * (#230) Github comments (PR, Issue) implementation\n* (#230) Refactor\ + \ abstract classes for comments\n* Use new format for requre\n* Add\ + \ rebase check to pre-commit\n* (#240) Add parameter to Gitlab to get\ + \ comments in right order\n* (#240) Add tests for filtering Issue/PR\ + \ comments by author\n* Fix order of Gitlab's PR comments\n* (#240)\ + \ Update tests after factoring out getting comments\n* (#240) Refactor\ + \ of pr/issue comments\n* (#240) Extend get_issue/pr_comments interface\ + \ of filtering by author\n* (#240) Update filter_comments support\n\ + * (#204) Add test for creating Pagure project in invalid namespace\n\ + * Add response for creating Pagure repo in the namespace\n* (#204) Add\ + \ project_create to PagureService and add tests for it\n* (#232) Finish\ + \ Gitlab tests\n* (#232) Pagure tests finished\n* (#232) Start regenerating\ + \ GitLab tests\n* (#232) Started regenerating tests for Pagure\n* Newline\ + \ added\n* (#232) Fix GitHub tests\n* (#232) Update fullname of calling\ + \ objects for GitHub\n* (#232) Regenerate factory test_data\n* (#232)\ + \ Fix mypy/flake8 errors for gitlab and pagure\n* Fix mypy errors for\ + \ github\n* (#232) Fix circular imports\n* (#232) Pagure split and __init__\n\ + * (#232) GitLab split and __init__\n* (#232) GitHub split and __init__\n\ + * Add reverse-dependency test of packit\n* prepare for rev dependency\ + \ testing, set project dir in case it not come from zuul\n* remove all\ + \ stuff what were moved to requre project\n* Add Developer Certificate\ + \ of Origin\n* (#233) Update imports in Gitlab tests\n* Recreate old\ + \ response files\n* use requre for storing data for tests\n* (#205)\ + \ Update responses to match updated PagureService.get_project\n* (#205)\ + \ Add test_data for Pagure.get_issue_comments\n* (#205) Implement Pagure.get_issue_comments\ + \ and add tests\n* (#205) Implement Gitlab.get_issue_comments and add\ + \ tests\n* Fix formatting\n* (#205) Add Githubproject.get_issue_comments\ + \ and tests for it\n* Fix formatting\n* (#220) Regenerate responses\ + \ + update broken test\n* (#220) Pass username to PagureProject in get_project\ + \ if not given\n* (#220) PagureProject.is_fork offline and add method\ + \ for API call\n* (#220) Regenerate responses and add test\n* (#220)\ + \ Make PagureProject.full_repo_name property offline\n\n\nYou can change\ + \ it by editing `CHANGELOG.md` in the root of this repository and pushing\ + \ to `0.9.0-release` branch before merging this PR.\nI didn't find any\ + \ files where `__version__` is set." + closed_at: '2019-12-06T13:29:05Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/291/comments + created_at: '2019-12-04T09:37:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/291/events + html_url: https://github.com/packit/ogr/pull/291 + id: 532560063 labels: - - color: '000000' + - color: ededed default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/122/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/291/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk4NDE5MTM2 - number: 122 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ4Nzg0MjM1 + number: 291 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/122.diff - html_url: https://github.com/packit/ogr/pull/122 - patch_url: https://github.com/packit/ogr/pull/122.patch - url: https://api.github.com/repos/packit/ogr/pulls/122 + diff_url: https://github.com/packit/ogr/pull/291.diff + html_url: https://github.com/packit/ogr/pull/291 + patch_url: https://github.com/packit/ogr/pull/291.patch + url: https://api.github.com/repos/packit/ogr/pulls/291 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add labeling github pull requests - updated_at: '2019-07-18T05:03:03Z' - url: https://api.github.com/repos/packit/ogr/issues/122 + title: 0.9.0 release + updated_at: '2019-12-14T17:33:42Z' + url: https://api.github.com/repos/packit/ogr/issues/291 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #73 ' - closed_at: '2019-07-17T12:52:02Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/118/comments - created_at: '2019-07-15T08:21:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/118/events - html_url: https://github.com/packit/ogr/pull/118 - id: 467997614 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/118/labels{/name} + body: '- Add trim commit flag descripttion to all implementations.' + closed_at: '2019-12-06T08:41:20Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/294/comments + created_at: '2019-12-05T09:15:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/294/events + html_url: https://github.com/packit/ogr/pull/294 + id: 533219952 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/294/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTE0NDAy - number: 118 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ5MzMyNDEx + number: 294 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/118.diff - html_url: https://github.com/packit/ogr/pull/118 - patch_url: https://github.com/packit/ogr/pull/118.patch - url: https://api.github.com/repos/packit/ogr/pulls/118 + diff_url: https://github.com/packit/ogr/pull/294.diff + html_url: https://github.com/packit/ogr/pull/294 + patch_url: https://github.com/packit/ogr/pull/294.patch + url: https://api.github.com/repos/packit/ogr/pulls/294 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: CommitStatus, PRStatus renamed to CommitFlag, PRFlag - updated_at: '2019-07-17T12:52:02Z' - url: https://api.github.com/repos/packit/ogr/issues/118 + title: Trim description of commit flag to abstract + updated_at: '2019-12-06T09:52:59Z' + url: https://api.github.com/repos/packit/ogr/issues/294 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "What about changing `CommitStatus`/`PullRequestStatus` to `CommitFlag`/`PullRequestFlag`?\r\ - \n\r\n_Original discussion: https://github.com/packit-service/ogr/pull/71#pullrequestreview-240461635_" - closed_at: '2019-07-17T12:52:02Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/73/comments - created_at: '2019-05-29T07:10:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/73/events - html_url: https://github.com/packit/ogr/issues/73 - id: 449635096 + body: "We are using `open` in the status enums, but `closed`.\r\n\r\n\ + Currently, we need to replace that for GitLab manually and GitHub probably\ + \ needs that fix as well. I am not sure about Pagure.\r\n\r\nIdeally,\ + \ we need to change our API, but we have some usages in other projects:\r\ + \n\r\n\r\n- [ ] packit\r\n - https://github.com/packit-service/packit/blob/master/tests/testsuite_basic/conftest.py#L114\ + \ (just a test)\r\n- [x] packit-service (no occurences found)\r\n- [\ + \ ] release-bot\r\n - https://github.com/user-cont/release-bot/blob/master/release_bot/github.py#L308" + closed_at: '2019-12-04T12:26:57Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/193/comments + created_at: '2019-09-11T14:03:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/193/events + html_url: https://github.com/packit/ogr/issues/193 + id: 492259504 labels: - - color: 7057ff + - color: '000000' default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/73/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/193/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDk2MzUwOTY= - number: 73 + node_id: MDU6SXNzdWU0OTIyNTk1MDQ= + number: 193 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Change "Status" to "Flag" in the class names - updated_at: '2019-07-17T12:52:02Z' - url: https://api.github.com/repos/packit/ogr/issues/73 + title: Investigate 'open' x 'opened' status for Issues and PullRequests + updated_at: '2019-12-04T12:26:57Z' + url: https://api.github.com/repos/packit/ogr/issues/193 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -37747,198 +39418,88 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "EDIT (jpopelka): https://zuul-ci.org/docs/zuul/user/config.html#project\r\ - \nEDIT2 (jpopelka): http://post-office.corp.redhat.com/archives/user-cont/2019-July/msg00086.html" - closed_at: '2019-07-17T08:25:26Z' - comments: 28 - comments_url: https://api.github.com/repos/packit/ogr/issues/120/comments - created_at: '2019-07-15T11:53:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/120/events - html_url: https://github.com/packit/ogr/pull/120 - id: 468084884 - labels: - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/120/labels{/name} + body: 'Closes #193 ' + closed_at: '2019-12-04T12:25:00Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/293/comments + created_at: '2019-12-04T11:19:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/293/events + html_url: https://github.com/packit/ogr/pull/293 + id: 532619628 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/293/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTg1NDQ5 - number: 120 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ4ODM0MjE0 + number: 293 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/120.diff - html_url: https://github.com/packit/ogr/pull/120 - patch_url: https://github.com/packit/ogr/pull/120.patch - url: https://api.github.com/repos/packit/ogr/pulls/120 + diff_url: https://github.com/packit/ogr/pull/293.diff + html_url: https://github.com/packit/ogr/pull/293 + patch_url: https://github.com/packit/ogr/pull/293.patch + url: https://api.github.com/repos/packit/ogr/pulls/293 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add zuul config - updated_at: '2019-07-17T12:32:37Z' - url: https://api.github.com/repos/packit/ogr/issues/120 + title: Change statuses from `open` to `opened` + updated_at: '2019-12-04T12:26:08Z' + url: https://api.github.com/repos/packit/ogr/issues/293 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #111 ' - closed_at: '2019-07-17T07:14:35Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/114/comments - created_at: '2019-07-11T14:09:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/114/events - html_url: https://github.com/packit/ogr/pull/114 - id: 466916976 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/114/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2NjcwNDMw - number: 114 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/114.diff - html_url: https://github.com/packit/ogr/pull/114 - patch_url: https://github.com/packit/ogr/pull/114.patch - url: https://api.github.com/repos/packit/ogr/pulls/114 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: method create release for github created - updated_at: '2019-07-17T07:14:36Z' - url: https://api.github.com/repos/packit/ogr/issues/114 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - author_association: MEMBER - body: "For `Github` we can get the releases:\r\nhttps://github.com/packit-service/ogr/blob/master/ogr/services/github.py#L571\r\ - \n\r\nWe need to also create a new release from API.\r\n\r\n---\r\n\r\ - \nRelevant documentation:\r\nhttps://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_git_release" - closed_at: '2019-07-17T07:14:35Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/111/comments - created_at: '2019-07-11T08:20:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/111/events - html_url: https://github.com/packit/ogr/issues/111 - id: 466738216 + body: '- Allow creating sommit flags with commit state as a string.' + closed_at: '2019-12-04T11:17:22Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/292/comments + created_at: '2019-12-04T10:10:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/292/events + html_url: https://github.com/packit/ogr/pull/292 + id: 532578973 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/111/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/292/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjY3MzgyMTY= - number: 111 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ4Nzk5Njcy + number: 292 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/292.diff + html_url: https://github.com/packit/ogr/pull/292 + patch_url: https://github.com/packit/ogr/pull/292.patch + url: https://api.github.com/repos/packit/ogr/pulls/292 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Allow creating releases - updated_at: '2019-07-17T07:14:35Z' - url: https://api.github.com/repos/packit/ogr/issues/111 + title: Fix flags to be compatible with string states + updated_at: '2019-12-04T12:04:38Z' + url: https://api.github.com/repos/packit/ogr/issues/292 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -37960,103 +39521,43 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #103 ' - closed_at: '2019-07-16T13:56:45Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/119/comments - created_at: '2019-07-15T10:07:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/119/events - html_url: https://github.com/packit/ogr/pull/119 - id: 468043834 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/119/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTUxNjYx - number: 119 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/119.diff - html_url: https://github.com/packit/ogr/pull/119 - patch_url: https://github.com/packit/ogr/pull/119.patch - url: https://api.github.com/repos/packit/ogr/pulls/119 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: unused functions in utils.py removed - updated_at: '2019-07-16T13:56:45Z' - url: https://api.github.com/repos/packit/ogr/issues/119 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "In #102, I've realized that most of the functions in [utils.py](https://github.com/packit-service/ogr/blob/master/ogr/utils.py)\ - \ are never used.\r\n\r\nWe need to go through the functions and check\ - \ if they are not used anywhere (please, control the packit codebase\ - \ as well) and remove the unused ones.\r\n\r\n----\r\n\r\nIn the other\ - \ hand, we can move here the [LocalProject](https://github.com/packit-service/packit/blob/master/packit/local_project.py)\ - \ or other git-related code from the Packit. Do we want OGR to be only\ - \ remote API or git-helper?" - closed_at: '2019-07-16T13:56:45Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/103/comments - created_at: '2019-07-09T09:27:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/103/events - html_url: https://github.com/packit/ogr/issues/103 - id: 465672061 + body: There was done a lot of work after the last release. Let's make + a new one! + closed_at: '2019-12-04T09:37:32Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/290/comments + created_at: '2019-12-04T09:32:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/290/events + html_url: https://github.com/packit/ogr/issues/290 + id: 532557330 labels: - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 + - color: ededed default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/103/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/290/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjU2NzIwNjE= - number: 103 + node_id: MDU6SXNzdWU1MzI1NTczMzA= + number: 290 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Clean the ogr/utils.py - updated_at: '2019-07-16T13:56:45Z' - url: https://api.github.com/repos/packit/ogr/issues/103 + title: new minor release + updated_at: '2019-12-04T09:37:32Z' + url: https://api.github.com/repos/packit/ogr/issues/290 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -38077,1132 +39578,1034 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Functions `get_release` and `get_releases` implemented in services/github.py\ - \ were missing in the abstract.py. I also fixed notes from PR #101 which\ - \ was added after PR was merged. \r\n\r\n**Edit:** I also added functionality\ - \ `get_releases` for Pagure in the second commit." - closed_at: '2019-07-15T11:44:25Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/117/comments - created_at: '2019-07-15T08:12:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/117/events - html_url: https://github.com/packit/ogr/pull/117 - id: 467994039 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/117/labels{/name} + author_association: MEMBER + body: 'Fixes: #288 ' + closed_at: '2019-12-03T16:04:47Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/289/comments + created_at: '2019-12-03T15:07:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/289/events + html_url: https://github.com/packit/ogr/pull/289 + id: 532051771 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/289/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTExNTgx - number: 117 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ4MzgyNjMw + number: 289 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/117.diff - html_url: https://github.com/packit/ogr/pull/117 - patch_url: https://github.com/packit/ogr/pull/117.patch - url: https://api.github.com/repos/packit/ogr/pulls/117 + diff_url: https://github.com/packit/ogr/pull/289.diff + html_url: https://github.com/packit/ogr/pull/289 + patch_url: https://github.com/packit/ogr/pull/289.patch + url: https://api.github.com/repos/packit/ogr/pulls/289 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add get_release/get_releases into abstract.py - updated_at: '2019-07-15T11:44:25Z' - url: https://api.github.com/repos/packit/ogr/issues/117 + title: Fix typo in comments + updated_at: '2019-12-04T09:27:03Z' + url: https://api.github.com/repos/packit/ogr/issues/289 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "In the case of Github, it is possible to get a repository's file\ - \ content via [API](https://developer.github.com/v3/repos/contents/#get-contents)\ - \ or [PyGithub lib](https://pygithub.readthedocs.io/en/latest/github_objects/ContentFile.html).\ - \ In the case of Pagure, I am not sure if it is possible. \r\n\r\n(I\ - \ need this for release-bot, I can hack it for now, but would be wonderful\ - \ to have such feature in ogr.)" - closed_at: '2019-07-13T18:50:35Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/115/comments - created_at: '2019-07-12T14:05:06Z' - events_url: https://api.github.com/repos/packit/ogr/issues/115/events - html_url: https://github.com/packit/ogr/issues/115 - id: 467432493 + author_association: MEMBER + body: '' + closed_at: '2019-12-03T12:36:59Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/287/comments + created_at: '2019-12-02T14:02:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/287/events + html_url: https://github.com/packit/ogr/pull/287 + id: 531147909 labels: - - color: e4e669 - default: true - description: This doesn't seem right. - id: 1160311267 - name: invalid - node_id: MDU6TGFiZWwxMTYwMzExMjY3 - url: https://api.github.com/repos/packit/ogr/labels/invalid - - color: 42e529 + - color: b60205 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/115/labels{/name} + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/287/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njc0MzI0OTM= - number: 115 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ3NjQwMjEz + number: 287 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/287.diff + html_url: https://github.com/packit/ogr/pull/287 + patch_url: https://github.com/packit/ogr/pull/287.patch + url: https://api.github.com/repos/packit/ogr/pulls/287 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Missing functionality for getting content of a file. - updated_at: '2019-07-13T18:50:35Z' - url: https://api.github.com/repos/packit/ogr/issues/115 + title: Fix backward compatibility on pull requests + updated_at: '2019-12-04T09:27:02Z' + url: https://api.github.com/repos/packit/ogr/issues/287 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: services.github.py already can [list all releases](https://github.com/packit-service/ogr/blob/badeddd87032da354d411fff3365bb02e260571b/ogr/services/github.py#L656). - We need this for Pagure too. - closed_at: '2019-07-12T21:58:49Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/116/comments - created_at: '2019-07-12T14:55:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/116/events - html_url: https://github.com/packit/ogr/issues/116 - id: 467458155 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: cfd3d7 - default: true - description: This issue or pull request already exists - id: 1160311263 - name: duplicate - node_id: MDU6TGFiZWwxMTYwMzExMjYz - url: https://api.github.com/repos/packit/ogr/labels/duplicate - - color: a2eeef + author_association: MEMBER + body: "- [x] add methods\r\n- [x] services' implementation\r\n- [x] enum\ + \ for statuses?\r\n- [x] PRs?\r\n - [x] tests\r\n\r\nComparison of\ + \ statuses:\r\n\r\nGitHub | GitLab | Pagure\r\n--- | --- | ---\r\n`pending`\ + \ | `pending` | `pending`\r\n`success` | `success` | `success`\r\n`failure`\ + \ | `failed` | `failure`\r\n`error` | `-` | `error`\r\n`-` | `canceled`\ + \ | `canceled`\r\n`-` | `running` | `-`" + closed_at: '2019-12-03T20:23:52Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/286/comments + created_at: '2019-11-30T20:18:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/286/events + html_url: https://github.com/packit/ogr/pull/286 + id: 530625724 + labels: + - color: b60205 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/116/labels{/name} + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/286/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njc0NTgxNTU= - number: 116 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ3MjU2NjI2 + number: 286 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/286.diff + html_url: https://github.com/packit/ogr/pull/286 + patch_url: https://github.com/packit/ogr/pull/286.patch + url: https://api.github.com/repos/packit/ogr/pulls/286 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get_releases for Pagure - updated_at: '2019-07-12T21:59:06Z' - url: https://api.github.com/repos/packit/ogr/issues/116 + title: Commit flags + updated_at: '2019-12-04T09:27:02Z' + url: https://api.github.com/repos/packit/ogr/issues/286 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "Implementation of getting project owners related to #88. \r\nAnd\ - \ getting users with permission for closing Issues and merging PR based\ - \ on [Github permissions](https://help.github.com/en/articles/repository-permission-levels-for-an-organization)\ - \ and [Pagure permissions](https://docs.pagure.org/pagure/usage/project_acls.html)\ - \ related to issue #100." - closed_at: '2019-07-12T07:51:41Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/101/comments - created_at: '2019-07-08T13:03:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/101/events - html_url: https://github.com/packit/ogr/pull/101 - id: 465245940 + author_association: MEMBER + body: "- [x] editing of comments\r\n- [x] backward-link to issue/PR\r\n\ + - [x] rename property `comment` to `body`\r\n editing comments works\ + \ only on `body`" + closed_at: '2019-12-03T11:21:57Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/285/comments + created_at: '2019-11-29T12:32:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/285/events + html_url: https://github.com/packit/ogr/pull/285 + id: 530323155 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db + - color: b60205 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/101/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/285/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk1MzI1ODUx - number: 101 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ3MDI4OTMw + number: 285 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/101.diff - html_url: https://github.com/packit/ogr/pull/101 - patch_url: https://github.com/packit/ogr/pull/101.patch - url: https://api.github.com/repos/packit/ogr/pulls/101 + diff_url: https://github.com/packit/ogr/pull/285.diff + html_url: https://github.com/packit/ogr/pull/285 + patch_url: https://github.com/packit/ogr/pull/285.patch + url: https://api.github.com/repos/packit/ogr/pulls/285 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get project's owners and permissions of various users - updated_at: '2019-07-12T12:44:34Z' - url: https://api.github.com/repos/packit/ogr/issues/101 + title: Implement editing comments and backward-link to Issue/PR + updated_at: '2019-12-04T09:27:02Z' + url: https://api.github.com/repos/packit/ogr/issues/285 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #74' - closed_at: '2019-07-11T08:48:44Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/106/comments - created_at: '2019-07-10T07:38:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/106/events - html_url: https://github.com/packit/ogr/pull/106 - id: 466149524 + body: '' + closed_at: '2019-11-20T14:23:47Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/279/comments + created_at: '2019-11-20T10:32:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/279/events + html_url: https://github.com/packit/ogr/pull/279 + id: 525714930 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db + - color: b60205 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/106/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/279/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDQ2Mjc3 - number: 106 + node_id: MDExOlB1bGxSZXF1ZXN0MzQzMjgyNDg4 + number: 279 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/106.diff - html_url: https://github.com/packit/ogr/pull/106 - patch_url: https://github.com/packit/ogr/pull/106.patch - url: https://api.github.com/repos/packit/ogr/pulls/106 + diff_url: https://github.com/packit/ogr/pull/279.diff + html_url: https://github.com/packit/ogr/pull/279 + patch_url: https://github.com/packit/ogr/pull/279.patch + url: https://api.github.com/repos/packit/ogr/pulls/279 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: link to GitTag from Release added - updated_at: '2019-07-11T08:48:44Z' - url: https://api.github.com/repos/packit/ogr/issues/106 + title: Add deprecation policy and dependency package + updated_at: '2019-12-04T09:27:02Z' + url: https://api.github.com/repos/packit/ogr/issues/279 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ - \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" - closed_at: '2019-07-11T08:48:44Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments - created_at: '2019-05-29T07:12:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/74/events - html_url: https://github.com/packit/ogr/issues/74 - id: 449635655 + body: "Closes #254 \r\n\r\n- [x] move PR-related functions from `Project`\ + \ to `PullRequest`\r\n - [x] `BasePullRequest`\r\n - [x] Github\r\n\ + \ - [x] Gitlab\r\n - [x] Pagure\r\n- [x] make `Project`'s methods\ + \ backward-compatible by calling new methods\r\n- [x] deprecation\r\n\ + \ - [x] move deprecated functions to base class\r\n - [x] deprecate\ + \ functions on `Project`\r\n- [x] properties\r\n- [x] fix tests\r\n\ + - [x] static methods for `get`, `create`, `list`\r\n- [x] update comments\ + \ (after refactor from Issue has been merged)\r\n- [x] check docstrings\r\ + \n- [x] `pr_create` -> update name" + closed_at: '2019-11-29T10:21:52Z' + comments: 17 + comments_url: https://api.github.com/repos/packit/ogr/issues/276/comments + created_at: '2019-11-16T21:01:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/276/events + html_url: https://github.com/packit/ogr/pull/276 + id: 523895740 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: b60205 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/276/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDk2MzU2NTU= - number: 74 + node_id: MDExOlB1bGxSZXF1ZXN0MzQxNzkxNzIw + number: 276 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/276.diff + html_url: https://github.com/packit/ogr/pull/276 + patch_url: https://github.com/packit/ogr/pull/276.patch + url: https://api.github.com/repos/packit/ogr/pulls/276 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add a link to `GitTag` from `Release`. - updated_at: '2019-07-11T08:48:44Z' - url: https://api.github.com/repos/packit/ogr/issues/74 + title: Pull request class refactor + updated_at: '2019-12-04T09:27:01Z' + url: https://api.github.com/repos/packit/ogr/issues/276 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Fixes\r\n_DeprecationWarning: Using or importing the ABCs from\ - \ 'collections' instead of from 'collections.abc' is deprecated, and\ - \ in 3.8 it will stop working_" - closed_at: '2019-07-11T07:03:27Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/109/comments - created_at: '2019-07-10T14:24:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/109/events - html_url: https://github.com/packit/ogr/pull/109 - id: 466340777 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/109/labels{/name} + body: "Closes #253\r\n\r\n- [x] move issue-related functions from `Project`\ + \ to `Issue`\r\n- [x] make `Project`'s methods backward-compatible by\ + \ calling new methods\r\n- [x] fix tests\r\n- [x] `__get_comment`, `get_issue_comments`\r\ + \n- [x] deprecate functions on `Project`\r\n- [x] check docstrings\r\ + \n- [x] update deprecation warnings" + closed_at: '2019-11-26T08:52:22Z' + comments: 24 + comments_url: https://api.github.com/repos/packit/ogr/issues/264/comments + created_at: '2019-11-04T11:23:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/264/events + html_url: https://github.com/packit/ogr/pull/264 + id: 517089572 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/264/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MTk4Nzc4 - number: 109 + node_id: MDExOlB1bGxSZXF1ZXN0MzM2MjI2MDM0 + number: 264 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/109.diff - html_url: https://github.com/packit/ogr/pull/109 - patch_url: https://github.com/packit/ogr/pull/109.patch - url: https://api.github.com/repos/packit/ogr/pulls/109 + diff_url: https://github.com/packit/ogr/pull/264.diff + html_url: https://github.com/packit/ogr/pull/264 + patch_url: https://github.com/packit/ogr/pull/264.patch + url: https://api.github.com/repos/packit/ogr/pulls/264 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: collections.Hashable -> collections.abc.Hashable - updated_at: '2019-07-11T07:53:20Z' - url: https://api.github.com/repos/packit/ogr/issues/109 + title: Issue class refactor + updated_at: '2019-12-04T09:27:01Z' + url: https://api.github.com/repos/packit/ogr/issues/264 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: See https://github.com/packit-service/packit/pull/407 - closed_at: '2019-07-10T12:56:20Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/108/comments - created_at: '2019-07-10T12:47:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/108/events - html_url: https://github.com/packit/ogr/pull/108 - id: 466289238 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/108/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MTU3NzYy - number: 108 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/108.diff - html_url: https://github.com/packit/ogr/pull/108 - patch_url: https://github.com/packit/ogr/pull/108.patch - url: https://api.github.com/repos/packit/ogr/pulls/108 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Make PersistentObjectStorage.__init__() backwards compatible - updated_at: '2019-07-10T12:56:33Z' - url: https://api.github.com/repos/packit/ogr/issues/108 + body: '- Update annotation of `_from_raw_comment`' + closed_at: '2019-11-04T12:35:35Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/260/comments + created_at: '2019-10-27T17:27:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/260/events + html_url: https://github.com/packit/ogr/pull/260 + id: 512995963 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/260/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzMyODc1NTQ3 + number: 260 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/260.diff + html_url: https://github.com/packit/ogr/pull/260 + patch_url: https://github.com/packit/ogr/pull/260.patch + url: https://api.github.com/repos/packit/ogr/pulls/260 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'Comment: mypy' + updated_at: '2019-12-04T09:27:01Z' + url: https://api.github.com/repos/packit/ogr/issues/260 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=13: - - metadata: - latency: 0.6129231452941895 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #52' - closed_at: '2019-07-10T07:35:48Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/105/comments - created_at: '2019-07-10T07:09:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/105/events - html_url: https://github.com/packit/ogr/pull/105 - id: 466138321 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/105/labels{/name} + body: 'Closes #230' + closed_at: '2019-10-23T13:09:59Z' + comments: 27 + comments_url: https://api.github.com/repos/packit/ogr/issues/249/comments + created_at: '2019-10-16T16:02:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/249/events + html_url: https://github.com/packit/ogr/pull/249 + id: 507947617 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/249/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDM3NjM1 - number: 105 + node_id: MDExOlB1bGxSZXF1ZXN0MzI4ODM5NDg2 + number: 249 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/105.diff - html_url: https://github.com/packit/ogr/pull/105 - patch_url: https://github.com/packit/ogr/pull/105.patch - url: https://api.github.com/repos/packit/ogr/pulls/105 + diff_url: https://github.com/packit/ogr/pull/249.diff + html_url: https://github.com/packit/ogr/pull/249 + patch_url: https://github.com/packit/ogr/pull/249.patch + url: https://api.github.com/repos/packit/ogr/pulls/249 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: in get_file_content catch only 404 - updated_at: '2019-07-10T07:40:13Z' - url: https://api.github.com/repos/packit/ogr/issues/105 + title: Factor out Comment + updated_at: '2019-12-04T09:27:01Z' + url: https://api.github.com/repos/packit/ogr/issues/249 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "Just spent some time debugging an issue where packit.yaml was not\ - \ found while being 100 % it's in there.\r\n\r\nIt turned out that my\ - \ token was incorrect and github kept throwing 401: that should bubble\ - \ up, we should catch 404 only. " - closed_at: '2019-07-10T07:35:48Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/52/comments - created_at: '2019-03-27T21:00:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/52/events - html_url: https://github.com/packit/ogr/issues/52 - id: 426181525 + body: 'Closes #240' + closed_at: '2019-10-15T10:49:50Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/243/comments + created_at: '2019-10-12T11:32:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/243/events + html_url: https://github.com/packit/ogr/pull/243 + id: 506175099 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff + - color: b60205 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/52/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/243/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjYxODE1MjU= - number: 52 + node_id: MDExOlB1bGxSZXF1ZXN0MzI3NDU2NDQz + number: 243 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/243.diff + html_url: https://github.com/packit/ogr/pull/243 + patch_url: https://github.com/packit/ogr/pull/243.patch + url: https://api.github.com/repos/packit/ogr/pulls/243 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'get_file_content: catch only 404, raise everything else' - updated_at: '2019-07-10T07:35:48Z' - url: https://api.github.com/repos/packit/ogr/issues/52 + title: Implementation of filtering PR/Issue comments by author + updated_at: '2019-12-04T09:27:00Z' + url: https://api.github.com/repos/packit/ogr/issues/243 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - author_association: COLLABORATOR - body: 'Based on our discussion on Issue #79, there is no functionality - in ogr for commenting on Github/Pagure issues.' - closed_at: '2019-07-10T06:57:03Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/80/comments - created_at: '2019-06-19T07:21:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/80/events - html_url: https://github.com/packit/ogr/issues/80 - id: 457847996 + assignee: null + assignees: [] + author_association: MEMBER + body: 'Closes #204' + closed_at: '2019-10-15T07:33:19Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/242/comments + created_at: '2019-10-11T11:05:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/242/events + html_url: https://github.com/packit/ogr/pull/242 + id: 505786917 labels: - - color: a2eeef + - color: b60205 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/80/labels{/name} + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/242/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTc4NDc5OTY= - number: 80 + node_id: MDExOlB1bGxSZXF1ZXN0MzI3MTQ2NTgy + number: 242 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/242.diff + html_url: https://github.com/packit/ogr/pull/242 + patch_url: https://github.com/packit/ogr/pull/242.patch + url: https://api.github.com/repos/packit/ogr/pulls/242 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Commenting on Issues - updated_at: '2019-07-10T06:57:03Z' - url: https://api.github.com/repos/packit/ogr/issues/80 + title: Add project_create to PagureService and add tests for it + updated_at: '2019-12-04T09:27:00Z' + url: https://api.github.com/repos/packit/ogr/issues/242 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos - site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions - type: User - url: https://api.github.com/users/shreyanshrs44 - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos - site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions - type: User - url: https://api.github.com/users/shreyanshrs44 + assignee: null + assignees: [] author_association: MEMBER - body: It would be nice to implement `__str__` methods for all classes - (e.g. `GithubProject`, `Issue`,...). - closed_at: '2019-07-10T06:51:37Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments - created_at: '2019-06-27T10:29:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/90/events - html_url: https://github.com/packit/ogr/issues/90 - id: 461449910 + body: 'Fixes #232' + closed_at: '2019-10-11T06:36:16Z' + comments: 18 + comments_url: https://api.github.com/repos/packit/ogr/issues/236/comments + created_at: '2019-10-07T14:44:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/236/events + html_url: https://github.com/packit/ogr/pull/236 + id: 503499100 labels: - - color: '000000' + - color: b60205 default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/236/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE0NDk5MTA= - number: 90 + node_id: MDExOlB1bGxSZXF1ZXN0MzI1MzM5NTg3 + number: 236 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/236.diff + html_url: https://github.com/packit/ogr/pull/236 + patch_url: https://github.com/packit/ogr/pull/236.patch + url: https://api.github.com/repos/packit/ogr/pulls/236 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: String representations for classes - updated_at: '2019-07-10T06:51:37Z' - url: https://api.github.com/repos/packit/ogr/issues/90 + title: Prepare file structure for object-specific methods + updated_at: '2019-12-04T09:27:00Z' + url: https://api.github.com/repos/packit/ogr/issues/236 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-07-09T13:56:31Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/104/comments - created_at: '2019-07-09T11:05:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/104/events - html_url: https://github.com/packit/ogr/pull/104 - id: 465717381 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/104/labels{/name} + body: 'Fixes #233' + closed_at: '2019-10-07T11:02:38Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/234/comments + created_at: '2019-10-07T08:22:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/234/events + html_url: https://github.com/packit/ogr/pull/234 + id: 503300422 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/234/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk1NzAyNDc0 - number: 104 + node_id: MDExOlB1bGxSZXF1ZXN0MzI1MTgxMjU0 + number: 234 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/104.diff - html_url: https://github.com/packit/ogr/pull/104 - patch_url: https://github.com/packit/ogr/pull/104.patch - url: https://api.github.com/repos/packit/ogr/pulls/104 + diff_url: https://github.com/packit/ogr/pull/234.diff + html_url: https://github.com/packit/ogr/pull/234 + patch_url: https://github.com/packit/ogr/pull/234.patch + url: https://api.github.com/repos/packit/ogr/pulls/234 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: unify external command invocation - fix - updated_at: '2019-07-09T13:56:31Z' - url: https://api.github.com/repos/packit/ogr/issues/104 + title: Update imports in Gitlab tests + updated_at: '2019-12-04T09:27:00Z' + url: https://api.github.com/repos/packit/ogr/issues/234 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #33 ' - closed_at: '2019-07-09T09:29:53Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/102/comments - created_at: '2019-07-09T08:49:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/102/events - html_url: https://github.com/packit/ogr/pull/102 - id: 465652910 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/102/labels{/name} + body: "Closes #205\r\n\r\n- [x] `GithubProject.get_issue_comments`\r\n\ + \r\n- [x] `GitlabProject.get_issue_comments`\r\n\r\n- [x] `PagureProject.get_issue_comments`" + closed_at: '2019-10-03T14:35:15Z' + comments: 22 + comments_url: https://api.github.com/repos/packit/ogr/issues/228/comments + created_at: '2019-09-27T20:06:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/228/events + html_url: https://github.com/packit/ogr/pull/228 + id: 499627560 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/228/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjk1NjUwMTA5 - number: 102 + node_id: MDExOlB1bGxSZXF1ZXN0MzIyMzA4NzQy + number: 228 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/102.diff - html_url: https://github.com/packit/ogr/pull/102 - patch_url: https://github.com/packit/ogr/pull/102.patch - url: https://api.github.com/repos/packit/ogr/pulls/102 + diff_url: https://github.com/packit/ogr/pull/228.diff + html_url: https://github.com/packit/ogr/pull/228 + patch_url: https://github.com/packit/ogr/pull/228.patch + url: https://api.github.com/repos/packit/ogr/pulls/228 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: unify external command invocation - updated_at: '2019-07-09T10:49:16Z' - url: https://api.github.com/repos/packit/ogr/issues/102 + title: Implementation of get_issue_comments for projects + updated_at: '2019-12-04T09:26:59Z' + url: https://api.github.com/repos/packit/ogr/issues/228 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - assignees: - - avatar_url: https://avatars3.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} + assignee: null + assignees: [] + author_association: MEMBER + body: 'Closes #224' + closed_at: '2019-09-30T11:40:39Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/227/comments + created_at: '2019-09-27T10:16:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/227/events + html_url: https://github.com/packit/ogr/pull/227 + id: 499361462 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/227/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzIyMDk2ODIw + number: 227 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/227.diff + html_url: https://github.com/packit/ogr/pull/227 + patch_url: https://github.com/packit/ogr/pull/227.patch + url: https://api.github.com/repos/packit/ogr/pulls/227 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Factor out getting collaborators (GithubProject) + updated_at: '2019-12-04T09:26:59Z' + url: https://api.github.com/repos/packit/ogr/issues/227 + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/mfocko + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "utils.py uses several different approaches to invoke an external\ - \ command:\r\n\r\n* [subprocess.Popen](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L103)\r\ - \n* [subprocess.check_call](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L122)\r\ - \n* [subprocess.check_output](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L171)\r\ - \n\r\nThe recommended approach (since Python 3.5) is to use [subprocess.run](https://docs.python.org/3/library/subprocess.html#subprocess.run).\r\ - \n\r\nAlso, there's lots of external libraries for this use case:\r\n\ - * http://amoffat.github.io/sh/\r\n* https://www.pyinvoke.org/\r\n* https://plumbum.readthedocs.io\r\ - \n* https://pexpect.readthedocs.io" - closed_at: '2019-07-09T09:29:53Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/33/comments - created_at: '2019-03-14T13:51:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/33/events - html_url: https://github.com/packit/ogr/issues/33 - id: 421030116 + body: 'Fixes #220' + closed_at: '2019-10-02T09:17:18Z' + comments: 41 + comments_url: https://api.github.com/repos/packit/ogr/issues/226/comments + created_at: '2019-09-26T14:55:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/226/events + html_url: https://github.com/packit/ogr/pull/226 + id: 498940241 labels: - - color: a2eeef + - color: b60205 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/33/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/226/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjEwMzAxMTY= - number: 33 + node_id: MDExOlB1bGxSZXF1ZXN0MzIxNzY0NTE1 + number: 226 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/226.diff + html_url: https://github.com/packit/ogr/pull/226 + patch_url: https://github.com/packit/ogr/pull/226.patch + url: https://api.github.com/repos/packit/ogr/pulls/226 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Unify external command invocation - updated_at: '2019-07-09T09:29:53Z' - url: https://api.github.com/repos/packit/ogr/issues/33 + title: Make PagureProject.full_repo_name property offline + updated_at: '2019-12-04T09:26:59Z' + url: https://api.github.com/repos/packit/ogr/issues/226 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Add method for creating projects from url.\r\n- Get project from\ - \ url.\r\n\r\n\r\nTODO:\r\n\r\n- [x] add a way to use existing service\ - \ classes\r\n- [x] add a way to update mapping by user\r\n- [ ] consider\ - \ implementing API checks if we cannot find a match in mapping\r\n-\ - \ [x] tests\r\n - [x] make the `github_repo` lazy for easier testing\r\ - \n - [x] tests for geting project/service class from url\r\n -\ - \ [x] tests for parsing\r\n\r\n----\r\n\r\nHow to test?\r\n\r\n```python\r\ - \nfrom ogr import get_service_class\r\n\r\nget_service_class(url=\"\ - github.com/packit-service/ogr\")\r\nget_service_class(url=\"src.fedoraproject.org/rpms/python-ogr\"\ - )\r\n```\r\n```python\r\nfrom ogr import get_project\r\nfrom ogr import\ - \ GithubService, PagureService\r\n\r\nget_project(\r\n url=\"src.fedoraproject.org/rpms/python-ogr\"\ - ,\r\n custom_instances=[\r\n GithubService(token=\"asda\"\ - ),\r\n PagureService(instance_url=\"pagure.io\", token=\"qwe\"\ - ),\r\n PagureService(instance_url=\"src.fedoraproject.org\",\ - \ token=\"asdaasda\"),\r\n ],\r\n)\r\n\r\n```" - closed_at: '2019-07-03T13:12:23Z' - comments: 13 - comments_url: https://api.github.com/repos/packit/ogr/issues/95/comments - created_at: '2019-06-28T08:30:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/95/events - html_url: https://github.com/packit/ogr/pull/95 - id: 461920354 + body: 'Closes #107' + closed_at: '2019-09-26T09:12:11Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/221/comments + created_at: '2019-09-25T14:42:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/221/events + html_url: https://github.com/packit/ogr/pull/221 + id: 498333159 labels: - color: '000000' default: false @@ -39211,377 +40614,298 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 1d76db + - color: b60205 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/95/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/221/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyNzM4MzEx - number: 95 + node_id: MDExOlB1bGxSZXF1ZXN0MzIxMjg0ODI1 + number: 221 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/95.diff - html_url: https://github.com/packit/ogr/pull/95 - patch_url: https://github.com/packit/ogr/pull/95.patch - url: https://api.github.com/repos/packit/ogr/pulls/95 + diff_url: https://github.com/packit/ogr/pull/221.diff + html_url: https://github.com/packit/ogr/pull/221 + patch_url: https://github.com/packit/ogr/pull/221.patch + url: https://api.github.com/repos/packit/ogr/pulls/221 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Methods for creating projects from url - updated_at: '2019-07-03T13:20:09Z' - url: https://api.github.com/repos/packit/ogr/issues/95 + title: Remove pull requests from issues in GitHub implementation + updated_at: '2019-12-04T09:26:59Z' + url: https://api.github.com/repos/packit/ogr/issues/221 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: COLLABORATOR - body: "Related to #80\r\n\r\nThis PR contains functionality for Pagure\ - \ issues except for tagging issues. I had some problems with tagging,\ - \ therefore, I'll create separated PR for it.\r\n\r\nIf I am right I\ - \ have to set Pagure token for creating yaml test-files. We can manage\ - \ that in private chat, then I'll add tests." - closed_at: '2019-07-02T11:56:47Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/99/comments - created_at: '2019-06-30T21:39:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/99/events - html_url: https://github.com/packit/ogr/pull/99 - id: 462449449 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/99/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkzMTM0Mjcw - number: 99 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/99.diff - html_url: https://github.com/packit/ogr/pull/99 - patch_url: https://github.com/packit/ogr/pull/99.patch - url: https://api.github.com/repos/packit/ogr/pulls/99 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: creating/closing/commenting Pagure Issues - updated_at: '2019-07-02T11:56:47Z' - url: https://api.github.com/repos/packit/ogr/issues/99 - user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-06-11T15:21:02Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/78/comments - created_at: '2019-06-11T14:33:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/78/events - html_url: https://github.com/packit/ogr/pull/78 - id: 454727768 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/78/labels{/name} + body: "Closes #218\r\n\r\n- removes implementation from abstract class\r\ + \n- overrides it for Pagure projects that have optional namespace\r\n\ + - adds few basic tests" + closed_at: '2019-09-25T05:20:03Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/219/comments + created_at: '2019-09-24T09:35:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/219/events + html_url: https://github.com/packit/ogr/pull/219 + id: 497572530 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/219/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjg3MTIwMTYy - number: 78 + node_id: MDExOlB1bGxSZXF1ZXN0MzIwNjc0OTk2 + number: 219 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/78.diff - html_url: https://github.com/packit/ogr/pull/78 - patch_url: https://github.com/packit/ogr/pull/78.patch - url: https://api.github.com/repos/packit/ogr/pulls/78 + diff_url: https://github.com/packit/ogr/pull/219.diff + html_url: https://github.com/packit/ogr/pull/219 + patch_url: https://github.com/packit/ogr/pull/219.patch + url: https://api.github.com/repos/packit/ogr/pulls/219 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[spec] bump to 0.4.0' - updated_at: '2019-07-01T13:06:37Z' - url: https://api.github.com/repos/packit/ogr/issues/78 + title: GitProject.full_repo_name + updated_at: '2019-12-04T09:26:58Z' + url: https://api.github.com/repos/packit/ogr/issues/219 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Fix formating for __str__ methods.\r\n- Changes requested to_str_method\ - \ of classes. @shreyanshrs44\r\n- Added instantiation-like syntax. @shreyanshrs44\r\ - \n- Added __str__ method to classes. @shreyanshrs44\r\n- Added __str__\ - \ method to classes. @shreyanshrs44\r\n\r\nFixed version of #93 " - closed_at: '2019-06-28T13:26:06Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/98/comments - created_at: '2019-06-28T12:20:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/98/events - html_url: https://github.com/packit/ogr/pull/98 - id: 462007848 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/98/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyODA5MjI0 - number: 98 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/98.diff - html_url: https://github.com/packit/ogr/pull/98 - patch_url: https://github.com/packit/ogr/pull/98.patch - url: https://api.github.com/repos/packit/ogr/pulls/98 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Added __str__ method to classes. (new) - updated_at: '2019-06-28T13:26:15Z' - url: https://api.github.com/repos/packit/ogr/issues/98 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: "I have added __str__ method to classes in /ogr/services/github.py\ - \ , /ogr/services/gitlab.py, /ogr/services/pagure.py.\r\nPlease have\ - \ a look and give feedback on necessary changes.\r\nI have not touched\ - \ the classes inside /ogr/abstract.py as it containes __str__ method\ - \ for most of classes in it. " - closed_at: '2019-06-28T12:23:38Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/93/comments - created_at: '2019-06-27T12:17:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/93/events - html_url: https://github.com/packit/ogr/pull/93 - id: 461495461 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/93/labels{/name} + body: "Closes #213\r\nSeems like it could be implemented in BaseGitProject.\r\ + \nNot quite sure about Pagure implementation, since I haven't found\ + \ any tests regarding `None` as namespace." + closed_at: '2019-09-24T08:53:16Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/217/comments + created_at: '2019-09-22T08:47:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/217/events + html_url: https://github.com/packit/ogr/pull/217 + id: 496750815 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/217/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyNDA3Mjc3 - number: 93 + node_id: MDExOlB1bGxSZXF1ZXN0MzIwMDI1NDc1 + number: 217 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/93.diff - html_url: https://github.com/packit/ogr/pull/93 - patch_url: https://github.com/packit/ogr/pull/93.patch - url: https://api.github.com/repos/packit/ogr/pulls/93 + diff_url: https://github.com/packit/ogr/pull/217.diff + html_url: https://github.com/packit/ogr/pull/217 + patch_url: https://github.com/packit/ogr/pull/217.patch + url: https://api.github.com/repos/packit/ogr/pulls/217 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Added __str__ method to classes. - updated_at: '2019-06-28T12:23:38Z' - url: https://api.github.com/repos/packit/ogr/issues/93 + title: Implement GitProject.get_web_url() + updated_at: '2019-12-04T09:26:58Z' + url: https://api.github.com/repos/packit/ogr/issues/217 user: - avatar_url: https://avatars1.githubusercontent.com/u/29723970?v=4 - events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} - followers_url: https://api.github.com/users/shreyanshrs44/followers - following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} - gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + 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/shreyanshrs44 - id: 29723970 - login: shreyanshrs44 - node_id: MDQ6VXNlcjI5NzIzOTcw - organizations_url: https://api.github.com/users/shreyanshrs44/orgs - received_events_url: https://api.github.com/users/shreyanshrs44/received_events - repos_url: https://api.github.com/users/shreyanshrs44/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + 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/shreyanshrs44 + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Add response file for\ - \ test_update_pr_info for github\n* Skip the update_pr for pagure, since\ - \ we have no token for generating response files\n* exceptions changed\n\ - * update_pr_info methods created, wip\n* Add MIT headers to code files\n\ - * Add tests for creating forks\n* Allow saving multiple responses\n\ - * Add get_projects/get_forks to user; add get_forks to project\n* [pagure]\ - \ Fix fork tests\n* [pagure] Fix user in fork part of url\n* Better\ - \ get_fork for pagure\n* Better get_fork for github\n* Fix formating\ - \ from the previous PR\n* [pagure] Use empty dict as a default header\n\ - * creating, closing, labeling Github Issues\n* get info and comment\ - \ Github Issues\n* Document the test generation\n* Add Makefile targets\ - \ for removing response files\n* Determine forcewrite mode from file\ - \ existance\n* Rename @readonly to @if_readonly\n* [spec] bump to 0.4.0\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.5.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-06-28T09:40:08Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/97/comments - created_at: '2019-06-28T08:43:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/97/events - html_url: https://github.com/packit/ogr/pull/97 - id: 461925608 + author_association: CONTRIBUTOR + body: "After there will be done these stuff:\r\n - [ ] https://github.com/packit-service/ogr/pull/201\ + \ will be merged\r\n - [ ] there will be fixed also ``packit`` to use\ + \ ``requre``\r\n\r\nthen remove all mocking stuff from this project" + closed_at: '2019-12-04T08:54:10Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/225/comments + created_at: '2019-09-26T13:04:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/225/events + html_url: https://github.com/packit/ogr/issues/225 + id: 498871887 labels: - - color: ededed + - color: c2ef58 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/97/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/225/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyNzQyNDQ2 - number: 97 + node_id: MDU6SXNzdWU0OTg4NzE4ODc= + number: 225 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/97.diff - html_url: https://github.com/packit/ogr/pull/97 - patch_url: https://github.com/packit/ogr/pull/97.patch - url: https://api.github.com/repos/packit/ogr/pulls/97 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.5.0 release - updated_at: '2019-06-28T09:45:09Z' - url: https://api.github.com/repos/packit/ogr/issues/97 + title: remove persistent storage + mocking from ogr after using requre + updated_at: '2019-12-04T08:54:17Z' + url: https://api.github.com/repos/packit/ogr/issues/225 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos 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 + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "ReleaseBot, we would like to release a new version.\r\n\r\nThanks\ - \ in advance!" - closed_at: '2019-06-28T08:43:29Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/96/comments - created_at: '2019-06-28T08:38:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/96/events - html_url: https://github.com/packit/ogr/issues/96 - id: 461923699 + body: "The default behaviour should be:\r\n\r\n- running from fork:\r\n\ + \ - create pr from fork to upstream\r\n- running from upstream:\r\ + \n - create pr from upstream to upstream\r\n\r\nWe need to specify\ + \ correctly the username in `head` or use the correct pygithub object\ + \ to call the `create_pull` on.\r\n\r\n- Get inspired in packit: https://github.com/packit-service/packit/blob/master/packit/upstream.py#L190\r\ + \n- API docs: https://developer.github.com/v3/pulls/#create-a-pull-request\ + \ (`head` parameter)\r\n- Related pygithub method: https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_pull\r\ + \n\r\nAC:\r\n\r\n- [ ] check the existing workflow\r\n- [ ] fix the\ + \ username to support both workflows correctly\r\n- [ ] create tests\ + \ for both of them\r\n\r\n\r\n" + closed_at: '2019-12-04T08:50:38Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/250/comments + created_at: '2019-10-17T13:55:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/250/events + html_url: https://github.com/packit/ogr/issues/250 + id: 508493656 labels: - - color: ededed + - color: '000000' default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/96/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/250/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjE5MjM2OTk= - number: 96 + node_id: MDU6SXNzdWU1MDg0OTM2NTY= + number: 250 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-06-28T08:43:29Z' - url: https://api.github.com/repos/packit/ogr/issues/96 + title: Fix createing pull requests in GitHub + updated_at: '2019-12-04T08:50:38Z' + url: https://api.github.com/repos/packit/ogr/issues/250 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -39602,102 +40926,234 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #87' - closed_at: '2019-06-28T06:51:21Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/92/comments - created_at: '2019-06-27T11:54:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/92/events - html_url: https://github.com/packit/ogr/pull/92 - id: 461485336 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/92/labels{/name} + author_association: CONTRIBUTOR + body: "Closes #281 \r\nAfter change in requre integration tests fails.\ + \ \r\nChange PersistentObjectStorage().is_write_mode to PersistentObjectStorage().mode\ + \ == StorageMode.write\r\n\r\nZuul allow to add relation between repos,\ + \ maybe this is a option to prevent that situation, but I don't know\ + \ how looks policy about that in packit-service. \r\n" + closed_at: '2019-11-25T12:33:59Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/282/comments + created_at: '2019-11-22T11:31:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/282/events + html_url: https://github.com/packit/ogr/pull/282 + id: 527144120 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/282/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyMzk4ODk2 - number: 92 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ0NDc0MTIz + number: 282 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/92.diff - html_url: https://github.com/packit/ogr/pull/92 - patch_url: https://github.com/packit/ogr/pull/92.patch - url: https://api.github.com/repos/packit/ogr/pulls/92 + diff_url: https://github.com/packit/ogr/pull/282.diff + html_url: https://github.com/packit/ogr/pull/282 + patch_url: https://github.com/packit/ogr/pull/282.patch + url: https://api.github.com/repos/packit/ogr/pulls/282 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: update_pr_info methods created - updated_at: '2019-06-28T06:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/92 + title: Fix integration tests + updated_at: '2019-12-03T16:14:58Z' + url: https://api.github.com/repos/packit/ogr/issues/282 user: - avatar_url: https://avatars3.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} + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 + events_url: https://api.github.com/users/pawelkopka/events{/privacy} + followers_url: https://api.github.com/users/pawelkopka/followers + following_url: https://api.github.com/users/pawelkopka/following{/other_user} + gists_url: https://api.github.com/users/pawelkopka/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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/pawelkopka + id: 17784034 + login: pawelkopka + node_id: MDQ6VXNlcjE3Nzg0MDM0 + organizations_url: https://api.github.com/users/pawelkopka/orgs + received_events_url: https://api.github.com/users/pawelkopka/received_events + repos_url: https://api.github.com/users/pawelkopka/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions type: User - url: https://api.github.com/users/lbarcziova + url: https://api.github.com/users/pawelkopka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Any ideas how [this](https://sentry.io/organizations/red-hat-0p/issues/1369231585)\ + \ could have happen?\r\n\r\n```python\r\nAttributeError: 'GithubPRComment'\ + \ object has no attribute '_body'\r\n File \"packit_service/worker/tasks.py\"\ + , line 42, in process_message\r\n return SteveJobs().process_message(event=event,\ + \ topic=topic)\r\n File \"packit_service/worker/jobs.py\", line 249,\ + \ in process_message\r\n jobs_results[job_type] = handler.run_n_clean()\r\ + \n File \"packit_service/worker/handler.py\", line 177, in run_n_clean\r\ + \n return self.run()\r\n File \"packit_service/worker/fedmsg_handlers.py\"\ + , line 221, in run\r\n if not self.was_last_build_successful():\r\ + \n File \"packit_service/worker/fedmsg_handlers.py\", line 189, in\ + \ was_last_build_successful\r\n if \"Congratulations!\" in comment.comment:\r\ + \n File \"ogr/abstract.py\", line 78, in comment\r\n return self._body\r\ + \n```" + closed_at: '2019-12-03T16:04:47Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/288/comments + created_at: '2019-12-03T14:14:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/288/events + html_url: https://github.com/packit/ogr/issues/288 + id: 532014956 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/288/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MzIwMTQ5NTY= + number: 288 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'AttributeError: ''GithubPRComment'' object has no attribute ''_body''' + updated_at: '2019-12-03T16:04:47Z' + url: https://api.github.com/repos/packit/ogr/issues/288 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.510368 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:07 GMT + ETag: W/"e645a87efa8f13ab2abe87bb982c454bf7a0410bd86af8371af48859895c8dd0" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78F4ED:133472D:6075DC9F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4290' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '710' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=12: + - metadata: + latency: 0.6470744609832764 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars3.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} + - 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/mfocko author_association: MEMBER - body: "Add methods to `GithubProject`/`PagureProject` for editing title\ - \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ - \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ - \ information " - closed_at: '2019-06-28T06:51:21Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments - created_at: '2019-06-26T07:17:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/87/events - html_url: https://github.com/packit/ogr/issues/87 - id: 460802132 + body: "`Comment` class should keep backward-link to parent, e.g. `Issue`\ + \ or `PullRequest`.\r\n\r\n- [x] Add parameter to constructor and getter\r\ + \n- [x] Keep link to `Issue`\r\n blocked by #253\r\n- [x] Keep link\ + \ to `PR`\r\n blocked by #254" + closed_at: '2019-12-03T11:21:59Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/255/comments + created_at: '2019-10-24T17:16:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/255/events + html_url: https://github.com/packit/ogr/issues/255 + id: 512074603 labels: - color: '000000' default: false @@ -39706,6 +41162,13 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 1d76db default: false description: Related to Pagure implementation. @@ -39713,6 +41176,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: a2eeef default: false description: New feature or a request for enhancement. @@ -39720,74 +41190,81 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: 8be567 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/255/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA4MDIxMzI= - number: 87 + node_id: MDU6SXNzdWU1MTIwNzQ2MDM= + number: 255 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: ' Update pull-request information' - updated_at: '2019-06-28T06:51:21Z' - url: https://api.github.com/repos/packit/ogr/issues/87 + title: Backward links on comments + updated_at: '2019-12-03T11:21:59Z' + url: https://api.github.com/repos/packit/ogr/issues/255 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Add MIT headers to code files.' - closed_at: '2019-06-27T13:51:08Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/94/comments - created_at: '2019-06-27T13:15:24Z' - events_url: https://api.github.com/repos/packit/ogr/issues/94/events - html_url: https://github.com/packit/ogr/pull/94 - id: 461522977 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/94/labels{/name} + body: '- Increase version for packit propose-update.' + closed_at: '2019-12-02T14:21:28Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/283/comments + created_at: '2019-11-28T08:24:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/283/events + html_url: https://github.com/packit/ogr/pull/283 + id: 529760830 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/283/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkyNDI5NzM5 - number: 94 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ2NTc1ODcw + number: 283 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/94.diff - html_url: https://github.com/packit/ogr/pull/94 - patch_url: https://github.com/packit/ogr/pull/94.patch - url: https://api.github.com/repos/packit/ogr/pulls/94 + diff_url: https://github.com/packit/ogr/pull/283.diff + html_url: https://github.com/packit/ogr/pull/283 + patch_url: https://github.com/packit/ogr/pull/283.patch + url: https://api.github.com/repos/packit/ogr/pulls/283 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add license headers - updated_at: '2019-06-27T13:51:12Z' - url: https://api.github.com/repos/packit/ogr/issues/94 + title: Packit config update + updated_at: '2019-12-03T07:42:52Z' + url: https://api.github.com/repos/packit/ogr/issues/283 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -39808,160 +41285,354 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\nHi, see lines in: https://github.com/packit-service/ogr/blob/master/tests/integration/test_github.py#L20\r\ - \nSo for regenereation these files, you have to use syntax eg:\r\n``FORCE_WRITE=yes\ - \ GITHUB_TOKEN=yourtoken GITHUB_USER=yourname pytest3 tests/integration/test_github.py``\r\ - \nor this will also work ``FORCE_WRITE=yes GITHUB_TOKEN=yourtoken GITHUB_USER=yourname\ - \ make check`` with make check, you have to have set PAGURE_TOKEN and\ - \ USER env vars\r\n```\r\n\r\n_Originally posted by @jscotka in https://github.com/packit-service/ogr/issues/80#issuecomment-503991164_\r\ - \n" - closed_at: '2019-06-27T12:56:06Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/82/comments - created_at: '2019-06-21T09:12:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/82/events - html_url: https://github.com/packit/ogr/issues/82 - id: 459096186 + author_association: CONTRIBUTOR + body: "This PR contains possible solution of #178 \r\nCloses #178 " + closed_at: '2019-11-29T11:43:22Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/274/comments + created_at: '2019-11-14T09:46:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/274/events + html_url: https://github.com/packit/ogr/pull/274 + id: 522738918 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/82/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/274/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTkwOTYxODY= - number: 82 + node_id: MDExOlB1bGxSZXF1ZXN0MzQwODc5MDI4 + number: 274 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/274.diff + html_url: https://github.com/packit/ogr/pull/274 + patch_url: https://github.com/packit/ogr/pull/274.patch + url: https://api.github.com/repos/packit/ogr/pulls/274 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Document how to save HTTP sessions for sake of testing - updated_at: '2019-06-27T12:56:06Z' - url: https://api.github.com/repos/packit/ogr/issues/82 + title: Implementation of GitPython instead of calling subprocess + updated_at: '2019-11-29T11:43:22Z' + url: https://api.github.com/repos/packit/ogr/issues/274 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/35431035?v=4 + events_url: https://api.github.com/users/Hojang2/events{/privacy} + followers_url: https://api.github.com/users/Hojang2/followers + following_url: https://api.github.com/users/Hojang2/following{/other_user} + gists_url: https://api.github.com/users/Hojang2/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/Hojang2 + id: 35431035 + login: Hojang2 + node_id: MDQ6VXNlcjM1NDMxMDM1 + organizations_url: https://api.github.com/users/Hojang2/orgs + received_events_url: https://api.github.com/users/Hojang2/received_events + repos_url: https://api.github.com/users/Hojang2/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/Hojang2/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Hojang2/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/Hojang2 - active_lock_reason: null assignee: null assignees: [] - author_association: COLLABORATOR - body: "I'm trying to implement ogr into [release-bot](https://github.com/user-cont/release-bot)\ - \ and it's a little bit painful without documentation from ogr. \r\n\ - \r\nI was playing with ogr on my Github projects and everything is working\ - \ fine. When I tried to reimplement [release-bot's](https://github.com/user-cont/release-bot)\ - \ functionalities which communicate with Github via GraphQL or rest\ - \ API I got stuck. \r\n\r\nOne of the examples could be comments. I\ - \ want to implement commenting on Github issues and PRs via ogr. \r\n\ - - In [release-bot](https://github.com/user-cont/release-bot) it works\ - \ via graphQL and sending some `node_id` inside query which recognizes\ - \ a PR or an Issue. \r\n- In ogr there is `pr_comment` function in ogr/services/github.py.\ - \ If am I right this is an alternative I'm looking for. However, I don't\ - \ fully understand the function's parameters since it needs something\ - \ else then API query.\r\n\r\nI understand that this could be a very\ - \ complex problem since ogr need to preserve compatibility with all\ - \ git forges. I'm just looking for some starting point on how to change\ - \ GraphQL/rest API with ogr. Maybe I just misunderstand some ogr's fundamentals.\r\ - \n" - closed_at: '2019-06-27T12:40:34Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/79/comments - created_at: '2019-06-17T22:01:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/79/events - html_url: https://github.com/packit/ogr/issues/79 - id: 457168292 + author_association: MEMBER + body: "Investigate existing libraries (example https://github.com/release-depot/git_wrapper).\r\ + \nDecide whether to use an existing library or move our [git-related\ + \ code](https://github.com/packit-service/ogr/blob/master/ogr/utils.py)\ + \ (check for all occurrences of \"git\" through the code) into a new\ + \ library.\r\nUse such library in ogr." + closed_at: '2019-11-29T11:43:21Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/178/comments + created_at: '2019-09-06T10:41:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/178/events + html_url: https://github.com/packit/ogr/issues/178 + id: 490258611 labels: - - color: '000000' + - color: 134ac1 default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/79/labels{/name} + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/178/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NTcxNjgyOTI= - number: 79 + node_id: MDU6SXNzdWU0OTAyNTg2MTE= + number: 178 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add compatibility with Github's GraphQL API v4 and rest API v3 - updated_at: '2019-06-27T12:40:34Z' - url: https://api.github.com/repos/packit/ogr/issues/79 + title: Replace git-wrapping code with new or existing library + updated_at: '2019-11-29T11:43:21Z' + url: https://api.github.com/repos/packit/ogr/issues/178 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/jpopelka - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "- Better get_fork for pagure and github. (Fixes #58)\r\n\r\nTODO:\r\ - \n\r\n- [x] `get_forks` on project\r\n- [x] use `project.get_forks()`\ - \ in `project.get_fork`\r\n- [x] `get_forks` for user\r\n- [x] more\ - \ tests\r\n - [x] save sequence of responses\r\n - [x] tests for\ - \ creating fork" - closed_at: '2019-06-27T10:34:34Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/85/comments - created_at: '2019-06-25T11:05:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/85/events - html_url: https://github.com/packit/ogr/pull/85 - id: 460358105 + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: MEMBER + body: "Extend `PullRequest` class of methods.\r\n\r\n- [x] move PR-related\ + \ functions from `Project` to `PullRequest`\r\n - [x] `BasePullRequest`\r\ + \n - [x] Github\r\n - [x] Gitlab\r\n - [x] Pagure\r\n- [x] make `Project`'s\ + \ methods backward-compatible by calling new methods\r\n- [x] deprecation\r\ + \n - [x] move deprecated functions to base class\r\n - [x] deprecate\ + \ functions on `Project`\r\n- [x] properties\r\n- [x] fix tests\r\n\r\ + \nPart of #86\r\nBlocked by #121" + closed_at: '2019-11-29T10:21:52Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/254/comments + created_at: '2019-10-24T17:14:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/254/events + html_url: https://github.com/packit/ogr/issues/254 + id: 512073698 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/254/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1MTIwNzM2OTg= + number: 254 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: PullRequest class refactor + updated_at: '2019-11-29T10:21:52Z' + url: https://api.github.com/repos/packit/ogr/issues/254 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-11-28T10:13:00Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/284/comments + created_at: '2019-11-28T10:06:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/284/events + html_url: https://github.com/packit/ogr/pull/284 + id: 529812923 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/85/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/284/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkxNTAyODU2 - number: 85 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ2NjE4MjQ5 + number: 284 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/85.diff - html_url: https://github.com/packit/ogr/pull/85 - patch_url: https://github.com/packit/ogr/pull/85.patch - url: https://api.github.com/repos/packit/ogr/pulls/85 + diff_url: https://github.com/packit/ogr/pull/284.diff + html_url: https://github.com/packit/ogr/pull/284 + patch_url: https://github.com/packit/ogr/pull/284.patch + url: https://api.github.com/repos/packit/ogr/pulls/284 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Better fork handling - updated_at: '2019-06-27T10:34:38Z' - url: https://api.github.com/repos/packit/ogr/issues/85 + title: Do not merge - test PR + updated_at: '2019-11-28T10:13:00Z' + url: https://api.github.com/repos/packit/ogr/issues/284 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Add .fmf and setup testing-farm.\r\n\r\n---\r\n\r\nTODO:\r\n\ + - [x] add some real tests" + closed_at: '2019-11-28T08:22:05Z' + comments: 18 + comments_url: https://api.github.com/repos/packit/ogr/issues/278/comments + created_at: '2019-11-19T12:06:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/278/events + html_url: https://github.com/packit/ogr/pull/278 + id: 524968144 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/278/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzQyNjQ1NDE1 + number: 278 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/278.diff + html_url: https://github.com/packit/ogr/pull/278 + patch_url: https://github.com/packit/ogr/pull/278.patch + url: https://api.github.com/repos/packit/ogr/pulls/278 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Setup testing farm + updated_at: '2019-11-28T10:11:46Z' + url: https://api.github.com/repos/packit/ogr/issues/278 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -39980,8 +41651,54 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + assignee: null + assignees: [] + author_association: MEMBER + body: "Figure out a deprecated strategy for ogr, get inspired by packit:\ + \ https://packit.dev/ [or django, ansible].\r\n\r\n- [x] documentation\r\ + \n- [x] solution for method/classes" + closed_at: '2019-11-27T12:02:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/121/comments + created_at: '2019-07-16T11:54:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/121/events + html_url: https://github.com/packit/ogr/issues/121 + id: 468611036 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/121/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Njg2MTEwMzY= + number: 121 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Deprecation policy + updated_at: '2019-11-27T12:02:53Z' + url: https://api.github.com/repos/packit/ogr/issues/121 + 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} @@ -39999,36 +41716,59 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 assignees: - - avatar_url: https://avatars1.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} + - 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko author_association: MEMBER - body: "FML!\r\n\r\nSo my fork of packit is named source-git, not packit.\r\ - \n\r\nWe should use an API call to obtain github forks, not a guess\ - \ work." - closed_at: '2019-06-27T10:34:34Z' + body: "Extend `Issue` class of methods.\r\n\r\n- [x] move issue-related\ + \ functions from `Project` to `Issue`\r\n- [x] make `Project`'s methods\ + \ backward-compatible by calling new methods\r\n- [x] deprecate functions\ + \ on `Project`\r\n- [x] separate all issue-related tests if needed\r\ + \n- [x] `__get_comment`, `get_issue_comments`\r\n\r\nPart of #86\r\n\ + Blocked by #121" + closed_at: '2019-11-26T08:52:22Z' comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/58/comments - created_at: '2019-04-15T11:38:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/58/events - html_url: https://github.com/packit/ogr/issues/58 - id: 433234905 + comments_url: https://api.github.com/repos/packit/ogr/issues/253/comments + created_at: '2019-10-24T17:13:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/253/events + html_url: https://github.com/packit/ogr/issues/253 + id: 512073255 labels: - color: '000000' default: false @@ -40037,400 +41777,492 @@ requests.sessions: name: GitHub node_id: MDU6TGFiZWwxMzgxNjA2OTQy url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/58/labels{/name} + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/253/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzMyMzQ5MDU= - number: 58 + node_id: MDU6SXNzdWU1MTIwNzMyNTU= + number: 253 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github: fork repository name may not match the upstream repo name' - updated_at: '2019-06-27T10:34:34Z' - url: https://api.github.com/repos/packit/ogr/issues/58 + title: Issue class refactor + updated_at: '2019-11-26T08:52:22Z' + url: https://api.github.com/repos/packit/ogr/issues/253 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- [pagure] Use empty dict as a default header.' - closed_at: '2019-06-26T13:30:50Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/89/comments - created_at: '2019-06-26T12:51:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/89/events - html_url: https://github.com/packit/ogr/pull/89 - id: 460952659 + author_association: CONTRIBUTOR + body: "After change in requre integrations tests, trying call property\ + \ _is_write_mode_ .\r\nProbably this _PersistentObjectStorage().is_write_mode_\ + \ need to be change to _PersistentObjectStorage().mode == StorageMode.write_\r\ + \n\r\n\r\nError:\r\n`AttributeError: 'PersistentObjectStorage' object\ + \ has no attribute 'is_write_mode'`" + closed_at: '2019-11-25T12:33:59Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/281/comments + created_at: '2019-11-22T11:06:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/281/events + html_url: https://github.com/packit/ogr/issues/281 + id: 527132897 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/89/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/281/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkxOTc0MzU1 - number: 89 + node_id: MDU6SXNzdWU1MjcxMzI4OTc= + number: 281 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/89.diff - html_url: https://github.com/packit/ogr/pull/89 - patch_url: https://github.com/packit/ogr/pull/89.patch - url: https://api.github.com/repos/packit/ogr/pulls/89 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix pagure header without token - updated_at: '2019-06-26T13:30:53Z' - url: https://api.github.com/repos/packit/ogr/issues/89 + title: Integrations tests fails afters change in requre + updated_at: '2019-11-25T12:33:59Z' + url: https://api.github.com/repos/packit/ogr/issues/281 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 + events_url: https://api.github.com/users/pawelkopka/events{/privacy} + followers_url: https://api.github.com/users/pawelkopka/followers + following_url: https://api.github.com/users/pawelkopka/following{/other_user} + gists_url: https://api.github.com/users/pawelkopka/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/pawelkopka + id: 17784034 + login: pawelkopka + node_id: MDQ6VXNlcjE3Nzg0MDM0 + organizations_url: https://api.github.com/users/pawelkopka/orgs + received_events_url: https://api.github.com/users/pawelkopka/received_events + repos_url: https://api.github.com/users/pawelkopka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/pawelkopka - active_lock_reason: null - assignee: null - assignees: [] - author_association: COLLABORATOR - body: "Related to #80 \r\n\r\nI provided functionality for Github Issues\ - \ including `get_issue_info`, `get_issue_list`, `get_issue_comments`,\ - \ `issue_comment`. \r\n\r\nHowever, two tests for my new functionality\ - \ are failing. I cannot create .yaml files for them on path tests/integration/test-data.\ - \ When we solve this, I can finish functionality for labeling and closing\ - \ issues.\r\n\r\nthis PR also solves #79 - I assign pull-request number\ - \ into `PullRequest.id` in ogr/abstract.py. Before it was assigning\ - \ some \"global Github pull-request id\" instead \"pull-request number\"\ - \ which was incorrect. " - closed_at: '2019-06-26T11:37:09Z' - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/81/comments - created_at: '2019-06-20T13:59:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/81/events - html_url: https://github.com/packit/ogr/pull/81 - id: 458676227 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/81/labels{/name} + assignee: + 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 + received_events_url: https://api.github.com/users/eliskasl/received_events + repos_url: https://api.github.com/users/eliskasl/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/eliskasl/received_events + repos_url: https://api.github.com/users/eliskasl/repos + 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 + author_association: CONTRIBUTOR + body: "https://github.com/PyGithub/PyGithub/pull/1135 is now merged\r\n\ + \r\nUse the code above to initiate GitHubService, related code (which\ + \ we are using in the meantime):\r\n\r\npretty much drop this:\r\nhttps://github.com/packit-service/ogr/blob/253e93bc87c079d0cd8f3dc87fc5e11f5078e53b/ogr/services/github_tweak.py#L11\r\ + \n\r\nUse the newly added functionality in pygithub here:\r\nhttps://github.com/packit-service/ogr/blob/5729e29cb4e5bea7eb6ed68e1c573ca7f2d86051/ogr/factory.py#L142\r\ + \n\r\nAlso please write a test case for this." + closed_at: '2019-11-20T15:17:22Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/270/comments + created_at: '2019-06-20T09:29:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/270/events + html_url: https://github.com/packit/ogr/issues/270 + id: 521607861 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/270/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkwMjMwMDk0 - number: 81 + node_id: MDU6SXNzdWU1MjE2MDc4NjE= + number: 270 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/81.diff - html_url: https://github.com/packit/ogr/pull/81 - patch_url: https://github.com/packit/ogr/pull/81.patch - url: https://api.github.com/repos/packit/ogr/pulls/81 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get info and comment Github Issues - updated_at: '2019-06-26T11:37:09Z' - url: https://api.github.com/repos/packit/ogr/issues/81 + title: 'get installation ID: use code from pygithub once a new release + is available' + updated_at: '2019-11-20T15:17:22Z' + url: https://api.github.com/repos/packit/ogr/issues/270 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "as integration tests needs regeneration stored yaml API communication.\r\ - \nWould be nice to add there target to be able to regenerate these files" - closed_at: '2019-06-25T14:47:44Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/61/comments - created_at: '2019-04-26T07:35:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/61/events - html_url: https://github.com/packit/ogr/issues/61 - id: 437538907 + author_association: CONTRIBUTOR + body: "After PR(https://github.com/PyGithub/PyGithub/pull/1135) merged\ + \ github_tweak can be remove and use get_installation from PyGithub.\r\ + \n\r\nCloses #178" + closed_at: '2019-11-19T08:51:59Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/277/comments + created_at: '2019-11-18T14:11:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/277/events + html_url: https://github.com/packit/ogr/pull/277 + id: 524392477 labels: - - color: 7057ff + - color: 0e8a16 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/61/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/277/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Mzc1Mzg5MDc= - number: 61 + node_id: MDExOlB1bGxSZXF1ZXN0MzQyMTc1NDg2 + number: 277 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/277.diff + html_url: https://github.com/packit/ogr/pull/277 + patch_url: https://github.com/packit/ogr/pull/277.patch + url: https://api.github.com/repos/packit/ogr/pulls/277 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: create target for makefile for regeneration testing yaml files - updated_at: '2019-06-25T14:47:44Z' - url: https://api.github.com/repos/packit/ogr/issues/61 + title: Remove github_tweak to use upstream github function + updated_at: '2019-11-19T08:51:59Z' + url: https://api.github.com/repos/packit/ogr/issues/277 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 + events_url: https://api.github.com/users/pawelkopka/events{/privacy} + followers_url: https://api.github.com/users/pawelkopka/followers + following_url: https://api.github.com/users/pawelkopka/following{/other_user} + gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/pawelkopka + id: 17784034 + login: pawelkopka + node_id: MDQ6VXNlcjE3Nzg0MDM0 + organizations_url: https://api.github.com/users/pawelkopka/orgs + received_events_url: https://api.github.com/users/pawelkopka/received_events + repos_url: https://api.github.com/users/pawelkopka/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions type: User - url: https://api.github.com/users/jscotka + url: https://api.github.com/users/pawelkopka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\r\nit is unbale to get or install ``ansible-bender`` for ``make\ - \ build`` target.\r\n\r\nIt is not part of Fedora-29.\r\n\r\nI've found\ - \ that @TomasTomecek done this: https://github.com/TomasTomecek/ansible-bender\r\ - \nbut it still failed:\r\n```\r\n12:43 $ sudo pip3 install ansible-bender\r\ - \nWARNING: Running pip install with root privileges is generally not\ - \ a good idea. Try `pip3 install --user` instead.\r\nCollecting ansible-bender\r\ - \n Downloading https://files.pythonhosted.org/packages/fa/5c/04c822b3ee6e2ff41eed372f15d954cccf164d0340341fbd0270d500bb83/ansible_bender-0.4.0-py2.py3-none-any.whl\r\ - \nRequirement already satisfied: PyYAML in /usr/lib64/python3.7/site-packages\ - \ (from ansible-bender) (4.2b4)\r\nCollecting tabulate (from ansible-bender)\r\ - \n Downloading https://files.pythonhosted.org/packages/c2/fd/202954b3f0eb896c53b7b6f07390851b1fd2ca84aa95880d7ae4f434c4ac/tabulate-0.8.3.tar.gz\ - \ (46kB)\r\n 100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ - \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ - \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ - | 51kB 2.0MB/s \r\nInstalling collected packages: tabulate, ansible-bender\r\ - \n Running setup.py install for tabulate ... done\r\nSuccessfully installed\ - \ ansible-bender-0.4.0 tabulate-0.8.3\r\n\u2714 ~/git/userspace-containerization/ogr\ - \ [tests1 L|\u202638] \r\n12:44 $ sudo make build \r\nsudo ansible-bender\ - \ build --build-volumes /home/jscotka/git/userspace-containerization/ogr:/src:Z\ - \ -- ./recipe.yaml registry.fedoraproject.org/fedora:29 ogr\r\nThere\ - \ was an error during execution: buildah command doesn't seem to be\ - \ available on your system. Please follow the upstream instructions\ - \ available at https://github.com/projectatomic/buildah/blob/master/install.md\r\ - \nmake: *** [Makefile:7: build] Error 2\r\n```\r\n\r\nafter installing:\ - \ ``sudo dnf install buildah `` it finally works." - closed_at: '2019-06-25T09:00:15Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/17/comments - created_at: '2019-02-18T11:46:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/17/events - html_url: https://github.com/packit/ogr/issues/17 - id: 411437302 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/17/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-11-18T12:45:03Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/275/comments + created_at: '2019-11-14T11:29:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/275/events + html_url: https://github.com/packit/ogr/pull/275 + id: 522798569 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/275/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTE0MzczMDI= - number: 17 + node_id: MDExOlB1bGxSZXF1ZXN0MzQwOTI0NzU4 + number: 275 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/275.diff + html_url: https://github.com/packit/ogr/pull/275 + patch_url: https://github.com/packit/ogr/pull/275.patch + url: https://api.github.com/repos/packit/ogr/pulls/275 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: missing ansible-bender dep for building - updated_at: '2019-06-25T09:00:15Z' - url: https://api.github.com/repos/packit/ogr/issues/17 + title: temporary integration test method PullRequest._pr_close_temp() + removed + updated_at: '2019-11-18T13:00:09Z' + url: https://api.github.com/repos/packit/ogr/issues/275 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/jscotka + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "* [x] don't fail when PAGURE_{TOKEN,USER} are not specified\r\n\ - * [x] mock remote API and write complete unit tests using those data\ - \ (or even have a single test suite and enable it to run against live\ - \ instance and mocked data)\r\n* [x] [tox](https://developer.fedoraproject.org/tech/languages/python/multiple-pythons.html)-ify\ - \ it (#27)" - closed_at: '2019-06-25T08:59:43Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/8/comments - created_at: '2019-01-30T10:19:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/8/events - html_url: https://github.com/packit/ogr/issues/8 - id: 404698352 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/8/labels{/name} + author_association: CONTRIBUTOR + body: '#250 ' + closed_at: '2019-11-14T08:21:22Z' + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/269/comments + created_at: '2019-11-10T21:17:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/269/events + html_url: https://github.com/packit/ogr/pull/269 + id: 520658857 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/269/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MDQ2OTgzNTI= - number: 8 + node_id: MDExOlB1bGxSZXF1ZXN0MzM5MTkxOTQw + number: 269 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/269.diff + html_url: https://github.com/packit/ogr/pull/269 + patch_url: https://github.com/packit/ogr/pull/269.patch + url: https://api.github.com/repos/packit/ogr/pulls/269 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve testing - updated_at: '2019-06-25T08:59:43Z' - url: https://api.github.com/repos/packit/ogr/issues/8 + title: github_pr_create_rework_250 + updated_at: '2019-11-14T10:46:21Z' + url: https://api.github.com/repos/packit/ogr/issues/269 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "we need this in packit this sprint when we start building in copr\r\ - \n\r\nthis should be implemented soonish and land in next release\r\n\ - \r\nrelevant code for github:\r\nhttps://github.com/packit-service/packit/blob/04793f16d5ced27b5e7fec7d963d650b065a4276/packit/watcher.py#L94" - closed_at: '2019-06-25T07:31:05Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/54/comments - created_at: '2019-04-04T14:24:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/54/events - html_url: https://github.com/packit/ogr/issues/54 - id: 429309114 + author_association: CONTRIBUTOR + body: "Hi,\r\n\r\ni have implemented GithubProject.pr_close(). integration\ + \ test included. Working on unit test." + closed_at: '2019-11-14T10:10:01Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/273/comments + created_at: '2019-11-13T20:19:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/273/events + html_url: https://github.com/packit/ogr/pull/273 + id: 522450593 labels: - - color: a2eeef + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/54/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/273/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjkzMDkxMTQ= - number: 54 + node_id: MDExOlB1bGxSZXF1ZXN0MzQwNjQ5Mzc2 + number: 273 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/273.diff + html_url: https://github.com/packit/ogr/pull/273 + patch_url: https://github.com/packit/ogr/pull/273.patch + url: https://api.github.com/repos/packit/ogr/pulls/273 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add a way to set check results for a commit - updated_at: '2019-06-25T07:31:05Z' - url: https://api.github.com/repos/packit/ogr/issues/54 + title: implement GithubProject.pr_close() + updated_at: '2019-11-14T10:10:01Z' + url: https://api.github.com/repos/packit/ogr/issues/273 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Add Makefile targets for removing response files.\r\n- Determine\ - \ forcewrite mode from file existance.\r\n\r\n\r\nWhy?\r\n- less magic\r\ - \n- easier for newcomers:\r\n - When adding a new test, you need\ - \ to rerun the tests to generate the response files.\r\n - To update\ - \ a response file, you need to remove the file and rerun the tests.\r\ - \n\r\n\r\nTODO:\r\n\r\n- [x] describe the testing in the contribution\ - \ guide" - closed_at: '2019-06-24T14:55:24Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/84/comments - created_at: '2019-06-24T12:33:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/84/events - html_url: https://github.com/packit/ogr/pull/84 - id: 459865460 + body: '- Fix the path to the packit tests.' + closed_at: '2019-11-13T21:58:53Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/272/comments + created_at: '2019-11-13T15:23:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/272/events + html_url: https://github.com/packit/ogr/pull/272 + id: 522292170 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/84/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/272/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkxMTExNTU4 - number: 84 + node_id: MDExOlB1bGxSZXF1ZXN0MzQwNTE5Mjg0 + number: 272 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/84.diff - html_url: https://github.com/packit/ogr/pull/84 - patch_url: https://github.com/packit/ogr/pull/84.patch - url: https://api.github.com/repos/packit/ogr/pulls/84 + diff_url: https://github.com/packit/ogr/pull/272.diff + html_url: https://github.com/packit/ogr/pull/272 + patch_url: https://github.com/packit/ogr/pull/272.patch + url: https://api.github.com/repos/packit/ogr/pulls/272 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Forcewrite mode from file existance - updated_at: '2019-06-24T14:55:57Z' - url: https://api.github.com/repos/packit/ogr/issues/84 + title: Fix ogr rev dep tests + updated_at: '2019-11-13T21:58:57Z' + url: https://api.github.com/repos/packit/ogr/issues/272 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -40452,37 +42284,45 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Rename @readonly to @if_readonly. - - - - Fixes #56' - closed_at: '2019-06-24T14:46:14Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/83/comments - created_at: '2019-06-24T11:34:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/83/events - html_url: https://github.com/packit/ogr/pull/83 - id: 459840373 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/83/labels{/name} + body: "- Use requre-purge to unify the dates and tags in response files.\r\ + \n\r\n\r\nTODO:\r\n\r\n- [x] add to pre-commit and run on all changed\ + \ yaml files (pre-commit hook created in the requre repo)\r\n- [x] check\ + \ other possible values to purge (defined in the [requre pre-commit-hook\ + \ config](https://github.com/packit-service/requre/blob/master/.pre-commit-hooks.yaml))\r\ + \n- [x] Makefile target running cleanup on all files." + closed_at: '2019-11-12T07:51:34Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/266/comments + created_at: '2019-11-06T09:59:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/266/events + html_url: https://github.com/packit/ogr/pull/266 + id: 518363112 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/266/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjkxMDkxNDg4 - number: 83 + node_id: MDExOlB1bGxSZXF1ZXN0MzM3MjcwODQ5 + number: 266 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/83.diff - html_url: https://github.com/packit/ogr/pull/83 - patch_url: https://github.com/packit/ogr/pull/83.patch - url: https://api.github.com/repos/packit/ogr/pulls/83 + diff_url: https://github.com/packit/ogr/pull/266.diff + html_url: https://github.com/packit/ogr/pull/266 + patch_url: https://github.com/packit/ogr/pull/266.patch + url: https://api.github.com/repos/packit/ogr/pulls/266 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Rename readonly decorator - updated_at: '2019-06-24T14:46:47Z' - url: https://api.github.com/repos/packit/ogr/issues/83 + title: Requre purge + updated_at: '2019-11-12T08:05:45Z' + url: https://api.github.com/repos/packit/ogr/issues/266 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -40504,32 +42344,40 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "The `@readonly` decorator should be renamed as it can confuse newcomers\ - \ that the method itself is \"readonly\". The fact is that it has the\ - \ opposite meaning of the read-only.\r\n\r\nFeel free to add your ideas\ - \ as a single comment so we can easily vote.\r\n\r\n-----\r\n\r\nFollow-up\ - \ from #48" - closed_at: '2019-06-24T14:46:14Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/56/comments - created_at: '2019-04-09T08:17:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/56/events - html_url: https://github.com/packit/ogr/issues/56 - id: 430829968 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/56/labels{/name} + body: '- Tweak the stale-bot config.' + closed_at: '2019-11-11T13:51:55Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/268/comments + created_at: '2019-11-06T13:57:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/268/events + html_url: https://github.com/packit/ogr/pull/268 + id: 518489380 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/268/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzA4Mjk5Njg= - number: 56 + node_id: MDExOlB1bGxSZXF1ZXN0MzM3Mzc0NzAw + number: 268 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/268.diff + html_url: https://github.com/packit/ogr/pull/268 + patch_url: https://github.com/packit/ogr/pull/268.patch + url: https://api.github.com/repos/packit/ogr/pulls/268 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'better name for @readonly decorator ' - updated_at: '2019-06-24T14:46:14Z' - url: https://api.github.com/repos/packit/ogr/issues/56 + title: Stale-bot config update + updated_at: '2019-11-11T14:11:04Z' + url: https://api.github.com/repos/packit/ogr/issues/268 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -40547,239 +42395,61 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=14: - - metadata: - latency: 0.47100305557250977 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* enable calling dump()\ - \ after store()\n* packit.yaml: add a link to docs\n* packit: sync from\ - \ downstream & build in copr\n* Fix mypy errors\n* Dump RequestResponse\ - \ on our own\n* Fix old imports\n* Remove old Pagure tests\n* Fix tests\ - \ and regenerate test responses, do not save headers\n* Use custom response\ - \ class for Pagure\n* Add missing readonly decorator\n* Use self.get_raw_request\ - \ on cal_api\n* Add docstring for Pagure methods\n* Fix creation of\ - \ pr comments\n* Improve the request/response handling and fix authentication\ - \ header\n* Apply suggestions by @jpopelka from code review\n* Fix commit\ - \ flags/statuses\n* Remove libpagure from recipe\n* Methods for commit\ - \ statuses/flags and comments\n* Add methods for tags\n* Fix __str__\ - \ for PRComment and PullRequest\n* Remove libpagure from requirements\n\ - * Fix forking\n* Better response handling for Pagure API\n* Remove OurPagure\n\ - * Implement forking logic and PR methods\n* First part of implementing\ - \ the Pagure classes without libpagure\n* Add string representation\ - \ for PRComment and PullRequest\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.4.0-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2019-06-11T14:05:10Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/77/comments - created_at: '2019-06-11T13:18:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/77/events - html_url: https://github.com/packit/ogr/pull/77 - id: 454686226 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/77/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjg3MDg2Mzg1 - number: 77 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/77.diff - html_url: https://github.com/packit/ogr/pull/77 - patch_url: https://github.com/packit/ogr/pull/77.patch - url: https://api.github.com/repos/packit/ogr/pulls/77 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.4.0 release - updated_at: '2019-06-11T14:10:26Z' - url: https://api.github.com/repos/packit/ogr/issues/77 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos - 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 - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-06-11T13:19:01Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/76/comments - created_at: '2019-06-11T13:18:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/76/events - html_url: https://github.com/packit/ogr/issues/76 - id: 454685925 + author_association: CONTRIBUTOR + body: "they have a file called ogr.py:\r\n```\r\n$ rpm -ql python3-gdal\ + \ | grep ogr\r\n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.opt-1.pyc\r\ + \n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.pyc\r\ + \n/usr/lib64/python3.7/site-packages/ogr.py\r\n/usr/lib64/python3.7/site-packages/osgeo/__pycache__/ogr.cpython-37.opt-1.pyc\r\ + \n/usr/lib64/python3.7/site-packages/osgeo/__pycache__/ogr.cpython-37.pyc\r\ + \n/usr/lib64/python3.7/site-packages/osgeo/_ogr.cpython-37m-x86_64-linux-gnu.so\r\ + \n/usr/lib64/python3.7/site-packages/osgeo/ogr.py\r\n/usr/share/doc/python3-gdal/samples/gcps2ogr.py\r\ + \n/usr/share/doc/python3-gdal/samples/ogr2ogr.py\r\n/usr/share/doc/python3-gdal/samples/ogr2vrt.py\r\ + \n/usr/share/doc/python3-gdal/samples/ogr_build_junction_table.py\r\n\ + /usr/share/doc/python3-gdal/samples/ogr_dispatch.py\r\n/usr/share/doc/python3-gdal/samples/ogr_layer_algebra.py\r\ + \n/usr/share/doc/python3-gdal/samples/ogrinfo.py\r\n/usr/share/doc/python3-gdal/samples/ogrupdate.py\r\ + \n```\r\n\r\nSo now that I installed python3-gdal, I can't use ogr anymore:\r\ + \n```\r\n$ ipython3\r\nPython 3.7.4 (default, Jul 9 2019, 16:32:37)\ + \ \r\nType 'copyright', 'credits' or 'license' for more information\r\ + \nIPython 7.2.0 -- An enhanced Interactive Python. Type '?' for help.\r\ + \nfrException reporting mode: Verbose\r\n\r\nIn [1]: from ogr import\ + \ services \r\n---------------------------------------------------------------------------\r\ + \nImportError Traceback (most recent call\ + \ last)\r\n in \r\n----> 1 from\ + \ ogr import services\r\n global ogr = undefined\r\n global\ + \ services = undefined\r\n\r\nImportError: cannot import name 'services'\ + \ from 'ogr' (/usr/lib64/python3.7/site-packages/ogr.py)\r\n```\r\n\r\ + \nNo idea how to fix this.\r\n\r\nWTF\r\n" + closed_at: '2019-11-11T14:00:21Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/139/comments + created_at: '2019-07-31T09:54:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/139/events + html_url: https://github.com/packit/ogr/issues/139 + id: 475047644 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: bc4812 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/76/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NTQ2ODU5MjU= - number: 76 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: new minor release - updated_at: '2019-06-11T13:19:01Z' - url: https://api.github.com/repos/packit/ogr/issues/76 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '\+ packit.yaml: add a link to docs' - closed_at: '2019-05-29T14:23:24Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/72/comments - created_at: '2019-05-22T14:36:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/72/events - html_url: https://github.com/packit/ogr/pull/72 - id: 447175169 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/72/labels{/name} + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker + labels_url: https://api.github.com/repos/packit/ogr/issues/139/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjgxMjI1MTU2 - number: 72 + node_id: MDU6SXNzdWU0NzUwNDc2NDQ= + number: 139 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/72.diff - html_url: https://github.com/packit/ogr/pull/72 - patch_url: https://github.com/packit/ogr/pull/72.patch - url: https://api.github.com/repos/packit/ogr/pulls/72 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: dump() when store() is called - updated_at: '2019-05-29T14:23:28Z' - url: https://api.github.com/repos/packit/ogr/issues/72 + title: installing python3-gdal breaks ogr + updated_at: '2019-11-11T14:00:21Z' + url: https://api.github.com/repos/packit/ogr/issues/139 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -40800,1862 +42470,2159 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Remove OurPagure.\r\n- Implement forking logic and PR methods.\r\ - \n- First part of implementing the Pagure classes without libpagure.\r\ - \n- Add string representation for PRComment and PullRequest.\r\n\r\n\ - Fix #64\r\nFix #67\r\n\r\n---\r\n\r\nTODO:\r\n\r\n- [x] readonly mode\r\ - \n- [x] tests\r\n\r\n\r\n---\r\n\r\n## How to test?\r\n\r\n```python\r\ - \nfrom ogr.services.pagure import PagureService\r\nfrom ogr.abstract\ - \ import PRStatus\r\n\r\n\r\nservice = PagureService(token=\"???_PAGURE_TOKEN_???\"\ - )\r\n\r\n# Play with the API\r\n\r\nprint(service.user.get_username())\r\ - \nproject = service.get_project(repo=\"colin\", namespace=\"rpms\")\r\ - \nprint(project.get_commit_statuses(\"339a19b0bbc766d0c6cdbbc2ef5a32c0de9f7551\"\ - )[0])\r\nprint(project.get_tags())\r\n\r\nfork = project.get_fork()\r\ - \nprint(fork.exists())\r\n\r\nproject.fork_create()\r\n\r\nfor pr in\ - \ project.get_pr_list(status=PRStatus.all):\r\n print(pr)\r\n\r\n\ - pr = project.get_pr_info(3)\r\nprint(pr)\r\nfor c in project.get_pr_comments(3):\r\ - \n print(c)\r\n\r\nprint(fork.is_fork)\r\nprint(fork.is_forked())\r\ - \n```" - closed_at: '2019-05-29T07:46:28Z' - comments: 17 - comments_url: https://api.github.com/repos/packit/ogr/issues/71/comments - created_at: '2019-05-20T10:11:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/71/events - html_url: https://github.com/packit/ogr/pull/71 - id: 446033070 + author_association: CONTRIBUTOR + body: 'Aims to remove any strict MyPy errors from the utils.py file, relating + to ticket #251 ' + closed_at: '2019-11-05T07:49:43Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/259/comments + created_at: '2019-10-26T20:18:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/259/events + html_url: https://github.com/packit/ogr/pull/259 + id: 512880678 labels: - - color: 1d76db + - color: 0e8a16 default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - labels_url: https://api.github.com/repos/packit/ogr/issues/71/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/259/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjgwMzI0Njgx - number: 71 + node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzk4MjAw + number: 259 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/71.diff - html_url: https://github.com/packit/ogr/pull/71 - patch_url: https://github.com/packit/ogr/pull/71.patch - url: https://api.github.com/repos/packit/ogr/pulls/71 + diff_url: https://github.com/packit/ogr/pull/259.diff + html_url: https://github.com/packit/ogr/pull/259 + patch_url: https://github.com/packit/ogr/pull/259.patch + url: https://api.github.com/repos/packit/ogr/pulls/259 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove libpagure - updated_at: '2019-05-29T11:00:10Z' - url: https://api.github.com/repos/packit/ogr/issues/71 + title: improve typehint coverage in utils.py + updated_at: '2019-11-07T07:16:34Z' + url: https://api.github.com/repos/packit/ogr/issues/259 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/svenharris - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-05-29T08:31:09Z' + author_association: CONTRIBUTOR + body: Make it possible to clear check status on PR (optionally commit). + closed_at: '2019-11-06T11:37:33Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/75/comments - created_at: '2019-05-29T07:41:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/75/events - html_url: https://github.com/packit/ogr/pull/75 - id: 449647079 + comments_url: https://api.github.com/repos/packit/ogr/issues/267/comments + created_at: '2019-11-06T11:36:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/267/events + html_url: https://github.com/packit/ogr/issues/267 + id: 518415970 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/75/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/267/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjgzMTMxNzY3 - number: 75 + node_id: MDU6SXNzdWU1MTg0MTU5NzA= + number: 267 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/75.diff - html_url: https://github.com/packit/ogr/pull/75 - patch_url: https://github.com/packit/ogr/pull/75.patch - url: https://api.github.com/repos/packit/ogr/pulls/75 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'packit: sync from downstream & build in copr' - updated_at: '2019-05-29T08:31:13Z' - url: https://api.github.com/repos/packit/ogr/issues/75 + title: Support for clearing checks + updated_at: '2019-11-06T11:37:33Z' + url: https://api.github.com/repos/packit/ogr/issues/267 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ - \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ - \nhas to be adapted, currenly I've added dependency on lower version\ - \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ - \nto avoid this issue." - closed_at: '2019-05-29T07:46:28Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments - created_at: '2019-04-29T14:41:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/64/events - html_url: https://github.com/packit/ogr/issues/64 - id: 438351136 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} + author_association: CONTRIBUTOR + body: 'As part of issue #251 update type hinting within the abstract.py + file such that there are no mypy errors for that file' + closed_at: '2019-11-05T11:05:30Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/258/comments + created_at: '2019-10-26T19:26:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/258/events + html_url: https://github.com/packit/ogr/pull/258 + id: 512875119 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/258/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MzgzNTExMzY= - number: 64 + node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzk0NDEy + number: 258 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/258.diff + html_url: https://github.com/packit/ogr/pull/258 + patch_url: https://github.com/packit/ogr/pull/258.patch + url: https://api.github.com/repos/packit/ogr/pulls/258 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'libpagure has changed ' - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/64 + title: Improve type hint coverage in abstract.py + updated_at: '2019-11-05T12:37:31Z' + url: https://api.github.com/repos/packit/ogr/issues/258 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions type: User - url: https://api.github.com/users/jscotka + url: https://api.github.com/users/svenharris - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "While debugging https://github.com/packit-service/packit/issues/305\ - \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ - \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ - \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ - \ attribute has a value `rpm/packit`, while libpagure probably expects\ - \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ - \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ - \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ - \ expects `/` in `self.repo`, which is probably not what `libpagure`\ - \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ - \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ - \ even more recently." - closed_at: '2019-05-29T07:46:28Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments - created_at: '2019-05-10T11:09:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/67/events - html_url: https://github.com/packit/ogr/issues/67 - id: 442664622 + author_association: CONTRIBUTOR + body: "Fixes #165\r\n\r\n*edited by @lachmanfrantisek to close that issue\ + \ on merging*" + closed_at: '2019-11-04T13:59:19Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/166/comments + created_at: '2019-09-06T01:43:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/166/events + html_url: https://github.com/packit/ogr/pull/166 + id: 490086601 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a + - color: c5def5 default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + labels_url: https://api.github.com/repos/packit/ogr/issues/166/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDI2NjQ2MjI= - number: 67 + node_id: MDExOlB1bGxSZXF1ZXN0MzE0NzYyMzA5 + number: 166 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/166.diff + html_url: https://github.com/packit/ogr/pull/166 + patch_url: https://github.com/packit/ogr/pull/166.patch + url: https://api.github.com/repos/packit/ogr/pulls/166 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: libpagure.Pagure expects '/' not in repo attribute - updated_at: '2019-05-29T07:46:28Z' - url: https://api.github.com/repos/packit/ogr/issues/67 + title: Update and link the contribution guide in README + updated_at: '2019-11-04T13:59:19Z' + url: https://api.github.com/repos/packit/ogr/issues/166 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/19755484?v=4 + events_url: https://api.github.com/users/RomaneGreen/events{/privacy} + followers_url: https://api.github.com/users/RomaneGreen/followers + following_url: https://api.github.com/users/RomaneGreen/following{/other_user} + gists_url: https://api.github.com/users/RomaneGreen/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/RomaneGreen + id: 19755484 + login: RomaneGreen + node_id: MDQ6VXNlcjE5NzU1NDg0 + organizations_url: https://api.github.com/users/RomaneGreen/orgs + received_events_url: https://api.github.com/users/RomaneGreen/received_events + repos_url: https://api.github.com/users/RomaneGreen/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/RomaneGreen/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/RomaneGreen/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/RomaneGreen - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-05-14T14:52:49Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/70/comments - created_at: '2019-05-14T14:49:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/70/events - html_url: https://github.com/packit/ogr/pull/70 - id: 443960153 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/70/labels{/name} + body: '- Add link to contribution guide to README. + + - Rebased version of #166.' + closed_at: '2019-11-04T13:56:09Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/265/comments + created_at: '2019-11-04T12:48:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/265/events + html_url: https://github.com/packit/ogr/pull/265 + id: 517129326 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/265/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjc4NzE5MTU5 - number: 70 + node_id: MDExOlB1bGxSZXF1ZXN0MzM2MjU4MjI3 + number: 265 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/70.diff - html_url: https://github.com/packit/ogr/pull/70 - patch_url: https://github.com/packit/ogr/pull/70.patch - url: https://api.github.com/repos/packit/ogr/pulls/70 + diff_url: https://github.com/packit/ogr/pull/265.diff + html_url: https://github.com/packit/ogr/pull/265 + patch_url: https://github.com/packit/ogr/pull/265.patch + url: https://api.github.com/repos/packit/ogr/pulls/265 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.3.1 release - updated_at: '2019-05-14T14:55:27Z' - url: https://api.github.com/repos/packit/ogr/issues/70 + title: 'Link to contribution guide (rebased version of #166)' + updated_at: '2019-11-04T13:59:00Z' + url: https://api.github.com/repos/packit/ogr/issues/265 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* add comment why there\ - \ is little bit confusing assigment\n* improve mock pf persistent objects\n\ - * use generic exception, to not fail when regenerating\n* raise filenotfound\ - \ exception in pagure method get_file_content\n* enable readonly tests\n\ - * enable some tests what were disabled when debugging various issues\n\ - * check write mode in dump function not in desctructor\n* do not flush\ - \ within desctructor, in case read mode\n* avoid to use default flow\ - \ style for yaml files\n* mock pagure classes\n* commit status\n* Regenerate\ - \ github test data\n* Implement adding PR comments\n* commit_comment:\ - \ Fix typo in docs\n* Implement adding commit comments\n* method GithubProject().get_sha_from_tag\ - \ in\n* rename github in mock to another name to fix the pypy test\n\ - * fix integration test for github by skipping\n* add yaml dependency\ - \ to requirements\n* add there class attribute to be possible to use\ - \ ogr mocking in pagure\n* fixed using of open in destructor\n* fixed\ - \ using of open in destructor\n* rename write_mode to is_write_mode\ - \ to be more explicit that there is expected boolean primarily\n* add\ - \ doc strings and adapt PR review comments\n* pagure/get_urls: fill\ - \ in {username}\n* use internal keys also in github to be clearer\n\ - * mocking also pagure in simplier way\n* raise special exception in\ - \ case key is not in storage file\n* move storage class to mock_core\n\ - * mock via persistent storage: run integration tests with persistent\ - \ storage\n* adapt jpopelka suggestions from PR\n* adapt jpopelka suggestion\ - \ from PR\n* add read only helper and option to github and pagure classes\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.3.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-05-14T10:16:08Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/69/comments - created_at: '2019-05-13T12:52:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/69/events - html_url: https://github.com/packit/ogr/pull/69 - id: 443381757 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/69/labels{/name} + author_association: NONE + body: '' + closed_at: '2019-11-04T13:58:31Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/244/comments + created_at: '2019-10-12T13:08:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/244/events + html_url: https://github.com/packit/ogr/pull/244 + id: 506185012 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/244/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjc4MjYwMzM4 - number: 69 + node_id: MDExOlB1bGxSZXF1ZXN0MzI3NDYzMzkw + number: 244 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/69.diff - html_url: https://github.com/packit/ogr/pull/69 - patch_url: https://github.com/packit/ogr/pull/69.patch - url: https://api.github.com/repos/packit/ogr/pulls/69 + diff_url: https://github.com/packit/ogr/pull/244.diff + html_url: https://github.com/packit/ogr/pull/244 + patch_url: https://github.com/packit/ogr/pull/244.patch + url: https://api.github.com/repos/packit/ogr/pulls/244 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.3.0 release - updated_at: '2019-05-14T10:20:51Z' - url: https://api.github.com/repos/packit/ogr/issues/69 + title: Add the add_to_collaborators method to abstract.GitProject + updated_at: '2019-11-04T13:58:31Z' + url: https://api.github.com/repos/packit/ogr/issues/244 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/23198051?v=4 + events_url: https://api.github.com/users/HECTOPK/events{/privacy} + followers_url: https://api.github.com/users/HECTOPK/followers + following_url: https://api.github.com/users/HECTOPK/following{/other_user} + gists_url: https://api.github.com/users/HECTOPK/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/HECTOPK + id: 23198051 + login: HECTOPK + node_id: MDQ6VXNlcjIzMTk4MDUx + organizations_url: https://api.github.com/users/HECTOPK/orgs + received_events_url: https://api.github.com/users/HECTOPK/received_events + repos_url: https://api.github.com/users/HECTOPK/repos 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 + starred_url: https://api.github.com/users/HECTOPK/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/HECTOPK/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/HECTOPK - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-05-13T12:52:45Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/68/comments - created_at: '2019-05-13T12:50:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/68/events - html_url: https://github.com/packit/ogr/issues/68 - id: 443380561 + body: "The used config is the example one from the app page:\r\nhttps://github.com/apps/stale/" + closed_at: '2019-11-01T10:47:23Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/262/comments + created_at: '2019-10-31T15:18:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/262/events + html_url: https://github.com/packit/ogr/pull/262 + id: 515517121 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/68/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/262/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NDMzODA1NjE= - number: 68 + node_id: MDExOlB1bGxSZXF1ZXN0MzM0OTY3Mzcy + number: 262 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/262.diff + html_url: https://github.com/packit/ogr/pull/262 + patch_url: https://github.com/packit/ogr/pull/262.patch + url: https://api.github.com/repos/packit/ogr/pulls/262 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-05-13T12:52:45Z' - url: https://api.github.com/repos/packit/ogr/issues/68 + title: Add config for stale bot + updated_at: '2019-11-01T10:48:02Z' + url: https://api.github.com/repos/packit/ogr/issues/262 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Improve mocking, to be easily able mock `packit` via passing `persistent_storage` - class variable - closed_at: '2019-05-02T12:42:40Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/66/comments - created_at: '2019-05-02T11:19:16Z' - events_url: https://api.github.com/repos/packit/ogr/issues/66/events - html_url: https://github.com/packit/ogr/pull/66 - id: 439539983 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/66/labels{/name} + author_association: CONTRIBUTOR + body: 'This pull request intends to fix the strict mypy errors in the + exceptions.py file as part of #251. Not sure if the types within the + dictionary (str, str) are consistent with how this is used as couldn''t + see any instances in the codebase where this error is raised with the + kwargs filled in.' + closed_at: '2019-10-31T19:36:13Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/256/comments + created_at: '2019-10-26T18:24:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/256/events + html_url: https://github.com/packit/ogr/pull/256 + id: 512868698 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/256/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjc1MzIyNTg2 - number: 66 + node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzg5ODUy + number: 256 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/66.diff - html_url: https://github.com/packit/ogr/pull/66 - patch_url: https://github.com/packit/ogr/pull/66.patch - url: https://api.github.com/repos/packit/ogr/pulls/66 + diff_url: https://github.com/packit/ogr/pull/256.diff + html_url: https://github.com/packit/ogr/pull/256 + patch_url: https://github.com/packit/ogr/pull/256.patch + url: https://api.github.com/repos/packit/ogr/pulls/256 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve mock of persistent objects - updated_at: '2019-05-02T12:42:41Z' - url: https://api.github.com/repos/packit/ogr/issues/66 + title: Improve typehints for exceptions.py + updated_at: '2019-10-31T19:36:13Z' + url: https://api.github.com/repos/packit/ogr/issues/256 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions type: User - url: https://api.github.com/users/jscotka + url: https://api.github.com/users/svenharris - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "now each integration test class contains right one file with stored\ - \ API data.\r\nWe could reconsider it, and maybe have file for each\ - \ test, to avoid to regenerate big file and have big commits.\r\nWe\ - \ have to solve several issues:\r\n * How to handle it per test, now\ - \ there is right one service pytest fixture function what contains it\r\ - \n * How to regenerate just relevant part \r\n * maybe remove some\ - \ timestamps, UIDs and similar objects what can change on every request\r\ - \n * or manually(semiautomatically) call just affected tests - ie:\ - \ run tests, find failures (key errors) and then try to just regenerate\ - \ files for failed tests" - closed_at: '2019-04-30T19:32:17Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/62/comments - created_at: '2019-04-26T13:21:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/62/events - html_url: https://github.com/packit/ogr/issues/62 - id: 437670314 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/62/labels{/name} + author_association: CONTRIBUTOR + body: 'As part of issue #251 improve the typehinting within the repo. + This pull request aims to fix the type hints in the parsing.py file.' + closed_at: '2019-10-31T17:38:33Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/257/comments + created_at: '2019-10-26T18:31:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/257/events + html_url: https://github.com/packit/ogr/pull/257 + id: 512869415 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/257/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Mzc2NzAzMTQ= - number: 62 + node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzkwMzc2 + number: 257 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/257.diff + html_url: https://github.com/packit/ogr/pull/257 + patch_url: https://github.com/packit/ogr/pull/257.patch + url: https://api.github.com/repos/packit/ogr/pulls/257 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'testing: split yaml files with data for each test to avoid regeneration - big file and big commits' - updated_at: '2019-04-30T19:32:17Z' - url: https://api.github.com/repos/packit/ogr/issues/62 + title: improve typehints for parsing.py + updated_at: '2019-10-31T18:15:49Z' + url: https://api.github.com/repos/packit/ogr/issues/257 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions type: User - url: https://api.github.com/users/jscotka + url: https://api.github.com/users/svenharris - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-04-30T13:49:40Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/63/comments - created_at: '2019-04-26T13:21:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/63/events - html_url: https://github.com/packit/ogr/pull/63 - id: 437670526 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/63/labels{/name} + body: "Part of #86\r\n\r\nStructure of classes:\r\n\r\n* _Comment_\r\n\ + \ * _IssueComment_\r\n * GithubIssueComment\r\n * GitlabIssueComment\r\ + \n * PagureIssueComment\r\n * _PRComment_\r\n * GithubPRComment\r\ + \n * GitlabPRComment\r\n * PagurePRComment\r\n\r\nsuggested by\ + \ @lachmanfrantisek in #228\r\n\r\n* [x] Create a `Comment` abstract\ + \ class\r\n* [x] Implement base class for `Comment`\r\n* [x] Implementation\ + \ of services\r\n * [x] Github\r\n * [x] Gitlab\r\n * [x] Pagure\r\ + \n* [x] Update interface to include function for returning `Comment`\ + \ object\r\n * [x] Deprecate functions (`*Project`) manipulating with\ + \ comments (#121)\r\n* [ ] Remove `Comment = TypeVar('Comment', IssueComment,\ + \ PRComment)`\r\n* [ ] Make service-specific `__str__` to be compatible\ + \ with parent's constructor\r\n* [ ] Decide return types for services\ + \ `PRComment` vs `GithubPRComment`\r\n\r\nMaybe the implementation for\ + \ specific service could take the `raw_comment` in constructor?" + closed_at: '2019-10-23T13:09:59Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/230/comments + created_at: '2019-10-01T17:40:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/230/events + html_url: https://github.com/packit/ogr/issues/230 + id: 501044775 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/230/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjczODk1Njc5 - number: 63 + node_id: MDU6SXNzdWU1MDEwNDQ3NzU= + number: 230 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/63.diff - html_url: https://github.com/packit/ogr/pull/63 - patch_url: https://github.com/packit/ogr/pull/63.patch - url: https://api.github.com/repos/packit/ogr/pulls/63 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: mock pagure classes - updated_at: '2019-04-30T13:49:40Z' - url: https://api.github.com/repos/packit/ogr/issues/63 + title: Factor out Comment + updated_at: '2019-10-23T13:09:59Z' + url: https://api.github.com/repos/packit/ogr/issues/230 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-04-30T10:41:00Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/65/comments - created_at: '2019-04-30T08:16:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/65/events - html_url: https://github.com/packit/ogr/pull/65 - id: 438653697 + author_association: NONE + body: 'I have added # type: ignore at the beginning of each python file.' + closed_at: '2019-10-23T07:32:14Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/252/comments + created_at: '2019-10-22T19:08:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/252/events + html_url: https://github.com/packit/ogr/pull/252 + id: 510850860 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/65/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/252/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mjc0NjM1NjI0 - number: 65 + node_id: MDExOlB1bGxSZXF1ZXN0MzMxMTUyNDg0 + number: 252 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/65.diff - html_url: https://github.com/packit/ogr/pull/65 - patch_url: https://github.com/packit/ogr/pull/65.patch - url: https://api.github.com/repos/packit/ogr/pulls/65 + diff_url: https://github.com/packit/ogr/pull/252.diff + html_url: https://github.com/packit/ogr/pull/252 + patch_url: https://github.com/packit/ogr/pull/252.patch + url: https://api.github.com/repos/packit/ogr/pulls/252 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: commit status - updated_at: '2019-04-30T10:41:00Z' - url: https://api.github.com/repos/packit/ogr/issues/65 + title: 'Added # type: ignore ' + updated_at: '2019-10-23T07:32:14Z' + url: https://api.github.com/repos/packit/ogr/issues/252 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/42462649?v=4 + events_url: https://api.github.com/users/maniis/events{/privacy} + followers_url: https://api.github.com/users/maniis/followers + following_url: https://api.github.com/users/maniis/following{/other_user} + gists_url: https://api.github.com/users/maniis/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/maniis + id: 42462649 + login: maniis + node_id: MDQ6VXNlcjQyNDYyNjQ5 + organizations_url: https://api.github.com/users/maniis/orgs + received_events_url: https://api.github.com/users/maniis/received_events + repos_url: https://api.github.com/users/maniis/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + starred_url: https://api.github.com/users/maniis/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/maniis/subscriptions type: User - url: https://api.github.com/users/dhodovsk + url: https://api.github.com/users/maniis + _next: null + elapsed: 0.64658 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:09 GMT + ETag: W/"283f9c5ab9d9ebf6fdb68ff42c45a5e4b101714aee58ceb992427c03d6c95f1e" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78F553:1334862:6075DCA0 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4284' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '716' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=13: + - metadata: + latency: 0.6156420707702637 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-04-27T11:06:49Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/60/comments - created_at: '2019-04-24T13:58:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/60/events - html_url: https://github.com/packit/ogr/pull/60 - id: 436713552 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/60/labels{/name} + body: '- Use new format for requre.' + closed_at: '2019-10-21T14:17:11Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/246/comments + created_at: '2019-10-15T10:46:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/246/events + html_url: https://github.com/packit/ogr/pull/246 + id: 507162669 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/246/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjczMTQ0MTgw - number: 60 + node_id: MDExOlB1bGxSZXF1ZXN0MzI4MjAyNTY5 + number: 246 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/60.diff - html_url: https://github.com/packit/ogr/pull/60 - patch_url: https://github.com/packit/ogr/pull/60.patch - url: https://api.github.com/repos/packit/ogr/pulls/60 + diff_url: https://github.com/packit/ogr/pull/246.diff + html_url: https://github.com/packit/ogr/pull/246 + patch_url: https://github.com/packit/ogr/pull/246.patch + url: https://api.github.com/repos/packit/ogr/pulls/246 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add method for creating comments on commits - updated_at: '2019-04-27T11:06:50Z' - url: https://api.github.com/repos/packit/ogr/issues/60 + title: Use new requre api + updated_at: '2019-10-21T14:22:24Z' + url: https://api.github.com/repos/packit/ogr/issues/246 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Exsmple: https://github.com/dhodovsk/rsyslog/pull/1' - closed_at: '2019-04-27T11:05:13Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/59/comments - created_at: '2019-04-24T08:28:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/59/events - html_url: https://github.com/packit/ogr/pull/59 - id: 436563500 + body: 'Test for https://github.com/packit-service/packit-service/pull/164 + + + - should pass' + closed_at: '2019-10-21T13:52:54Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/247/comments + created_at: '2019-10-16T10:40:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/247/events + html_url: https://github.com/packit/ogr/pull/247 + id: 507767488 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/59/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/247/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjczMDI1OTcw - number: 59 + node_id: MDExOlB1bGxSZXF1ZXN0MzI4NjkwNjU1 + number: 247 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/59.diff - html_url: https://github.com/packit/ogr/pull/59 - patch_url: https://github.com/packit/ogr/pull/59.patch - url: https://api.github.com/repos/packit/ogr/pulls/59 + diff_url: https://github.com/packit/ogr/pull/247.diff + html_url: https://github.com/packit/ogr/pull/247 + patch_url: https://github.com/packit/ogr/pull/247.patch + url: https://api.github.com/repos/packit/ogr/pulls/247 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement adding PR comments - updated_at: '2019-04-27T11:05:13Z' - url: https://api.github.com/repos/packit/ogr/issues/59 + title: Add rebase check to pre-commit (pass) + updated_at: '2019-10-21T13:53:00Z' + url: https://api.github.com/repos/packit/ogr/issues/247 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-04-25T09:08:30Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/55/comments - created_at: '2019-04-08T13:30:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/55/events - html_url: https://github.com/packit/ogr/pull/55 - id: 430453106 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/55/labels{/name} + body: 'Test for https://github.com/packit-service/packit-service/pull/164 + + + - should fail' + closed_at: '2019-10-21T13:10:47Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/248/comments + created_at: '2019-10-16T10:41:07Z' + events_url: https://api.github.com/repos/packit/ogr/issues/248/events + html_url: https://github.com/packit/ogr/pull/248 + id: 507767766 + labels: + - color: dd5f74 + default: false + description: Work in progress. + id: 1432779248 + name: do-not-merge + node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 + url: https://api.github.com/repos/packit/ogr/labels/do-not-merge + - color: e4e669 + default: true + description: This doesn't seem right. + id: 1160311267 + name: invalid + node_id: MDU6TGFiZWwxMTYwMzExMjY3 + url: https://api.github.com/repos/packit/ogr/labels/invalid + labels_url: https://api.github.com/repos/packit/ogr/issues/248/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY4MzM3Mjk1 - number: 55 + node_id: MDExOlB1bGxSZXF1ZXN0MzI4NjkwODg5 + number: 248 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/55.diff - html_url: https://github.com/packit/ogr/pull/55 - patch_url: https://github.com/packit/ogr/pull/55.patch - url: https://api.github.com/repos/packit/ogr/pulls/55 + diff_url: https://github.com/packit/ogr/pull/248.diff + html_url: https://github.com/packit/ogr/pull/248 + patch_url: https://github.com/packit/ogr/pull/248.patch + url: https://api.github.com/repos/packit/ogr/pulls/248 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: persistent storage for github class for testing ogr and packit - updated_at: '2019-04-25T09:09:03Z' - url: https://api.github.com/repos/packit/ogr/issues/55 + title: Add rebase check to pre-commit (fail) + updated_at: '2019-10-21T13:10:51Z' + url: https://api.github.com/repos/packit/ogr/issues/248 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos - site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'https://pagure.io/pagure/issue/4427 - - - ``` - - $ pytest-3 -k test_fork - - === test session starts === - - platform linux -- Python 3.7.3, pytest-3.6.4, py-1.5.4, pluggy-0.6.0 - - rootdir: /home/tt/g/user-cont/ogr, inifile: - - plugins: cov-2.5.1 - - collected 76 items / 72 deselected - - - tests/integration/test_github.py s [ 25%] - - tests/integration/test_pagure.py .. [ 75%] - - tests/unit/test_pagure.py . [100%] - - - ==== 3 passed, 1 skipped, 72 deselected in 8.83 seconds === - - ```' - closed_at: '2019-04-15T14:09:04Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/57/comments - created_at: '2019-04-15T10:47:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/57/events - html_url: https://github.com/packit/ogr/pull/57 - id: 433214625 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/57/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjcwNDYzNzQ2 - number: 57 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/57.diff - html_url: https://github.com/packit/ogr/pull/57 - patch_url: https://github.com/packit/ogr/pull/57.patch - url: https://api.github.com/repos/packit/ogr/pulls/57 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'pagure/get_urls: fill in {username}' - updated_at: '2019-04-15T14:09:10Z' - url: https://api.github.com/repos/packit/ogr/issues/57 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-04-09T07:38:57Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/48/comments - created_at: '2019-03-26T14:15:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/48/events - html_url: https://github.com/packit/ogr/pull/48 - id: 425444570 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/48/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0NTM4MDgx - number: 48 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/48.diff - html_url: https://github.com/packit/ogr/pull/48 - patch_url: https://github.com/packit/ogr/pull/48.patch - url: https://api.github.com/repos/packit/ogr/pulls/48 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Ogr Read only mode support with simple test - updated_at: '2019-04-09T07:58:35Z' - url: https://api.github.com/repos/packit/ogr/issues/48 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + assignee: + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-04-01T12:20:57Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/40/comments - created_at: '2019-03-20T14:58:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/40/events - html_url: https://github.com/packit/ogr/pull/40 - id: 423299795 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/40/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyOTAyNzA3 - number: 40 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/40.diff - html_url: https://github.com/packit/ogr/pull/40 - patch_url: https://github.com/packit/ogr/pull/40.patch - url: https://api.github.com/repos/packit/ogr/pulls/40 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'WIP: Simulation' - updated_at: '2019-04-01T12:20:57Z' - url: https://api.github.com/repos/packit/ogr/issues/40 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + url: https://api.github.com/users/mfocko + assignees: + - 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/mfocko author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* [packit] sync from downstream\ - \ branch 'master'\n* tests,is_forked: comment why and test for return\ - \ type\n* Update ogr/services/github.py\n* forges may allow forks of\ - \ forks\n* is_forked to return bool again\n* gh: use HTML URL instead\ - \ of API URL\n* pagure/fork_create to return PagureProject\n* Jirka\ - \ can't live w/o pre-commit\n* _release_from_github_object: nicer docstring\n\ - * implement forking interface for github\n* upgrade fork API\n* [tox.ini]\ - \ code coverage\n* [Jenkinsfile] parallel tasks vol. 2\n* [Jenkinsfile]\ - \ Run tests & linters/checkers in parallel\n* [Jenkinsfile] run pre-commit\n\ - * utilize kwargs.setdefault\n* Jirka <3 pre-commit\n* add parent prop\ - \ into api\n* Apply suggestions from code review\n* CONTRIBUTING.md\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.2.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-03-28T09:20:22Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/51/comments - created_at: '2019-03-27T09:03:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/51/events - html_url: https://github.com/packit/ogr/pull/51 - id: 425837436 + body: "Add possibility to filter PR/issue comments by their author.\r\n\ + \r\n- [ ] Extend the methods of `GitProject` in `ogr/abstract.py`.\r\ + \n- [ ] Extend the `BaseGitProject` in `ogr/services/base.py` if needed.\r\ + \n- [ ] Implement the support both for PRs and issues. (Share as much\ + \ code as possible -- implementation and pr/issue)\r\n - [ ] github\r\ + \n - [ ] gitlab\r\n - [ ] pagure" + closed_at: '2019-10-15T10:49:50Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/240/comments + created_at: '2019-10-09T15:23:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/240/events + html_url: https://github.com/packit/ogr/issues/240 + id: 504724114 labels: - - color: ededed + - color: '000000' default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/51/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/240/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0ODMyODQw - number: 51 + node_id: MDU6SXNzdWU1MDQ3MjQxMTQ= + number: 240 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/51.diff - html_url: https://github.com/packit/ogr/pull/51 - patch_url: https://github.com/packit/ogr/pull/51.patch - url: https://api.github.com/repos/packit/ogr/pulls/51 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.2.0 release - updated_at: '2019-03-28T09:22:01Z' - url: https://api.github.com/repos/packit/ogr/issues/51 + title: Filter comments by author + updated_at: '2019-10-15T11:03:47Z' + url: https://api.github.com/repos/packit/ogr/issues/240 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-03-27T09:03:50Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/50/comments - created_at: '2019-03-27T08:58:45Z' - events_url: https://api.github.com/repos/packit/ogr/issues/50/events - html_url: https://github.com/packit/ogr/issues/50 - id: 425835263 + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: COLLABORATOR + body: "Based on [Github API doc](https://developer.github.com/v3/pulls/#labels-assignees-and-milestones):\r\ + \n>Every pull request is an issue, but not every issue is a pull request.\r\ + \n\r\nTherefore, in the case of Github, functions as `get_issue_list`,\ + \ `get_issue_info` etc. are working also with Pull Requests and behavior\ + \ isn't tested.\r\n\r\nWe should get rid of Pull Requests in functions\ + \ working with Issues. Pagure doesn't have this problem. \r\n\r\n--------------\r\ + \n@lachmanfrantisek added:\r\n\r\nTo be able to be compatible with other\ + \ git forges, let's differentiate between issues and pull-requests.\ + \ (And do not allow working with GitHub issues, that are actually pull-requests.\ + \ Issues and pull-requests are distinct sets.)\r\n\r\nAC:\r\n\r\n- [\ + \ ] Go through the issue related code in `GithubProject` and check if\ + \ it does not return any PullRequest.\r\n- [ ] Create test cases for\ + \ that.\r\n" + closed_at: '2019-09-26T09:12:11Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/107/comments + created_at: '2019-07-10T11:56:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/107/events + html_url: https://github.com/packit/ogr/issues/107 + id: 466266403 labels: - - color: ededed + - color: '000000' default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: b60205 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/50/labels{/name} + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/107/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjU4MzUyNjM= - number: 50 + node_id: MDU6SXNzdWU0NjYyNjY0MDM= + number: 107 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.2.0 release - updated_at: '2019-03-27T09:03:50Z' - url: https://api.github.com/repos/packit/ogr/issues/50 + title: Remove PullRequests from list of Github Issues. + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/107 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/marusinm - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '* implement forking interface for github - - * upgrade fork API - - - Fixes #31' - closed_at: '2019-03-26T16:18:24Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/44/comments - created_at: '2019-03-25T14:39:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/44/events - html_url: https://github.com/packit/ogr/pull/44 - id: 424938659 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/44/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0MTQ4NTky - number: 44 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/44.diff - html_url: https://github.com/packit/ogr/pull/44 - patch_url: https://github.com/packit/ogr/pull/44.patch - url: https://api.github.com/repos/packit/ogr/pulls/44 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: m0ar forking - updated_at: '2019-03-27T08:37:30Z' - url: https://api.github.com/repos/packit/ogr/issues/44 - user: - avatar_url: https://avatars0.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} + assignee: + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/mfocko + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: MEMBER - body: 'Downstream commit: 48f9c4254f4eb328740129f902c9836105cdc86c - - ' - closed_at: '2019-03-26T16:38:43Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/46/comments - created_at: '2019-03-25T22:24:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/46/events - html_url: https://github.com/packit/ogr/pull/46 - id: 425142588 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/46/labels{/name} + body: "In abstract class `GitProject`, we have the following method:\r\ + \n\r\n```python\r\n def get_issue_comments(\r\n self, issue_id,\ + \ filter_regex: str = None, reverse: bool = False\r\n ) -> List[\"\ + IssueComment\"]:\r\n \"\"\"\r\n Get list of Issue comments.\r\ + \n\r\n :param issue_id: int\r\n :param filter_regex: filter\ + \ the comments' content with re.search\r\n :param reverse: reverse\ + \ order of comments\r\n :return: [IssueComment]\r\n \"\ + \"\"\r\n raise NotImplementedError()\r\n```\r\n\r\nThis issue\ + \ is not implemented in `GithubProject`, but the real implementation\ + \ should be in the `_get_all_issue_comments`.\r\n\r\n```python\r\n \ + \ def _get_all_issue_comments(self, issue_id: int) -> List[IssueComment]:\r\ + \n issue = self.github_repo.get_pull(number=issue_id)\r\n \ + \ return [\r\n self._issuecomment_from_github_object(raw_comment)\r\ + \n for raw_comment in issue.get_issue_comments()\r\n \ + \ ]\r\n```\r\n\r\nAC:\r\n- [ ] Github/Pagure\r\n - [ ] implement\ + \ the `get_issue_comments` with the code `_get_all_issue_comments` (There\ + \ are some missing parameters.)\r\n - [ ] remove the `_get_all_issue_comments`\ + \ and change its usage to `get_issue_comments`\r\n - [ ] make sure\ + \ it works as expected\r\n- [ ] Implement the `get_issue_comments` in\ + \ `GitlabProject`\r\n- [ ] create test(s) for that if they are not already\ + \ there" + closed_at: '2019-10-03T14:35:15Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/205/comments + created_at: '2019-09-18T09:19:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/205/events + html_url: https://github.com/packit/ogr/issues/205 + id: 495098643 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/205/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0MzA5NDgy - number: 46 + node_id: MDU6SXNzdWU0OTUwOTg2NDM= + number: 205 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/46.diff - html_url: https://github.com/packit/ogr/pull/46 - patch_url: https://github.com/packit/ogr/pull/46.patch - url: https://api.github.com/repos/packit/ogr/pulls/46 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update from downstream branch 'master' - updated_at: '2019-03-27T08:36:53Z' - url: https://api.github.com/repos/packit/ogr/issues/46 + title: Fix/implement get_issue_comments + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/205 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.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} + - 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko author_association: MEMBER - body: "```\r\n if req.status_code != 200:\r\n LOG.error(output)\r\ - \n if 'error_code' in output:\r\n> raise APIError(output['error'])\r\ - \nE libpagure.exceptions.APIError: Repo \"forks/ttomecek/sen\"\ - \ already exists \r\n```\r\n\r\n```\r\n/home/tt/.local/lib/python3.7/site-packages/ogr/services/pagure.py:151:\ - \ in fork_create\r\n self._pagure.create_fork()\r\n/home/tt/.local/lib/python3.7/site-packages/ogr/services/our_pagure.py:254:\ - \ in create_fork \ - \ \r\n data={\"repo\": self.repo_name,\ - \ \"namespace\": self.namespace, \"wait\": True},\r\n```\r\n\r\nWDYT?" - closed_at: '2019-03-26T16:18:24Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/31/comments - created_at: '2019-03-07T09:18:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/31/events - html_url: https://github.com/packit/ogr/issues/31 - id: 418203993 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/31/labels{/name} + body: "```python\r\n def project_create(self, repo: str, namespace:\ + \ str = None) -> \"PagureProject\":\r\n pass\r\n```\r\n\r\nAPI\ + \ documentation:\r\nhttps://pagure.io/api/0/#projects\r\n\r\nAC:\r\n\ + \r\n- [ ] implement the method in `PagureService`\r\n- [ ] create at\ + \ least two tests for that (with and without specifying `namespace`)" + closed_at: '2019-10-15T07:33:19Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/204/comments + created_at: '2019-09-18T09:09:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/204/events + html_url: https://github.com/packit/ogr/issues/204 + id: 495092331 + labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/204/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTgyMDM5OTM= - number: 31 + node_id: MDU6SXNzdWU0OTUwOTIzMzE= + number: 204 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: create_fork should not fail if the fork already exists - updated_at: '2019-03-26T16:18:24Z' - url: https://api.github.com/repos/packit/ogr/issues/31 + title: 'Implement Pagure method for create_project ' + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/204 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: MEMBER - body: '' - closed_at: '2019-03-26T08:51:03Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/47/comments - created_at: '2019-03-26T06:53:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/47/events - html_url: https://github.com/packit/ogr/pull/47 - id: 425253987 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/47/labels{/name} + body: "Split service implementations into separate directories, module\ + \ for each class\r\n\r\n- [x] Directory for each service\r\n- [x] GitHub\r\ + \n - [x] split implementation into multiple modules\r\n - [x] add\ + \ `__init__.py` to make imports compatible\r\n - [x] update tests,\ + \ since they store \"full path\" of caller\r\n- [x] GitLab\r\n - [x]\ + \ split implementation into multiple modules\r\n - [x] add `__init__.py`\ + \ to make imports compatible\r\n - [x] update tests, since they store\ + \ \"full path\" of caller\r\n- [x] Pagure\r\n - [x] split implementation\ + \ into multiple modules\r\n - [x] add `__init__.py` to make imports\ + \ compatible\r\n - [x] update tests, since they store \"full path\"\ + \ of caller\r\n\r\nRelated to #86" + closed_at: '2019-10-11T06:36:16Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/232/comments + created_at: '2019-10-05T09:52:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/232/events + html_url: https://github.com/packit/ogr/issues/232 + id: 502942365 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/232/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0Mzk0MTk2 - number: 47 + node_id: MDU6SXNzdWU1MDI5NDIzNjU= + number: 232 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/47.diff - html_url: https://github.com/packit/ogr/pull/47 - patch_url: https://github.com/packit/ogr/pull/47.patch - url: https://api.github.com/repos/packit/ogr/pulls/47 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[tox.ini] code coverage' - updated_at: '2019-03-26T08:51:06Z' - url: https://api.github.com/repos/packit/ogr/issues/47 + title: Prepare file structure for object-specific methods (#86) + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/232 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: MEMBER - body: '' - closed_at: '2019-03-26T06:42:32Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/45/comments - created_at: '2019-03-25T17:06:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/45/events - html_url: https://github.com/packit/ogr/pull/45 - id: 425016622 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/45/labels{/name} + body: "1. Property `full_repo_name` is implemented both in `BaseGitProject`\ + \ and `GitProject`\r\n1. `full_repo_name` doesn't handle non-existing\ + \ namespace (in case of Pagure projects)" + closed_at: '2019-09-25T05:20:03Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/218/comments + created_at: '2019-09-24T09:15:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/218/events + html_url: https://github.com/packit/ogr/issues/218 + id: 497561711 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/218/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjY0MjEwMTc2 - number: 45 + node_id: MDU6SXNzdWU0OTc1NjE3MTE= + number: 218 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/45.diff - html_url: https://github.com/packit/ogr/pull/45 - patch_url: https://github.com/packit/ogr/pull/45.patch - url: https://api.github.com/repos/packit/ogr/pulls/45 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[Jenkinsfile] run pre-commit' - updated_at: '2019-03-26T06:42:35Z' - url: https://api.github.com/repos/packit/ogr/issues/45 + title: GitProject.full_repo_name() and Pagure implementation + updated_at: '2019-10-15T11:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/218 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: and implement it for github and pagure - closed_at: '2019-03-25T13:52:31Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/43/comments - created_at: '2019-03-23T20:58:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/43/events - html_url: https://github.com/packit/ogr/pull/43 - id: 424544327 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/43/labels{/name} + body: '- Add reverse-dependence-test of packit.' + closed_at: '2019-10-10T14:18:42Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/241/comments + created_at: '2019-10-10T07:36:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/241/events + html_url: https://github.com/packit/ogr/pull/241 + id: 505092361 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/241/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYzODYxMDc4 - number: 43 + node_id: MDExOlB1bGxSZXF1ZXN0MzI2NTkyODk0 + number: 241 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/43.diff - html_url: https://github.com/packit/ogr/pull/43 - patch_url: https://github.com/packit/ogr/pull/43.patch - url: https://api.github.com/repos/packit/ogr/pulls/43 + diff_url: https://github.com/packit/ogr/pull/241.diff + html_url: https://github.com/packit/ogr/pull/241 + patch_url: https://github.com/packit/ogr/pull/241.patch + url: https://api.github.com/repos/packit/ogr/pulls/241 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add parent prop into api - updated_at: '2019-03-25T13:52:57Z' - url: https://api.github.com/repos/packit/ogr/issues/43 + title: Reverse dependency testing of packit + updated_at: '2019-10-10T15:14:48Z' + url: https://api.github.com/repos/packit/ogr/issues/241 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2019-03-21T15:21:49Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/41/comments - created_at: '2019-03-21T14:47:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/41/events - html_url: https://github.com/packit/ogr/pull/41 - id: 423768837 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/41/labels{/name} + closed_at: '2019-10-09T09:50:00Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/239/comments + created_at: '2019-10-09T09:26:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/239/events + html_url: https://github.com/packit/ogr/pull/239 + id: 504525592 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/239/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYzMjY2NDE3 - number: 41 + node_id: MDExOlB1bGxSZXF1ZXN0MzI2MTU0MzU4 + number: 239 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/41.diff - html_url: https://github.com/packit/ogr/pull/41 - patch_url: https://github.com/packit/ogr/pull/41.patch - url: https://api.github.com/repos/packit/ogr/pulls/41 + diff_url: https://github.com/packit/ogr/pull/239.diff + html_url: https://github.com/packit/ogr/pull/239 + patch_url: https://github.com/packit/ogr/pull/239.patch + url: https://api.github.com/repos/packit/ogr/pulls/239 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: bump spec to 0.1.0 - updated_at: '2019-03-23T20:14:13Z' - url: https://api.github.com/repos/packit/ogr/issues/41 + title: prepare for rev dependency testing, set project dir in case it + not come from zuul + updated_at: '2019-10-09T09:50:00Z' + url: https://api.github.com/repos/packit/ogr/issues/239 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2019-03-22T14:08:51Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/42/comments - created_at: '2019-03-21T16:38:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/42/events - html_url: https://github.com/packit/ogr/pull/42 - id: 423829259 + closed_at: '2019-10-09T08:41:00Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/238/comments + created_at: '2019-10-09T07:06:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/238/events + html_url: https://github.com/packit/ogr/pull/238 + id: 504458794 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/42/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/238/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYzMzE0NzEw - number: 42 + node_id: MDExOlB1bGxSZXF1ZXN0MzI2MTAxNzE3 + number: 238 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/42.diff - html_url: https://github.com/packit/ogr/pull/42 - patch_url: https://github.com/packit/ogr/pull/42.patch - url: https://api.github.com/repos/packit/ogr/pulls/42 + diff_url: https://github.com/packit/ogr/pull/238.diff + html_url: https://github.com/packit/ogr/pull/238 + patch_url: https://github.com/packit/ogr/pull/238.patch + url: https://api.github.com/repos/packit/ogr/pulls/238 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: CONTRIBUTING.md - updated_at: '2019-03-22T14:08:54Z' - url: https://api.github.com/repos/packit/ogr/issues/42 + title: remove all stuff what were moved to requre project + updated_at: '2019-10-09T08:41:00Z' + url: https://api.github.com/repos/packit/ogr/issues/238 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/jpopelka - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=15: - - metadata: - latency: 0.5015931129455566 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: With these changes, `packit srpm` should *just work*. - closed_at: '2019-03-18T14:00:44Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/35/comments - created_at: '2019-03-18T13:17:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/35/events - html_url: https://github.com/packit/ogr/pull/35 - id: 422212338 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/35/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-10-07T14:04:40Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/235/comments + created_at: '2019-10-07T11:19:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/235/events + html_url: https://github.com/packit/ogr/pull/235 + id: 503387838 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/235/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyMDUxMjgx - number: 35 + node_id: MDExOlB1bGxSZXF1ZXN0MzI1MjUwMzkx + number: 235 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/35.diff - html_url: https://github.com/packit/ogr/pull/35 - patch_url: https://github.com/packit/ogr/pull/35.patch - url: https://api.github.com/repos/packit/ogr/pulls/35 + diff_url: https://github.com/packit/ogr/pull/235.diff + html_url: https://github.com/packit/ogr/pull/235 + patch_url: https://github.com/packit/ogr/pull/235.patch + url: https://api.github.com/repos/packit/ogr/pulls/235 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: update packit.yaml to reflect packit==0.2.0 - updated_at: '2019-03-18T18:34:17Z' - url: https://api.github.com/repos/packit/ogr/issues/35 + title: Add Developer Certificate of Origin + updated_at: '2019-10-07T14:04:41Z' + url: https://api.github.com/repos/packit/ogr/issues/235 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n\n### Other\n\n* Utilize\ - \ gitchangelog feature of r-bot. [Tomas Tomecek]\n\n* Merge pull request\ - \ #35 from TomasTomecek/update-packit-yaml. [Tomas Tomecek]\n\n update\ - \ packit.yaml to reflect packit==0.2.0\n\n* Update packit.yaml to reflect\ - \ packit==0.2.0. [Tomas Tomecek]\n\n* Merge pull request #34 from jpopelka/no-dimensions.\ - \ [Jiri Popelka]\n\n pre-commit config & black/Flake8/mypy fixes\n\n\ - * Black & Flake8 & mypy fixes. [Jiri Popelka]\n\n* .pre-commit-config.yaml.\ - \ [Jiri Popelka]\n\n* Merge pull request #32 from packit-service/releases.\ - \ [Jiri Popelka]\n\n Releases\n\n* Add test and docs for GitHub releases.\ - \ [Radoslav Pitonak]\n\n* Add releases for github. [Frantisek Lachman]\n\ - \n* Merge pull request #27 from jpopelka/ci. [Jiri Popelka]\n\n Tox\ - \ & Jenkinsfile\n\n* Jenkinsfile. [Jiri Popelka]\n\n* Tox. [Jiri Popelka]\n\ - \n* [Makefile] no sudo. [Jiri Popelka]\n\n* Enum -> IntEnum. [Jiri Popelka]\n\ - \n* Merge pull request #30 from jscotka/test_integration_skip. [Jiri\ - \ Popelka]\n\n [integration tests] skip whole module if not all env.\ - \ variables set\n\n* Move skip_tests() to conftest.py. [Jiri Popelka]\n\ - \n* Create better function to skip tests. [Jan Scotka]\n\n* Add skip\ - \ decorators to skip whole module in case of integration tests in case\ - \ env vars are not typed. [Jan Scotka]\n\n* Merge pull request #28 from\ - \ TomasTomecek/add-packit. [Tomas Tomecek]\n\n add packit config\n\n\ - * Add packit config. [Tomas Tomecek]\n\n\n\n\nYou can change it by editing\ - \ `CHANGELOG.md` in the root of this repository and pushing to `0.1.0-release`\ - \ branch before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2019-03-18T17:58:28Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/39/comments - created_at: '2019-03-18T17:45:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/39/events - html_url: https://github.com/packit/ogr/pull/39 - id: 422351830 + body: Gitlab tests import `PRStatus` and `IssueStatus` from `ogr.services.gitlab` + instead of `ogr.abstract` + closed_at: '2019-10-07T11:02:37Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/233/comments + created_at: '2019-10-05T15:21:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/233/events + html_url: https://github.com/packit/ogr/issues/233 + id: 502976447 labels: - - color: ededed + - color: d93f0b default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/39/labels{/name} + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/233/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTYxMjI4 - number: 39 + node_id: MDU6SXNzdWU1MDI5NzY0NDc= + number: 233 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Gitlab tests imports + updated_at: '2019-10-07T11:02:38Z' + url: https://api.github.com/repos/packit/ogr/issues/233 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "replace storing requests objects by ``requre`` project.\r\n\r\n\ + - [x] regenerate test data for ogr\r\n- [x] remove old functionality\ + \ after packit will be fixed as well, not now in this PR\r\n\r\n" + closed_at: '2019-10-07T10:42:46Z' + comments: 17 + comments_url: https://api.github.com/repos/packit/ogr/issues/201/comments + created_at: '2019-09-17T09:04:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/201/events + html_url: https://github.com/packit/ogr/pull/201 + id: 494495662 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/201/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE4MjM0OTky + number: 201 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/39.diff - html_url: https://github.com/packit/ogr/pull/39 - patch_url: https://github.com/packit/ogr/pull/39.patch - url: https://api.github.com/repos/packit/ogr/pulls/39 + diff_url: https://github.com/packit/ogr/pull/201.diff + html_url: https://github.com/packit/ogr/pull/201 + patch_url: https://github.com/packit/ogr/pull/201.patch + url: https://api.github.com/repos/packit/ogr/pulls/201 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-18T18:00:48Z' - url: https://api.github.com/repos/packit/ogr/issues/39 + title: use requre for storing data for tests + updated_at: '2019-10-07T10:42:47Z' + url: https://api.github.com/repos/packit/ogr/issues/201 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-03-18T17:45:29Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/36/comments - created_at: '2019-03-18T16:53:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/36/events - html_url: https://github.com/packit/ogr/issues/36 - id: 422327353 + body: '- use requre for storing data for tests.' + closed_at: '2019-10-04T08:09:13Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/231/comments + created_at: '2019-10-03T08:51:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/231/events + html_url: https://github.com/packit/ogr/pull/231 + id: 501935145 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/36/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/231/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjIzMjczNTM= - number: 36 + node_id: MDExOlB1bGxSZXF1ZXN0MzI0MTEwMzY5 + number: 231 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/231.diff + html_url: https://github.com/packit/ogr/pull/231 + patch_url: https://github.com/packit/ogr/pull/231.patch + url: https://api.github.com/repos/packit/ogr/pulls/231 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-03-18T17:45:29Z' - url: https://api.github.com/repos/packit/ogr/issues/36 + title: 'Use requre (rebased #201)' + updated_at: '2019-10-04T08:24:34Z' + url: https://api.github.com/repos/packit/ogr/issues/231 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\nNo changelog provided\n\n\ - You can change it by editing `CHANGELOG.md` in the root of this repository\ - \ and pushing to `0.1.0-release` branch before merging this PR.\nI didn't\ - \ find any files where `__version__` is set." - closed_at: '2019-03-18T17:44:20Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/38/comments - created_at: '2019-03-18T17:28:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/38/events - html_url: https://github.com/packit/ogr/pull/38 - id: 422343992 + body: "This property violates our rule that only methods with `get` can\ + \ touch the real servers.\r\n\r\nWe can:\r\n\r\n- Revert the change\ + \ and stay with guessing.\r\n- Change the property to `get_full_repo_name`\ + \ (needs deprecation to original property)\r\n- Change our mind and\ + \ do not be strict about that. (And use properties instead of methods\ + \ for objects.)\r\n - This will bring nicer user-experience, but\ + \ maybe some confusion.\r\n - Maybe, we can leave only `__init__`\ + \ offline?\r\n\r\n" + closed_at: '2019-10-02T09:17:18Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/220/comments + created_at: '2019-09-25T06:13:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/220/events + html_url: https://github.com/packit/ogr/issues/220 + id: 498070461 labels: - - color: ededed + - color: ff9990 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + - color: 8be567 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/38/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/220/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTU1MTM0 - number: 38 + node_id: MDU6SXNzdWU0OTgwNzA0NjE= + number: 220 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/38.diff - html_url: https://github.com/packit/ogr/pull/38 - patch_url: https://github.com/packit/ogr/pull/38.patch - url: https://api.github.com/repos/packit/ogr/pulls/38 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-18T17:44:28Z' - url: https://api.github.com/repos/packit/ogr/issues/38 + title: PagureProject.full_repo_name touches service + updated_at: '2019-10-02T09:17:18Z' + url: https://api.github.com/repos/packit/ogr/issues/220 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* update packit.yaml to\ - \ reflect packit==0.2.0\n* black & Flake8 & mypy fixes\n* .pre-commit-config.yaml\n\ - * add test and docs for GitHub releases\n* Add releases for github\n\ - * Jenkinsfile\n* Tox\n* [Makefile] no sudo\n* Enum -> IntEnum\n* Move\ - \ skip_tests() to conftest.py\n* create better function to skip tests.\n\ - * add skip decorators to skip whole module in case of integration tests\ - \ in case env vars are not typed\n* add packit config\n\n\nYou can change\ - \ it by editing `CHANGELOG.md` in the root of this repository and pushing\ - \ to `0.1.0-release` branch before merging this PR.\nI didn't find any\ - \ files where `__version__` is set." - closed_at: '2019-03-18T16:58:25Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/37/comments - created_at: '2019-03-18T16:54:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/37/events - html_url: https://github.com/packit/ogr/pull/37 - id: 422328099 + \ is the changelog I created:\n### Changes\n* Replace numbers by access\ + \ constants\n* suggested changes added\n* methods for permissions\n\ + * (#107) Rename test\n* (#107) Fix type and formatting\n* (#107) Add\ + \ tests for querying PRs in issue-related functions (GitHub)\n* (#107)\ + \ Raise exception if querying PR using issue-related function\n* (#107)\ + \ Fix typo in Github._get_all_issue_comments\n* (#107) Update test_data\ + \ for Github's issues\n* (#107) Filter out pull requests from issues\ + \ (GitHub)\n* Do not save links beteen values in response files\n* specified\ + \ return type\n* exceptions added\n* methods for pr and issue labels\n\ + * (#218) Remove checking if fork exists in test for full_repo_name\n\ + * (#218) Add tests for full_repo_name with namespace and fork\n* (#218)\ + \ Add tests for full_repo_name property\n* (#218) Override full_repo_name\ + \ in PagureProject\n* (#218) Remove full_repo_name implementation from\ + \ GitProject\n* Fix flake8 remarks\n* (#213) Modify PagureProject.get_web_url()\ + \ to use project info\n* (#213) Fix wrong property name in Gitlab.get_web_url()\ + \ test and add test_data\n* (#213) Fix Pagure's get_web_url()\n* (#213)\ + \ Update GitLab.get_web_url() to use repo object\n* (#213) Update GitHub.get_web_url()\ + \ to use repo object\n* Add tests for get_web_url\n* Add get_web_url\ + \ to GitHub, GitLab and Pagure\n* Add get_web_url to GitProject\n* Add\ + \ tests for set_commit_status method\n* Add trim parameter to set_commit_status\ + \ method\n* test changed\n* test added\n* response files added\n* methods\ + \ for commit status and commit comment\n* refactor\n* github method\ + \ for creating projects added\n* Document the tests that are problematic\ + \ when regenerating\n* Be consistent in instantiating services in tests\n\ + * Update GitHub response files and fix the tests\n* Fix get_email in\ + \ GitHub implementation\n* Update Pagure response files and fix the\ + \ tests\n* Use returned GitLab repo instance in GitlabService.project_create\n\ + * Remove Gitlab also from example\n* delete GitLab from README.md\n\ + * Quickstart example\n* Generate response-file for test_create_fork\ + \ with python_gitlab-1.11\n* WIP: forking methods\n* better tests\n\ + * pr close, merge methods\n* Implement service.project_create for GitLab\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.8.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-10-01T19:57:46Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/223/comments + created_at: '2019-09-26T11:11:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/223/events + html_url: https://github.com/packit/ogr/pull/223 + id: 498820056 labels: - color: ededed default: false @@ -42664,6 +44631,13 @@ requests.sessions: name: bot node_id: MDU6TGFiZWwxMjM3NzA0MjUw url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit - color: ededed default: false description: null @@ -42671,121 +44645,147 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/37/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/223/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTQyNjc3 - number: 37 + node_id: MDExOlB1bGxSZXF1ZXN0MzIxNjY2NjY0 + number: 223 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/37.diff - html_url: https://github.com/packit/ogr/pull/37 - patch_url: https://github.com/packit/ogr/pull/37.patch - url: https://api.github.com/repos/packit/ogr/pulls/37 + diff_url: https://github.com/packit/ogr/pull/223.diff + html_url: https://github.com/packit/ogr/pull/223 + patch_url: https://github.com/packit/ogr/pull/223.patch + url: https://api.github.com/repos/packit/ogr/pulls/223 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-18T17:26:48Z' - url: https://api.github.com/repos/packit/ogr/issues/37 + title: 0.8.0 release + updated_at: '2019-10-01T19:59:12Z' + url: https://api.github.com/repos/packit/ogr/issues/223 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-03-15T13:51:22Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/34/comments - created_at: '2019-03-15T11:27:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/34/events - html_url: https://github.com/packit/ogr/pull/34 - id: 421473951 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/34/labels{/name} + body: 'In `GithubProject` class there is identical implementation for + `who_can_close_issue` and `who_can_merge_pr`, is it intentional? Or + can we factor it out since it''s identical? ' + closed_at: '2019-09-30T11:40:39Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/224/comments + created_at: '2019-09-26T11:56:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/224/events + html_url: https://github.com/packit/ogr/issues/224 + id: 498839261 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/224/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYxNTE1NjA5 - number: 34 + node_id: MDU6SXNzdWU0OTg4MzkyNjE= + number: 224 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/34.diff - html_url: https://github.com/packit/ogr/pull/34 - patch_url: https://github.com/packit/ogr/pull/34.patch - url: https://api.github.com/repos/packit/ogr/pulls/34 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: pre-commit config & black/Flake8/mypy fixes - updated_at: '2019-03-15T13:51:25Z' - url: https://api.github.com/repos/packit/ogr/issues/34 + title: Identical implementation for collaborators (Github Project) + updated_at: '2019-09-30T11:40:39Z' + url: https://api.github.com/repos/packit/ogr/issues/224 user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Added object representation for GitHub releases.\r\n- What about\ - \ pagure? Is there anything that can be used?" - closed_at: '2019-03-15T09:41:59Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/32/comments - created_at: '2019-03-12T13:35:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/32/events - html_url: https://github.com/packit/ogr/pull/32 - id: 419989710 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/32/labels{/name} + body: The release time is now! + closed_at: '2019-09-26T11:11:51Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/222/comments + created_at: '2019-09-26T11:06:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/222/events + html_url: https://github.com/packit/ogr/issues/222 + id: 498817742 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/222/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjYwMzY1NTk1 - number: 32 + node_id: MDU6SXNzdWU0OTg4MTc3NDI= + number: 222 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/32.diff - html_url: https://github.com/packit/ogr/pull/32 - patch_url: https://github.com/packit/ogr/pull/32.patch - url: https://api.github.com/repos/packit/ogr/pulls/32 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Releases - updated_at: '2019-03-15T09:42:04Z' - url: https://api.github.com/repos/packit/ogr/issues/32 + title: new minor release + updated_at: '2019-09-26T11:11:51Z' + url: https://api.github.com/repos/packit/ogr/issues/222 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -42804,382 +44804,389 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-03-05T17:01:01Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/27/comments - created_at: '2019-03-01T16:03:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/27/events - html_url: https://github.com/packit/ogr/pull/27 - id: 416169456 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/27/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3NDk2Mjcz - number: 27 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/27.diff - html_url: https://github.com/packit/ogr/pull/27 - patch_url: https://github.com/packit/ogr/pull/27.patch - url: https://api.github.com/repos/packit/ogr/pulls/27 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Tox & Jenkinsfile - updated_at: '2019-03-05T17:01:04Z' - url: https://api.github.com/repos/packit/ogr/issues/27 - user: - avatar_url: https://avatars0.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} + assignee: + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-03-05T15:25:00Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/30/comments - created_at: '2019-03-04T14:02:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/30/events - html_url: https://github.com/packit/ogr/pull/30 - id: 416815413 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/30/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3OTUzMjI1 - number: 30 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/30.diff - html_url: https://github.com/packit/ogr/pull/30 - patch_url: https://github.com/packit/ogr/pull/30.patch - url: https://api.github.com/repos/packit/ogr/pulls/30 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[integration tests] skip whole module if not all env. variables - set' - updated_at: '2019-03-05T15:25:01Z' - url: https://api.github.com/repos/packit/ogr/issues/30 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + url: https://api.github.com/users/lbarcziova + assignees: + - 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/lbarcziova author_association: MEMBER - body: '' - closed_at: '2019-03-01T17:19:12Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/28/comments - created_at: '2019-03-01T16:44:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/28/events - html_url: https://github.com/packit/ogr/pull/28 - id: 416187270 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/28/labels{/name} + body: "Since we merged [the PR with the basic GitLab support](https://github.com/packit-service/ogr/pull/150)\ + \ is there still something missing?\r\n\r\n- [x] service mapping (#156\ + \ )\r\n- [x] fix the mix of new and old API (#167 )\r\n- [x] missing\ + \ methods:\r\n - [x] forking: https://github.com/packit-service/ogr/issues/168\r\ + \n - [x] owners and permissions: https://github.com/packit-service/ogr/issues/169\r\ + \n - [x] get_sha_from_tag: https://github.com/packit-service/ogr/issues/170\r\ + \n - [x] issue labels: https://github.com/packit-service/ogr/issues/171\r\ + \n - [x] commit comment/status: https://github.com/packit-service/ogr/issues/172\r\ + \n - [x] pr close/merge: https://github.com/packit-service/ogr/issues/173\r\ + \n - [x] PR labels: https://github.com/packit-service/ogr/issues/174\r\ + \n - [x] project info: https://github.com/packit-service/ogr/issues/175\r\ + \n - [x] latest release: https://github.com/packit-service/ogr/issues/176\r\ + \n\r\n" + closed_at: '2019-09-26T10:59:39Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/158/comments + created_at: '2019-08-15T15:29:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/158/events + html_url: https://github.com/packit/ogr/issues/158 + id: 481206920 + labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/158/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3NTEwNDk4 - number: 28 + node_id: MDU6SXNzdWU0ODEyMDY5MjA= + number: 158 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/28.diff - html_url: https://github.com/packit/ogr/pull/28 - patch_url: https://github.com/packit/ogr/pull/28.patch - url: https://api.github.com/repos/packit/ogr/pulls/28 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add packit config - updated_at: '2019-03-01T17:19:16Z' - url: https://api.github.com/repos/packit/ogr/issues/28 + title: Missing features in GitLab implementation + updated_at: '2019-09-26T10:59:40Z' + url: https://api.github.com/repos/packit/ogr/issues/158 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\nNo changelog provided\n\n\ - You can change it by editing `CHANGELOG.md` in the root of this repository\ - \ and pushing to `0.1.0-release` branch before merging this PR.\nI didn't\ - \ find any files where `__version__` is set." - closed_at: '2019-03-01T16:41:07Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/26/comments - created_at: '2019-03-01T15:56:24Z' - events_url: https://api.github.com/repos/packit/ogr/issues/26/events - html_url: https://github.com/packit/ogr/pull/26 - id: 416166108 + author_association: CONTRIBUTOR + body: 'Fixes #169. I used https://docs.gitlab.com/ee/user/permissions.html#project-members-permissions, + but I am not sure about the permission for closing of the project issues, + I couldn''t find more information about that.' + closed_at: '2019-09-26T10:43:42Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/207/comments + created_at: '2019-09-18T13:54:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/207/events + html_url: https://github.com/packit/ogr/pull/207 + id: 495242377 labels: - - color: ededed + - color: d93f0b default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/26/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/207/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3NDkzNTkx - number: 26 + node_id: MDExOlB1bGxSZXF1ZXN0MzE4ODI1OTA4 + number: 207 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/26.diff - html_url: https://github.com/packit/ogr/pull/26 - patch_url: https://github.com/packit/ogr/pull/26.patch - url: https://api.github.com/repos/packit/ogr/pulls/26 + diff_url: https://github.com/packit/ogr/pull/207.diff + html_url: https://github.com/packit/ogr/pull/207 + patch_url: https://github.com/packit/ogr/pull/207.patch + url: https://api.github.com/repos/packit/ogr/pulls/207 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-01T16:49:43Z' - url: https://api.github.com/repos/packit/ogr/issues/26 + title: methods for permissions + updated_at: '2019-09-26T10:43:42Z' + url: https://api.github.com/repos/packit/ogr/issues/207 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: "we need this b/c 0.0.2 doesn't have specfile\r\n\r\nand I want\ - \ to use packit to bring the release to fedora" - closed_at: '2019-03-01T15:56:25Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/25/comments - created_at: '2019-03-01T15:52:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/25/events - html_url: https://github.com/packit/ogr/issues/25 - id: 416164397 + body: "```python\r\n def get_owners(self) -> List[str]:\r\n \ + \ raise NotImplementedError()\r\n\r\n def who_can_close_issue(self)\ + \ -> Set[str]:\r\n raise NotImplementedError()\r\n\r\n def\ + \ who_can_merge_pr(self) -> Set[str]:\r\n raise NotImplementedError()\r\ + \n\r\n def can_close_issue(self, username: str, issue: Issue) ->\ + \ bool:\r\n raise NotImplementedError()\r\n\r\n def can_merge_pr(self,\ + \ username) -> bool:\r\n raise NotImplementedError()\r\n```\r\ + \n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-members\r\ + \n- https://docs.gitlab.com/ce/api/members.html" + closed_at: '2019-09-26T10:43:41Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/169/comments + created_at: '2019-09-06T07:20:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/169/events + html_url: https://github.com/packit/ogr/issues/169 + id: 490171859 labels: - - color: ededed + - color: d93f0b default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/25/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/169/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTYxNjQzOTc= - number: 25 + node_id: MDU6SXNzdWU0OTAxNzE4NTk= + number: 169 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.1.0 release - updated_at: '2019-03-01T16:19:00Z' - url: https://api.github.com/repos/packit/ogr/issues/25 + title: Implement GitLab methods for owners and permissions + updated_at: '2019-09-26T10:43:41Z' + url: https://api.github.com/repos/packit/ogr/issues/169 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* add RPM spec file\n* [release-conf.yaml]\ - \ remove deprecated python_versions\n* Remove dataclasses\n* Use strings\ - \ for type annotations\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.0.3-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2019-02-28T11:45:58Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/24/comments - created_at: '2019-02-28T10:42:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/24/events - html_url: https://github.com/packit/ogr/pull/24 - id: 415557542 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/24/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU3MDE3MDgz - number: 24 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/24.diff - html_url: https://github.com/packit/ogr/pull/24 - patch_url: https://github.com/packit/ogr/pull/24.patch - url: https://api.github.com/repos/packit/ogr/pulls/24 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.0.3 release - updated_at: '2019-02-28T12:07:04Z' - url: https://api.github.com/repos/packit/ogr/issues/24 - user: - avatar_url: https://avatars1.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} + assignee: + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos 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 + 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/usercont-release-bot - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/lbarcziova + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: Release bot, please! - closed_at: '2019-02-28T10:42:18Z' + body: "```python\r\n def get_pr_labels(self, pr_id: int) -> List:\r\ + \n pass\r\n\r\n def add_pr_labels(self, pr_id, labels) ->\ + \ None:\r\n pass\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ + \n- https://docs.gitlab.com/ee/api/merge_requests.html" + closed_at: '2019-09-25T08:50:51Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/23/comments - created_at: '2019-02-28T10:39:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/23/events - html_url: https://github.com/packit/ogr/issues/23 - id: 415556376 + comments_url: https://api.github.com/repos/packit/ogr/issues/174/comments + created_at: '2019-09-06T07:23:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/174/events + html_url: https://github.com/packit/ogr/issues/174 + id: 490172937 labels: - - color: ededed + - color: d93f0b default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/23/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/174/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTU1NTYzNzY= - number: 23 + node_id: MDU6SXNzdWU0OTAxNzI5Mzc= + number: 174 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.0.3 release - updated_at: '2019-02-28T10:42:18Z' - url: https://api.github.com/repos/packit/ogr/issues/23 + title: Implement GitLab methods for PR labels (merge-request labels) + updated_at: '2019-09-25T08:50:51Z' + url: https://api.github.com/repos/packit/ogr/issues/174 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -43200,86 +45207,125 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "# how to test\r\n```\r\ngit checkout 0.0.2\r\npython3 ./setup.py\ - \ sdist\r\nmv ./dist/ogr-0.0.2.tar.gz .\r\nrpmbuild ./*.spec --define\ - \ \"_sourcedir ${PWD}\" --define \"_specdir ${PWD}\" --define \"_builddir\ - \ ${PWD}\" --define \"_srcrpmdir ${PWD}\" --define \"_rpmdir ${PWD}\"\ - \ -bs\r\nfedora-review -n python-ogr -m fedora-29-x86_64\r\n```\r\n\r\ - \nOnce merged, I'll open a Fedora review for ogr. Franta could do it\ - \ so he can get the pkgr perms." - closed_at: '2019-02-27T11:38:20Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/22/comments - created_at: '2019-02-26T17:11:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/22/events - html_url: https://github.com/packit/ogr/pull/22 - id: 414722729 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/22/labels{/name} + author_association: CONTRIBUTOR + body: 'Fixes #171, #174' + closed_at: '2019-09-25T08:34:08Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/198/comments + created_at: '2019-09-12T12:07:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/198/events + html_url: https://github.com/packit/ogr/pull/198 + id: 492763927 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/198/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU2MzcxNDM2 - number: 22 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODczMjYx + number: 198 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/22.diff - html_url: https://github.com/packit/ogr/pull/22 - patch_url: https://github.com/packit/ogr/pull/22.patch - url: https://api.github.com/repos/packit/ogr/pulls/22 + diff_url: https://github.com/packit/ogr/pull/198.diff + html_url: https://github.com/packit/ogr/pull/198 + patch_url: https://github.com/packit/ogr/pull/198.patch + url: https://api.github.com/repos/packit/ogr/pulls/198 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: add RPM spec file - updated_at: '2019-02-27T11:38:24Z' - url: https://api.github.com/repos/packit/ogr/issues/22 + title: methods for pr and issue labels + updated_at: '2019-09-25T08:34:08Z' + url: https://api.github.com/repos/packit/ogr/issues/198 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: "```\r\n138 Bytecompiling .py files below /builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6\ - \ using /usr/bin/python3.6\r\n139 *** Error compiling '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/abstract.py'...\r\ - \n140 File \"/usr/lib/python3.6/abstract.py\", line 1\r\n141 SyntaxError:\ - \ future feature annotations is not defined\r\n142 *** Error compiling\ - \ '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/services/github.py'...\r\ - \n143 File \"/usr/lib/python3.6/github.py\", line 1\r\n144 SyntaxError:\ - \ future feature annotations is not defined\r\n145 *** Error compiling\ - \ '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/services/pagure.py'...\r\ - \n146 File \"/usr/lib/python3.6/pagure.py\", line 1\r\n147 SyntaxError:\ - \ future feature annotations is not defined\r\n```\r\n" - closed_at: '2019-02-27T08:38:17Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/21/comments - created_at: '2019-02-26T17:08:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/21/events - html_url: https://github.com/packit/ogr/issues/21 - id: 414721039 + body: "```python\r\n def get_issue_labels(self, issue_id: int) -> List:\r\ + \n raise NotImplementedError()\r\n\r\n def add_issue_labels(self,\ + \ issue_id, labels) -> None:\r\n raise NotImplementedError()\r\ + \n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ + \n- https://docs.gitlab.com/ce/api/issues.html" + closed_at: '2019-09-25T08:34:08Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/171/comments + created_at: '2019-09-06T07:22:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/171/events + html_url: https://github.com/packit/ogr/issues/171 + id: 490172449 labels: - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -43287,116 +45333,26 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/21/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0MTQ3MjEwMzk= - number: 21 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: ogr doesn't work with python3.6 - updated_at: '2019-02-27T08:38:17Z' - url: https://api.github.com/repos/packit/ogr/issues/21 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-02-26T10:21:46Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/20/comments - created_at: '2019-02-26T08:21:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/20/events - html_url: https://github.com/packit/ogr/pull/20 - id: 414485102 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/20/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU2MTgzNjIz - number: 20 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/20.diff - html_url: https://github.com/packit/ogr/pull/20 - patch_url: https://github.com/packit/ogr/pull/20.patch - url: https://api.github.com/repos/packit/ogr/pulls/20 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[release-conf.yaml] remove deprecated python_versions' - updated_at: '2019-02-26T10:21:48Z' - url: https://api.github.com/repos/packit/ogr/issues/20 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "- Remove future import for annotations => python3.6 compatibility.\r\ - \n\r\nResolves #13 " - closed_at: '2019-02-19T14:31:38Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/18/comments - created_at: '2019-02-19T07:24:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/18/events - html_url: https://github.com/packit/ogr/pull/18 - id: 411781030 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/18/labels{/name} + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/171/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU0MTQyMzQ0 - number: 18 + node_id: MDU6SXNzdWU0OTAxNzI0NDk= + number: 171 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/18.diff - html_url: https://github.com/packit/ogr/pull/18 - patch_url: https://github.com/packit/ogr/pull/18.patch - url: https://api.github.com/repos/packit/ogr/pulls/18 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Use strings for type annotations - updated_at: '2019-02-19T14:35:24Z' - url: https://api.github.com/repos/packit/ogr/issues/18 + title: Implement GitLab methods for issue labels + updated_at: '2019-09-25T08:34:08Z' + url: https://api.github.com/repos/packit/ogr/issues/171 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -43418,169 +45374,92 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "after installing `ogr` via ``pip3 install .``\r\nI wanted to run\ - \ make check ``PYTHONPATH=`pwd` pytest-3 -v ./tests/``\r\n\r\nit leads\ - \ to errors like:\r\n```\r\nE File \"/home/jscotka/git/userspace-containerization/ogr/ogr/abstract.py\"\ - , line 1\r\nE from __future__ import annotations\r\nE \ - \ ^\r\nE SyntaxError: future feature\ - \ annotations is not defined\r\n```\r\n\r\nseems that annotations module\ - \ is not accessible in ``python3-3.6.8-1.fc28.x86_64`` by default\r\n" - closed_at: '2019-02-19T14:31:38Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/13/comments - created_at: '2019-02-15T12:46:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/13/events - html_url: https://github.com/packit/ogr/issues/13 - id: 410754451 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/13/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0MTA3NTQ0NTE= - number: 13 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: missing annotations library for testing - updated_at: '2019-02-19T14:31:38Z' - url: https://api.github.com/repos/packit/ogr/issues/13 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos - site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* 0.0.2 release\n* 0.0.2\ - \ release\n* 0.0.2 release\n* [README] Requirements\n* [make check]\ - \ colors & showlocals\n* Add release-conf.yaml\n* Add new url\n* Fix\ - \ the name meaning\n* Move 'packages' from setup.py to setup.cfg\n*\ - \ Rename confusing pagure parameter\n* Fix some styling\n* Correct get_file_content\n\ - * Correct Pagure tests\n* Add API for file content\n* Add tests for\ - \ github\n* Rework github implementation\n* Fix tests and cyclic imports\n\ - * Remove duplicated test\n* Add annotations\n* Do not use pagure instance\ - \ publically\n* Add change_token for Servise and Project classes\n*\ - \ Add unit tests for comment filter/search functions\n* Extract comment\ - \ filter/search methods\n* Add integration tests for pr-comments and\ - \ skip test_create_fork\n* Improve pr-comments API\n* Add method for\ - \ filtering comments in pr\n* Fix pr_info and pr_comment content\n\n\ - \nYou can change it by editing `CHANGELOG.md` in the root of this repository\ - \ and pushing to `0.0.2-release` branch before merging this PR.\nI didn't\ - \ find any files where `__version__` is set." - closed_at: '2019-02-19T04:56:59Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/16/comments - created_at: '2019-02-18T09:07:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/16/events - html_url: https://github.com/packit/ogr/pull/16 - id: 411369684 + body: "In GitProject we do not have a method for getting web URL of the\ + \ project.\r\n\r\nAC:\r\n\r\n- [ ] Add the method to `abstract.GitProject`.\ + \ (And raise `NotImplementedError`.)\r\n- [ ] Implement the method for\ + \ all forges (GitHub, GitLab, Pagure).\r\n- [ ] Add tests for this method.\r\ + \n\r\nLinks:\r\n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ + \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \n https://docs.gitlab.com/ce/api/projects.html\r\n- https://pagure.io/api/0/#projects\r\ + \n\r\nExamples:\r\n- https://github.com/packit-service/ogr\r\n- https://gitlab.com/packit-service/ogr-tests\r\ + \n- https://pagure.io/ogr-tests/" + closed_at: '2019-09-24T08:53:16Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/213/comments + created_at: '2019-09-19T19:19:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/213/events + html_url: https://github.com/packit/ogr/issues/213 + id: 495981567 labels: - - color: ededed + - color: '000000' default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/16/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUzODMzNjM0 - number: 16 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/16.diff - html_url: https://github.com/packit/ogr/pull/16 - patch_url: https://github.com/packit/ogr/pull/16.patch - url: https://api.github.com/repos/packit/ogr/pulls/16 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.0.2 release - updated_at: '2019-02-19T05:01:47Z' - url: https://api.github.com/repos/packit/ogr/issues/16 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: Thank you in advance! - closed_at: '2019-02-18T09:07:33Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/15/comments - created_at: '2019-02-18T08:29:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/15/events - html_url: https://github.com/packit/ogr/issues/15 - id: 411355216 - labels: - - color: ededed + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/15/labels{/name} + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/213/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTEzNTUyMTY= - number: 15 + node_id: MDU6SXNzdWU0OTU5ODE1Njc= + number: 213 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.0.2 release - updated_at: '2019-02-18T09:07:33Z' - url: https://api.github.com/repos/packit/ogr/issues/15 + title: Implement GitProject.get_url() + updated_at: '2019-09-25T06:07:53Z' + url: https://api.github.com/repos/packit/ogr/issues/213 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -43601,232 +45480,404 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-02-15T16:54:17Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/12/comments - created_at: '2019-02-15T10:33:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/12/events - html_url: https://github.com/packit/ogr/pull/12 - id: 410703936 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/12/labels{/name} + author_association: CONTRIBUTOR + body: "Fixes: #143 \r\n\r\n*edited by @lachmanfrantisek to close this\ + \ after merge*" + closed_at: '2019-09-19T14:18:04Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/210/comments + created_at: '2019-09-19T11:24:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/210/events + html_url: https://github.com/packit/ogr/pull/210 + id: 495738504 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/210/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUzMzgwNjA0 - number: 12 + node_id: MDExOlB1bGxSZXF1ZXN0MzE5MjI3MjM2 + number: 210 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/12.diff - html_url: https://github.com/packit/ogr/pull/12 - patch_url: https://github.com/packit/ogr/pull/12.patch - url: https://api.github.com/repos/packit/ogr/pulls/12 + diff_url: https://github.com/packit/ogr/pull/210.diff + html_url: https://github.com/packit/ogr/pull/210 + patch_url: https://github.com/packit/ogr/pull/210.patch + url: https://api.github.com/repos/packit/ogr/pulls/210 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add release-conf.yaml - updated_at: '2019-02-15T17:12:14Z' - url: https://api.github.com/repos/packit/ogr/issues/12 + title: Add trim parameter to set_commit_status method + updated_at: '2019-09-19T15:46:39Z' + url: https://api.github.com/repos/packit/ogr/issues/210 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-02-15T16:55:04Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/14/comments - created_at: '2019-02-15T13:30:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/14/events - html_url: https://github.com/packit/ogr/pull/14 - id: 410770447 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/14/labels{/name} + author_association: CONTRIBUTOR + body: "```\r\nTraceback (most recent call last): \ + \ \ + \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ + , line 385, in trace_task \ + \ \r\n R = retval = fun(*args,\ + \ **kwargs) \ + \ \ + \ \r\n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ + , line 648, in __protected_call__ \ + \ \r\n return self.run(*args,\ + \ **kwargs) \ + \ \ + \ \r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ + , line 42, in process_message \ + \ \r\n return SteveJobs().process_message(event=event,\ + \ topic=topic) \ + \ \r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 126, in process_message \ + \ \r\n jobs_results = self.process_jobs(event_object)\ + \ \ + \ \r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 92, in process_jobs \ + \ \r\n handlers_results[job.job.value]\ + \ = handler.run() \ + \ \ + \ \r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/github_handlers.py\"\ + , line 330, in run \ + \ \r\n return self.handle_pull_request() \ + \ \ + \ \r\n\ + \ File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/github_handlers.py\"\ + , line 305, in handle_pull_request \ + \ \r\n r.report(\"failure\", msg)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/handler.py\"\ + , line 84, in report\r\n self.commit_sha, state, url, description,\ + \ check_name\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/read_only.py\"\ + , line 68, in readonly_func\r\n return func(self, *args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ + , line 541, in set_commit_status\r\n github_commit.create_status(state,\ + \ target_url, description, context)\r\n File \"/usr/local/lib/python3.7/site-packages/github/Commit.py\"\ + , line 189, in create_status\r\n input=post_parameters\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/github/Requester.py\", line\ + \ 276, in requestJsonAndCheck\r\n return self.__check(*self.requestJson(verb,\ + \ url, parameters, headers, input, self.__customConnection(url)))\r\n\ + \ File \"/usr/local/lib/python3.7/site-packages/github/Requester.py\"\ + , line 287, in __check\r\n raise self.__createException(status, responseHeaders,\ + \ output)\r\ngithub.GithubException.GithubException: 422 {'message':\ + \ 'Validation Failed', 'errors': [{'resource': 'Status', 'code': 'custom',\ + \ 'field': 'description', 'message': 'descript\r\nion is too long (maximum\ + \ is 140 characters)'}], 'documentation_url': 'https://developer.github.com/v3/repos/statuses/#create-a-status'}\r\ + \n```" + closed_at: '2019-09-19T14:18:04Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/143/comments + created_at: '2019-08-08T09:03:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/143/events + html_url: https://github.com/packit/ogr/issues/143 + id: 478340513 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9e231 + default: false + description: High priority. + id: 1432779316 + name: high-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzE2 + url: https://api.github.com/repos/packit/ogr/labels/high-prio + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/143/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUzNDI5MTA2 - number: 14 + node_id: MDU6SXNzdWU0NzgzNDA1MTM= + number: 143 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/14.diff - html_url: https://github.com/packit/ogr/pull/14 - patch_url: https://github.com/packit/ogr/pull/14.patch - url: https://api.github.com/repos/packit/ogr/pulls/14 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: README & Makefile - updated_at: '2019-02-15T17:12:10Z' - url: https://api.github.com/repos/packit/ogr/issues/14 + title: GitHub check descriptions can only be 140 chars long + updated_at: '2019-09-19T14:18:04Z' + url: https://api.github.com/repos/packit/ogr/issues/143 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Resolves #4' - closed_at: '2019-02-14T13:28:27Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/11/comments - created_at: '2019-02-14T13:11:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/11/events - html_url: https://github.com/packit/ogr/pull/11 - id: 410292447 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/11/labels{/name} + author_association: CONTRIBUTOR + body: 'Fixes #172 ' + closed_at: '2019-09-19T09:46:56Z' + comments: 13 + comments_url: https://api.github.com/repos/packit/ogr/issues/206/comments + created_at: '2019-09-18T13:16:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/206/events + html_url: https://github.com/packit/ogr/pull/206 + id: 495219552 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/206/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUzMDY2MjY3 - number: 11 + node_id: MDExOlB1bGxSZXF1ZXN0MzE4ODA3MTU3 + number: 206 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/11.diff - html_url: https://github.com/packit/ogr/pull/11 - patch_url: https://github.com/packit/ogr/pull/11.patch - url: https://api.github.com/repos/packit/ogr/pulls/11 + diff_url: https://github.com/packit/ogr/pull/206.diff + html_url: https://github.com/packit/ogr/pull/206 + patch_url: https://github.com/packit/ogr/pull/206.patch + url: https://api.github.com/repos/packit/ogr/pulls/206 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix the name meaning and prepare for the move to packit-service - updated_at: '2019-02-14T13:28:27Z' - url: https://api.github.com/repos/packit/ogr/issues/11 + title: methods for commit status and commit comment + updated_at: '2019-09-19T09:46:56Z' + url: https://api.github.com/repos/packit/ogr/issues/206 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-02-11T12:22:48Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/10/comments - created_at: '2019-02-11T11:44:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/10/events - html_url: https://github.com/packit/ogr/pull/10 - id: 408743900 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/10/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUxODg0MTc2 - number: 10 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/10.diff - html_url: https://github.com/packit/ogr/pull/10 - patch_url: https://github.com/packit/ogr/pull/10.patch - url: https://api.github.com/repos/packit/ogr/pulls/10 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Move 'packages' from setup.py to setup.cfg - updated_at: '2019-02-11T13:08:26Z' - url: https://api.github.com/repos/packit/ogr/issues/10 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + url: https://api.github.com/users/lbarcziova + _next: null + elapsed: 0.615035 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:12 GMT + ETag: W/"72c11b8de3bb847c88d7a67adf4d00226793457d891ebb818a7c46adfdc8ed8c" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78F5FE:1334ABA:6075DCA3 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4273' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '727' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=14: + - metadata: + latency: 0.5570054054260254 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka - - active_lock_reason: null - assignee: null - assignees: [] + url: https://api.github.com/users/lbarcziova + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: '- Rework github implementation. - - - Add tests for github. - - - Add API for file content. - - - Correct Pagure tests.' - closed_at: '2019-02-04T16:55:46Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/9/comments - created_at: '2019-02-04T13:48:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/9/events - html_url: https://github.com/packit/ogr/pull/9 - id: 406337577 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/9/labels{/name} + body: "```python\r\n def commit_comment(\r\n self, commit: str,\ + \ body: str, filename: str = None, row: int = None\r\n ) -> \"CommitComment\"\ + :\r\n raise NotImplementedError()\r\n\r\n def set_commit_status(\r\ + \n self, commit: str, state: str, target_url: str, description:\ + \ str, context: str\r\n ) -> \"CommitFlag\":\r\n raise NotImplementedError()\r\ + \n\r\n def get_commit_statuses(self, commit: str) -> List[CommitFlag]:\r\ + \n \"\"\"\r\n Something like this:\r\n commit_object\ + \ = self.gitlab_repo.commits.get(commit)\r\n raw_statuses = commit_object.statuses.list()\r\ + \n return [\r\n GitlabProject._commit_status_from_gitlab_object(raw_status)\r\ + \n for raw_status in raw_statuses\r\n ]\r\n \ + \ \"\"\"\r\n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html\r\ + \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-comments\r\ + \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status" + closed_at: '2019-09-19T09:46:56Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/172/comments + created_at: '2019-09-06T07:23:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/172/events + html_url: https://github.com/packit/ogr/issues/172 + id: 490172659 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/172/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjUwMDU3NDI2 - number: 9 + node_id: MDU6SXNzdWU0OTAxNzI2NTk= + number: 172 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/9.diff - html_url: https://github.com/packit/ogr/pull/9 - patch_url: https://github.com/packit/ogr/pull/9.patch - url: https://api.github.com/repos/packit/ogr/pulls/9 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: github support - updated_at: '2019-02-04T16:55:50Z' - url: https://api.github.com/repos/packit/ogr/issues/9 + title: Implement GitLab methods for commits + updated_at: '2019-09-19T09:46:56Z' + url: https://api.github.com/repos/packit/ogr/issues/172 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -43845,38 +45896,104 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 author_association: MEMBER - body: '- Remove duplicated test. - - - Add annotations.' - closed_at: '2019-01-30T10:16:18Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/7/comments - created_at: '2019-01-29T16:26:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/7/events - html_url: https://github.com/packit/ogr/pull/7 - id: 404374671 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/7/labels{/name} + body: "```python\r\n def project_create(self, repo: str, namespace:\ + \ str = None) -> \"GithubProject\":\r\n pass\r\n```\r\n\r\nThe\ + \ methods for creating projects are in two places:\r\n\r\n- user:\r\n\ + \ - [Github.get_user](https://pygithub.readthedocs.io/en/latest/github.html#github.MainClass.Github.get_user)\r\ + \n - [User.create_repo](https://pygithub.readthedocs.io/en/latest/github_objects/AuthenticatedUser.html#github.AuthenticatedUser.AuthenticatedUser.create_repo)\r\ + \n- namespace:\r\n - [Github.get_organization](https://pygithub.readthedocs.io/en/latest/github.html#github.MainClass.Github.get_organization)\r\ + \n - [Organization.create_repo](https://pygithub.readthedocs.io/en/latest/github_objects/Organization.html#github.Organization.Organization.create_repo)\r\ + \n\r\nAC:\r\n\r\n- [x] implement the method in `GithubService`\r\n-\ + \ [x] create at least two tests for that (with and without specifying\ + \ `namespace`)\r\n" + closed_at: '2019-09-19T09:13:21Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/203/comments + created_at: '2019-09-18T09:06:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/203/events + html_url: https://github.com/packit/ogr/issues/203 + id: 495090506 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/203/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQ4NTcxNTc3 - number: 7 + node_id: MDU6SXNzdWU0OTUwOTA1MDY= + number: 203 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/7.diff - html_url: https://github.com/packit/ogr/pull/7 - patch_url: https://github.com/packit/ogr/pull/7.patch - url: https://api.github.com/repos/packit/ogr/pulls/7 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add type annotations and fix create_pr - updated_at: '2019-01-30T10:32:30Z' - url: https://api.github.com/repos/packit/ogr/issues/7 + title: Implement GitHub method for create_project + updated_at: '2019-09-19T09:27:27Z' + url: https://api.github.com/repos/packit/ogr/issues/203 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -43897,85 +46014,113 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Add change_token for Servise and Project classes.\r\n- Do not\ - \ use pagure instance publically." - closed_at: '2019-01-25T14:25:58Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/6/comments - created_at: '2019-01-24T11:21:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/6/events - html_url: https://github.com/packit/ogr/pull/6 - id: 402660658 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/6/labels{/name} + author_association: CONTRIBUTOR + body: 'Fixes #203 ' + closed_at: '2019-09-19T09:13:22Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/208/comments + created_at: '2019-09-19T06:12:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/208/events + html_url: https://github.com/packit/ogr/pull/208 + id: 495593829 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/208/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQ3MjkxODEx - number: 6 + node_id: MDExOlB1bGxSZXF1ZXN0MzE5MTEwNjY0 + number: 208 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/6.diff - html_url: https://github.com/packit/ogr/pull/6 - patch_url: https://github.com/packit/ogr/pull/6.patch - url: https://api.github.com/repos/packit/ogr/pulls/6 + diff_url: https://github.com/packit/ogr/pull/208.diff + html_url: https://github.com/packit/ogr/pull/208 + patch_url: https://github.com/packit/ogr/pull/208.patch + url: https://api.github.com/repos/packit/ogr/pulls/208 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: change_token methods - updated_at: '2019-01-28T10:53:41Z' - url: https://api.github.com/repos/packit/ogr/issues/6 + title: github method for creating projects added + updated_at: '2019-09-19T09:13:22Z' + url: https://api.github.com/repos/packit/ogr/issues/208 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Add method for filtering comments in pr.\r\n- Fix pr_info and\ - \ pr_comment content.\r\n\r\n- TODO:\r\n - [x] searching in comments/description\r\ - \n - [x] unit tests\r\n - [x] integration tests" - closed_at: '2019-01-18T12:40:24Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/5/comments - created_at: '2019-01-17T10:52:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/5/events - html_url: https://github.com/packit/ogr/pull/5 - id: 400218175 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/5/labels{/name} + body: "- [x] Update Pagure response files and fix the tests.\r\n- [x]\ + \ Update GitHub response files and fix the tests.\r\n- ~~[ ] Update\ + \ GitLab response files and fix the tests if needed.~~\r\n\r\nFixes\ + \ #181 " + closed_at: '2019-09-19T08:09:47Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/202/comments + created_at: '2019-09-17T13:18:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/202/events + html_url: https://github.com/packit/ogr/pull/202 + id: 494619035 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/202/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQ1NDU1OTU0 - number: 5 + node_id: MDExOlB1bGxSZXF1ZXN0MzE4MzM1NjYw + number: 202 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/5.diff - html_url: https://github.com/packit/ogr/pull/5 - patch_url: https://github.com/packit/ogr/pull/5.patch - url: https://api.github.com/repos/packit/ogr/pulls/5 + diff_url: https://github.com/packit/ogr/pull/202.diff + html_url: https://github.com/packit/ogr/pull/202 + patch_url: https://github.com/packit/ogr/pull/202.patch + url: https://api.github.com/repos/packit/ogr/pulls/202 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pr info and comments - updated_at: '2019-01-18T13:02:36Z' - url: https://api.github.com/repos/packit/ogr/issues/5 + title: Update tests and response files + updated_at: '2019-09-19T08:09:51Z' + url: https://api.github.com/repos/packit/ogr/issues/202 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -43997,37 +46142,45 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- add MIT license - - - use setuptools-scm - - - add Makefile target for image and pypi-checking' - closed_at: '2019-01-11T14:15:26Z' + body: "Currently, we need to know the author of the generated files, because\ + \ we do not know the owner of the fork we are using. (When we are not\ + \ setting the `PAGURE_USER` token, e.i. in CI.)\r\n\r\nAI: Fix the need\ + \ of `LAST_GENERATED_BY = ` constant." + closed_at: '2019-09-19T08:09:47Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/3/comments - created_at: '2019-01-10T15:31:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/3/events - html_url: https://github.com/packit/ogr/pull/3 - id: 397883535 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/3/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/181/comments + created_at: '2019-09-09T08:16:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/181/events + html_url: https://github.com/packit/ogr/issues/181 + id: 490947039 + labels: + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/181/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQzNzI4NTQ0 - number: 3 + node_id: MDU6SXNzdWU0OTA5NDcwMzk= + number: 181 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/3.diff - html_url: https://github.com/packit/ogr/pull/3 - patch_url: https://github.com/packit/ogr/pull/3.patch - url: https://api.github.com/repos/packit/ogr/pulls/3 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Introduce packaging - updated_at: '2019-01-12T14:24:24Z' - url: https://api.github.com/repos/packit/ogr/issues/3 + title: Avoid saving author of the last generated response-files + updated_at: '2019-09-19T08:09:47Z' + url: https://api.github.com/repos/packit/ogr/issues/181 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -44045,327 +46198,116 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=16: - - metadata: - latency: 0.2933363914489746 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Add tests for Pagure and OurPagure. - - - Update the API and Pagure implementation.' - closed_at: '2019-01-10T13:50:20Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/2/comments - created_at: '2019-01-10T11:16:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/2/events - html_url: https://github.com/packit/ogr/pull/2 - id: 397783096 + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-09-19T07:00:59Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/194/comments + created_at: '2019-09-12T08:49:07Z' + events_url: https://api.github.com/repos/packit/ogr/issues/194/events + html_url: https://github.com/packit/ogr/issues/194 + id: 492670435 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/2/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/194/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjQzNjQ4ODM2 - number: 2 + node_id: MDU6SXNzdWU0OTI2NzA0MzU= + number: 194 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/2.diff - html_url: https://github.com/packit/ogr/pull/2 - patch_url: https://github.com/packit/ogr/pull/2.patch - url: https://api.github.com/repos/packit/ogr/pulls/2 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update API and Pagure - updated_at: '2019-01-10T13:52:06Z' - url: https://api.github.com/repos/packit/ogr/issues/2 + title: Release 0.7.0 by /packit propose-update + updated_at: '2019-09-19T07:00:59Z' + url: https://api.github.com/repos/packit/ogr/issues/194 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=2: - - metadata: - latency: 0.5572245121002197 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/phracek - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: 'Depends-on: https://github.com/packit/packit/pull/920' - closed_at: '2020-08-04T06:21:47Z' - comments: 20 - comments_url: https://api.github.com/repos/packit/ogr/issues/443/comments - created_at: '2020-08-03T09:07:39Z' - events_url: https://api.github.com/repos/packit/ogr/issues/443/events - html_url: https://github.com/packit/ogr/pull/443 - id: 671923353 + body: '' + closed_at: '2019-09-17T09:05:10Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/200/comments + created_at: '2019-09-13T12:21:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/200/events + html_url: https://github.com/packit/ogr/pull/200 + id: 493295672 labels: - - color: 0e8a16 + - color: dd5f74 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/443/labels{/name} + description: Work in progress. + id: 1432779248 + name: do-not-merge + node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 + url: https://api.github.com/repos/packit/ogr/labels/do-not-merge + labels_url: https://api.github.com/repos/packit/ogr/issues/200/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDYyMDUwMTY5 - number: 443 + node_id: MDExOlB1bGxSZXF1ZXN0MzE3MzAxMTYz + number: 200 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/443.diff - html_url: https://github.com/packit/ogr/pull/443 - patch_url: https://github.com/packit/ogr/pull/443.patch - url: https://api.github.com/repos/packit/ogr/pulls/443 + diff_url: https://github.com/packit/ogr/pull/200.diff + html_url: https://github.com/packit/ogr/pull/200 + patch_url: https://github.com/packit/ogr/pull/200.patch + url: https://api.github.com/repos/packit/ogr/pulls/200 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'zuul: org rename' - updated_at: '2020-08-04T06:21:47Z' - url: https://api.github.com/repos/packit/ogr/issues/443 - user: - avatar_url: https://avatars2.githubusercontent.com/u/84583?v=4 - events_url: https://api.github.com/users/morucci/events{/privacy} - followers_url: https://api.github.com/users/morucci/followers - following_url: https://api.github.com/users/morucci/following{/other_user} - gists_url: https://api.github.com/users/morucci/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/morucci - id: 84583 - login: morucci - node_id: MDQ6VXNlcjg0NTgz - organizations_url: https://api.github.com/users/morucci/orgs - received_events_url: https://api.github.com/users/morucci/received_events - repos_url: https://api.github.com/users/morucci/repos - site_admin: false - starred_url: https://api.github.com/users/morucci/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/morucci/subscriptions - type: User - url: https://api.github.com/users/morucci - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "After the Packit organisation rename, I had to regenerate the test\ - \ data for GitHub. This proved to be a considerable effort, with roughly\ - \ the following steps:\r\n\r\n- create a Python virtualenv and install\ - \ test dependencies - this needed several attempts, to get it right.\r\ - \n- clean up test data for GitHub\r\n- set my GitHub API token\r\n-\ - \ run the tests with `make check` only to realise that the `GITHUB_APP_ID`\ - \ and the `GITHUB_APP_PRIVATE_KEY_PATH` env vars were not set. Ask by\ - \ the team how what values to set these (stage is fine) and run the\ - \ tests again.\r\n- Start following comments left in individul tests,\ - \ to manually bring the repos, PRs, issues in the state the state expected\ - \ them to be. For this I had to run the tests over and over again, see\ - \ a test fail, inspect the failure to figure out the reason, fix the\ - \ pre-conditions and run the tests again to check that the fix worked.\r\ - \n\r\nThe above is extremely tedious and frustrating.\r\n\r\nRegenerating\ - \ test data should be trivial, for example:\r\n\r\n- if credentials\ - \ are needed, the contribution guide should explicitly call those out\ - \ with clear indication what their values/credentials should be.\r\n\ - - they should be checked to be set even before starting any test run.\r\ - \n- pre-conditions for tests should be checked, and preferably automatically\ - \ set up given the credentials above, without requiring any manual action.\r\ - \n- if it's still required to set pre-conditions manually, these steps\ - \ should be clearly called out with detailed instructions in the contribution\ - \ guide. " - closed_at: null - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/445/comments - created_at: '2020-08-03T13:50:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/445/events - html_url: https://github.com/packit/ogr/issues/445 - id: 672091016 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/445/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2NzIwOTEwMTY= - number: 445 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Regenerating the test data for the integration tests should be - trivial - updated_at: '2020-08-03T13:50:00Z' - url: https://api.github.com/repos/packit/ogr/issues/445 + title: 'WIP: use requre project and list modules for next work' + updated_at: '2019-09-17T09:07:25Z' + url: https://api.github.com/repos/packit/ogr/issues/200 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/csomh + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Pipelines are specific to the GitLab but there were some requests\ - \ (ping @thrix ) to support them in OGR as well.\r\n\r\n- It's going\ - \ against the purpose of OGR to have one API for multiple forges. :-1:\ - \ \r\n- Users can access `python-gitlab` to do that instead. :-1: \r\ - \n - But it's not a good UX. `python-gitlab` is our implementation\ - \ detail. We should not force users to access that. :+1: \r\n- Technically\ - \ it will be easy to implement. :+1: (No big changes needed, just add\ - \ some GitLab specific classes and methods.)\r\n- It will be useful\ - \ for packit-service GitLab implementation :+1: (ping @shreyaspapi ..;-)\r\ - \n\r\nAC:\r\n- [ ] Provide a class abstraction on top of the objects\ - \ related to that.\r\n - Make here a proposal before coding.\r\n- [\ - \ ] Implement useful methods and classes.\r\n- [ ] Create new issues\ - \ for anything that can be implemented later." - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/420/comments - created_at: '2020-05-26T14:37:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/420/events - html_url: https://github.com/packit/ogr/issues/420 - id: 624934468 + body: '- Use returned GitLab repo instance in GitlabService.project_create.' + closed_at: '2019-09-12T18:18:59Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/197/comments + created_at: '2019-09-12T10:18:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/197/events + html_url: https://github.com/packit/ogr/pull/197 + id: 492715580 labels: - color: d93f0b default: false @@ -44374,26 +46316,31 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/420/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/197/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjQ5MzQ0Njg= - number: 420 + node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODM0MDQ1 + number: 197 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/197.diff + html_url: https://github.com/packit/ogr/pull/197 + patch_url: https://github.com/packit/ogr/pull/197.patch + url: https://api.github.com/repos/packit/ogr/pulls/197 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Support for GitLab pipelines - updated_at: '2020-08-03T07:28:07Z' - url: https://api.github.com/repos/packit/ogr/issues/420 + state: closed + title: Set GitLab object on project_create + updated_at: '2019-09-12T19:29:31Z' + url: https://api.github.com/repos/packit/ogr/issues/197 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -44411,271 +46358,10148 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-07-31T16:40:37Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/355/comments - created_at: '2020-03-17T12:39:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/355/events - html_url: https://github.com/packit/ogr/pull/355 - id: 582983115 - labels: - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/355/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg5ODExMzc3 - number: 355 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/355.diff - html_url: https://github.com/packit/ogr/pull/355 - patch_url: https://github.com/packit/ogr/pull/355.patch - url: https://api.github.com/repos/packit/ogr/pulls/355 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'WIP: packit - make release work on stage' - updated_at: '2020-07-31T16:40:37Z' - url: https://api.github.com/repos/packit/ogr/issues/355 - user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos - site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions - type: User - url: https://api.github.com/users/dhodovsk - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: Example of Issue description - closed_at: '2020-07-30T21:15:08Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/442/comments - created_at: '2020-07-30T21:14:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/442/events - html_url: https://github.com/packit/ogr/issues/442 - id: 669202849 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/442/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2NjkyMDI4NDk= - number: 442 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: This is an issue - updated_at: '2020-07-31T12:43:32Z' - url: https://api.github.com/repos/packit/ogr/issues/442 - user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos - site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions - type: User - url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Request project access - using it here (https://github.com/packit-service/packit-service/pull/740)\r\ - \n\r\n[Request access docs](https://python-gitlab.readthedocs.io/en/stable/gl_objects/access_requests.html)" - closed_at: '2020-07-31T11:19:06Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/439/comments - created_at: '2020-07-26T19:59:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/439/events - html_url: https://github.com/packit/ogr/pull/439 - id: 665849470 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/439/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDU2Nzk3ODcw - number: 439 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/439.diff - html_url: https://github.com/packit/ogr/pull/439 - patch_url: https://github.com/packit/ogr/pull/439.patch - url: https://api.github.com/repos/packit/ogr/pulls/439 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Requesting project access - updated_at: '2020-07-31T11:19:06Z' - url: https://api.github.com/repos/packit/ogr/issues/439 - user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos - site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions - type: User - url: https://api.github.com/users/shreyaspapi - - active_lock_reason: null - assignee: null - assignees: [] - author_association: COLLABORATOR - body: "We have `get_username` method in GitUser class. At the moment we\ - \ are missing method `get_email` for both Github and Pagure services.\r\ - \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" - closed_at: null - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments - created_at: '2019-07-18T07:56:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/126/events - html_url: https://github.com/packit/ogr/issues/126 - id: 469623000 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/126/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0Njk2MjMwMDA= - number: 126 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: get_email for GitUser - updated_at: '2020-07-31T10:43:43Z' - url: https://api.github.com/repos/packit/ogr/issues/126 + body: "In `packit-service`, I am using method `who_can_merge_pr` for getting\ + \ users who can merge PR.\r\n\r\n* `get_owners` for repository `packit-service/packit-service`\ + \ returns list `['packit-service']`\r\n```\r\n[2019-07-22 08:52:07,528:\ + \ DEBUG/ForkPoolWorker-1] Repository owners ['packit-service']\r\n```\r\ + \n* `who_can_merge_pr` for repository `rebase-helper/rebase-helper`\ + \ returns list like `{'FrNecas', 'uhliarik', 'phracek', 'nforro', 'thozza'}`\ + \ but for `packit-service/packit-service` repo it failed with traceback\r\ + \n\r\n```\r\n[2019-07-22 08:52:08,368: ERROR/ForkPoolWorker-1] Task\ + \ task.steve_jobs.process_message[9c44c1c8-5cf7-4a98-88d5-b0dbaca0262f]\ + \ raised unexpected: AttributeError(\"'Repository' object has no attribute\ + \ 'get_collaborator_permission'\")\r\nTraceback (most recent call last):\r\ + \n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ + , line 385, in trace_task\r\n R = retval = fun(*args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/celery/app/trace.py\"\ + , line 648, in __protected_call__\r\n return self.run(*args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ + , line 31, in process_message\r\n return SteveJobs().process_message(event=event,\ + \ topic=topic)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 383, in process_message\r\n jobs_results = self.process_jobs(trigger,\ + \ package_config, event, project)\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 341, in process_jobs\r\n handlers_results[job.job.value] =\ + \ handler.run()\r\n File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 793, in run\r\n return self.handle_pull_request()\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ + , line 717, in handle_pull_request\r\n collaborators = self.project.who_can_merge_pr()\r\ + \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ + , line 254, in who_can_merge_pr\r\n collaborators = self._get_collaborators_with_permission()\r\ + \n File \"/usr/local/lib/python3.7/site-packages/ogr/services/github.py\"\ + , line 294, in _get_collaborators_with_permission\r\n permission\ + \ = self.github_repo.get_collaborator_permission(user)\r\nAttributeError:\ + \ 'Repository' object has no attribute 'get_collaborator_permission'\r\ + \n```\r\n\r\nFunction GITHUB API function which gets all collaborators\ + \ returns\r\n```\r\n[2019-07-22 08:52:08,136: DEBUG/ForkPoolWorker-1]\ + \ GET https://api.github.com/repos/packit-service/hello-world/collaborators\ + \ \r\n{'Authorization': 'token (oauth token removed)', 'User-Agent':\ + \ 'PyGithub/Python'} None ==> 200 {'date': 'Mon, 22 Jul 2019 08:52:05\ + \ GMT', 'content-type': 'application/json; charset=utf-8', 'content-length':\ + \ '9897', 'server': 'GitHub.com', 'status': '200 OK', 'x-ratelimit-limit':\ + \ '5000', 'x-ratelimit-remaining': '4997', 'x-ratelimit-reset': '1563789120',\ + \ 'cache-control': 'private, max-age=60, s-maxage=60', 'vary': 'Accept-Encoding',\ + \ 'etag': '\"608e280b2b2bc2d96b1393ce9c294cee\"', 'x-github-media-type':\ + \ 'github.v3; format=json', 'access-control-expose-headers': 'ETag,\ + \ Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining,\ + \ X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval,\ + \ X-GitHub-Media-Type', 'access-control-allow-origin': '*', 'strict-transport-security':\ + \ 'max-age=31536000; includeSubdomains; preload', 'x-frame-options':\ + \ 'deny', 'x-content-type-options': 'nosniff', 'x-xss-protection': '1;\ + \ mode=block', 'referrer-policy': 'origin-when-cross-origin, strict-origin-when-cross-origin',\ + \ 'content-security-policy': \"default-src 'none'\", 'x-github-request-id':\ + \ '1110:253E:289043:3B0BB6:5D357935'}b'[\r\n{\"login\":\"jpopelka\"\ + ,\"id\":288686,\"node_id\":\"MDQ6VXNlcjI4ODY4Ng==\",\"avatar_url\":\"\ + https://avatars0.githubusercontent.com/u/288686?v=4\",\"gravatar_id\"\ + :\"\",\"url\":\"https://api.github.com/users/jpopelka\",\"html_url\"\ + :\"https://github.com/jpopelka\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/jpopelka/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/jpopelka/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/jpopelka/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/jpopelka/repos\",\"events_url\"\ + :\"https://api.github.com/users /jpopelka/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/jpopelka/received_events\",\"type\"\ + :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"TomasTomecek\",\"id\":1662493,\"\ + node_id\":\"MDQ6VXNlcjE2NjI0OTM=\",\"avatar_url\":\"https://avatars0.githubusercontent.com/u/1662493?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/TomasTomecek\"\ + ,\"html_url\":\"https://github.com/TomasTomecek\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/TomasTomecek/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/TomasTomecek/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/TomasTomecek/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/TomasTomecek/repos\",\"\ + events_url\":\"https://api.github.com/users/TomasTomecek/events{/privacy}\"\ + ,\"received_events_url\":\"https://api.github.com/users/TomasTomecek/received_events\"\ + ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ + push\":true,\"pull\":true}},\r\n{\"login\":\"eliskasl\",\"id\":1866652,\"\ + node_id\":\"MDQ6VXNlcjE4NjY2NTI=\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/1866652?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/eliskasl\"\ + ,\"html_url\":\"https://github.com/eliskasl\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/eliskasl/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/eliskasl/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/eliskasl/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/eliskasl/repos\",\"events_url\"\ + :\"https://api.github.com/users/eliskasl/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/ eliskasl/received_events\",\"type\"\ + :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"phracek\",\"id\":3416672,\"node_id\"\ + :\"MDQ6VXNlcjM0MTY2NzI=\",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/3416672?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/phracek\"\ + ,\"html_url\":\"https://github.com/phracek\",\"followers_url\":\"https://api.github.com/users/phracek/followers\"\ + ,\"following_url\":\"https://api.github.com/users/phracek/following{/other_user}\"\ + ,\"gists_url\":\"https://api.github.com/users/phracek/gists{/gist_id}\"\ + ,\"starred_url\":\"https://api.github.com/users/phracek/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/phracek/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/phracek/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/phracek/repos\",\"events_url\"\ + :\"https://api.github.com/users/phracek/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/phracek/received_events\",\"type\":\"\ + User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"jscotka\",\"id\":8735467,\"node_id\"\ + :\"MDQ6VXNlcjg3MzU0Njc=\",\"avatar_url\":\"https://avatars0.githubusercontent.com/u/8735467?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/jscotka\"\ + ,\"html_url\":\"https://github.com/jscotka\",\"followers_url\":\"https://api.github.com/users/jscotka/followers\"\ + ,\"following_url\":\"https://api.github.com/users/jscotka/following{/other_user}\"\ + ,\"gists_url\":\"https://api.github.com/users/jscotka/gists{/gist_id}\"\ + ,\"starred_url\":\"https://api.github.com/users/jscotka/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/jscotka/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/jscotka/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/jscotka/repos\",\"events_url\"\ + :\"https://api.github.com/users/jscotka/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/jscotka/received_events\",\"type\":\"\ + User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},{\"login\":\"lachmanfrantisek\",\"id\":202140\ + \ 43,\"node_id\":\"MDQ6VXNlcjIwMjE0MDQz\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/20214043?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/lachmanfrantisek\"\ + ,\"html_url\":\"https://github.com/lachmanfrantisek\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/lachmanfrantisek/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/lachmanfrantisek/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/lachmanfrantisek/repos\"\ + ,\"events_url\":\"https://api.github.com/users/lachmanfrantisek/events{/privacy}\"\ + ,\"received_events_url\":\"https://api.github.com/users/lachmanfrantisek/received_events\"\ + ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ + push\":true,\"pull\":true}},\r\n{\"login\":\"rpitonak\",\"id\":26160778,\"\ + node_id\":\"MDQ6VXNlcjI2MTYwNzc4\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/26160778?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/rpitonak\"\ + ,\"html_url\":\"https://github.com/rpitonak\",\"followers_url\":\"https://api.github.com/users/rpitonak/followers\"\ + ,\"following_url\":\"https://api.github.com/users/rpitonak/following{/other_user}\"\ + ,\"gists_url\":\"https://api.github.com/users/rpitonak/gists{/gist_id}\"\ + ,\"starred_url\":\"https://api.github.com/users/rpitonak/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/rpitonak/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/rpitonak/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/rpitonak/repos\",\"events_url\"\ + :\"https://api.github.com/users/rpitonak/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/rpitonak/received_events\",\"type\"\ + :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"dhodovsk\",\"id\":31201372,\"\ + node_id\":\"MDQ6VXNlcjMxMjAxMzcy \",\"avatar_url\":\"https://avatars2.githubusercontent.com/u/31201372?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/dhodovsk\"\ + ,\"html_url\":\"https://github.com/dhodovsk\",\"followers_url\":\"https://api.github.com/users/dhodovsk/followers\"\ + ,\"following_url\":\"https://api.github.com/users/dhodovsk/following{/other_user}\"\ + ,\"gists_url\":\"https://api.github.com/users/dhodovsk/gists{/gist_id}\"\ + ,\"starred_url\":\"https://api.github.com/users/dhodovsk/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/dhodovsk/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/dhodovsk/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/dhodovsk/repos\",\"events_url\"\ + :\"https://api.github.com/users/dhodovsk/events{/privacy}\",\"received_events_url\"\ + :\"https://api.github.com/users/dhodovsk/received_events\",\"type\"\ + :\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"push\"\ + :true,\"pull\":true}},\r\n{\"login\":\"usercont-release-bot\",\"id\"\ + :36231209,\"node_id\":\"MDQ6VXNlcjM2MjMxMjA5\",\"avatar_url\":\"https://avatars1.githubusercontent.com/u/36231209?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/usercont-release-bot\"\ + ,\"html_url\":\"https://github.com/usercont-release-bot\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/usercont-release-bot/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/usercont-release-bot/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/usercont-release-bot/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/usercont-release-bot/repos\"\ + ,\"events_url\":\"https://api.github.com/users/usercont-release-bot/events{/privacy}\"\ + ,\"received_events_url\":\"https://api.github.com/users/usercont-release-bot/received_events\"\ + ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ + push\":true,\"pull\":true}},\r\n{\"login\":\"lbarcziova\",\"id\":49026743,\"\ + node_id\": \"MDQ6VXNlcjQ5MDI2NzQz\",\"avatar_url\":\"https://avatars3.githubusercontent.com/u/49026743?v=4\"\ + ,\"gravatar_id\":\"\",\"url\":\"https://api.github.com/users/lbarcziova\"\ + ,\"html_url\":\"https://github.com/lbarcziova\",\"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}\"\ + ,\"starred_url\":\"https://api.github.com/users/lbarcziova/starred{/owner}{/repo}\"\ + ,\"subscriptions_url\":\"https://api.github.com/users/lbarcziova/subscriptions\"\ + ,\"organizations_url\":\"https://api.github.com/users/lbarcziova/orgs\"\ + ,\"repos_url\":\"https://api.github.com/users/lbarcziova/repos\",\"\ + events_url\":\"https://api.github.com/users/lbarcziova/events{/privacy}\"\ + ,\"received_events_url\":\"https://api.github.com/users/lbarcziova/received_events\"\ + ,\"type\":\"User\",\"site_admin\":false,\"permissions\":{\"admin\":true,\"\ + push\":true,\"pull\":true}}]'\r\n```" + closed_at: '2019-09-12T11:13:02Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/132/comments + created_at: '2019-07-22T09:03:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/132/events + html_url: https://github.com/packit/ogr/issues/132 + id: 470977370 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/132/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NzA5NzczNzA= + number: 132 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: fnc `who_can_merge_pr` fails with traceback + updated_at: '2019-09-12T15:19:54Z' + url: https://api.github.com/repos/packit/ogr/issues/132 + user: + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos + site_admin: false + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions + type: User + url: https://api.github.com/users/phracek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "I would like to solve an issue https://github.com/packit-service/packit/issues/328\r\ + \nbut it failed with traceback:\r\n\r\n~~~\r\n$ packit -d propose-update\r\ + \n[..snip..]\r\n10:40:20.990 upstream.py DEBUG Version in spec\ + \ file: 0.16.3\r\nPicking version found in spec file.\r\nChecking out\ + \ upstream version 0.16.3\r\n10:40:21.013 base_git.py DEBUG Allowed\ + \ GPG keys are not set, skipping the verification.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running ActionName.pre_sync hook.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running ActionName.pre_sync.\r\n10:40:21.014 base_git.py\ + \ DEBUG Running default implementation for ActionName.pre_sync.\r\ + \nUsing 'master' dist-git branch\r\n10:40:21.017 base_git.py DEBUG\ + \ It seems that branch master already exists, checking it out.\r\n\ + 10:40:21.020 distgit.py DEBUG About to update branch 'master'\r\ + \n10:40:21.727 api.py DEBUG Path of README /tmp/tmpzla3qy3y/README.packit\r\ + \n10:40:21.728 base_git.py DEBUG Running ActionName.prepare_files.\r\ + \n10:40:21.729 base_git.py DEBUG Running default implementation\ + \ for ActionName.prepare_files.\r\n10:40:21.729 sync.py DEBUG\ + \ Copy synced files [RawSyncFilesItem(src=/home/vagrant/rebase-helper/.packit.yml,\ + \ dest=/tmp/tmpzla3qy3y/.packit.yml, dist_is_dir=False), RawSyncFilesItem(src=/home/vagrant/rebase-helper/rebase-helper.spec,\ + \ dest=/tmp/tmpzla3qy3y/rebase-helper.spec, dist_is_dir=False)]\r\n\ + 10:40:21.730 sync.py DEBUG src = /home/vagrant/rebase-helper/.packit.yml,\ + \ dest = /tmp/tmpzla3qy3y/.packit.yml\r\nCopying /home/vagrant/rebase-helper/.packit.yml\ + \ to /tmp/tmpzla3qy3y/.packit.yml.\r\n10:40:21.731 sync.py \ + \ DEBUG src = /home/vagrant/rebase-helper/rebase-helper.spec, dest\ + \ = /tmp/tmpzla3qy3y/rebase-helper.spec\r\nCopying /home/vagrant/rebase-helper/rebase-helper.spec\ + \ to /tmp/tmpzla3qy3y/rebase-helper.spec.\r\n10:40:21.814 distgit.py\ + \ DEBUG Upstream archive name is 'rebase-helper-0.16.3.tar.gz'\r\ + \nArchive rebase-helper-0.16.3.tar.gz found in lookaside cache (skipping\ + \ upload).\r\n10:40:22.347 distgit.py DEBUG Upstream archive\ + \ name is 'rebase-helper-0.16.3.tar.gz'\r\n10:40:22.348 base_git.py\ + \ DEBUG About to add all & commit\r\n10:40:22.366 distgit.py\ + \ DEBUG About to force push changes to branch 0.16.3-master-update\ + \ of a fork fork of the dist-git repo\r\n10:40:32.251 distgit.py \ + \ DEBUG About to create dist-git pull request from 0.16.3-master-update\ + \ to master\r\nERROR There was an error while creating the PR: PagureAPIException('Page\ + \ `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.')\r\nERROR Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.\r\nTraceback (most recent call\ + \ last):\r\n File \"/usr/local/lib/python3.7/site-packages/packit/cli/utils.py\"\ + , line 58, in covered_func\r\n func(config=config, *args, **kwargs)\r\ + \n File \"/usr/local/lib/python3.7/site-packages/packit/cli/update.py\"\ + , line 113, in update\r\n upstream_ref=upstream_ref,\r\n File \"\ + /usr/local/lib/python3.7/site-packages/packit/api.py\", line 229, in\ + \ sync_release\r\n dist_git_branch=dist_git_branch,\r\n File \"\ + /usr/local/lib/python3.7/site-packages/packit/api.py\", line 316, in\ + \ push_and_create_pr\r\n target_branch=dist_git_branch,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/packit/distgit.py\", line\ + \ 211, in create_pull\r\n target_branch=target_branch,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/ogr/mock_core.py\", line\ + \ 49, in readonly_func\r\n return func(self, *args, **kwargs)\r\n\ + \ File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 377, in pr_create\r\n \"initial_comment\": body,\r\n File\ + \ \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 232, in _call_project_api\r\n url=request_url, method=method,\ + \ params=params, data=data\r\n File \"/usr/local/lib/python3.7/site-packages/ogr/services/pagure.py\"\ + , line 71, in call_api\r\n raise PagureAPIException(f\"Page `{url}`\ + \ not found when calling Pagure API.\")\r\nogr.exceptions.PagureAPIException:\ + \ Page `https://src.fedoraproject.org//api/0/fork/phracek/rpms/rebase-helper/pull-request/new`\ + \ not found when calling Pagure API.\r\n10:40:34.958 local_project.py\ + \ DEBUG Cleaning: /tmp/tmpzla3qy3y\r\n~~~\r\n\r\n\r\nReferenced issues:\r\ + \nhttps://pagure.io/pagure/issue/4512\r\nhttps://github.com/packit-service/packit/issues/328\r\ + \n" + closed_at: '2019-09-12T11:17:19Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/91/comments + created_at: '2019-06-27T10:41:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/91/events + html_url: https://github.com/packit/ogr/issues/91 + id: 461455149 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/91/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjE0NTUxNDk= + number: 91 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: ' Page `/fork/phracek/rpms/rebase-helper/pull-request/new` not + found when calling Pagure API' + updated_at: '2019-09-12T11:17:20Z' + url: https://api.github.com/repos/packit/ogr/issues/91 + user: + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos + site_admin: false + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions + type: User + url: https://api.github.com/users/phracek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "see log: \r\nhttps://softwarefactory-project.io/logs/13/513/8c3c6370096e5834c90dc5ff06e47cf9f3443cde/check/tests-pip-deps/cd79e16/job-output.txt.gz\r\ + \nwith git master it works, but pypi and rpm version of ogr fails with\ + \ errors like:\r\n**TypeError: __init__() got an unexpected keyword\ + \ argument 'exception'**\r\n\r\n```\r\n self = .ClassWithPersistentStorage\ + \ object at 0x7fa913e99450>\r\n2019-09-06 07:32:25.448747 | test-node\ + \ | url = 'https://src.fedoraproject.org//api/0/rpms/python-ogr/git/branches'\r\ + \n2019-09-06 07:32:25.448840 | test-node | method = 'GET', params =\ + \ None, data = None, header = None\r\n2019-09-06 07:32:25.448859 | test-node\ + \ |\r\n2019-09-06 07:32:25.448868 | test-node | def get_raw_request(\r\ + \n2019-09-06 07:32:25.448909 | test-node | self, url, method=\"\ + GET\", params=None, data=None, header=None\r\n2019-09-06 07:32:25.448924\ + \ | test-node | ):\r\n2019-09-06 07:32:25.448949 | test-node | \ + \ keys_internal = [method, url, params, data]\r\n2019-09-06 07:32:25.448977\ + \ | test-node | if self.persistent_storage.is_write_mode:\r\n\ + 2019-09-06 07:32:25.449005 | test-node | output = super().get_raw_request(\r\ + \n2019-09-06 07:32:25.449038 | test-node | url, method=method,\ + \ params=params, data=data, header=header\r\n2019-09-06 07:32:25.449066\ + \ | test-node | )\r\n2019-09-06 07:32:25.449078 | test-node\ + \ | self.persistent_storage.store(\r\n2019-09-06 07:32:25.449120\ + \ | test-node | keys=keys_internal, values=output.to_json_format()\r\ + \n2019-09-06 07:32:25.449148 | test-node | )\r\n2019-09-06\ + \ 07:32:25.449159 | test-node | else:\r\n2019-09-06 07:32:25.449190\ + \ | test-node | output_dict = self.persistent_storage.read(keys=keys_internal)\r\ + \n2019-09-06 07:32:25.449242 | test-node | > output = RequestResponse(**output_dict)\r\ + \n2019-09-06 07:32:25.449276 | test-node | E TypeError: __init__()\ + \ got an unexpected keyword argument 'exception'\r\n```" + closed_at: '2019-09-12T11:08:06Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/177/comments + created_at: '2019-09-06T07:58:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/177/events + html_url: https://github.com/packit/ogr/issues/177 + id: 490185857 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/177/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTAxODU4NTc= + number: 177 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: adding storing exception to RecordRequest class in utils caused + regression + updated_at: '2019-09-12T11:08:06Z' + url: https://api.github.com/repos/packit/ogr/issues/177 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: When new people come to the OGR repository, I think it is worth + to have a simple example on the top part of README.md demonstrating + the usage. WDYT? + closed_at: '2019-09-12T10:57:56Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/195/comments + created_at: '2019-09-12T09:33:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/195/events + html_url: https://github.com/packit/ogr/pull/195 + id: 492693187 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/195/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE2ODE1NjE1 + number: 195 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/195.diff + html_url: https://github.com/packit/ogr/pull/195 + patch_url: https://github.com/packit/ogr/pull/195.patch + url: https://api.github.com/repos/packit/ogr/pulls/195 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Quickstart example + updated_at: '2019-09-12T10:57:56Z' + url: https://api.github.com/repos/packit/ogr/issues/195 + user: + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 + events_url: https://api.github.com/users/rpitonak/events{/privacy} + followers_url: https://api.github.com/users/rpitonak/followers + following_url: https://api.github.com/users/rpitonak/following{/other_user} + gists_url: https://api.github.com/users/rpitonak/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/rpitonak + id: 26160778 + login: rpitonak + node_id: MDQ6VXNlcjI2MTYwNzc4 + organizations_url: https://api.github.com/users/rpitonak/orgs + received_events_url: https://api.github.com/users/rpitonak/received_events + repos_url: https://api.github.com/users/rpitonak/repos + site_admin: false + starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/rpitonak/subscriptions + type: User + url: https://api.github.com/users/rpitonak + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Fixes #168 \r\nTest for creating fork succeeded first time and\ + \ since that it has been failing and I can't find out the reason." + closed_at: '2019-09-12T10:04:42Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/192/comments + created_at: '2019-09-11T12:39:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/192/events + html_url: https://github.com/packit/ogr/pull/192 + id: 492212114 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/192/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE2NDI3NjE1 + number: 192 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/192.diff + html_url: https://github.com/packit/ogr/pull/192 + patch_url: https://github.com/packit/ogr/pull/192.patch + url: https://api.github.com/repos/packit/ogr/pulls/192 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Forking methods + updated_at: '2019-09-12T10:04:42Z' + url: https://api.github.com/repos/packit/ogr/issues/192 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "```python\r\n @property\r\n def is_fork(self) -> bool:\r\n\ + \ raise NotImplementedError()\r\n\r\n @property\r\n def\ + \ parent(self) -> Optional[\"GitlabProject\"]:\r\n raise NotImplementedError()\r\ + \n\r\n def is_forked(self) -> bool:\r\n raise NotImplementedError()\r\ + \n\r\n def get_fork(self, create: bool = True) -> Optional[\"GitlabProject\"\ + ]:\r\n raise NotImplementedError()\r\n\r\n```\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\ + \ -> Fork a project\r\n- An old snippet of code that may be helpful:\r\ + \n\r\n```python\r\n @staticmethod\r\n def is_fork_of(user_repo,\ + \ target_repo):\r\n \"\"\" is provided repo fork of the {parent_repo}/?\ + \ \"\"\"\r\n return user_repo.forked_from_project[\"id\"] ==\ + \ target_repo.id\r\n\r\n def fork(self, target_repo):\r\n \ + \ target_repo_org, target_repo_name = target_repo.split(\"/\", 1)\r\n\ + \r\n target_repo_gl = self.gitlab_instance.projects.get(target_repo)\r\ + \n\r\n try:\r\n # is it already forked?\r\n \ + \ user_repo = self.gitlab_instance.projects.get(\r\n \ + \ \"{}/{}\".format(self.user.get_username(), target_repo_name)\r\ + \n )\r\n if not self.is_fork_of(user_repo, target_repo_gl):\r\ + \n raise RuntimeError(\r\n \"repo\ + \ %s is not a fork of %s\" % (user_repo, target_repo_gl)\r\n \ + \ )\r\n except Exception:\r\n # nope\r\n \ + \ user_repo = None\r\n\r\n if self.user.get_username()\ + \ == target_repo_org:\r\n # user wants to fork its own repo;\ + \ let's just set up remotes 'n stuff\r\n if not user_repo:\r\ + \n raise RuntimeError(\"repo %s not found\" % target_repo_name)\r\ + \n clone_repo_and_cd_inside(\r\n user_repo.path,\ + \ user_repo.attributes[\"ssh_url_to_repo\"], target_repo_org\r\n \ + \ )\r\n else:\r\n user_repo = user_repo or\ + \ self._fork_gracefully(target_repo_gl)\r\n\r\n clone_repo_and_cd_inside(\r\ + \n user_repo.path, user_repo.attributes[\"ssh_url_to_repo\"\ + ], target_repo_org\r\n )\r\n\r\n set_upstream_remote(\r\ + \n clone_url=target_repo_gl.attributes[\"http_url_to_repo\"\ + ],\r\n ssh_url=target_repo_gl.attributes[\"ssh_url_to_repo\"\ + ],\r\n pull_merge_name=\"merge-requests\",\r\n \ + \ )\r\n set_origin_remote(\r\n user_repo.attributes[\"\ + ssh_url_to_repo\"], pull_merge_name=\"merge-requests\"\r\n )\r\ + \n fetch_all()\r\n\r\n @staticmethod\r\n def _fork_gracefully(target_repo):\r\ + \n \"\"\" fork if not forked, return forked repo \"\"\"\r\n \ + \ try:\r\n logger.info(\"forking repo %s\", target_repo)\r\ + \n fork = target_repo.forks.create({})\r\n except\ + \ gitlab.GitlabCreateError:\r\n logger.error(\"repo %s cannot\ + \ be forked\" % target_repo)\r\n raise RuntimeError(\"repo\ + \ %s not found\" % target_repo)\r\n\r\n return fork\r\n```" + closed_at: '2019-09-12T10:04:41Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/168/comments + created_at: '2019-09-06T07:20:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/168/events + html_url: https://github.com/packit/ogr/issues/168 + id: 490171633 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/168/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTAxNzE2MzM= + number: 168 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement GitLab methods for forking + updated_at: '2019-09-12T10:04:41Z' + url: https://api.github.com/repos/packit/ogr/issues/168 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #173 + fix of get_pr_list and get_issue_list' + closed_at: '2019-09-12T08:58:35Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/191/comments + created_at: '2019-09-11T12:07:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/191/events + html_url: https://github.com/packit/ogr/pull/191 + id: 492196881 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/191/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE2NDE1MTM4 + number: 191 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/191.diff + html_url: https://github.com/packit/ogr/pull/191 + patch_url: https://github.com/packit/ogr/pull/191.patch + url: https://api.github.com/repos/packit/ogr/pulls/191 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: pr close, merge methods + updated_at: '2019-09-12T08:58:35Z' + url: https://api.github.com/repos/packit/ogr/issues/191 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "```python\r\n def pr_close(self, pr_id: int) -> \"PullRequest\"\ + :\r\n pass\r\n\r\n def pr_merge(self, pr_id: int) -> \"PullRequest\"\ + :\r\n pass\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ + \n- https://docs.gitlab.com/ee/api/merge_requests.html" + closed_at: '2019-09-12T08:58:35Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/173/comments + created_at: '2019-09-06T07:23:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/173/events + html_url: https://github.com/packit/ogr/issues/173 + id: 490172801 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/173/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTAxNzI4MDE= + number: 173 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement GitLab methods for pr close/merge + updated_at: '2019-09-12T08:58:35Z' + url: https://api.github.com/repos/packit/ogr/issues/173 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Implement service.project_create for GitLab.\r\n\r\n\r\n(reason:\ + \ I would like to use OGR in my [figitool](https://gitlab.fi.muni.cz/xlachma1/figitool)\ + \ and this functionality is missing.)" + closed_at: '2019-09-12T08:09:14Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/189/comments + created_at: '2019-09-11T07:58:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/189/events + html_url: https://github.com/packit/ogr/pull/189 + id: 492077676 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/189/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE2MzIwMzE0 + number: 189 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/189.diff + html_url: https://github.com/packit/ogr/pull/189 + patch_url: https://github.com/packit/ogr/pull/189.patch + url: https://api.github.com/repos/packit/ogr/pulls/189 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Creating Gitlab projects + updated_at: '2019-09-12T08:09:18Z' + url: https://api.github.com/repos/packit/ogr/issues/189 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* changed sha\n* tests on\ + \ new repo\n* test fixed\n* raising exception\n* method get_sha_from_tag\n\ + * gitlab: project info methods\n* note added\n* method get_latest_release\n\ + * Fix some typing issues in factory.py\n* Not overwrite the gitlab token\ + \ when set on read-mode\n* Support GitlabAuthenticationError in response\ + \ files as well\n* fix backward compafibility for tests\n* Test creating\ + \ Pagure PRs and fix some username problems in Pagure tests\n* Creating\ + \ Pagure PRs calls upstream project url (not the url of fork)\n* Return\ + \ Gitlab specific release in get_latest_release in GitlabProject\n*\ + \ Remove create_from_remote_url since it is not used anywhere\n* Remove\ + \ unused+unrelated code from GitlabService class\n* Fix the naming issues\ + \ in GitLab API and add the skeleton of the non-implemented methods\n\ + * Fix API for update_pr_info\n* Update error msg with missing github-app\ + \ key as @TomasTomecek suggested\n* Improve handling of private-key\ + \ in github-app tests\n* Fix imports of the GitHub exceptions\n* Add\ + \ cryptography to dependencies to be able to authenticate as a github\ + \ app\n* Add test for github-app authentication\n* Add github_app_private_key_path\ + \ to GithubService\n* Document the `get_instances_from_dict`\n* Add\ + \ test for github app loading from dict\n* Improve __str__ for services\n\ + * Add method for loading services from dictionary\n* Add more gitlab\ + \ tests for service mapping\n* Remove repo specific methods from GitlabService\n\ + * Make the creation of gitlab objects lazy\n* Add tests for gitlab service-mapping\n\ + * Make the pagure service mapping more general\n* Add gitlab to service\ + \ mapping\n* Use non-None token for gitlab tests\n* tag tests added\n\ + * Save GitlabHttpError to response file\n* test responses added, test_nonexisting_file\ + \ fails\n* Fix loading of gitlab response files\n* Save responses for\ + \ gitlab\n* WIP: GitlabRelease, GitlabProject, GitlabUser added\n* WIP:\ + \ functions for gitlab\n* Run zuul tests both on pip and rpm\n* Remove\ + \ Jenkinsfile\n* [CONTRIBUTING.md] CentOS CI -> Zuul\n* pagure: use\ + \ web url in issue\n* [README.md] Zuul badge\n* removed Optional\n*\ + \ add suggested changes\n* edit_release as method, get_release changed\n\ + * add method edit_release\n* Rename get_pr_commits to get_all_pr_commits\n\ + * run tests on one repository\n* Better description\n* Add get_pr_commits\ + \ into abstract.py\n* Remove `assert commits` and check only first and\ + \ last commit\n* Update ogr/services/github.py\n* Add fnc for getting\ + \ all commits for PR\n* PersistenStorageException -> PersistentStorageException\n\ + * run pre-commit\n* git cherry-pick of PR#129 and make it works\n* Update\ + \ pagure.py\n* Update github.py\n* packit.yaml: propose_downstream:\ + \ s/_/-/\n\n\nYou can change it by editing `CHANGELOG.md` in the root\ + \ of this repository and pushing to `0.7.0-release` branch before merging\ + \ this PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-09-12T07:46:13Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/190/comments + created_at: '2019-09-11T07:59:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/190/events + html_url: https://github.com/packit/ogr/pull/190 + id: 492078119 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/190/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE2MzIwNjY1 + number: 190 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/190.diff + html_url: https://github.com/packit/ogr/pull/190 + patch_url: https://github.com/packit/ogr/pull/190.patch + url: https://api.github.com/repos/packit/ogr/pulls/190 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.7.0 release + updated_at: '2019-09-12T07:49:01Z' + url: https://api.github.com/repos/packit/ogr/issues/190 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-09-11T07:59:58Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/188/comments + created_at: '2019-09-11T07:57:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/188/events + html_url: https://github.com/packit/ogr/issues/188 + id: 492077048 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/188/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTIwNzcwNDg= + number: 188 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-09-11T07:59:58Z' + url: https://api.github.com/repos/packit/ogr/issues/188 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: I accidently deleted the testing repo, so I have regenerated the + tests on new repo [https://gitlab.com/packit-service/ogr-tests](url) + closed_at: '2019-09-11T06:44:23Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/187/comments + created_at: '2019-09-10T14:21:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/187/events + html_url: https://github.com/packit/ogr/pull/187 + id: 491705182 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/187/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE2MDIwMzM5 + number: 187 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/187.diff + html_url: https://github.com/packit/ogr/pull/187 + patch_url: https://github.com/packit/ogr/pull/187.patch + url: https://api.github.com/repos/packit/ogr/pulls/187 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: tests on new repo + updated_at: '2019-09-11T06:44:23Z' + url: https://api.github.com/repos/packit/ogr/issues/187 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #170 ' + closed_at: '2019-09-10T14:30:35Z' + comments: 24 + comments_url: https://api.github.com/repos/packit/ogr/issues/186/comments + created_at: '2019-09-10T10:45:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/186/events + html_url: https://github.com/packit/ogr/pull/186 + id: 491594645 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/186/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTMwNzcy + number: 186 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/186.diff + html_url: https://github.com/packit/ogr/pull/186 + patch_url: https://github.com/packit/ogr/pull/186.patch + url: https://api.github.com/repos/packit/ogr/pulls/186 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: method get_sha_from_tag + updated_at: '2019-09-10T14:30:35Z' + url: https://api.github.com/repos/packit/ogr/issues/186 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "```python\r\n def get_sha_from_tag(self, tag_name: str) -> str:\r\ + \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html" + closed_at: '2019-09-10T14:30:35Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/170/comments + created_at: '2019-09-06T07:21:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/170/events + html_url: https://github.com/packit/ogr/issues/170 + id: 490171969 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/170/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTAxNzE5Njk= + number: 170 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'Implement GitLab method: get_sha_from_tag' + updated_at: '2019-09-10T14:30:35Z' + url: https://api.github.com/repos/packit/ogr/issues/170 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #175 ' + closed_at: '2019-09-10T11:56:53Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/184/comments + created_at: '2019-09-10T10:04:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/184/events + html_url: https://github.com/packit/ogr/pull/184 + id: 491575224 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/184/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTE0OTk4 + number: 184 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/184.diff + html_url: https://github.com/packit/ogr/pull/184 + patch_url: https://github.com/packit/ogr/pull/184.patch + url: https://api.github.com/repos/packit/ogr/pulls/184 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'gitlab: project info methods' + updated_at: '2019-09-10T11:56:53Z' + url: https://api.github.com/repos/packit/ogr/issues/184 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "```python\r\n def get_description(self) -> str:\r\n #\ + \ Probably something like this:\r\n # return self.gitlab_repo.attributes[\"\ + description\"]\r\n raise NotImplementedError()\r\n\r\n def\ + \ get_git_urls(self) -> Dict[str, str]:\r\n pass\r\n```\r\n\r\ + \n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \n- https://docs.gitlab.com/ce/api/projects.html" + closed_at: '2019-09-10T11:56:53Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/175/comments + created_at: '2019-09-06T07:24:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/175/events + html_url: https://github.com/packit/ogr/issues/175 + id: 490173038 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/175/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTAxNzMwMzg= + number: 175 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement GitLab methods for project info + updated_at: '2019-09-10T11:56:53Z' + url: https://api.github.com/repos/packit/ogr/issues/175 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #176 ' + closed_at: '2019-09-10T11:44:36Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/185/comments + created_at: '2019-09-10T10:10:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/185/events + html_url: https://github.com/packit/ogr/pull/185 + id: 491578586 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/185/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE1OTE3NzMx + number: 185 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/185.diff + html_url: https://github.com/packit/ogr/pull/185 + patch_url: https://github.com/packit/ogr/pull/185.patch + url: https://api.github.com/repos/packit/ogr/pulls/185 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: method get_latest_release + updated_at: '2019-09-10T11:44:36Z' + url: https://api.github.com/repos/packit/ogr/issues/185 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "```python\r\n def get_latest_release(self) -> GitlabRelease:\r\ + \n raise NotImplementedError()\r\n```\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-releases\r\ + \n- https://docs.gitlab.com/ee/api/releases/" + closed_at: '2019-09-10T11:44:35Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/176/comments + created_at: '2019-09-06T07:24:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/176/events + html_url: https://github.com/packit/ogr/issues/176 + id: 490173186 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/176/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0OTAxNzMxODY= + number: 176 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement GitLab method for latest release + updated_at: '2019-09-10T11:44:35Z' + url: https://api.github.com/repos/packit/ogr/issues/176 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Fix some typing issues in factory.py.\r\n\r\nReason: typing problems\ + \ in the packit code on top of it." + closed_at: '2019-09-10T11:00:14Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/183/comments + created_at: '2019-09-10T09:22:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/183/events + html_url: https://github.com/packit/ogr/pull/183 + id: 491553190 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/183/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE1ODk3MjEz + number: 183 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/183.diff + html_url: https://github.com/packit/ogr/pull/183 + patch_url: https://github.com/packit/ogr/pull/183.patch + url: https://api.github.com/repos/packit/ogr/pulls/183 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix typing in factory + updated_at: '2019-09-10T11:21:08Z' + url: https://api.github.com/repos/packit/ogr/issues/183 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Not overwrite the gitlab token when set on read-mode. + + - Support GitlabAuthenticationError in response files as well.' + closed_at: '2019-09-10T09:06:12Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/182/comments + created_at: '2019-09-09T10:59:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/182/events + html_url: https://github.com/packit/ogr/pull/182 + id: 491026784 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/182/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE1NDc0NDYw + number: 182 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/182.diff + html_url: https://github.com/packit/ogr/pull/182 + patch_url: https://github.com/packit/ogr/pull/182.patch + url: https://api.github.com/repos/packit/ogr/pulls/182 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Support GitlabAuthenticationError + updated_at: '2019-09-10T09:07:59Z' + url: https://api.github.com/repos/packit/ogr/issues/182 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "fix the issue causing that older ogr does not know what is exception\ + \ in init.\r\ndo not store values what are empty" + closed_at: '2019-09-09T10:52:04Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/179/comments + created_at: '2019-09-06T12:29:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/179/events + html_url: https://github.com/packit/ogr/pull/179 + id: 490300829 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/179/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE0OTMzMDEy + number: 179 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/179.diff + html_url: https://github.com/packit/ogr/pull/179 + patch_url: https://github.com/packit/ogr/pull/179.patch + url: https://api.github.com/repos/packit/ogr/pulls/179 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: fix backward compafibility for tests + updated_at: '2019-09-09T14:13:28Z' + url: https://api.github.com/repos/packit/ogr/issues/179 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Test creating Pagure PRs and fix some username problems in Pagure + tests. + + - Creating Pagure PRs calls upstream project url (not the url of fork). + + + Fixes: #161' + closed_at: '2019-09-09T08:16:38Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/180/comments + created_at: '2019-09-06T19:01:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/180/events + html_url: https://github.com/packit/ogr/pull/180 + id: 490477438 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + labels_url: https://api.github.com/repos/packit/ogr/issues/180/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE1MDc2NjUy + number: 180 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/180.diff + html_url: https://github.com/packit/ogr/pull/180 + patch_url: https://github.com/packit/ogr/pull/180.patch + url: https://api.github.com/repos/packit/ogr/pulls/180 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix creating Pagure PRs + updated_at: '2019-09-09T08:16:44Z' + url: https://api.github.com/repos/packit/ogr/issues/180 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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.556413 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:15 GMT + ETag: W/"6a934182ddf78ca7e382a43ea92bdf44e164d2c153c7d874438a5deaccd7fbcb" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78F6BE:1334D48:6075DCA6 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4256' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '744' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=15: + - metadata: + latency: 1.1057512760162354 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "https://src.stg.fedoraproject.org/api/0/#pull-requests\r\n\r\n\ + we just need to use the new fields such as repo_from which were added\ + \ to the API in order to create PRs from forks to parent repos.\r\n\r\ + \nfollow up to https://github.com/packit-service/packit/pull/496\r\n\ + blocks https://github.com/packit-service/packit.dev/pull/42\r\n\r\n\ + likely packit will need some code changes to support this" + closed_at: '2019-09-09T08:16:38Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/161/comments + created_at: '2019-08-29T09:31:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/161/events + html_url: https://github.com/packit/ogr/issues/161 + id: 486845482 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9e231 + default: false + description: High priority. + id: 1432779316 + name: high-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzE2 + url: https://api.github.com/repos/packit/ogr/labels/high-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/161/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0ODY4NDU0ODI= + number: 161 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'pagure: support new way of creating PRs from forks' + updated_at: '2019-09-09T08:16:38Z' + url: https://api.github.com/repos/packit/ogr/issues/161 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Fix the naming issues in GitLab API and add the skeleton of the + non-implemented methods. + + - Fix API for update_pr_info.' + closed_at: '2019-09-06T08:20:46Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/167/comments + created_at: '2019-09-06T06:33:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/167/events + html_url: https://github.com/packit/ogr/pull/167 + id: 490155512 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/167/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzE0ODE1OTI3 + number: 167 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/167.diff + html_url: https://github.com/packit/ogr/pull/167 + patch_url: https://github.com/packit/ogr/pull/167.patch + url: https://api.github.com/repos/packit/ogr/pulls/167 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix the inconsistences in the GitLab API + updated_at: '2019-09-06T08:20:50Z' + url: https://api.github.com/repos/packit/ogr/issues/167 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Fixes #162' + closed_at: '2019-09-05T09:00:25Z' + comments: 31 + comments_url: https://api.github.com/repos/packit/ogr/issues/163/comments + created_at: '2019-09-02T12:37:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/163/events + html_url: https://github.com/packit/ogr/pull/163 + id: 488169691 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/163/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzEzMjQ4MzIz + number: 163 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/163.diff + html_url: https://github.com/packit/ogr/pull/163 + patch_url: https://github.com/packit/ogr/pull/163.patch + url: https://api.github.com/repos/packit/ogr/pulls/163 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Be able to set private key path for GitHub app + updated_at: '2019-09-05T09:00:29Z' + url: https://api.github.com/repos/packit/ogr/issues/163 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: MEMBER + body: "When authenticating as a GitHub-app we currently need a private_key\ + \ as a string.\r\n\r\nIt would be very convenient (and very usefull\ + \ when having #160 ) to have another attribute for the private-key path.\r\ + \n\r\nThe code can be moved/stolen [from packit](https://github.com/packit-service/packit/blob/master/packit/upstream.py#L88).\r\ + \n" + closed_at: '2019-09-05T09:00:25Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/162/comments + created_at: '2019-09-02T09:12:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/162/events + html_url: https://github.com/packit/ogr/issues/162 + id: 488085461 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/162/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0ODgwODU0NjE= + number: 162 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Be able to use path to private_key for GitHub app authentication + updated_at: '2019-09-05T09:00:25Z' + url: https://api.github.com/repos/packit/ogr/issues/162 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Add method for loading services from dictionary. + + - Tests included. + + + Fixes: #159' + closed_at: '2019-09-02T10:30:19Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/160/comments + created_at: '2019-08-21T08:47:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/160/events + html_url: https://github.com/packit/ogr/pull/160 + id: 483284044 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/160/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA5Mzg5NjA4 + number: 160 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/160.diff + html_url: https://github.com/packit/ogr/pull/160 + patch_url: https://github.com/packit/ogr/pull/160.patch + url: https://api.github.com/repos/packit/ogr/pulls/160 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Loading services from dict + updated_at: '2019-09-02T10:47:59Z' + url: https://api.github.com/repos/packit/ogr/issues/160 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: MEMBER + body: "In [packit](https://github.com/packit-service/packit) and [upsint](https://github.com/packit-service/upsint/),\ + \ we need to load authentication for services from files.\r\n\r\nIt\ + \ would be nice to have a method for loading instances from `dict` so\ + \ we can use it from multiple projects.\r\n\r\n```python\r\n>>> from\ + \ ogr import get_instances_from_dict\r\n>>> get_instances_from_dict({\r\ + \n... \"github.com\": {\"token\": \"abcd\"},\r\n... \"pagure.io\"\ + : {\"token\": \"defg\"},\r\n... \"src.fedoraproject.org\": {\"token\"\ + : \"asdasdasda\"},\r\n... })\r\n[\r\n GithubService(token=\"abcd\"\ + ),\r\n PagureService(instance_url=\"https://pagure.io\", token=\"\ + defg\"),\r\n PagureService(instance_url=\"https://src.fedoraproject.org\"\ + , token=\"asdasdasda\"),\r\n]\r\n```\r\n\r\n\r\n" + closed_at: '2019-09-02T10:30:19Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/159/comments + created_at: '2019-08-20T12:11:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/159/events + html_url: https://github.com/packit/ogr/issues/159 + id: 482822700 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/159/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0ODI4MjI3MDA= + number: 159 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add method for loading instances from dict + updated_at: '2019-09-02T10:30:19Z' + url: https://api.github.com/repos/packit/ogr/issues/159 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Remove repo specific methods from GitlabService.\r\n- Make the\ + \ creation of gitlab objects lazy.\r\n- Add tests for gitlab service-mapping.\r\ + \n- Make the pagure service mapping more general.\r\n- Add gitlab to\ + \ service mapping." + closed_at: '2019-08-20T11:55:31Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/156/comments + created_at: '2019-08-15T14:37:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/156/events + html_url: https://github.com/packit/ogr/pull/156 + id: 481182139 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + labels_url: https://api.github.com/repos/packit/ogr/issues/156/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA3NzMxMDE1 + number: 156 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/156.diff + html_url: https://github.com/packit/ogr/pull/156 + patch_url: https://github.com/packit/ogr/pull/156.patch + url: https://api.github.com/repos/packit/ogr/pulls/156 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add gitlab to service mapping + updated_at: '2019-08-20T11:55:35Z' + url: https://api.github.com/repos/packit/ogr/issues/156 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Fixes #125 \r\nTests fail because test responses can't be saved." + closed_at: '2019-08-15T14:34:37Z' + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/150/comments + created_at: '2019-08-13T13:16:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/150/events + html_url: https://github.com/packit/ogr/pull/150 + id: 480151584 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + labels_url: https://api.github.com/repos/packit/ogr/issues/150/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA2OTAyMTg4 + number: 150 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/150.diff + html_url: https://github.com/packit/ogr/pull/150 + patch_url: https://github.com/packit/ogr/pull/150.patch + url: https://api.github.com/repos/packit/ogr/pulls/150 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Functions for gitlab + updated_at: '2019-08-20T07:19:51Z' + url: https://api.github.com/repos/packit/ogr/issues/150 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "It would be nice to finally start implementing the GitLab support.\r\ + \n\r\nWe can probably combine the code from GitHub and the already present\ + \ code.\r\n\r\nThe documentation can be found here: https://python-gitlab.readthedocs.io/en/stable/" + closed_at: '2019-08-15T14:34:37Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/125/comments + created_at: '2019-07-18T07:17:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/125/events + html_url: https://github.com/packit/ogr/issues/125 + id: 469608368 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/125/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Njk2MDgzNjg= + number: 125 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: GitLab support + updated_at: '2019-08-15T14:34:37Z' + url: https://api.github.com/repos/packit/ogr/issues/125 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Run zuul tests both on pip and rpm.' + closed_at: '2019-08-15T14:20:14Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/155/comments + created_at: '2019-08-15T09:27:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/155/events + html_url: https://github.com/packit/ogr/pull/155 + id: 481069480 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/155/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA3NjQwNzUy + number: 155 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/155.diff + html_url: https://github.com/packit/ogr/pull/155 + patch_url: https://github.com/packit/ogr/pull/155.patch + url: https://api.github.com/repos/packit/ogr/pulls/155 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Run zuul for pip and rpm + updated_at: '2019-08-15T14:20:18Z' + url: https://api.github.com/repos/packit/ogr/issues/155 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Don't use the api url when populating the data for an issue. Use\r\ + \nthe web url so that it can be used in a web browser.\r\n\r\nFixes\ + \ #146" + closed_at: '2019-08-15T07:11:16Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/151/comments + created_at: '2019-08-13T18:06:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/151/events + html_url: https://github.com/packit/ogr/pull/151 + id: 480292368 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/151/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA3MDE3Mjky + number: 151 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/151.diff + html_url: https://github.com/packit/ogr/pull/151 + patch_url: https://github.com/packit/ogr/pull/151.patch + url: https://api.github.com/repos/packit/ogr/pulls/151 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'pagure: use web url in issue' + updated_at: '2019-08-15T13:23:23Z' + url: https://api.github.com/repos/packit/ogr/issues/151 + user: + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 + events_url: https://api.github.com/users/dustymabe/events{/privacy} + followers_url: https://api.github.com/users/dustymabe/followers + following_url: https://api.github.com/users/dustymabe/following{/other_user} + gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dustymabe + id: 4530030 + login: dustymabe + node_id: MDQ6VXNlcjQ1MzAwMzA= + organizations_url: https://api.github.com/users/dustymabe/orgs + received_events_url: https://api.github.com/users/dustymabe/received_events + repos_url: https://api.github.com/users/dustymabe/repos + site_admin: false + starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + type: User + url: https://api.github.com/users/dustymabe + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Fixes #123 ' + closed_at: '2019-08-15T08:12:06Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/154/comments + created_at: '2019-08-14T15:25:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/154/events + html_url: https://github.com/packit/ogr/pull/154 + id: 480744033 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/154/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA3MzgxNTAw + number: 154 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/154.diff + html_url: https://github.com/packit/ogr/pull/154 + patch_url: https://github.com/packit/ogr/pull/154.patch + url: https://api.github.com/repos/packit/ogr/pulls/154 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Mention Zuul in CONTRIBUTING.md and remove Jenkinsfile + updated_at: '2019-08-15T08:12:10Z' + url: https://api.github.com/repos/packit/ogr/issues/154 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Can we please update the contribution guide. Ogr now uses new zuul\ + \ CI (or softwarefactory-project-zuul). \r\n\r\nI'm a little bit stuck\ + \ on what should I do to make my tests passing when PR is opened. On\ + \ my localhost, everything is working in the \"old way\" and tests are\ + \ passing." + closed_at: '2019-08-15T08:12:06Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/123/comments + created_at: '2019-07-17T12:03:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/123/events + html_url: https://github.com/packit/ogr/issues/123 + id: 469153115 + labels: + - color: 008672 + default: true + description: Extra attention is needed + id: 1160311265 + name: help wanted + node_id: MDU6TGFiZWwxMTYwMzExMjY1 + url: https://api.github.com/repos/packit/ogr/labels/help%20wanted + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/123/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjkxNTMxMTU= + number: 123 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: update contribution guide + updated_at: '2019-08-15T08:12:06Z' + url: https://api.github.com/repos/packit/ogr/issues/123 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Just checking to see what is the desired behavior. I create an\ + \ issue and then print the url from the created issue. I'd then like\ + \ to open that url in a web browser and have it go to the graphical\ + \ UI and not the API.\r\n\r\nFor example:\r\n\r\n```\r\n>>> i = project.create_issue('TestIssue',\ + \ 'foo bar baz')\r\n>>> print(i.url)\r\nhttps://pagure.io/api/0/dusty/failed-composes/issue/2244\r\ + \n```\r\n\r\nBut what I really want is the url to the web frontent.\ + \ So `i.url.replace('api/0/','')`. What is the intended behavior? " + closed_at: '2019-08-15T07:11:15Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/146/comments + created_at: '2019-08-09T21:53:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/146/events + html_url: https://github.com/packit/ogr/issues/146 + id: 479180564 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/146/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NzkxODA1NjQ= + number: 146 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: the url in an issue object is the API url + updated_at: '2019-08-15T07:11:15Z' + url: https://api.github.com/repos/packit/ogr/issues/146 + user: + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 + events_url: https://api.github.com/users/dustymabe/events{/privacy} + followers_url: https://api.github.com/users/dustymabe/followers + following_url: https://api.github.com/users/dustymabe/following{/other_user} + gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dustymabe + id: 4530030 + login: dustymabe + node_id: MDQ6VXNlcjQ1MzAwMzA= + organizations_url: https://api.github.com/users/dustymabe/orgs + received_events_url: https://api.github.com/users/dustymabe/received_events + repos_url: https://api.github.com/users/dustymabe/repos + site_admin: false + starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + type: User + url: https://api.github.com/users/dustymabe + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-08-14T12:37:27Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/153/comments + created_at: '2019-08-14T12:22:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/153/events + html_url: https://github.com/packit/ogr/pull/153 + id: 480648599 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/153/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA3MzA0MjMx + number: 153 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/153.diff + html_url: https://github.com/packit/ogr/pull/153 + patch_url: https://github.com/packit/ogr/pull/153.patch + url: https://api.github.com/repos/packit/ogr/pulls/153 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[README.md] Zuul badge' + updated_at: '2019-08-14T15:03:46Z' + url: https://api.github.com/repos/packit/ogr/issues/153 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #127 ' + closed_at: '2019-08-13T07:27:51Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/137/comments + created_at: '2019-07-25T10:41:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/137/events + html_url: https://github.com/packit/ogr/pull/137 + id: 472793637 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/137/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzAxMDg1MDUw + number: 137 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/137.diff + html_url: https://github.com/packit/ogr/pull/137 + patch_url: https://github.com/packit/ogr/pull/137.patch + url: https://api.github.com/repos/packit/ogr/pulls/137 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add method edit_release + updated_at: '2019-08-13T07:27:52Z' + url: https://api.github.com/repos/packit/ogr/issues/137 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: COLLABORATOR + body: Can we create a method for editing a release? We can use [this](https://pygithub.readthedocs.io/en/latest/github_objects/GitRelease.html#github.GitRelease.GitRelease.update_release) + for it. + closed_at: '2019-08-13T07:27:51Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/127/comments + created_at: '2019-07-18T08:08:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/127/events + html_url: https://github.com/packit/ogr/issues/127 + id: 469627928 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/127/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Njk2Mjc5Mjg= + number: 127 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: edit Github release + updated_at: '2019-08-13T07:27:51Z' + url: https://api.github.com/repos/packit/ogr/issues/127 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #124 ' + closed_at: '2019-08-13T07:11:39Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/136/comments + created_at: '2019-07-25T07:39:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/136/events + html_url: https://github.com/packit/ogr/pull/136 + id: 472712760 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/136/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzAxMDE5ODMy + number: 136 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/136.diff + html_url: https://github.com/packit/ogr/pull/136 + patch_url: https://github.com/packit/ogr/pull/136.patch + url: https://api.github.com/repos/packit/ogr/pulls/136 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: run tests on one repository + updated_at: '2019-08-13T07:11:39Z' + url: https://api.github.com/repos/packit/ogr/issues/136 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "- Try to have only one project for testing (ideally OGR itself\ + \ in case of GitHub).\r\n- Then it is easy for everyone to regenerate\ + \ the test responses." + closed_at: '2019-08-13T07:11:39Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/124/comments + created_at: '2019-07-18T07:15:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/124/events + html_url: https://github.com/packit/ogr/issues/124 + id: 469607471 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/124/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Njk2MDc0NzE= + number: 124 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Run tests on the OGR project itself + updated_at: '2019-08-13T07:11:39Z' + url: https://api.github.com/repos/packit/ogr/issues/124 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-08-10T14:24:33Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/148/comments + created_at: '2019-08-10T13:32:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/148/events + html_url: https://github.com/packit/ogr/pull/148 + id: 479267763 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/148/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA2MjEyNjI0 + number: 148 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/148.diff + html_url: https://github.com/packit/ogr/pull/148 + patch_url: https://github.com/packit/ogr/pull/148.patch + url: https://api.github.com/repos/packit/ogr/pulls/148 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: testing + updated_at: '2019-08-10T14:30:25Z' + url: https://api.github.com/repos/packit/ogr/issues/148 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ + \nBy PR #144 we add a bug. In `github.py` is mentioned https://github.com/packit-service/ogr/blob/master/ogr/services/github.py#L398\ + \ `get_all_pr_commits`.\r\n\r\nSuddenly it was not caught by PR review." + closed_at: '2019-08-09T14:48:39Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/145/comments + created_at: '2019-08-09T13:29:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/145/events + html_url: https://github.com/packit/ogr/pull/145 + id: 478987478 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/145/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA1OTkwNTI1 + number: 145 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/145.diff + html_url: https://github.com/packit/ogr/pull/145 + patch_url: https://github.com/packit/ogr/pull/145.patch + url: https://api.github.com/repos/packit/ogr/pulls/145 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Rename get_pr_commits to get_all_pr_commits in abstract.py + updated_at: '2019-08-09T14:48:39Z' + url: https://api.github.com/repos/packit/ogr/issues/145 + user: + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos + site_admin: false + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions + type: User + url: https://api.github.com/users/phracek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ + \nAdd function `get_pr_commits` into `abstract.py`." + closed_at: '2019-08-08T14:03:49Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/144/comments + created_at: '2019-08-08T12:17:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/144/events + html_url: https://github.com/packit/ogr/pull/144 + id: 478434638 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/144/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA1NTQ5MTcw + number: 144 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/144.diff + html_url: https://github.com/packit/ogr/pull/144 + patch_url: https://github.com/packit/ogr/pull/144.patch + url: https://api.github.com/repos/packit/ogr/pulls/144 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add get_pr_commits into abstract.py + updated_at: '2019-08-08T14:03:49Z' + url: https://api.github.com/repos/packit/ogr/issues/144 + user: + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos + site_admin: false + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions + type: User + url: https://api.github.com/users/phracek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Signed-off-by: Petr \"Stone\" Hracek \r\n\r\ + \nPull request adds a function for getting all commits for specific\ + \ PR.\r\nIt is useful when the user adds a comment into `packit-service`\ + \ like `/packit copr-build` and we would like to get especially the\ + \ latest commit from the PR.\r\n\r\nA real example:\r\nhttps://github.com/packit-service/packit-service/blob/master/packit_service/worker/github_handlers.py#L92\ + \ `pr_event/base_ref` cannot by `pr/9` but reference to the latest commit\ + \ for a pull request.\r\n\r\n- [x] Pull Request contains info about\ + \ SHA of the latest commit.\r\n- [x] tests are covered." + closed_at: '2019-08-08T10:10:30Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/140/comments + created_at: '2019-08-05T10:56:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/140/events + html_url: https://github.com/packit/ogr/pull/140 + id: 476794481 + labels: + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/140/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA0MjQ5MTY2 + number: 140 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/140.diff + html_url: https://github.com/packit/ogr/pull/140 + patch_url: https://github.com/packit/ogr/pull/140.patch + url: https://api.github.com/repos/packit/ogr/pulls/140 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Function for getting all commits from specific PR. + updated_at: '2019-08-08T10:10:30Z' + url: https://api.github.com/repos/packit/ogr/issues/140 + user: + avatar_url: https://avatars.githubusercontent.com/u/3416672?v=4 + events_url: https://api.github.com/users/phracek/events{/privacy} + followers_url: https://api.github.com/users/phracek/followers + following_url: https://api.github.com/users/phracek/following{/other_user} + gists_url: https://api.github.com/users/phracek/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/phracek + id: 3416672 + login: phracek + node_id: MDQ6VXNlcjM0MTY2NzI= + organizations_url: https://api.github.com/users/phracek/orgs + received_events_url: https://api.github.com/users/phracek/received_events + repos_url: https://api.github.com/users/phracek/repos + site_admin: false + starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/phracek/subscriptions + type: User + url: https://api.github.com/users/phracek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: I checked it's not used anywhere else. + closed_at: '2019-08-06T11:03:47Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/142/comments + created_at: '2019-08-06T10:20:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/142/events + html_url: https://github.com/packit/ogr/pull/142 + id: 477295662 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/142/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA0NjQ3NzYz + number: 142 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/142.diff + html_url: https://github.com/packit/ogr/pull/142 + patch_url: https://github.com/packit/ogr/pull/142.patch + url: https://api.github.com/repos/packit/ogr/pulls/142 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: PersistenStorageException -> PersistentStorageException + updated_at: '2019-08-06T11:03:50Z' + url: https://api.github.com/repos/packit/ogr/issues/142 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-08-06T07:30:48Z' + comments: 23 + comments_url: https://api.github.com/repos/packit/ogr/issues/129/comments + created_at: '2019-07-18T17:29:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/129/events + html_url: https://github.com/packit/ogr/pull/129 + id: 469897903 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/129/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk5MDE3NDM2 + number: 129 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/129.diff + html_url: https://github.com/packit/ogr/pull/129 + patch_url: https://github.com/packit/ogr/pull/129.patch + url: https://api.github.com/repos/packit/ogr/pulls/129 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'Fix Issue #126, implemented get_email' + updated_at: '2019-08-06T07:30:49Z' + url: https://api.github.com/repos/packit/ogr/issues/129 + user: + avatar_url: https://avatars.githubusercontent.com/u/38399871?v=4 + events_url: https://api.github.com/users/yzhang2907/events{/privacy} + followers_url: https://api.github.com/users/yzhang2907/followers + following_url: https://api.github.com/users/yzhang2907/following{/other_user} + gists_url: https://api.github.com/users/yzhang2907/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/yzhang2907 + id: 38399871 + login: yzhang2907 + node_id: MDQ6VXNlcjM4Mzk5ODcx + organizations_url: https://api.github.com/users/yzhang2907/orgs + received_events_url: https://api.github.com/users/yzhang2907/received_events + repos_url: https://api.github.com/users/yzhang2907/repos + site_admin: false + starred_url: https://api.github.com/users/yzhang2907/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/yzhang2907/subscriptions + type: User + url: https://api.github.com/users/yzhang2907 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "I made `git cherry-pick` of all @yzhang2907 commits in PR #129\ + \ which solves #126. I also found out that there is no current way how\ + \ to get the user's email from Pagure API and @yzhang2907 code wouldn't\ + \ work for Pagure. However, the code for Github is fine now. \r\n\r\n" + closed_at: '2019-08-06T07:27:43Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/141/comments + created_at: '2019-08-05T12:28:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/141/events + html_url: https://github.com/packit/ogr/pull/141 + id: 476831775 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/141/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzA0Mjc5NjI3 + number: 141 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/141.diff + html_url: https://github.com/packit/ogr/pull/141 + patch_url: https://github.com/packit/ogr/pull/141.patch + url: https://api.github.com/repos/packit/ogr/pulls/141 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: get-email + updated_at: '2019-08-06T07:27:43Z' + url: https://api.github.com/repos/packit/ogr/issues/141 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: https://packit.dev/docs/configuration/#supported-jobs + closed_at: '2019-07-30T10:59:00Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/138/comments + created_at: '2019-07-30T07:31:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/138/events + html_url: https://github.com/packit/ogr/pull/138 + id: 474421629 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/138/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzAyMzY2NTU5 + number: 138 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/138.diff + html_url: https://github.com/packit/ogr/pull/138 + patch_url: https://github.com/packit/ogr/pull/138.patch + url: https://api.github.com/repos/packit/ogr/pulls/138 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'packit.yaml: propose_downstream: s/_/-/' + updated_at: '2019-07-30T14:27:13Z' + url: https://api.github.com/repos/packit/ogr/issues/138 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* method _pr_from_github_object\ + \ differentiate closed and merged status\n* allow usage of PRStatus.merged\ + \ for github pull requests\n* add get_latest_release(), create Releases\ + \ class in test_github.py\n* Simplify imports\n* Split mocking and persistent_storage\n\ + * Fix github-app authentication\n* Rename env-var for mocking and allow\ + \ setting response file from RESPONSE_FILE env-var\n* Use PersistentObjectStorage\ + \ as a Singleton\n* Split mocking and read_only from mocking\n* Set\ + \ persistent storage only via class\n* Update mocking of GithubIntegration\ + \ from PyGithub\n* Improve mocking and add support for authentication\ + \ as a github-app\n* improve tests from previous commit\n* add labeling\ + \ github pull requests\n* mistake fixed\n* PRFlag changed back to PRStatus\n\ + * CommitStatus, PRStatus renamed to CommitFlag, PRFlag\n* use zuul for\ + \ realz now\n* test changed\n* method create release for github created\n\ + * add zuul config\n* bump base image to F30\n* add get_releses for Pagure\n\ + * unused functions removed\n* add get_releases/get_release into abstract.py\n\ + * add who_can_marge_pr and who_can_close_issue\n* delete obsolete comments\n\ + * fix review notes, add can_close_issue and can_merge_pr, remove who_can_close_issue\ + \ and who_can_merge_pr\n* fix mypy errors\n* get project's owners and\ + \ permissions of various users\n* split test_get_tag_from_tag_name\n\ + * value of git_tag in github Release set\n* link to GitTag from Release\ + \ added\n* collections.Hashable -> collections.abc.Hashable\n* Make\ + \ PersistentObjectStorage.__init__() backwards compatible\n* in get_file_content\ + \ catch only 404\n* subprocess.run fix\n* unify external command invocation\ + \ by subprocess.run\n* Add integration tests for factory and add more\ + \ unit tests\n* Add docstrings to factory and types to parsing\n* Add\ + \ get_project and get_service_class to global imports\n* Add tests for\ + \ parsing\n* Add tests for factory\n* Add __eq__ for projects and services\n\ + * Save more attributes about parsed url\n* [github] Be lazy with github_repo\ + \ object from pygithub\n* Fix __str__ after rebase\n* Add support for\ + \ services-mapping update\n* Import services in ogr/__init__.py to see\ + \ it in the mapping\n* Add method for creating projects from url\n*\ + \ Get project from url\n* fix code format issues\n* add tests, fix review\ + \ notes\n* creating/closing/commenting Pagure Issues\n* Fix formating\ + \ for __str__ methods\n* Changes requested to_str_method of classes\n\ + * Added instantiation-like syntax\n* Added __str__ method to classes\n\ + * Added __str__ method to classes\n\n\nYou can change it by editing\ + \ `CHANGELOG.md` in the root of this repository and pushing to `0.6.0-release`\ + \ branch before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2019-07-25T07:48:18Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/135/comments + created_at: '2019-07-23T11:55:07Z' + events_url: https://api.github.com/repos/packit/ogr/issues/135/events + html_url: https://github.com/packit/ogr/pull/135 + id: 471653597 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/135/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzAwMjYxMzU3 + number: 135 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/135.diff + html_url: https://github.com/packit/ogr/pull/135 + patch_url: https://github.com/packit/ogr/pull/135.patch + url: https://api.github.com/repos/packit/ogr/pulls/135 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.6.0 release + updated_at: '2019-07-25T07:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/135 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Based on our discussion in PR #128 this code makes consistency\ + \ in `get_pr_list(status)` between Pagure and Github. We can use `PRStatus.merged`\ + \ for Github now.\r\n\r\nCan we close #128 without merging? It was easier\ + \ to create a new branch since the code is completely different.\r\n" + closed_at: '2019-07-23T11:51:08Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/130/comments + created_at: '2019-07-21T13:19:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/130/events + html_url: https://github.com/packit/ogr/pull/130 + id: 470780887 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/130/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk5NjM1NzU2 + number: 130 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/130.diff + html_url: https://github.com/packit/ogr/pull/130 + patch_url: https://github.com/packit/ogr/pull/130.patch + url: https://api.github.com/repos/packit/ogr/pulls/130 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: allow usage of PRStatus.merged for Github get_pr_list(status) + updated_at: '2019-07-23T12:16:08Z' + url: https://api.github.com/repos/packit/ogr/issues/130 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "It's pretty common looking for the latest release only. It would\ + \ be useful to have a fast method for it without looking for some identifier\ + \ or getting all releases. Here it is. \r\n\r\nI also think that tests\ + \ for releases were in the incorrect class. Release tests which are\ + \ increasing deserve its own class. " + closed_at: '2019-07-23T11:01:50Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/131/comments + created_at: '2019-07-21T15:22:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/131/events + html_url: https://github.com/packit/ogr/pull/131 + id: 470793486 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/131/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk5NjQ0MzIy + number: 131 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/131.diff + html_url: https://github.com/packit/ogr/pull/131 + patch_url: https://github.com/packit/ogr/pull/131.patch + url: https://api.github.com/repos/packit/ogr/pulls/131 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add get_latest_release(), create Releases class in test_github.py + updated_at: '2019-07-23T12:12:58Z' + url: https://api.github.com/repos/packit/ogr/issues/131 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + _next: null + elapsed: 1.105086 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:19 GMT + ETag: W/"24c62d7d1a84946988d4c5947d41b3c9a4f71577924ec9bb33f6239421391d54" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78F799:1335031:6075DCAA + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4242' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '758' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=16: + - metadata: + latency: 0.46213579177856445 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-07-23T11:55:10Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/134/comments + created_at: '2019-07-23T11:52:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/134/events + html_url: https://github.com/packit/ogr/issues/134 + id: 471652493 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/134/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NzE2NTI0OTM= + number: 134 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-07-23T11:55:10Z' + url: https://api.github.com/repos/packit/ogr/issues/134 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "`PullRequest` class in abstract.py already has `status` field.\ + \ \r\n\r\nIn the case of Github, the set of values from API for this\ + \ field is `open`/`closed`/`all` and therefore there is missing value\ + \ `merged`. I added `is_merged` field into `PullRequest` class (since\ + \ it causes bugs in release-bot).\r\n\r\nI set the new `is_merged` field\ + \ also for Pagure." + closed_at: '2019-07-23T07:43:52Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/128/comments + created_at: '2019-07-18T10:12:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/128/events + html_url: https://github.com/packit/ogr/pull/128 + id: 469685206 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/128/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk4ODQ0ODYy + number: 128 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/128.diff + html_url: https://github.com/packit/ogr/pull/128 + patch_url: https://github.com/packit/ogr/pull/128.patch + url: https://api.github.com/repos/packit/ogr/pulls/128 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add is_merged field into PullRequest + updated_at: '2019-07-23T07:43:52Z' + url: https://api.github.com/repos/packit/ogr/issues/128 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Improve saving responses.\r\n - Use Singleton for `PersistentObjectStorage`.\r\ + \n - Enable saving responses by env-var (`RECORD_REQUESTS`).\r\n\ + - Add support for authentication as a github-app.\r\n\r\n\r\n-----\r\ + \n\r\n### Usage:\r\n- Set `RECORD_REQUESTS` env. variable to turn it\ + \ on and import services directly from ogr.\r\n - Use `from ogr import\ + \ PagureService`, not `from ogr.services.pagure import PagureService`.\r\ + \n - You can use the following code in the `__init__.py` to enable\ + \ mocking for whole module:\r\n ```python\r\n import os\r\n \ + \ os.environ[\"RECORD_REQUESTS\"] = \"TRUE\"\r\n ```\r\n- Set the\ + \ storage file name before the test:\r\n ```python\r\n PersistentObjectStorage().storage_file\ + \ = persistent_data_file\r\n ```\r\n - In OGR we are using file\ + \ per test -- we have the following code in the `setUp` in `TestCase`:\r\ + \n ```python\r\n test_name = self.id() or \"all\"\r\n \ + \ persistent_data_file = os.path.join(\r\n PERSISTENT_DATA_PREFIX,\ + \ f\"test_github_data_{test_name}.yaml\"\r\n )\r\n PersistentObjectStorage().storage_file\ + \ = persistent_data_file\r\n ```\r\n- You can use `PersistentObjectStorage().is_write_mode`\ + \ to check the mode.\r\n\r\n-----\r\n\r\nTODO:\r\n\r\n\r\n- [x] less\ + \ magic in ogr/__init__.py\r\n- ~~[ ] docs~~ will make a new PR\r\n\ + - ~~[ ] fix the test for github-app~~ I am having some problems with\ + \ python-crypto -- I can fix that later to not leave that here for so\ + \ long." + closed_at: '2019-07-23T07:42:32Z' + comments: 22 + comments_url: https://api.github.com/repos/packit/ogr/issues/113/comments + created_at: '2019-07-11T10:58:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/113/events + html_url: https://github.com/packit/ogr/pull/113 + id: 466821422 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/113/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2NTkxMzkx + number: 113 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/113.diff + html_url: https://github.com/packit/ogr/pull/113 + patch_url: https://github.com/packit/ogr/pull/113.patch + url: https://api.github.com/repos/packit/ogr/pulls/113 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Authentication as a github app and mocking upgrade + updated_at: '2019-07-23T07:42:46Z' + url: https://api.github.com/repos/packit/ogr/issues/113 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + author_association: MEMBER + body: "It would be useful to have a method for getting the owner(s) of\ + \ the project.\r\n\r\nIf it is possible to have multiple owners, create\ + \ `get_owners` and return list of strings." + closed_at: '2019-07-18T07:11:53Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/88/comments + created_at: '2019-06-26T07:44:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/88/events + html_url: https://github.com/packit/ogr/issues/88 + id: 460813032 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/88/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjA4MTMwMzI= + number: 88 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add get_owner/get_owners method to project classes + updated_at: '2019-07-18T07:11:53Z' + url: https://api.github.com/repos/packit/ogr/issues/88 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: Just copied labeling from issues and create the same for pull requests. + closed_at: '2019-07-18T05:03:03Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/122/comments + created_at: '2019-07-17T11:08:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/122/events + html_url: https://github.com/packit/ogr/pull/122 + id: 469130471 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/122/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk4NDE5MTM2 + number: 122 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/122.diff + html_url: https://github.com/packit/ogr/pull/122 + patch_url: https://github.com/packit/ogr/pull/122.patch + url: https://api.github.com/repos/packit/ogr/pulls/122 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add labeling github pull requests + updated_at: '2019-07-18T05:03:03Z' + url: https://api.github.com/repos/packit/ogr/issues/122 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #73 ' + closed_at: '2019-07-17T12:52:02Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/118/comments + created_at: '2019-07-15T08:21:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/118/events + html_url: https://github.com/packit/ogr/pull/118 + id: 467997614 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/118/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTE0NDAy + number: 118 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/118.diff + html_url: https://github.com/packit/ogr/pull/118 + patch_url: https://github.com/packit/ogr/pull/118.patch + url: https://api.github.com/repos/packit/ogr/pulls/118 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: CommitStatus, PRStatus renamed to CommitFlag, PRFlag + updated_at: '2019-07-17T12:52:02Z' + url: https://api.github.com/repos/packit/ogr/issues/118 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "What about changing `CommitStatus`/`PullRequestStatus` to `CommitFlag`/`PullRequestFlag`?\r\ + \n\r\n_Original discussion: https://github.com/packit-service/ogr/pull/71#pullrequestreview-240461635_" + closed_at: '2019-07-17T12:52:02Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/73/comments + created_at: '2019-05-29T07:10:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/73/events + html_url: https://github.com/packit/ogr/issues/73 + id: 449635096 + labels: + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/73/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDk2MzUwOTY= + number: 73 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Change "Status" to "Flag" in the class names + updated_at: '2019-07-17T12:52:02Z' + url: https://api.github.com/repos/packit/ogr/issues/73 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "EDIT (jpopelka): https://zuul-ci.org/docs/zuul/user/config.html#project\r\ + \nEDIT2 (jpopelka): http://post-office.corp.redhat.com/archives/user-cont/2019-July/msg00086.html" + closed_at: '2019-07-17T08:25:26Z' + comments: 28 + comments_url: https://api.github.com/repos/packit/ogr/issues/120/comments + created_at: '2019-07-15T11:53:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/120/events + html_url: https://github.com/packit/ogr/pull/120 + id: 468084884 + labels: + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/120/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTg1NDQ5 + number: 120 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/120.diff + html_url: https://github.com/packit/ogr/pull/120 + patch_url: https://github.com/packit/ogr/pull/120.patch + url: https://api.github.com/repos/packit/ogr/pulls/120 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add zuul config + updated_at: '2019-07-17T12:32:37Z' + url: https://api.github.com/repos/packit/ogr/issues/120 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #111 ' + closed_at: '2019-07-17T07:14:35Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/114/comments + created_at: '2019-07-11T14:09:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/114/events + html_url: https://github.com/packit/ogr/pull/114 + id: 466916976 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/114/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2NjcwNDMw + number: 114 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/114.diff + html_url: https://github.com/packit/ogr/pull/114 + patch_url: https://github.com/packit/ogr/pull/114.patch + url: https://api.github.com/repos/packit/ogr/pulls/114 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: method create release for github created + updated_at: '2019-07-17T07:14:36Z' + url: https://api.github.com/repos/packit/ogr/issues/114 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "For `Github` we can get the releases:\r\nhttps://github.com/packit-service/ogr/blob/master/ogr/services/github.py#L571\r\ + \n\r\nWe need to also create a new release from API.\r\n\r\n---\r\n\r\ + \nRelevant documentation:\r\nhttps://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_git_release" + closed_at: '2019-07-17T07:14:35Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/111/comments + created_at: '2019-07-11T08:20:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/111/events + html_url: https://github.com/packit/ogr/issues/111 + id: 466738216 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/111/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjY3MzgyMTY= + number: 111 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Allow creating releases + updated_at: '2019-07-17T07:14:35Z' + url: https://api.github.com/repos/packit/ogr/issues/111 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #103 ' + closed_at: '2019-07-16T13:56:45Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/119/comments + created_at: '2019-07-15T10:07:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/119/events + html_url: https://github.com/packit/ogr/pull/119 + id: 468043834 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/119/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTUxNjYx + number: 119 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/119.diff + html_url: https://github.com/packit/ogr/pull/119 + patch_url: https://github.com/packit/ogr/pull/119.patch + url: https://api.github.com/repos/packit/ogr/pulls/119 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: unused functions in utils.py removed + updated_at: '2019-07-16T13:56:45Z' + url: https://api.github.com/repos/packit/ogr/issues/119 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "In #102, I've realized that most of the functions in [utils.py](https://github.com/packit-service/ogr/blob/master/ogr/utils.py)\ + \ are never used.\r\n\r\nWe need to go through the functions and check\ + \ if they are not used anywhere (please, control the packit codebase\ + \ as well) and remove the unused ones.\r\n\r\n----\r\n\r\nIn the other\ + \ hand, we can move here the [LocalProject](https://github.com/packit-service/packit/blob/master/packit/local_project.py)\ + \ or other git-related code from the Packit. Do we want OGR to be only\ + \ remote API or git-helper?" + closed_at: '2019-07-16T13:56:45Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/103/comments + created_at: '2019-07-09T09:27:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/103/events + html_url: https://github.com/packit/ogr/issues/103 + id: 465672061 + labels: + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/103/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjU2NzIwNjE= + number: 103 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Clean the ogr/utils.py + updated_at: '2019-07-16T13:56:45Z' + url: https://api.github.com/repos/packit/ogr/issues/103 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Functions `get_release` and `get_releases` implemented in services/github.py\ + \ were missing in the abstract.py. I also fixed notes from PR #101 which\ + \ was added after PR was merged. \r\n\r\n**Edit:** I also added functionality\ + \ `get_releases` for Pagure in the second commit." + closed_at: '2019-07-15T11:44:25Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/117/comments + created_at: '2019-07-15T08:12:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/117/events + html_url: https://github.com/packit/ogr/pull/117 + id: 467994039 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/117/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk3NTExNTgx + number: 117 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/117.diff + html_url: https://github.com/packit/ogr/pull/117 + patch_url: https://github.com/packit/ogr/pull/117.patch + url: https://api.github.com/repos/packit/ogr/pulls/117 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add get_release/get_releases into abstract.py + updated_at: '2019-07-15T11:44:25Z' + url: https://api.github.com/repos/packit/ogr/issues/117 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "In the case of Github, it is possible to get a repository's file\ + \ content via [API](https://developer.github.com/v3/repos/contents/#get-contents)\ + \ or [PyGithub lib](https://pygithub.readthedocs.io/en/latest/github_objects/ContentFile.html).\ + \ In the case of Pagure, I am not sure if it is possible. \r\n\r\n(I\ + \ need this for release-bot, I can hack it for now, but would be wonderful\ + \ to have such feature in ogr.)" + closed_at: '2019-07-13T18:50:35Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/115/comments + created_at: '2019-07-12T14:05:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/115/events + html_url: https://github.com/packit/ogr/issues/115 + id: 467432493 + labels: + - color: e4e669 + default: true + description: This doesn't seem right. + id: 1160311267 + name: invalid + node_id: MDU6TGFiZWwxMTYwMzExMjY3 + url: https://api.github.com/repos/packit/ogr/labels/invalid + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/115/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Njc0MzI0OTM= + number: 115 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Missing functionality for getting content of a file. + updated_at: '2019-07-13T18:50:35Z' + url: https://api.github.com/repos/packit/ogr/issues/115 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: services.github.py already can [list all releases](https://github.com/packit-service/ogr/blob/badeddd87032da354d411fff3365bb02e260571b/ogr/services/github.py#L656). + We need this for Pagure too. + closed_at: '2019-07-12T21:58:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/116/comments + created_at: '2019-07-12T14:55:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/116/events + html_url: https://github.com/packit/ogr/issues/116 + id: 467458155 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: cfd3d7 + default: true + description: This issue or pull request already exists + id: 1160311263 + name: duplicate + node_id: MDU6TGFiZWwxMTYwMzExMjYz + url: https://api.github.com/repos/packit/ogr/labels/duplicate + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/116/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Njc0NTgxNTU= + number: 116 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: get_releases for Pagure + updated_at: '2019-07-12T21:59:06Z' + url: https://api.github.com/repos/packit/ogr/issues/116 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Implementation of getting project owners related to #88. \r\nAnd\ + \ getting users with permission for closing Issues and merging PR based\ + \ on [Github permissions](https://help.github.com/en/articles/repository-permission-levels-for-an-organization)\ + \ and [Pagure permissions](https://docs.pagure.org/pagure/usage/project_acls.html)\ + \ related to issue #100." + closed_at: '2019-07-12T07:51:41Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/101/comments + created_at: '2019-07-08T13:03:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/101/events + html_url: https://github.com/packit/ogr/pull/101 + id: 465245940 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/101/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk1MzI1ODUx + number: 101 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/101.diff + html_url: https://github.com/packit/ogr/pull/101 + patch_url: https://github.com/packit/ogr/pull/101.patch + url: https://api.github.com/repos/packit/ogr/pulls/101 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: get project's owners and permissions of various users + updated_at: '2019-07-12T12:44:34Z' + url: https://api.github.com/repos/packit/ogr/issues/101 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #74' + closed_at: '2019-07-11T08:48:44Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/106/comments + created_at: '2019-07-10T07:38:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/106/events + html_url: https://github.com/packit/ogr/pull/106 + id: 466149524 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/106/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDQ2Mjc3 + number: 106 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/106.diff + html_url: https://github.com/packit/ogr/pull/106 + patch_url: https://github.com/packit/ogr/pull/106.patch + url: https://api.github.com/repos/packit/ogr/pulls/106 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: link to GitTag from Release added + updated_at: '2019-07-11T08:48:44Z' + url: https://api.github.com/repos/packit/ogr/issues/106 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Add a link to `GitTag` from `Release`.\r\n\r\n_Originally posted\ + \ by @lachmanfrantisek in https://github.com/packit-service/ogr/pull/71/files_" + closed_at: '2019-07-11T08:48:44Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/74/comments + created_at: '2019-05-29T07:12:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/74/events + html_url: https://github.com/packit/ogr/issues/74 + id: 449635655 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/74/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDk2MzU2NTU= + number: 74 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add a link to `GitTag` from `Release`. + updated_at: '2019-07-11T08:48:44Z' + url: https://api.github.com/repos/packit/ogr/issues/74 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Fixes\r\n_DeprecationWarning: Using or importing the ABCs from\ + \ 'collections' instead of from 'collections.abc' is deprecated, and\ + \ in 3.8 it will stop working_" + closed_at: '2019-07-11T07:03:27Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/109/comments + created_at: '2019-07-10T14:24:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/109/events + html_url: https://github.com/packit/ogr/pull/109 + id: 466340777 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/109/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MTk4Nzc4 + number: 109 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/109.diff + html_url: https://github.com/packit/ogr/pull/109 + patch_url: https://github.com/packit/ogr/pull/109.patch + url: https://api.github.com/repos/packit/ogr/pulls/109 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: collections.Hashable -> collections.abc.Hashable + updated_at: '2019-07-11T07:53:20Z' + url: https://api.github.com/repos/packit/ogr/issues/109 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: See https://github.com/packit-service/packit/pull/407 + closed_at: '2019-07-10T12:56:20Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/108/comments + created_at: '2019-07-10T12:47:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/108/events + html_url: https://github.com/packit/ogr/pull/108 + id: 466289238 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/108/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MTU3NzYy + number: 108 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/108.diff + html_url: https://github.com/packit/ogr/pull/108 + patch_url: https://github.com/packit/ogr/pull/108.patch + url: https://api.github.com/repos/packit/ogr/pulls/108 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Make PersistentObjectStorage.__init__() backwards compatible + updated_at: '2019-07-10T12:56:33Z' + url: https://api.github.com/repos/packit/ogr/issues/108 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #52' + closed_at: '2019-07-10T07:35:48Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/105/comments + created_at: '2019-07-10T07:09:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/105/events + html_url: https://github.com/packit/ogr/pull/105 + id: 466138321 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/105/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk2MDM3NjM1 + number: 105 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/105.diff + html_url: https://github.com/packit/ogr/pull/105 + patch_url: https://github.com/packit/ogr/pull/105.patch + url: https://api.github.com/repos/packit/ogr/pulls/105 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: in get_file_content catch only 404 + updated_at: '2019-07-10T07:40:13Z' + url: https://api.github.com/repos/packit/ogr/issues/105 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: CONTRIBUTOR + body: "Just spent some time debugging an issue where packit.yaml was not\ + \ found while being 100 % it's in there.\r\n\r\nIt turned out that my\ + \ token was incorrect and github kept throwing 401: that should bubble\ + \ up, we should catch 404 only. " + closed_at: '2019-07-10T07:35:48Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/52/comments + created_at: '2019-03-27T21:00:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/52/events + html_url: https://github.com/packit/ogr/issues/52 + id: 426181525 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/52/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MjYxODE1MjU= + number: 52 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'get_file_content: catch only 404, raise everything else' + updated_at: '2019-07-10T07:35:48Z' + url: https://api.github.com/repos/packit/ogr/issues/52 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + author_association: COLLABORATOR + body: 'Based on our discussion on Issue #79, there is no functionality + in ogr for commenting on Github/Pagure issues.' + closed_at: '2019-07-10T06:57:03Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/80/comments + created_at: '2019-06-19T07:21:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/80/events + html_url: https://github.com/packit/ogr/issues/80 + id: 457847996 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/80/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTc4NDc5OTY= + number: 80 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Commenting on Issues + updated_at: '2019-07-10T06:57:03Z' + url: https://api.github.com/repos/packit/ogr/issues/80 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + author_association: MEMBER + body: It would be nice to implement `__str__` methods for all classes + (e.g. `GithubProject`, `Issue`,...). + closed_at: '2019-07-10T06:51:37Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/90/comments + created_at: '2019-06-27T10:29:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/90/events + html_url: https://github.com/packit/ogr/issues/90 + id: 461449910 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/90/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjE0NDk5MTA= + number: 90 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: String representations for classes + updated_at: '2019-07-10T06:51:37Z' + url: https://api.github.com/repos/packit/ogr/issues/90 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-07-09T13:56:31Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/104/comments + created_at: '2019-07-09T11:05:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/104/events + html_url: https://github.com/packit/ogr/pull/104 + id: 465717381 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/104/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk1NzAyNDc0 + number: 104 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/104.diff + html_url: https://github.com/packit/ogr/pull/104 + patch_url: https://github.com/packit/ogr/pull/104.patch + url: https://api.github.com/repos/packit/ogr/pulls/104 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: unify external command invocation - fix + updated_at: '2019-07-09T13:56:31Z' + url: https://api.github.com/repos/packit/ogr/issues/104 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #33 ' + closed_at: '2019-07-09T09:29:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/102/comments + created_at: '2019-07-09T08:49:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/102/events + html_url: https://github.com/packit/ogr/pull/102 + id: 465652910 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/102/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjk1NjUwMTA5 + number: 102 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/102.diff + html_url: https://github.com/packit/ogr/pull/102 + patch_url: https://github.com/packit/ogr/pull/102.patch + url: https://api.github.com/repos/packit/ogr/pulls/102 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: unify external command invocation + updated_at: '2019-07-09T10:49:16Z' + url: https://api.github.com/repos/packit/ogr/issues/102 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "utils.py uses several different approaches to invoke an external\ + \ command:\r\n\r\n* [subprocess.Popen](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L103)\r\ + \n* [subprocess.check_call](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L122)\r\ + \n* [subprocess.check_output](https://github.com/packit-service/ogr/blob/master/ogr/utils.py#L171)\r\ + \n\r\nThe recommended approach (since Python 3.5) is to use [subprocess.run](https://docs.python.org/3/library/subprocess.html#subprocess.run).\r\ + \n\r\nAlso, there's lots of external libraries for this use case:\r\n\ + * http://amoffat.github.io/sh/\r\n* https://www.pyinvoke.org/\r\n* https://plumbum.readthedocs.io\r\ + \n* https://pexpect.readthedocs.io" + closed_at: '2019-07-09T09:29:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/33/comments + created_at: '2019-03-14T13:51:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/33/events + html_url: https://github.com/packit/ogr/issues/33 + id: 421030116 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/33/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MjEwMzAxMTY= + number: 33 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Unify external command invocation + updated_at: '2019-07-09T09:29:53Z' + url: https://api.github.com/repos/packit/ogr/issues/33 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Add method for creating projects from url.\r\n- Get project from\ + \ url.\r\n\r\n\r\nTODO:\r\n\r\n- [x] add a way to use existing service\ + \ classes\r\n- [x] add a way to update mapping by user\r\n- [ ] consider\ + \ implementing API checks if we cannot find a match in mapping\r\n-\ + \ [x] tests\r\n - [x] make the `github_repo` lazy for easier testing\r\ + \n - [x] tests for geting project/service class from url\r\n -\ + \ [x] tests for parsing\r\n\r\n----\r\n\r\nHow to test?\r\n\r\n```python\r\ + \nfrom ogr import get_service_class\r\n\r\nget_service_class(url=\"\ + github.com/packit-service/ogr\")\r\nget_service_class(url=\"src.fedoraproject.org/rpms/python-ogr\"\ + )\r\n```\r\n```python\r\nfrom ogr import get_project\r\nfrom ogr import\ + \ GithubService, PagureService\r\n\r\nget_project(\r\n url=\"src.fedoraproject.org/rpms/python-ogr\"\ + ,\r\n custom_instances=[\r\n GithubService(token=\"asda\"\ + ),\r\n PagureService(instance_url=\"pagure.io\", token=\"qwe\"\ + ),\r\n PagureService(instance_url=\"src.fedoraproject.org\",\ + \ token=\"asdaasda\"),\r\n ],\r\n)\r\n\r\n```" + closed_at: '2019-07-03T13:12:23Z' + comments: 13 + comments_url: https://api.github.com/repos/packit/ogr/issues/95/comments + created_at: '2019-06-28T08:30:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/95/events + html_url: https://github.com/packit/ogr/pull/95 + id: 461920354 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/95/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkyNzM4MzEx + number: 95 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/95.diff + html_url: https://github.com/packit/ogr/pull/95 + patch_url: https://github.com/packit/ogr/pull/95.patch + url: https://api.github.com/repos/packit/ogr/pulls/95 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Methods for creating projects from url + updated_at: '2019-07-03T13:20:09Z' + url: https://api.github.com/repos/packit/ogr/issues/95 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Related to #80\r\n\r\nThis PR contains functionality for Pagure\ + \ issues except for tagging issues. I had some problems with tagging,\ + \ therefore, I'll create separated PR for it.\r\n\r\nIf I am right I\ + \ have to set Pagure token for creating yaml test-files. We can manage\ + \ that in private chat, then I'll add tests." + closed_at: '2019-07-02T11:56:47Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/99/comments + created_at: '2019-06-30T21:39:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/99/events + html_url: https://github.com/packit/ogr/pull/99 + id: 462449449 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/99/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkzMTM0Mjcw + number: 99 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/99.diff + html_url: https://github.com/packit/ogr/pull/99 + patch_url: https://github.com/packit/ogr/pull/99.patch + url: https://api.github.com/repos/packit/ogr/pulls/99 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: creating/closing/commenting Pagure Issues + updated_at: '2019-07-02T11:56:47Z' + url: https://api.github.com/repos/packit/ogr/issues/99 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-06-11T15:21:02Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/78/comments + created_at: '2019-06-11T14:33:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/78/events + html_url: https://github.com/packit/ogr/pull/78 + id: 454727768 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/78/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjg3MTIwMTYy + number: 78 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/78.diff + html_url: https://github.com/packit/ogr/pull/78 + patch_url: https://github.com/packit/ogr/pull/78.patch + url: https://api.github.com/repos/packit/ogr/pulls/78 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[spec] bump to 0.4.0' + updated_at: '2019-07-01T13:06:37Z' + url: https://api.github.com/repos/packit/ogr/issues/78 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.454153 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:21 GMT + ETag: W/"f5f2d07894fe10edcda2ba7974a4ba38b2cf0cdba00d3c274940154644681ad6" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78F850:133525B:6075DCAC + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4233' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '767' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=17: + - metadata: + latency: 0.36113572120666504 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Fix formating for __str__ methods.\r\n- Changes requested to_str_method\ + \ of classes. @shreyanshrs44\r\n- Added instantiation-like syntax. @shreyanshrs44\r\ + \n- Added __str__ method to classes. @shreyanshrs44\r\n- Added __str__\ + \ method to classes. @shreyanshrs44\r\n\r\nFixed version of #93 " + closed_at: '2019-06-28T13:26:06Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/98/comments + created_at: '2019-06-28T12:20:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/98/events + html_url: https://github.com/packit/ogr/pull/98 + id: 462007848 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/98/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkyODA5MjI0 + number: 98 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/98.diff + html_url: https://github.com/packit/ogr/pull/98 + patch_url: https://github.com/packit/ogr/pull/98.patch + url: https://api.github.com/repos/packit/ogr/pulls/98 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Added __str__ method to classes. (new) + updated_at: '2019-06-28T13:26:15Z' + url: https://api.github.com/repos/packit/ogr/issues/98 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "I have added __str__ method to classes in /ogr/services/github.py\ + \ , /ogr/services/gitlab.py, /ogr/services/pagure.py.\r\nPlease have\ + \ a look and give feedback on necessary changes.\r\nI have not touched\ + \ the classes inside /ogr/abstract.py as it containes __str__ method\ + \ for most of classes in it. " + closed_at: '2019-06-28T12:23:38Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/93/comments + created_at: '2019-06-27T12:17:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/93/events + html_url: https://github.com/packit/ogr/pull/93 + id: 461495461 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/93/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkyNDA3Mjc3 + number: 93 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/93.diff + html_url: https://github.com/packit/ogr/pull/93 + patch_url: https://github.com/packit/ogr/pull/93.patch + url: https://api.github.com/repos/packit/ogr/pulls/93 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Added __str__ method to classes. + updated_at: '2019-06-28T12:23:38Z' + url: https://api.github.com/repos/packit/ogr/issues/93 + user: + avatar_url: https://avatars.githubusercontent.com/u/29723970?v=4 + events_url: https://api.github.com/users/shreyanshrs44/events{/privacy} + followers_url: https://api.github.com/users/shreyanshrs44/followers + following_url: https://api.github.com/users/shreyanshrs44/following{/other_user} + gists_url: https://api.github.com/users/shreyanshrs44/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyanshrs44 + id: 29723970 + login: shreyanshrs44 + node_id: MDQ6VXNlcjI5NzIzOTcw + organizations_url: https://api.github.com/users/shreyanshrs44/orgs + received_events_url: https://api.github.com/users/shreyanshrs44/received_events + repos_url: https://api.github.com/users/shreyanshrs44/repos + site_admin: false + starred_url: https://api.github.com/users/shreyanshrs44/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyanshrs44/subscriptions + type: User + url: https://api.github.com/users/shreyanshrs44 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add response file for\ + \ test_update_pr_info for github\n* Skip the update_pr for pagure, since\ + \ we have no token for generating response files\n* exceptions changed\n\ + * update_pr_info methods created, wip\n* Add MIT headers to code files\n\ + * Add tests for creating forks\n* Allow saving multiple responses\n\ + * Add get_projects/get_forks to user; add get_forks to project\n* [pagure]\ + \ Fix fork tests\n* [pagure] Fix user in fork part of url\n* Better\ + \ get_fork for pagure\n* Better get_fork for github\n* Fix formating\ + \ from the previous PR\n* [pagure] Use empty dict as a default header\n\ + * creating, closing, labeling Github Issues\n* get info and comment\ + \ Github Issues\n* Document the test generation\n* Add Makefile targets\ + \ for removing response files\n* Determine forcewrite mode from file\ + \ existance\n* Rename @readonly to @if_readonly\n* [spec] bump to 0.4.0\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.5.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-06-28T09:40:08Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/97/comments + created_at: '2019-06-28T08:43:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/97/events + html_url: https://github.com/packit/ogr/pull/97 + id: 461925608 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/97/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkyNzQyNDQ2 + number: 97 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/97.diff + html_url: https://github.com/packit/ogr/pull/97 + patch_url: https://github.com/packit/ogr/pull/97.patch + url: https://api.github.com/repos/packit/ogr/pulls/97 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.5.0 release + updated_at: '2019-06-28T09:45:09Z' + url: https://api.github.com/repos/packit/ogr/issues/97 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "ReleaseBot, we would like to release a new version.\r\n\r\nThanks\ + \ in advance!" + closed_at: '2019-06-28T08:43:29Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/96/comments + created_at: '2019-06-28T08:38:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/96/events + html_url: https://github.com/packit/ogr/issues/96 + id: 461923699 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/96/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjE5MjM2OTk= + number: 96 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-06-28T08:43:29Z' + url: https://api.github.com/repos/packit/ogr/issues/96 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Fixes #87' + closed_at: '2019-06-28T06:51:21Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/92/comments + created_at: '2019-06-27T11:54:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/92/events + html_url: https://github.com/packit/ogr/pull/92 + id: 461485336 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/92/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkyMzk4ODk2 + number: 92 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/92.diff + html_url: https://github.com/packit/ogr/pull/92 + patch_url: https://github.com/packit/ogr/pull/92.patch + url: https://api.github.com/repos/packit/ogr/pulls/92 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: update_pr_info methods created + updated_at: '2019-06-28T06:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/92 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + author_association: MEMBER + body: "Add methods to `GithubProject`/`PagureProject` for editing title\ + \ and description (first-commit in Pagure) of the pull-request.\r\n\r\ + \nFor Pagure see https://src.fedoraproject.org/api/0/ --> Update pull-request\ + \ information " + closed_at: '2019-06-28T06:51:21Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/87/comments + created_at: '2019-06-26T07:17:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/87/events + html_url: https://github.com/packit/ogr/issues/87 + id: 460802132 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/87/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NjA4MDIxMzI= + number: 87 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: ' Update pull-request information' + updated_at: '2019-06-28T06:51:21Z' + url: https://api.github.com/repos/packit/ogr/issues/87 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Add MIT headers to code files.' + closed_at: '2019-06-27T13:51:08Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/94/comments + created_at: '2019-06-27T13:15:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/94/events + html_url: https://github.com/packit/ogr/pull/94 + id: 461522977 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/94/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkyNDI5NzM5 + number: 94 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/94.diff + html_url: https://github.com/packit/ogr/pull/94 + patch_url: https://github.com/packit/ogr/pull/94.patch + url: https://api.github.com/repos/packit/ogr/pulls/94 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add license headers + updated_at: '2019-06-27T13:51:12Z' + url: https://api.github.com/repos/packit/ogr/issues/94 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\nHi, see lines in: https://github.com/packit-service/ogr/blob/master/tests/integration/test_github.py#L20\r\ + \nSo for regenereation these files, you have to use syntax eg:\r\n``FORCE_WRITE=yes\ + \ GITHUB_TOKEN=yourtoken GITHUB_USER=yourname pytest3 tests/integration/test_github.py``\r\ + \nor this will also work ``FORCE_WRITE=yes GITHUB_TOKEN=yourtoken GITHUB_USER=yourname\ + \ make check`` with make check, you have to have set PAGURE_TOKEN and\ + \ USER env vars\r\n```\r\n\r\n_Originally posted by @jscotka in https://github.com/packit-service/ogr/issues/80#issuecomment-503991164_\r\ + \n" + closed_at: '2019-06-27T12:56:06Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/82/comments + created_at: '2019-06-21T09:12:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/82/events + html_url: https://github.com/packit/ogr/issues/82 + id: 459096186 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/82/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTkwOTYxODY= + number: 82 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Document how to save HTTP sessions for sake of testing + updated_at: '2019-06-27T12:56:06Z' + url: https://api.github.com/repos/packit/ogr/issues/82 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "I'm trying to implement ogr into [release-bot](https://github.com/user-cont/release-bot)\ + \ and it's a little bit painful without documentation from ogr. \r\n\ + \r\nI was playing with ogr on my Github projects and everything is working\ + \ fine. When I tried to reimplement [release-bot's](https://github.com/user-cont/release-bot)\ + \ functionalities which communicate with Github via GraphQL or rest\ + \ API I got stuck. \r\n\r\nOne of the examples could be comments. I\ + \ want to implement commenting on Github issues and PRs via ogr. \r\n\ + - In [release-bot](https://github.com/user-cont/release-bot) it works\ + \ via graphQL and sending some `node_id` inside query which recognizes\ + \ a PR or an Issue. \r\n- In ogr there is `pr_comment` function in ogr/services/github.py.\ + \ If am I right this is an alternative I'm looking for. However, I don't\ + \ fully understand the function's parameters since it needs something\ + \ else then API query.\r\n\r\nI understand that this could be a very\ + \ complex problem since ogr need to preserve compatibility with all\ + \ git forges. I'm just looking for some starting point on how to change\ + \ GraphQL/rest API with ogr. Maybe I just misunderstand some ogr's fundamentals.\r\ + \n" + closed_at: '2019-06-27T12:40:34Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/79/comments + created_at: '2019-06-17T22:01:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/79/events + html_url: https://github.com/packit/ogr/issues/79 + id: 457168292 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/79/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTcxNjgyOTI= + number: 79 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add compatibility with Github's GraphQL API v4 and rest API v3 + updated_at: '2019-06-27T12:40:34Z' + url: https://api.github.com/repos/packit/ogr/issues/79 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Better get_fork for pagure and github. (Fixes #58)\r\n\r\nTODO:\r\ + \n\r\n- [x] `get_forks` on project\r\n- [x] use `project.get_forks()`\ + \ in `project.get_fork`\r\n- [x] `get_forks` for user\r\n- [x] more\ + \ tests\r\n - [x] save sequence of responses\r\n - [x] tests for\ + \ creating fork" + closed_at: '2019-06-27T10:34:34Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/85/comments + created_at: '2019-06-25T11:05:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/85/events + html_url: https://github.com/packit/ogr/pull/85 + id: 460358105 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/85/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkxNTAyODU2 + number: 85 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/85.diff + html_url: https://github.com/packit/ogr/pull/85 + patch_url: https://github.com/packit/ogr/pull/85.patch + url: https://api.github.com/repos/packit/ogr/pulls/85 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Better fork handling + updated_at: '2019-06-27T10:34:38Z' + url: https://api.github.com/repos/packit/ogr/issues/85 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR + body: "FML!\r\n\r\nSo my fork of packit is named source-git, not packit.\r\ + \n\r\nWe should use an API call to obtain github forks, not a guess\ + \ work." + closed_at: '2019-06-27T10:34:34Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/58/comments + created_at: '2019-04-15T11:38:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/58/events + html_url: https://github.com/packit/ogr/issues/58 + id: 433234905 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/58/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MzMyMzQ5MDU= + number: 58 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'github: fork repository name may not match the upstream repo name' + updated_at: '2019-06-27T10:34:34Z' + url: https://api.github.com/repos/packit/ogr/issues/58 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- [pagure] Use empty dict as a default header.' + closed_at: '2019-06-26T13:30:50Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/89/comments + created_at: '2019-06-26T12:51:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/89/events + html_url: https://github.com/packit/ogr/pull/89 + id: 460952659 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/89/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkxOTc0MzU1 + number: 89 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/89.diff + html_url: https://github.com/packit/ogr/pull/89 + patch_url: https://github.com/packit/ogr/pull/89.patch + url: https://api.github.com/repos/packit/ogr/pulls/89 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix pagure header without token + updated_at: '2019-06-26T13:30:53Z' + url: https://api.github.com/repos/packit/ogr/issues/89 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: COLLABORATOR + body: "Related to #80 \r\n\r\nI provided functionality for Github Issues\ + \ including `get_issue_info`, `get_issue_list`, `get_issue_comments`,\ + \ `issue_comment`. \r\n\r\nHowever, two tests for my new functionality\ + \ are failing. I cannot create .yaml files for them on path tests/integration/test-data.\ + \ When we solve this, I can finish functionality for labeling and closing\ + \ issues.\r\n\r\nthis PR also solves #79 - I assign pull-request number\ + \ into `PullRequest.id` in ogr/abstract.py. Before it was assigning\ + \ some \"global Github pull-request id\" instead \"pull-request number\"\ + \ which was incorrect. " + closed_at: '2019-06-26T11:37:09Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/81/comments + created_at: '2019-06-20T13:59:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/81/events + html_url: https://github.com/packit/ogr/pull/81 + id: 458676227 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/81/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkwMjMwMDk0 + number: 81 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/81.diff + html_url: https://github.com/packit/ogr/pull/81 + patch_url: https://github.com/packit/ogr/pull/81.patch + url: https://api.github.com/repos/packit/ogr/pulls/81 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: get info and comment Github Issues + updated_at: '2019-06-26T11:37:09Z' + url: https://api.github.com/repos/packit/ogr/issues/81 + user: + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos + site_admin: false + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions + type: User + url: https://api.github.com/users/marusinm + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "as integration tests needs regeneration stored yaml API communication.\r\ + \nWould be nice to add there target to be able to regenerate these files" + closed_at: '2019-06-25T14:47:44Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/61/comments + created_at: '2019-04-26T07:35:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/61/events + html_url: https://github.com/packit/ogr/issues/61 + id: 437538907 + labels: + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/61/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Mzc1Mzg5MDc= + number: 61 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: create target for makefile for regeneration testing yaml files + updated_at: '2019-06-25T14:47:44Z' + url: https://api.github.com/repos/packit/ogr/issues/61 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\r\nit is unbale to get or install ``ansible-bender`` for ``make\ + \ build`` target.\r\n\r\nIt is not part of Fedora-29.\r\n\r\nI've found\ + \ that @TomasTomecek done this: https://github.com/TomasTomecek/ansible-bender\r\ + \nbut it still failed:\r\n```\r\n12:43 $ sudo pip3 install ansible-bender\r\ + \nWARNING: Running pip install with root privileges is generally not\ + \ a good idea. Try `pip3 install --user` instead.\r\nCollecting ansible-bender\r\ + \n Downloading https://files.pythonhosted.org/packages/fa/5c/04c822b3ee6e2ff41eed372f15d954cccf164d0340341fbd0270d500bb83/ansible_bender-0.4.0-py2.py3-none-any.whl\r\ + \nRequirement already satisfied: PyYAML in /usr/lib64/python3.7/site-packages\ + \ (from ansible-bender) (4.2b4)\r\nCollecting tabulate (from ansible-bender)\r\ + \n Downloading https://files.pythonhosted.org/packages/c2/fd/202954b3f0eb896c53b7b6f07390851b1fd2ca84aa95880d7ae4f434c4ac/tabulate-0.8.3.tar.gz\ + \ (46kB)\r\n 100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ + \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ + \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\ + | 51kB 2.0MB/s \r\nInstalling collected packages: tabulate, ansible-bender\r\ + \n Running setup.py install for tabulate ... done\r\nSuccessfully installed\ + \ ansible-bender-0.4.0 tabulate-0.8.3\r\n\u2714 ~/git/userspace-containerization/ogr\ + \ [tests1 L|\u202638] \r\n12:44 $ sudo make build \r\nsudo ansible-bender\ + \ build --build-volumes /home/jscotka/git/userspace-containerization/ogr:/src:Z\ + \ -- ./recipe.yaml registry.fedoraproject.org/fedora:29 ogr\r\nThere\ + \ was an error during execution: buildah command doesn't seem to be\ + \ available on your system. Please follow the upstream instructions\ + \ available at https://github.com/projectatomic/buildah/blob/master/install.md\r\ + \nmake: *** [Makefile:7: build] Error 2\r\n```\r\n\r\nafter installing:\ + \ ``sudo dnf install buildah `` it finally works." + closed_at: '2019-06-25T09:00:15Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/17/comments + created_at: '2019-02-18T11:46:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/17/events + html_url: https://github.com/packit/ogr/issues/17 + id: 411437302 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/17/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MTE0MzczMDI= + number: 17 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: missing ansible-bender dep for building + updated_at: '2019-06-25T09:00:15Z' + url: https://api.github.com/repos/packit/ogr/issues/17 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "* [x] don't fail when PAGURE_{TOKEN,USER} are not specified\r\n\ + * [x] mock remote API and write complete unit tests using those data\ + \ (or even have a single test suite and enable it to run against live\ + \ instance and mocked data)\r\n* [x] [tox](https://developer.fedoraproject.org/tech/languages/python/multiple-pythons.html)-ify\ + \ it (#27)" + closed_at: '2019-06-25T08:59:43Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/8/comments + created_at: '2019-01-30T10:19:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/8/events + html_url: https://github.com/packit/ogr/issues/8 + id: 404698352 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/8/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MDQ2OTgzNTI= + number: 8 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Improve testing + updated_at: '2019-06-25T08:59:43Z' + url: https://api.github.com/repos/packit/ogr/issues/8 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "we need this in packit this sprint when we start building in copr\r\ + \n\r\nthis should be implemented soonish and land in next release\r\n\ + \r\nrelevant code for github:\r\nhttps://github.com/packit-service/packit/blob/04793f16d5ced27b5e7fec7d963d650b065a4276/packit/watcher.py#L94" + closed_at: '2019-06-25T07:31:05Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/54/comments + created_at: '2019-04-04T14:24:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/54/events + html_url: https://github.com/packit/ogr/issues/54 + id: 429309114 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/54/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MjkzMDkxMTQ= + number: 54 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add a way to set check results for a commit + updated_at: '2019-06-25T07:31:05Z' + url: https://api.github.com/repos/packit/ogr/issues/54 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Add Makefile targets for removing response files.\r\n- Determine\ + \ forcewrite mode from file existance.\r\n\r\n\r\nWhy?\r\n- less magic\r\ + \n- easier for newcomers:\r\n - When adding a new test, you need\ + \ to rerun the tests to generate the response files.\r\n - To update\ + \ a response file, you need to remove the file and rerun the tests.\r\ + \n\r\n\r\nTODO:\r\n\r\n- [x] describe the testing in the contribution\ + \ guide" + closed_at: '2019-06-24T14:55:24Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/84/comments + created_at: '2019-06-24T12:33:28Z' + events_url: https://api.github.com/repos/packit/ogr/issues/84/events + html_url: https://github.com/packit/ogr/pull/84 + id: 459865460 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/84/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkxMTExNTU4 + number: 84 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/84.diff + html_url: https://github.com/packit/ogr/pull/84 + patch_url: https://github.com/packit/ogr/pull/84.patch + url: https://api.github.com/repos/packit/ogr/pulls/84 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Forcewrite mode from file existance + updated_at: '2019-06-24T14:55:57Z' + url: https://api.github.com/repos/packit/ogr/issues/84 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Rename @readonly to @if_readonly. + + + + Fixes #56' + closed_at: '2019-06-24T14:46:14Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/83/comments + created_at: '2019-06-24T11:34:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/83/events + html_url: https://github.com/packit/ogr/pull/83 + id: 459840373 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/83/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjkxMDkxNDg4 + number: 83 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/83.diff + html_url: https://github.com/packit/ogr/pull/83 + patch_url: https://github.com/packit/ogr/pull/83.patch + url: https://api.github.com/repos/packit/ogr/pulls/83 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Rename readonly decorator + updated_at: '2019-06-24T14:46:47Z' + url: https://api.github.com/repos/packit/ogr/issues/83 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "The `@readonly` decorator should be renamed as it can confuse newcomers\ + \ that the method itself is \"readonly\". The fact is that it has the\ + \ opposite meaning of the read-only.\r\n\r\nFeel free to add your ideas\ + \ as a single comment so we can easily vote.\r\n\r\n-----\r\n\r\nFollow-up\ + \ from #48" + closed_at: '2019-06-24T14:46:14Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/56/comments + created_at: '2019-04-09T08:17:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/56/events + html_url: https://github.com/packit/ogr/issues/56 + id: 430829968 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/56/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MzA4Mjk5Njg= + number: 56 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'better name for @readonly decorator ' + updated_at: '2019-06-24T14:46:14Z' + url: https://api.github.com/repos/packit/ogr/issues/56 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* enable calling dump()\ + \ after store()\n* packit.yaml: add a link to docs\n* packit: sync from\ + \ downstream & build in copr\n* Fix mypy errors\n* Dump RequestResponse\ + \ on our own\n* Fix old imports\n* Remove old Pagure tests\n* Fix tests\ + \ and regenerate test responses, do not save headers\n* Use custom response\ + \ class for Pagure\n* Add missing readonly decorator\n* Use self.get_raw_request\ + \ on cal_api\n* Add docstring for Pagure methods\n* Fix creation of\ + \ pr comments\n* Improve the request/response handling and fix authentication\ + \ header\n* Apply suggestions by @jpopelka from code review\n* Fix commit\ + \ flags/statuses\n* Remove libpagure from recipe\n* Methods for commit\ + \ statuses/flags and comments\n* Add methods for tags\n* Fix __str__\ + \ for PRComment and PullRequest\n* Remove libpagure from requirements\n\ + * Fix forking\n* Better response handling for Pagure API\n* Remove OurPagure\n\ + * Implement forking logic and PR methods\n* First part of implementing\ + \ the Pagure classes without libpagure\n* Add string representation\ + \ for PRComment and PullRequest\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.4.0-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2019-06-11T14:05:10Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/77/comments + created_at: '2019-06-11T13:18:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/77/events + html_url: https://github.com/packit/ogr/pull/77 + id: 454686226 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/77/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjg3MDg2Mzg1 + number: 77 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/77.diff + html_url: https://github.com/packit/ogr/pull/77 + patch_url: https://github.com/packit/ogr/pull/77.patch + url: https://api.github.com/repos/packit/ogr/pulls/77 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.4.0 release + updated_at: '2019-06-11T14:10:26Z' + url: https://api.github.com/repos/packit/ogr/issues/77 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-06-11T13:19:01Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/76/comments + created_at: '2019-06-11T13:18:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/76/events + html_url: https://github.com/packit/ogr/issues/76 + id: 454685925 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/76/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NTQ2ODU5MjU= + number: 76 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-06-11T13:19:01Z' + url: https://api.github.com/repos/packit/ogr/issues/76 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '\+ packit.yaml: add a link to docs' + closed_at: '2019-05-29T14:23:24Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/72/comments + created_at: '2019-05-22T14:36:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/72/events + html_url: https://github.com/packit/ogr/pull/72 + id: 447175169 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/72/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjgxMjI1MTU2 + number: 72 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/72.diff + html_url: https://github.com/packit/ogr/pull/72 + patch_url: https://github.com/packit/ogr/pull/72.patch + url: https://api.github.com/repos/packit/ogr/pulls/72 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: dump() when store() is called + updated_at: '2019-05-29T14:23:28Z' + url: https://api.github.com/repos/packit/ogr/issues/72 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Remove OurPagure.\r\n- Implement forking logic and PR methods.\r\ + \n- First part of implementing the Pagure classes without libpagure.\r\ + \n- Add string representation for PRComment and PullRequest.\r\n\r\n\ + Fix #64\r\nFix #67\r\n\r\n---\r\n\r\nTODO:\r\n\r\n- [x] readonly mode\r\ + \n- [x] tests\r\n\r\n\r\n---\r\n\r\n## How to test?\r\n\r\n```python\r\ + \nfrom ogr.services.pagure import PagureService\r\nfrom ogr.abstract\ + \ import PRStatus\r\n\r\n\r\nservice = PagureService(token=\"???_PAGURE_TOKEN_???\"\ + )\r\n\r\n# Play with the API\r\n\r\nprint(service.user.get_username())\r\ + \nproject = service.get_project(repo=\"colin\", namespace=\"rpms\")\r\ + \nprint(project.get_commit_statuses(\"339a19b0bbc766d0c6cdbbc2ef5a32c0de9f7551\"\ + )[0])\r\nprint(project.get_tags())\r\n\r\nfork = project.get_fork()\r\ + \nprint(fork.exists())\r\n\r\nproject.fork_create()\r\n\r\nfor pr in\ + \ project.get_pr_list(status=PRStatus.all):\r\n print(pr)\r\n\r\n\ + pr = project.get_pr_info(3)\r\nprint(pr)\r\nfor c in project.get_pr_comments(3):\r\ + \n print(c)\r\n\r\nprint(fork.is_fork)\r\nprint(fork.is_forked())\r\ + \n```" + closed_at: '2019-05-29T07:46:28Z' + comments: 17 + comments_url: https://api.github.com/repos/packit/ogr/issues/71/comments + created_at: '2019-05-20T10:11:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/71/events + html_url: https://github.com/packit/ogr/pull/71 + id: 446033070 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + labels_url: https://api.github.com/repos/packit/ogr/issues/71/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjgwMzI0Njgx + number: 71 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/71.diff + html_url: https://github.com/packit/ogr/pull/71 + patch_url: https://github.com/packit/ogr/pull/71.patch + url: https://api.github.com/repos/packit/ogr/pulls/71 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Remove libpagure + updated_at: '2019-05-29T11:00:10Z' + url: https://api.github.com/repos/packit/ogr/issues/71 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-05-29T08:31:09Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/75/comments + created_at: '2019-05-29T07:41:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/75/events + html_url: https://github.com/packit/ogr/pull/75 + id: 449647079 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/75/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjgzMTMxNzY3 + number: 75 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/75.diff + html_url: https://github.com/packit/ogr/pull/75 + patch_url: https://github.com/packit/ogr/pull/75.patch + url: https://api.github.com/repos/packit/ogr/pulls/75 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'packit: sync from downstream & build in copr' + updated_at: '2019-05-29T08:31:13Z' + url: https://api.github.com/repos/packit/ogr/issues/75 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "libpagure==0.20 changed `headers` handling, so that\r\ncode like:\r\ + \nhttps://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L172\r\ + \nhas to be adapted, currenly I've added dependency on lower version\ + \ of libpagure to \r\nhttps://github.com/packit-service/ogr/pull/63/files#diff-380c6a8ebbbce17d55d50ef17d3cf906R44\r\ + \nto avoid this issue." + closed_at: '2019-05-29T07:46:28Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/64/comments + created_at: '2019-04-29T14:41:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/64/events + html_url: https://github.com/packit/ogr/issues/64 + id: 438351136 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/64/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MzgzNTExMzY= + number: 64 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'libpagure has changed ' + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/64 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "While debugging https://github.com/packit-service/packit/issues/305\ + \ I realized that it fails because [Pagure.create_basic_url()](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ creates:\r\n`https://src.fedoraproject.org//api/0/rpms/rpms/packit/pull-requests`\ + \ which does not exist, correct is:\r\n`https://src.fedoraproject.org//api/0/rpms/packit/pull-requests`.\r\ + \n\r\nThe problem is that [OurPagure.repo](https://pagure.io/libpagure/blob/17e240ea337e6962aa660b0cfd174ef6309f4162/f/libpagure/libpagure.py#_115)\ + \ attribute has a value `rpm/packit`, while libpagure probably expects\ + \ it to be `packit` only.\r\n\r\nAnybody has any idea whether this is\ + \ a `ogr` or `packit` or `libpagure` issue?\r\nI tend to think it's\ + \ `ogr` issue, because [OurPagure.repo_name](https://github.com/packit-service/ogr/blob/master/ogr/services/our_pagure.py#L22)\ + \ expects `/` in `self.repo`, which is probably not what `libpagure`\ + \ wants.\r\n\r\nAnd it gets even more puzzled when I tell you that [Pagure.create_basic_url()\ + \ has changed](https://pagure.io/libpagure/c/075ee2f17c36b1c1477f72f711204945b609d5b1?branch=master)\ + \ even more recently." + closed_at: '2019-05-29T07:46:28Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/67/comments + created_at: '2019-05-10T11:09:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/67/events + html_url: https://github.com/packit/ogr/issues/67 + id: 442664622 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/67/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDI2NjQ2MjI= + number: 67 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: libpagure.Pagure expects '/' not in repo attribute + updated_at: '2019-05-29T07:46:28Z' + url: https://api.github.com/repos/packit/ogr/issues/67 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-05-14T14:52:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/70/comments + created_at: '2019-05-14T14:49:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/70/events + html_url: https://github.com/packit/ogr/pull/70 + id: 443960153 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/70/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjc4NzE5MTU5 + number: 70 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/70.diff + html_url: https://github.com/packit/ogr/pull/70 + patch_url: https://github.com/packit/ogr/pull/70.patch + url: https://api.github.com/repos/packit/ogr/pulls/70 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.3.1 release + updated_at: '2019-05-14T14:55:27Z' + url: https://api.github.com/repos/packit/ogr/issues/70 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* add comment why there\ + \ is little bit confusing assigment\n* improve mock pf persistent objects\n\ + * use generic exception, to not fail when regenerating\n* raise filenotfound\ + \ exception in pagure method get_file_content\n* enable readonly tests\n\ + * enable some tests what were disabled when debugging various issues\n\ + * check write mode in dump function not in desctructor\n* do not flush\ + \ within desctructor, in case read mode\n* avoid to use default flow\ + \ style for yaml files\n* mock pagure classes\n* commit status\n* Regenerate\ + \ github test data\n* Implement adding PR comments\n* commit_comment:\ + \ Fix typo in docs\n* Implement adding commit comments\n* method GithubProject().get_sha_from_tag\ + \ in\n* rename github in mock to another name to fix the pypy test\n\ + * fix integration test for github by skipping\n* add yaml dependency\ + \ to requirements\n* add there class attribute to be possible to use\ + \ ogr mocking in pagure\n* fixed using of open in destructor\n* fixed\ + \ using of open in destructor\n* rename write_mode to is_write_mode\ + \ to be more explicit that there is expected boolean primarily\n* add\ + \ doc strings and adapt PR review comments\n* pagure/get_urls: fill\ + \ in {username}\n* use internal keys also in github to be clearer\n\ + * mocking also pagure in simplier way\n* raise special exception in\ + \ case key is not in storage file\n* move storage class to mock_core\n\ + * mock via persistent storage: run integration tests with persistent\ + \ storage\n* adapt jpopelka suggestions from PR\n* adapt jpopelka suggestion\ + \ from PR\n* add read only helper and option to github and pagure classes\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.3.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-05-14T10:16:08Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/69/comments + created_at: '2019-05-13T12:52:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/69/events + html_url: https://github.com/packit/ogr/pull/69 + id: 443381757 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/69/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjc4MjYwMzM4 + number: 69 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/69.diff + html_url: https://github.com/packit/ogr/pull/69 + patch_url: https://github.com/packit/ogr/pull/69.patch + url: https://api.github.com/repos/packit/ogr/pulls/69 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.3.0 release + updated_at: '2019-05-14T10:20:51Z' + url: https://api.github.com/repos/packit/ogr/issues/69 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-05-13T12:52:45Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/68/comments + created_at: '2019-05-13T12:50:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/68/events + html_url: https://github.com/packit/ogr/issues/68 + id: 443380561 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/68/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NDMzODA1NjE= + number: 68 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-05-13T12:52:45Z' + url: https://api.github.com/repos/packit/ogr/issues/68 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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.36038 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:23 GMT + ETag: W/"918b085f1d5af8d58fc5623ed7a804dadcbfd98a03b2b8bc537aa349704b931e" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78F90E:1335486:6075DCAF + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4220' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '780' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=18: + - metadata: + latency: 0.5150823593139648 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: Improve mocking, to be easily able mock `packit` via passing `persistent_storage` + class variable + closed_at: '2019-05-02T12:42:40Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/66/comments + created_at: '2019-05-02T11:19:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/66/events + html_url: https://github.com/packit/ogr/pull/66 + id: 439539983 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/66/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjc1MzIyNTg2 + number: 66 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/66.diff + html_url: https://github.com/packit/ogr/pull/66 + patch_url: https://github.com/packit/ogr/pull/66.patch + url: https://api.github.com/repos/packit/ogr/pulls/66 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: improve mock of persistent objects + updated_at: '2019-05-02T12:42:41Z' + url: https://api.github.com/repos/packit/ogr/issues/66 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "now each integration test class contains right one file with stored\ + \ API data.\r\nWe could reconsider it, and maybe have file for each\ + \ test, to avoid to regenerate big file and have big commits.\r\nWe\ + \ have to solve several issues:\r\n * How to handle it per test, now\ + \ there is right one service pytest fixture function what contains it\r\ + \n * How to regenerate just relevant part \r\n * maybe remove some\ + \ timestamps, UIDs and similar objects what can change on every request\r\ + \n * or manually(semiautomatically) call just affected tests - ie:\ + \ run tests, find failures (key errors) and then try to just regenerate\ + \ files for failed tests" + closed_at: '2019-04-30T19:32:17Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/62/comments + created_at: '2019-04-26T13:21:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/62/events + html_url: https://github.com/packit/ogr/issues/62 + id: 437670314 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/62/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0Mzc2NzAzMTQ= + number: 62 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'testing: split yaml files with data for each test to avoid regeneration + big file and big commits' + updated_at: '2019-04-30T19:32:17Z' + url: https://api.github.com/repos/packit/ogr/issues/62 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-30T13:49:40Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/63/comments + created_at: '2019-04-26T13:21:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/63/events + html_url: https://github.com/packit/ogr/pull/63 + id: 437670526 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/63/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjczODk1Njc5 + number: 63 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/63.diff + html_url: https://github.com/packit/ogr/pull/63 + patch_url: https://github.com/packit/ogr/pull/63.patch + url: https://api.github.com/repos/packit/ogr/pulls/63 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: mock pagure classes + updated_at: '2019-04-30T13:49:40Z' + url: https://api.github.com/repos/packit/ogr/issues/63 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-30T10:41:00Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/65/comments + created_at: '2019-04-30T08:16:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/65/events + html_url: https://github.com/packit/ogr/pull/65 + id: 438653697 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/65/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mjc0NjM1NjI0 + number: 65 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/65.diff + html_url: https://github.com/packit/ogr/pull/65 + patch_url: https://github.com/packit/ogr/pull/65.patch + url: https://api.github.com/repos/packit/ogr/pulls/65 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: commit status + updated_at: '2019-04-30T10:41:00Z' + url: https://api.github.com/repos/packit/ogr/issues/65 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-27T11:06:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/60/comments + created_at: '2019-04-24T13:58:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/60/events + html_url: https://github.com/packit/ogr/pull/60 + id: 436713552 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/60/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjczMTQ0MTgw + number: 60 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/60.diff + html_url: https://github.com/packit/ogr/pull/60 + patch_url: https://github.com/packit/ogr/pull/60.patch + url: https://api.github.com/repos/packit/ogr/pulls/60 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add method for creating comments on commits + updated_at: '2019-04-27T11:06:50Z' + url: https://api.github.com/repos/packit/ogr/issues/60 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Exsmple: https://github.com/dhodovsk/rsyslog/pull/1' + closed_at: '2019-04-27T11:05:13Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/59/comments + created_at: '2019-04-24T08:28:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/59/events + html_url: https://github.com/packit/ogr/pull/59 + id: 436563500 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/59/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjczMDI1OTcw + number: 59 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/59.diff + html_url: https://github.com/packit/ogr/pull/59 + patch_url: https://github.com/packit/ogr/pull/59.patch + url: https://api.github.com/repos/packit/ogr/pulls/59 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement adding PR comments + updated_at: '2019-04-27T11:05:13Z' + url: https://api.github.com/repos/packit/ogr/issues/59 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-25T09:08:30Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/55/comments + created_at: '2019-04-08T13:30:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/55/events + html_url: https://github.com/packit/ogr/pull/55 + id: 430453106 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/55/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjY4MzM3Mjk1 + number: 55 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/55.diff + html_url: https://github.com/packit/ogr/pull/55 + patch_url: https://github.com/packit/ogr/pull/55.patch + url: https://api.github.com/repos/packit/ogr/pulls/55 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: persistent storage for github class for testing ogr and packit + updated_at: '2019-04-25T09:09:03Z' + url: https://api.github.com/repos/packit/ogr/issues/55 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'https://pagure.io/pagure/issue/4427 + + + ``` + + $ pytest-3 -k test_fork + + === test session starts === + + platform linux -- Python 3.7.3, pytest-3.6.4, py-1.5.4, pluggy-0.6.0 + + rootdir: /home/tt/g/user-cont/ogr, inifile: + + plugins: cov-2.5.1 + + collected 76 items / 72 deselected + + + tests/integration/test_github.py s [ 25%] + + tests/integration/test_pagure.py .. [ 75%] + + tests/unit/test_pagure.py . [100%] + + + ==== 3 passed, 1 skipped, 72 deselected in 8.83 seconds === + + ```' + closed_at: '2019-04-15T14:09:04Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/57/comments + created_at: '2019-04-15T10:47:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/57/events + html_url: https://github.com/packit/ogr/pull/57 + id: 433214625 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/57/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjcwNDYzNzQ2 + number: 57 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/57.diff + html_url: https://github.com/packit/ogr/pull/57 + patch_url: https://github.com/packit/ogr/pull/57.patch + url: https://api.github.com/repos/packit/ogr/pulls/57 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'pagure/get_urls: fill in {username}' + updated_at: '2019-04-15T14:09:10Z' + url: https://api.github.com/repos/packit/ogr/issues/57 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-09T07:38:57Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/48/comments + created_at: '2019-03-26T14:15:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/48/events + html_url: https://github.com/packit/ogr/pull/48 + id: 425444570 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/48/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjY0NTM4MDgx + number: 48 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/48.diff + html_url: https://github.com/packit/ogr/pull/48 + patch_url: https://github.com/packit/ogr/pull/48.patch + url: https://api.github.com/repos/packit/ogr/pulls/48 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Ogr Read only mode support with simple test + updated_at: '2019-04-09T07:58:35Z' + url: https://api.github.com/repos/packit/ogr/issues/48 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-04-01T12:20:57Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/40/comments + created_at: '2019-03-20T14:58:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/40/events + html_url: https://github.com/packit/ogr/pull/40 + id: 423299795 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/40/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjYyOTAyNzA3 + number: 40 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/40.diff + html_url: https://github.com/packit/ogr/pull/40 + patch_url: https://github.com/packit/ogr/pull/40.patch + url: https://api.github.com/repos/packit/ogr/pulls/40 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'WIP: Simulation' + updated_at: '2019-04-01T12:20:57Z' + url: https://api.github.com/repos/packit/ogr/issues/40 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* [packit] sync from downstream\ + \ branch 'master'\n* tests,is_forked: comment why and test for return\ + \ type\n* Update ogr/services/github.py\n* forges may allow forks of\ + \ forks\n* is_forked to return bool again\n* gh: use HTML URL instead\ + \ of API URL\n* pagure/fork_create to return PagureProject\n* Jirka\ + \ can't live w/o pre-commit\n* _release_from_github_object: nicer docstring\n\ + * implement forking interface for github\n* upgrade fork API\n* [tox.ini]\ + \ code coverage\n* [Jenkinsfile] parallel tasks vol. 2\n* [Jenkinsfile]\ + \ Run tests & linters/checkers in parallel\n* [Jenkinsfile] run pre-commit\n\ + * utilize kwargs.setdefault\n* Jirka <3 pre-commit\n* add parent prop\ + \ into api\n* Apply suggestions from code review\n* CONTRIBUTING.md\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.2.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2019-03-28T09:20:22Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/51/comments + created_at: '2019-03-27T09:03:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/51/events + html_url: https://github.com/packit/ogr/pull/51 + id: 425837436 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/51/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjY0ODMyODQw + number: 51 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/51.diff + html_url: https://github.com/packit/ogr/pull/51 + patch_url: https://github.com/packit/ogr/pull/51.patch + url: https://api.github.com/repos/packit/ogr/pulls/51 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.2.0 release + updated_at: '2019-03-28T09:22:01Z' + url: https://api.github.com/repos/packit/ogr/issues/51 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-27T09:03:50Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/50/comments + created_at: '2019-03-27T08:58:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/50/events + html_url: https://github.com/packit/ogr/issues/50 + id: 425835263 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/50/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MjU4MzUyNjM= + number: 50 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.2.0 release + updated_at: '2019-03-27T09:03:50Z' + url: https://api.github.com/repos/packit/ogr/issues/50 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '* implement forking interface for github + + * upgrade fork API + + + Fixes #31' + closed_at: '2019-03-26T16:18:24Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/44/comments + created_at: '2019-03-25T14:39:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/44/events + html_url: https://github.com/packit/ogr/pull/44 + id: 424938659 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/44/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjY0MTQ4NTky + number: 44 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/44.diff + html_url: https://github.com/packit/ogr/pull/44 + patch_url: https://github.com/packit/ogr/pull/44.patch + url: https://api.github.com/repos/packit/ogr/pulls/44 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: m0ar forking + updated_at: '2019-03-27T08:37:30Z' + url: https://api.github.com/repos/packit/ogr/issues/44 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'Downstream commit: 48f9c4254f4eb328740129f902c9836105cdc86c + + ' + closed_at: '2019-03-26T16:38:43Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/46/comments + created_at: '2019-03-25T22:24:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/46/events + html_url: https://github.com/packit/ogr/pull/46 + id: 425142588 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/46/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjY0MzA5NDgy + number: 46 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/46.diff + html_url: https://github.com/packit/ogr/pull/46 + patch_url: https://github.com/packit/ogr/pull/46.patch + url: https://api.github.com/repos/packit/ogr/pulls/46 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Update from downstream branch 'master' + updated_at: '2019-03-27T08:36:53Z' + url: https://api.github.com/repos/packit/ogr/issues/46 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + author_association: CONTRIBUTOR + body: "```\r\n if req.status_code != 200:\r\n LOG.error(output)\r\ + \n if 'error_code' in output:\r\n> raise APIError(output['error'])\r\ + \nE libpagure.exceptions.APIError: Repo \"forks/ttomecek/sen\"\ + \ already exists \r\n```\r\n\r\n```\r\n/home/tt/.local/lib/python3.7/site-packages/ogr/services/pagure.py:151:\ + \ in fork_create\r\n self._pagure.create_fork()\r\n/home/tt/.local/lib/python3.7/site-packages/ogr/services/our_pagure.py:254:\ + \ in create_fork \ + \ \r\n data={\"repo\": self.repo_name,\ + \ \"namespace\": self.namespace, \"wait\": True},\r\n```\r\n\r\nWDYT?" + closed_at: '2019-03-26T16:18:24Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/31/comments + created_at: '2019-03-07T09:18:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/31/events + html_url: https://github.com/packit/ogr/issues/31 + id: 418203993 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/31/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MTgyMDM5OTM= + number: 31 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: create_fork should not fail if the fork already exists + updated_at: '2019-03-26T16:18:24Z' + url: https://api.github.com/repos/packit/ogr/issues/31 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-03-26T08:51:03Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/47/comments + created_at: '2019-03-26T06:53:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/47/events + html_url: https://github.com/packit/ogr/pull/47 + id: 425253987 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/47/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjY0Mzk0MTk2 + number: 47 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/47.diff + html_url: https://github.com/packit/ogr/pull/47 + patch_url: https://github.com/packit/ogr/pull/47.patch + url: https://api.github.com/repos/packit/ogr/pulls/47 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[tox.ini] code coverage' + updated_at: '2019-03-26T08:51:06Z' + url: https://api.github.com/repos/packit/ogr/issues/47 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-03-26T06:42:32Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/45/comments + created_at: '2019-03-25T17:06:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/45/events + html_url: https://github.com/packit/ogr/pull/45 + id: 425016622 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/45/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjY0MjEwMTc2 + number: 45 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/45.diff + html_url: https://github.com/packit/ogr/pull/45 + patch_url: https://github.com/packit/ogr/pull/45.patch + url: https://api.github.com/repos/packit/ogr/pulls/45 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[Jenkinsfile] run pre-commit' + updated_at: '2019-03-26T06:42:35Z' + url: https://api.github.com/repos/packit/ogr/issues/45 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: and implement it for github and pagure + closed_at: '2019-03-25T13:52:31Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/43/comments + created_at: '2019-03-23T20:58:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/43/events + html_url: https://github.com/packit/ogr/pull/43 + id: 424544327 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/43/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjYzODYxMDc4 + number: 43 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/43.diff + html_url: https://github.com/packit/ogr/pull/43 + patch_url: https://github.com/packit/ogr/pull/43.patch + url: https://api.github.com/repos/packit/ogr/pulls/43 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add parent prop into api + updated_at: '2019-03-25T13:52:57Z' + url: https://api.github.com/repos/packit/ogr/issues/43 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-21T15:21:49Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/41/comments + created_at: '2019-03-21T14:47:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/41/events + html_url: https://github.com/packit/ogr/pull/41 + id: 423768837 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/41/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjYzMjY2NDE3 + number: 41 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/41.diff + html_url: https://github.com/packit/ogr/pull/41 + patch_url: https://github.com/packit/ogr/pull/41.patch + url: https://api.github.com/repos/packit/ogr/pulls/41 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: bump spec to 0.1.0 + updated_at: '2019-03-23T20:14:13Z' + url: https://api.github.com/repos/packit/ogr/issues/41 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-03-22T14:08:51Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/42/comments + created_at: '2019-03-21T16:38:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/42/events + html_url: https://github.com/packit/ogr/pull/42 + id: 423829259 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/42/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjYzMzE0NzEw + number: 42 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/42.diff + html_url: https://github.com/packit/ogr/pull/42 + patch_url: https://github.com/packit/ogr/pull/42.patch + url: https://api.github.com/repos/packit/ogr/pulls/42 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: CONTRIBUTING.md + updated_at: '2019-03-22T14:08:54Z' + url: https://api.github.com/repos/packit/ogr/issues/42 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: With these changes, `packit srpm` should *just work*. + closed_at: '2019-03-18T14:00:44Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/35/comments + created_at: '2019-03-18T13:17:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/35/events + html_url: https://github.com/packit/ogr/pull/35 + id: 422212338 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/35/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjYyMDUxMjgx + number: 35 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/35.diff + html_url: https://github.com/packit/ogr/pull/35 + patch_url: https://github.com/packit/ogr/pull/35.patch + url: https://api.github.com/repos/packit/ogr/pulls/35 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: update packit.yaml to reflect packit==0.2.0 + updated_at: '2019-03-18T18:34:17Z' + url: https://api.github.com/repos/packit/ogr/issues/35 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n\n### Other\n\n* Utilize\ + \ gitchangelog feature of r-bot. [Tomas Tomecek]\n\n* Merge pull request\ + \ #35 from TomasTomecek/update-packit-yaml. [Tomas Tomecek]\n\n update\ + \ packit.yaml to reflect packit==0.2.0\n\n* Update packit.yaml to reflect\ + \ packit==0.2.0. [Tomas Tomecek]\n\n* Merge pull request #34 from jpopelka/no-dimensions.\ + \ [Jiri Popelka]\n\n pre-commit config & black/Flake8/mypy fixes\n\n\ + * Black & Flake8 & mypy fixes. [Jiri Popelka]\n\n* .pre-commit-config.yaml.\ + \ [Jiri Popelka]\n\n* Merge pull request #32 from packit-service/releases.\ + \ [Jiri Popelka]\n\n Releases\n\n* Add test and docs for GitHub releases.\ + \ [Radoslav Pitonak]\n\n* Add releases for github. [Frantisek Lachman]\n\ + \n* Merge pull request #27 from jpopelka/ci. [Jiri Popelka]\n\n Tox\ + \ & Jenkinsfile\n\n* Jenkinsfile. [Jiri Popelka]\n\n* Tox. [Jiri Popelka]\n\ + \n* [Makefile] no sudo. [Jiri Popelka]\n\n* Enum -> IntEnum. [Jiri Popelka]\n\ + \n* Merge pull request #30 from jscotka/test_integration_skip. [Jiri\ + \ Popelka]\n\n [integration tests] skip whole module if not all env.\ + \ variables set\n\n* Move skip_tests() to conftest.py. [Jiri Popelka]\n\ + \n* Create better function to skip tests. [Jan Scotka]\n\n* Add skip\ + \ decorators to skip whole module in case of integration tests in case\ + \ env vars are not typed. [Jan Scotka]\n\n* Merge pull request #28 from\ + \ TomasTomecek/add-packit. [Tomas Tomecek]\n\n add packit config\n\n\ + * Add packit config. [Tomas Tomecek]\n\n\n\n\nYou can change it by editing\ + \ `CHANGELOG.md` in the root of this repository and pushing to `0.1.0-release`\ + \ branch before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2019-03-18T17:58:28Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/39/comments + created_at: '2019-03-18T17:45:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/39/events + html_url: https://github.com/packit/ogr/pull/39 + id: 422351830 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/39/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTYxMjI4 + number: 39 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/39.diff + html_url: https://github.com/packit/ogr/pull/39 + patch_url: https://github.com/packit/ogr/pull/39.patch + url: https://api.github.com/repos/packit/ogr/pulls/39 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.1.0 release + updated_at: '2019-03-18T18:00:48Z' + url: https://api.github.com/repos/packit/ogr/issues/39 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-18T17:45:29Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/36/comments + created_at: '2019-03-18T16:53:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/36/events + html_url: https://github.com/packit/ogr/issues/36 + id: 422327353 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/36/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MjIzMjczNTM= + number: 36 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: new minor release + updated_at: '2019-03-18T17:45:29Z' + url: https://api.github.com/repos/packit/ogr/issues/36 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\nNo changelog provided\n\n\ + You can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.1.0-release` branch before merging this PR.\nI didn't\ + \ find any files where `__version__` is set." + closed_at: '2019-03-18T17:44:20Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/38/comments + created_at: '2019-03-18T17:28:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/38/events + html_url: https://github.com/packit/ogr/pull/38 + id: 422343992 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/38/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTU1MTM0 + number: 38 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/38.diff + html_url: https://github.com/packit/ogr/pull/38 + patch_url: https://github.com/packit/ogr/pull/38.patch + url: https://api.github.com/repos/packit/ogr/pulls/38 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.1.0 release + updated_at: '2019-03-18T17:44:28Z' + url: https://api.github.com/repos/packit/ogr/issues/38 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* update packit.yaml to\ + \ reflect packit==0.2.0\n* black & Flake8 & mypy fixes\n* .pre-commit-config.yaml\n\ + * add test and docs for GitHub releases\n* Add releases for github\n\ + * Jenkinsfile\n* Tox\n* [Makefile] no sudo\n* Enum -> IntEnum\n* Move\ + \ skip_tests() to conftest.py\n* create better function to skip tests.\n\ + * add skip decorators to skip whole module in case of integration tests\ + \ in case env vars are not typed\n* add packit config\n\n\nYou can change\ + \ it by editing `CHANGELOG.md` in the root of this repository and pushing\ + \ to `0.1.0-release` branch before merging this PR.\nI didn't find any\ + \ files where `__version__` is set." + closed_at: '2019-03-18T16:58:25Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/37/comments + created_at: '2019-03-18T16:54:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/37/events + html_url: https://github.com/packit/ogr/pull/37 + id: 422328099 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/37/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjYyMTQyNjc3 + number: 37 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/37.diff + html_url: https://github.com/packit/ogr/pull/37 + patch_url: https://github.com/packit/ogr/pull/37.patch + url: https://api.github.com/repos/packit/ogr/pulls/37 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.1.0 release + updated_at: '2019-03-18T17:26:48Z' + url: https://api.github.com/repos/packit/ogr/issues/37 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-03-15T13:51:22Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/34/comments + created_at: '2019-03-15T11:27:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/34/events + html_url: https://github.com/packit/ogr/pull/34 + id: 421473951 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/34/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjYxNTE1NjA5 + number: 34 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/34.diff + html_url: https://github.com/packit/ogr/pull/34 + patch_url: https://github.com/packit/ogr/pull/34.patch + url: https://api.github.com/repos/packit/ogr/pulls/34 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: pre-commit config & black/Flake8/mypy fixes + updated_at: '2019-03-15T13:51:25Z' + url: https://api.github.com/repos/packit/ogr/issues/34 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Added object representation for GitHub releases.\r\n- What about\ + \ pagure? Is there anything that can be used?" + closed_at: '2019-03-15T09:41:59Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/32/comments + created_at: '2019-03-12T13:35:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/32/events + html_url: https://github.com/packit/ogr/pull/32 + id: 419989710 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/32/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjYwMzY1NTk1 + number: 32 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/32.diff + html_url: https://github.com/packit/ogr/pull/32 + patch_url: https://github.com/packit/ogr/pull/32.patch + url: https://api.github.com/repos/packit/ogr/pulls/32 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Releases + updated_at: '2019-03-15T09:42:04Z' + url: https://api.github.com/repos/packit/ogr/issues/32 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-03-05T17:01:01Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/27/comments + created_at: '2019-03-01T16:03:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/27/events + html_url: https://github.com/packit/ogr/pull/27 + id: 416169456 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/27/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjU3NDk2Mjcz + number: 27 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/27.diff + html_url: https://github.com/packit/ogr/pull/27 + patch_url: https://github.com/packit/ogr/pull/27.patch + url: https://api.github.com/repos/packit/ogr/pulls/27 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Tox & Jenkinsfile + updated_at: '2019-03-05T17:01:04Z' + url: https://api.github.com/repos/packit/ogr/issues/27 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-05T15:25:00Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/30/comments + created_at: '2019-03-04T14:02:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/30/events + html_url: https://github.com/packit/ogr/pull/30 + id: 416815413 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/30/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjU3OTUzMjI1 + number: 30 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/30.diff + html_url: https://github.com/packit/ogr/pull/30 + patch_url: https://github.com/packit/ogr/pull/30.patch + url: https://api.github.com/repos/packit/ogr/pulls/30 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[integration tests] skip whole module if not all env. variables + set' + updated_at: '2019-03-05T15:25:01Z' + url: https://api.github.com/repos/packit/ogr/issues/30 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2019-03-01T17:19:12Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/28/comments + created_at: '2019-03-01T16:44:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/28/events + html_url: https://github.com/packit/ogr/pull/28 + id: 416187270 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/28/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjU3NTEwNDk4 + number: 28 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/28.diff + html_url: https://github.com/packit/ogr/pull/28 + patch_url: https://github.com/packit/ogr/pull/28.patch + url: https://api.github.com/repos/packit/ogr/pulls/28 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add packit config + updated_at: '2019-03-01T17:19:16Z' + url: https://api.github.com/repos/packit/ogr/issues/28 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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.514659 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:26 GMT + ETag: W/"223dfa64632dca637fe2044a41e29261036c6fe5cd5c1294a20e20d19c7d3c5c" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78F9A7:1335627:6075DCB2 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4205' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '795' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=19: + - metadata: + latency: 0.29249024391174316 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\nNo changelog provided\n\n\ + You can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.1.0-release` branch before merging this PR.\nI didn't\ + \ find any files where `__version__` is set." + closed_at: '2019-03-01T16:41:07Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/26/comments + created_at: '2019-03-01T15:56:24Z' + events_url: https://api.github.com/repos/packit/ogr/issues/26/events + html_url: https://github.com/packit/ogr/pull/26 + id: 416166108 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/26/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjU3NDkzNTkx + number: 26 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/26.diff + html_url: https://github.com/packit/ogr/pull/26 + patch_url: https://github.com/packit/ogr/pull/26.patch + url: https://api.github.com/repos/packit/ogr/pulls/26 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.1.0 release + updated_at: '2019-03-01T16:49:43Z' + url: https://api.github.com/repos/packit/ogr/issues/26 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "we need this b/c 0.0.2 doesn't have specfile\r\n\r\nand I want\ + \ to use packit to bring the release to fedora" + closed_at: '2019-03-01T15:56:25Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/25/comments + created_at: '2019-03-01T15:52:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/25/events + html_url: https://github.com/packit/ogr/issues/25 + id: 416164397 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/25/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MTYxNjQzOTc= + number: 25 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.1.0 release + updated_at: '2019-03-01T16:19:00Z' + url: https://api.github.com/repos/packit/ogr/issues/25 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* add RPM spec file\n* [release-conf.yaml]\ + \ remove deprecated python_versions\n* Remove dataclasses\n* Use strings\ + \ for type annotations\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.0.3-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2019-02-28T11:45:58Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/24/comments + created_at: '2019-02-28T10:42:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/24/events + html_url: https://github.com/packit/ogr/pull/24 + id: 415557542 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/24/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjU3MDE3MDgz + number: 24 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/24.diff + html_url: https://github.com/packit/ogr/pull/24 + patch_url: https://github.com/packit/ogr/pull/24.patch + url: https://api.github.com/repos/packit/ogr/pulls/24 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.0.3 release + updated_at: '2019-02-28T12:07:04Z' + url: https://api.github.com/repos/packit/ogr/issues/24 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: Release bot, please! + closed_at: '2019-02-28T10:42:18Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/23/comments + created_at: '2019-02-28T10:39:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/23/events + html_url: https://github.com/packit/ogr/issues/23 + id: 415556376 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/23/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MTU1NTYzNzY= + number: 23 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.0.3 release + updated_at: '2019-02-28T10:42:18Z' + url: https://api.github.com/repos/packit/ogr/issues/23 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "# how to test\r\n```\r\ngit checkout 0.0.2\r\npython3 ./setup.py\ + \ sdist\r\nmv ./dist/ogr-0.0.2.tar.gz .\r\nrpmbuild ./*.spec --define\ + \ \"_sourcedir ${PWD}\" --define \"_specdir ${PWD}\" --define \"_builddir\ + \ ${PWD}\" --define \"_srcrpmdir ${PWD}\" --define \"_rpmdir ${PWD}\"\ + \ -bs\r\nfedora-review -n python-ogr -m fedora-29-x86_64\r\n```\r\n\r\ + \nOnce merged, I'll open a Fedora review for ogr. Franta could do it\ + \ so he can get the pkgr perms." + closed_at: '2019-02-27T11:38:20Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/22/comments + created_at: '2019-02-26T17:11:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/22/events + html_url: https://github.com/packit/ogr/pull/22 + id: 414722729 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/22/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjU2MzcxNDM2 + number: 22 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/22.diff + html_url: https://github.com/packit/ogr/pull/22 + patch_url: https://github.com/packit/ogr/pull/22.patch + url: https://api.github.com/repos/packit/ogr/pulls/22 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add RPM spec file + updated_at: '2019-02-27T11:38:24Z' + url: https://api.github.com/repos/packit/ogr/issues/22 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n138 Bytecompiling .py files below /builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6\ + \ using /usr/bin/python3.6\r\n139 *** Error compiling '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/abstract.py'...\r\ + \n140 File \"/usr/lib/python3.6/abstract.py\", line 1\r\n141 SyntaxError:\ + \ future feature annotations is not defined\r\n142 *** Error compiling\ + \ '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/services/github.py'...\r\ + \n143 File \"/usr/lib/python3.6/github.py\", line 1\r\n144 SyntaxError:\ + \ future feature annotations is not defined\r\n145 *** Error compiling\ + \ '/builddir/build/BUILDROOT/python-ogr-0.0.2-1.fc28.x86_64/usr/lib/python3.6/site-packages/ogr/services/pagure.py'...\r\ + \n146 File \"/usr/lib/python3.6/pagure.py\", line 1\r\n147 SyntaxError:\ + \ future feature annotations is not defined\r\n```\r\n" + closed_at: '2019-02-27T08:38:17Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/21/comments + created_at: '2019-02-26T17:08:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/21/events + html_url: https://github.com/packit/ogr/issues/21 + id: 414721039 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/21/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MTQ3MjEwMzk= + number: 21 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: ogr doesn't work with python3.6 + updated_at: '2019-02-27T08:38:17Z' + url: https://api.github.com/repos/packit/ogr/issues/21 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Be able to run tests via tmt also locally.' - closed_at: null - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/358/comments - created_at: '2020-03-19T08:50:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/358/events - html_url: https://github.com/packit/ogr/pull/358 - id: 584255021 - labels: - - color: dd5f74 - default: false - description: Work in progress. - id: 1432779248 - name: do-not-merge - node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 - url: https://api.github.com/repos/packit/ogr/labels/do-not-merge - labels_url: https://api.github.com/repos/packit/ogr/issues/358/labels{/name} + body: '' + closed_at: '2019-02-26T10:21:46Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/20/comments + created_at: '2019-02-26T08:21:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/20/events + html_url: https://github.com/packit/ogr/pull/20 + id: 414485102 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/20/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzkwODczODYy - number: 358 + node_id: MDExOlB1bGxSZXF1ZXN0MjU2MTgzNjIz + number: 20 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/358.diff - html_url: https://github.com/packit/ogr/pull/358 - patch_url: https://github.com/packit/ogr/pull/358.patch - url: https://api.github.com/repos/packit/ogr/pulls/358 + diff_url: https://github.com/packit/ogr/pull/20.diff + html_url: https://github.com/packit/ogr/pull/20 + patch_url: https://github.com/packit/ogr/pull/20.patch + url: https://api.github.com/repos/packit/ogr/pulls/20 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: 'WIP: Tmt local run' - updated_at: '2020-07-28T12:13:04Z' - url: https://api.github.com/repos/packit/ogr/issues/358 + state: closed + title: '[release-conf.yaml] remove deprecated python_versions' + updated_at: '2019-02-26T10:21:48Z' + url: https://api.github.com/repos/packit/ogr/issues/20 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Remove future import for annotations => python3.6 compatibility.\r\ + \n\r\nResolves #13 " + closed_at: '2019-02-19T14:31:38Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/18/comments + created_at: '2019-02-19T07:24:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/18/events + html_url: https://github.com/packit/ogr/pull/18 + id: 411781030 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/18/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjU0MTQyMzQ0 + number: 18 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/18.diff + html_url: https://github.com/packit/ogr/pull/18 + patch_url: https://github.com/packit/ogr/pull/18.patch + url: https://api.github.com/repos/packit/ogr/pulls/18 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Use strings for type annotations + updated_at: '2019-02-19T14:35:24Z' + url: https://api.github.com/repos/packit/ogr/issues/18 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -44696,175 +56520,314 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "AFAIK at the moment it is not possible to get the info about whether\ - \ the repository is private or not in pagure. Now we depend on the info\ - \ that in src.fedoraproject.org and pagure.io, the private repositories\ - \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" - closed_at: null + author_association: CONTRIBUTOR + body: "after installing `ogr` via ``pip3 install .``\r\nI wanted to run\ + \ make check ``PYTHONPATH=`pwd` pytest-3 -v ./tests/``\r\n\r\nit leads\ + \ to errors like:\r\n```\r\nE File \"/home/jscotka/git/userspace-containerization/ogr/ogr/abstract.py\"\ + , line 1\r\nE from __future__ import annotations\r\nE \ + \ ^\r\nE SyntaxError: future feature\ + \ annotations is not defined\r\n```\r\n\r\nseems that annotations module\ + \ is not accessible in ``python3-3.6.8-1.fc28.x86_64`` by default\r\n" + closed_at: '2019-02-19T14:31:38Z' comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments - created_at: '2020-02-18T12:39:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/330/events - html_url: https://github.com/packit/ogr/issues/330 - id: 566865331 + comments_url: https://api.github.com/repos/packit/ogr/issues/13/comments + created_at: '2019-02-15T12:46:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/13/events + html_url: https://github.com/packit/ogr/issues/13 + id: 410754451 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/13/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0MTA3NTQ0NTE= + number: 13 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: missing annotations library for testing + updated_at: '2019-02-19T14:31:38Z' + url: https://api.github.com/repos/packit/ogr/issues/13 + user: + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos + site_admin: false + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions + type: User + url: https://api.github.com/users/jscotka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* 0.0.2 release\n* 0.0.2\ + \ release\n* 0.0.2 release\n* [README] Requirements\n* [make check]\ + \ colors & showlocals\n* Add release-conf.yaml\n* Add new url\n* Fix\ + \ the name meaning\n* Move 'packages' from setup.py to setup.cfg\n*\ + \ Rename confusing pagure parameter\n* Fix some styling\n* Correct get_file_content\n\ + * Correct Pagure tests\n* Add API for file content\n* Add tests for\ + \ github\n* Rework github implementation\n* Fix tests and cyclic imports\n\ + * Remove duplicated test\n* Add annotations\n* Do not use pagure instance\ + \ publically\n* Add change_token for Servise and Project classes\n*\ + \ Add unit tests for comment filter/search functions\n* Extract comment\ + \ filter/search methods\n* Add integration tests for pr-comments and\ + \ skip test_create_fork\n* Improve pr-comments API\n* Add method for\ + \ filtering comments in pr\n* Fix pr_info and pr_comment content\n\n\ + \nYou can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.0.2-release` branch before merging this PR.\nI didn't\ + \ find any files where `__version__` is set." + closed_at: '2019-02-19T04:56:59Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/16/comments + created_at: '2019-02-18T09:07:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/16/events + html_url: https://github.com/packit/ogr/pull/16 + id: 411369684 labels: - - color: 1d76db + - color: ededed default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/330/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/16/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NjY4NjUzMzE= - number: 330 + node_id: MDExOlB1bGxSZXF1ZXN0MjUzODMzNjM0 + number: 16 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/16.diff + html_url: https://github.com/packit/ogr/pull/16 + patch_url: https://github.com/packit/ogr/pull/16.patch + url: https://api.github.com/repos/packit/ogr/pulls/16 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: better is_private method for pagure projects - updated_at: '2020-07-28T11:32:52Z' - url: https://api.github.com/repos/packit/ogr/issues/330 + state: closed + title: 0.0.2 release + updated_at: '2019-02-19T05:01:47Z' + url: https://api.github.com/repos/packit/ogr/issues/16 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-07-28T07:54:55Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/436/comments - created_at: '2020-07-16T12:52:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/436/events - html_url: https://github.com/packit/ogr/pull/436 - id: 658170942 + body: Thank you in advance! + closed_at: '2019-02-18T09:07:33Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/15/comments + created_at: '2019-02-18T08:29:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/15/events + html_url: https://github.com/packit/ogr/issues/15 + id: 411355216 labels: - - color: 0e8a16 + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/436/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/15/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDUwMTcyMDA5 - number: 436 + node_id: MDU6SXNzdWU0MTEzNTUyMTY= + number: 15 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.0.2 release + updated_at: '2019-02-18T09:07:33Z' + url: https://api.github.com/repos/packit/ogr/issues/15 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2019-02-15T16:54:17Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/12/comments + created_at: '2019-02-15T10:33:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/12/events + html_url: https://github.com/packit/ogr/pull/12 + id: 410703936 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/12/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjUzMzgwNjA0 + number: 12 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/436.diff - html_url: https://github.com/packit/ogr/pull/436 - patch_url: https://github.com/packit/ogr/pull/436.patch - url: https://api.github.com/repos/packit/ogr/pulls/436 + diff_url: https://github.com/packit/ogr/pull/12.diff + html_url: https://github.com/packit/ogr/pull/12 + patch_url: https://github.com/packit/ogr/pull/12.patch + url: https://api.github.com/repos/packit/ogr/pulls/12 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Support add group for pagure - updated_at: '2020-07-28T08:12:10Z' - url: https://api.github.com/repos/packit/ogr/issues/436 + title: Add release-conf.yaml + updated_at: '2019-02-15T17:12:14Z' + url: https://api.github.com/repos/packit/ogr/issues/12 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Since we [now](https://github.com/packit-service/ogr/pull/150)\ - \ support GitLab, we need to update our README to show it.\r\n\r\n+\ - \ [ ] and provide brief docs how to use it (@TomasTomecek had to google\ - \ a bit)" - closed_at: '2020-07-17T13:52:03Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/157/comments - created_at: '2019-08-15T15:27:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/157/events - html_url: https://github.com/packit/ogr/issues/157 - id: 481205806 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/157/labels{/name} + body: '' + closed_at: '2019-02-15T16:55:04Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/14/comments + created_at: '2019-02-15T13:30:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/14/events + html_url: https://github.com/packit/ogr/pull/14 + id: 410770447 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/14/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0ODEyMDU4MDY= - number: 157 + node_id: MDExOlB1bGxSZXF1ZXN0MjUzNDI5MTA2 + number: 14 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/14.diff + html_url: https://github.com/packit/ogr/pull/14 + patch_url: https://github.com/packit/ogr/pull/14.patch + url: https://api.github.com/repos/packit/ogr/pulls/14 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: README & Makefile + updated_at: '2019-02-15T17:12:10Z' + url: https://api.github.com/repos/packit/ogr/issues/14 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: 'Resolves #4' + closed_at: '2019-02-14T13:28:27Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/11/comments + created_at: '2019-02-14T13:11:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/11/events + html_url: https://github.com/packit/ogr/pull/11 + id: 410292447 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/11/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjUzMDY2MjY3 + number: 11 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/11.diff + html_url: https://github.com/packit/ogr/pull/11 + patch_url: https://github.com/packit/ogr/pull/11.patch + url: https://api.github.com/repos/packit/ogr/pulls/11 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Mention GitLab support in README - updated_at: '2020-07-28T07:07:52Z' - url: https://api.github.com/repos/packit/ogr/issues/157 + title: Fix the name meaning and prepare for the move to packit-service + updated_at: '2019-02-14T13:28:27Z' + url: https://api.github.com/repos/packit/ogr/issues/11 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -44886,58 +56849,33 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "https://github.com/packit-service/ogr/pull/415 implements `PagurePullRequest.patch`\ - \ property to get a patch from a pull request.\r\n`Gitlab` & `Github`\ - \ implementation are missing." - closed_at: null - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/416/comments - created_at: '2020-05-22T16:21:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/416/events - html_url: https://github.com/packit/ogr/issues/416 - id: 623324928 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/416/labels{/name} + body: '' + closed_at: '2019-02-11T12:22:48Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/10/comments + created_at: '2019-02-11T11:44:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/10/events + html_url: https://github.com/packit/ogr/pull/10 + id: 408743900 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/10/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjMzMjQ5Mjg= - number: 416 + node_id: MDExOlB1bGxSZXF1ZXN0MjUxODg0MTc2 + number: 10 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/10.diff + html_url: https://github.com/packit/ogr/pull/10 + patch_url: https://github.com/packit/ogr/pull/10.patch + url: https://api.github.com/repos/packit/ogr/pulls/10 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Implement patch property in GitlabPullRequest and GithubPullRequest - updated_at: '2020-07-23T11:20:56Z' - url: https://api.github.com/repos/packit/ogr/issues/416 + state: closed + title: Move 'packages' from setup.py to setup.cfg + updated_at: '2019-02-11T13:08:26Z' + url: https://api.github.com/repos/packit/ogr/issues/10 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -44959,51 +56897,39 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "It would be nice to add the following parts to CONTRIBUTING.md\r\ - \n\r\n- What is `git rebase` and how to rebase a pull-request.\r\n \ - \ - We want to have a git tree like this: \r\n![Sn\xEDmek z 2019-09-19\ - \ 11-43-15](https://user-images.githubusercontent.com/20214043/65233459-2712aa00-dad3-11e9-8849-6bb5babf75fe.png)\r\ - \n - not this: \r\n![Sn\xEDmek z 2019-09-19 11-43-51](https://user-images.githubusercontent.com/20214043/65233488-309c1200-dad3-11e9-93a9-b2b15e8a0f39.png)\r\ - \n\r\n- links to documentation we are using when implementing the code\ - \ for github, gitlab, pagure\r\n - https://src.fedoraproject.org/api/0/\r\ - \n - https://pagure.io/api/0/\r\n - https://pygithub.readthedocs.io/\r\ - \n - https://python-gitlab.readthedocs.io/\r\n - ...\r\n \r\n\ - - How to write a good git commit messages:\r\n - https://chris.beams.io/posts/git-commit/" - closed_at: null - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/209/comments - created_at: '2019-09-19T09:51:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/209/events - html_url: https://github.com/packit/ogr/issues/209 - id: 495693202 - labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/209/labels{/name} + body: '- Rework github implementation. + + - Add tests for github. + + - Add API for file content. + + - Correct Pagure tests.' + closed_at: '2019-02-04T16:55:46Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/9/comments + created_at: '2019-02-04T13:48:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/9/events + html_url: https://github.com/packit/ogr/pull/9 + id: 406337577 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/9/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU2OTMyMDI= - number: 209 + node_id: MDExOlB1bGxSZXF1ZXN0MjUwMDU3NDI2 + number: 9 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/9.diff + html_url: https://github.com/packit/ogr/pull/9 + patch_url: https://github.com/packit/ogr/pull/9.patch + url: https://api.github.com/repos/packit/ogr/pulls/9 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Add info about git workflow to contribution guide (and other suggestions) - updated_at: '2020-07-21T09:28:36Z' - url: https://api.github.com/repos/packit/ogr/issues/209 + state: closed + title: github support + updated_at: '2019-02-04T16:55:50Z' + url: https://api.github.com/repos/packit/ogr/issues/9 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -45025,292 +56951,322 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Current API appears to be fully functional and sufficiently covered\ - \ by tests for GitHub and Pagure.\r\n\r\n## Services\r\n\r\n### GitHub\ - \ + GitLab\r\n\r\n- allows creating fork of forks\r\n- allows creating\ - \ PRs from one fork to another\r\n\r\n### Pagure\r\n\r\n- doesn't allow\ - \ creating fork of forks\r\n- allows creating PRs on a project (assuming\ - \ it's not a fork) or from fork to upstream\r\n\r\n## Current implementation\r\ - \n\r\n```python\r\ndef create_pr(\r\n self,\r\n title: str,\r\n body:\ - \ str,\r\n target_branch: str,\r\n source_branch: str,\r\n fork_username:\ - \ str = None,\r\n) -> \"PullRequest\":\r\n```\r\n\r\n## Example objects\ - \ used later\r\n\r\n```python\r\nupstream_project = service.get_project(namespace=\"\ - packit-service\", repo=\"ogr\")\r\nmy_fork = service.get_project(namespace=\"\ - mfocko\", repo=\"ogr\")\r\nfork_of_different_user = service.get_project(namespace=\"\ - lachmanfrantisek\", repo=\"ogr\")\r\n```" - closed_at: null - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/412/comments - created_at: '2020-05-19T20:57:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/412/events - html_url: https://github.com/packit/ogr/issues/412 - id: 621279784 - labels: - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/412/labels{/name} + body: '- Remove duplicated test. + + - Add annotations.' + closed_at: '2019-01-30T10:16:18Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/7/comments + created_at: '2019-01-29T16:26:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/7/events + html_url: https://github.com/packit/ogr/pull/7 + id: 404374671 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/7/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjEyNzk3ODQ= - number: 412 + node_id: MDExOlB1bGxSZXF1ZXN0MjQ4NTcxNTc3 + number: 7 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/7.diff + html_url: https://github.com/packit/ogr/pull/7 + patch_url: https://github.com/packit/ogr/pull/7.patch + url: https://api.github.com/repos/packit/ogr/pulls/7 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Revisiting API for creating PRs - updated_at: '2020-07-21T09:28:30Z' - url: https://api.github.com/repos/packit/ogr/issues/412 + state: closed + title: Add type annotations and fix create_pr + updated_at: '2019-01-30T10:32:30Z' + url: https://api.github.com/repos/packit/ogr/issues/7 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Follow-up of #344 (PR: #374)\r\n\r\nAPI docs (https://docs.gitlab.com/ee/api/commits.html#post-the-build-status-to-a-commit):\r\ - \n> Adds or updates a build status of a commit.\r\n\r\nGitlab API suggests\ - \ that setting commit flag can update existing one, which could mean\ - \ this issue is blocked by API.\r\n\r\nUpdating could also mean:\r\n\ - 1. adding new commit flag that replaces old one\r\n2. adding new commit\ - \ flag, but keeping the old one\r\n\r\nExample output from docs doesn't\ - \ contain commit flag with same name." - closed_at: null + body: "- Add change_token for Servise and Project classes.\r\n- Do not\ + \ use pagure instance publically." + closed_at: '2019-01-25T14:25:58Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/6/comments + created_at: '2019-01-24T11:21:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/6/events + html_url: https://github.com/packit/ogr/pull/6 + id: 402660658 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/6/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjQ3MjkxODEx + number: 6 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/6.diff + html_url: https://github.com/packit/ogr/pull/6 + patch_url: https://github.com/packit/ogr/pull/6.patch + url: https://api.github.com/repos/packit/ogr/pulls/6 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: change_token methods + updated_at: '2019-01-28T10:53:41Z' + url: https://api.github.com/repos/packit/ogr/issues/6 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Add method for filtering comments in pr.\r\n- Fix pr_info and\ + \ pr_comment content.\r\n\r\n- TODO:\r\n - [x] searching in comments/description\r\ + \n - [x] unit tests\r\n - [x] integration tests" + closed_at: '2019-01-18T12:40:24Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/413/comments - created_at: '2020-05-20T21:27:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/413/events - html_url: https://github.com/packit/ogr/issues/413 - id: 622095374 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/413/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/5/comments + created_at: '2019-01-17T10:52:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/5/events + html_url: https://github.com/packit/ogr/pull/5 + id: 400218175 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/5/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjIwOTUzNzQ= - number: 413 + node_id: MDExOlB1bGxSZXF1ZXN0MjQ1NDU1OTU0 + number: 5 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/5.diff + html_url: https://github.com/packit/ogr/pull/5 + patch_url: https://github.com/packit/ogr/pull/5.patch + url: https://api.github.com/repos/packit/ogr/pulls/5 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: edited on Gitlab's commit flag - updated_at: '2020-07-21T09:27:54Z' - url: https://api.github.com/repos/packit/ogr/issues/413 + state: closed + title: Pr info and comments + updated_at: '2019-01-18T13:02:36Z' + url: https://api.github.com/repos/packit/ogr/issues/5 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos - site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions - type: User - url: https://api.github.com/users/nasirhm - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/35005234?v=4 - events_url: https://api.github.com/users/nasirhm/events{/privacy} - followers_url: https://api.github.com/users/nasirhm/followers - following_url: https://api.github.com/users/nasirhm/following{/other_user} - gists_url: https://api.github.com/users/nasirhm/gists{/gist_id} + assignee: null + assignees: [] + author_association: MEMBER + body: '- add MIT license + + - use setuptools-scm + + - add Makefile target for image and pypi-checking' + closed_at: '2019-01-11T14:15:26Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/3/comments + created_at: '2019-01-10T15:31:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/3/events + html_url: https://github.com/packit/ogr/pull/3 + id: 397883535 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/3/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MjQzNzI4NTQ0 + number: 3 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/3.diff + html_url: https://github.com/packit/ogr/pull/3 + patch_url: https://github.com/packit/ogr/pull/3.patch + url: https://api.github.com/repos/packit/ogr/pulls/3 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Introduce packaging + updated_at: '2019-01-12T14:24:24Z' + url: https://api.github.com/repos/packit/ogr/issues/3 + 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/nasirhm - id: 35005234 - login: nasirhm - node_id: MDQ6VXNlcjM1MDA1MjM0 - organizations_url: https://api.github.com/users/nasirhm/orgs - received_events_url: https://api.github.com/users/nasirhm/received_events - repos_url: https://api.github.com/users/nasirhm/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/nasirhm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nasirhm/subscriptions + 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/nasirhm - author_association: CONTRIBUTOR - body: "Is it possible to assign Issues to particular user-names using\ - \ the issue object by any chance?\r\n\r\n#### Github\r\n- github-api:\ - \ https://developer.github.com/v3/issues/assignees/#add-assignees-to-an-issue\r\ - \n- pygithub: https://pygithub.readthedocs.io/en/latest/github_objects/Issue.html\r\ - \n\r\n#### Gitlab\r\n- gitlab-api: https://docs.gitlab.com/ee/api/issues.html#edit-issue\r\ - \n- python-gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ - \n- example of the code: https://gitlab.fi.muni.cz/xlachma1/figitool/blob/master/figitool/figitool.py#L576\r\ - \n```python\r\n user_id = gitlab_instance.users.list(username=login)[0].id\r\ - \n gitlab_mr.assignee_id = user_id\r\n gitlab_mr.save()\r\ - \n```\r\n\r\n#### Pagure:\r\n- https://src.fedoraproject.org/api/0/#issues\r\ - \n - -> Create a new issue\r\n - -> Assign an issue\r\n\r\n### TODO:\r\ - \n\r\n- [ ] add `assignee` argument to methods for creating the issue\r\ - \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ - \ tests for it\r\n- [ ] add the get/set property for the Issue classes\r\ - \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ - \ tests for it\r\n\r\n\r\nupdated by @lachmanfrantisek " - closed_at: null - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/329/comments - created_at: '2020-02-17T15:16:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/329/events - html_url: https://github.com/packit/ogr/issues/329 - id: 566364748 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/329/labels{/name} + url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '- Add tests for Pagure and OurPagure. + + - Update the API and Pagure implementation.' + closed_at: '2019-01-10T13:50:20Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/2/comments + created_at: '2019-01-10T11:16:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/2/events + html_url: https://github.com/packit/ogr/pull/2 + id: 397783096 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/2/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NjYzNjQ3NDg= - number: 329 + node_id: MDExOlB1bGxSZXF1ZXN0MjQzNjQ4ODM2 + number: 2 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/2.diff + html_url: https://github.com/packit/ogr/pull/2 + patch_url: https://github.com/packit/ogr/pull/2.patch + url: https://api.github.com/repos/packit/ogr/pulls/2 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Assigning Issues to based on usernames. - updated_at: '2020-07-17T06:32:56Z' - url: https://api.github.com/repos/packit/ogr/issues/329 + state: closed + title: Update API and Pagure + updated_at: '2019-01-10T13:52:06Z' + url: https://api.github.com/repos/packit/ogr/issues/2 user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 - events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} - followers_url: https://api.github.com/users/saisankargochhayat/followers - following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} - gists_url: https://api.github.com/users/saisankargochhayat/gists{/gist_id} + 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/saisankargochhayat - id: 9396452 - login: saisankargochhayat - node_id: MDQ6VXNlcjkzOTY0NTI= - organizations_url: https://api.github.com/users/saisankargochhayat/orgs - received_events_url: https://api.github.com/users/saisankargochhayat/received_events - repos_url: https://api.github.com/users/saisankargochhayat/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions + 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/saisankargochhayat + url: https://api.github.com/users/lachmanfrantisek + _next: null + elapsed: 0.292155 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:02:27 GMT + ETag: W/"7f53c314cd8b6c5f353e0920992a292b82fb03a809c6d20bf947d6b78e7b907d" + Link: ; + rel="prev", ; + rel="first" + 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: 88B1:19FC:78F9DB:13356EB:6075DCB3 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4200' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '800' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=2: + - metadata: + latency: 0.4269094467163086 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "This reverts commit 74d84893f16f5020e60d2a1ba35e13d768b514f0.\r\ - \n\r\nIn Centos 8 Python 3.6 is the default python3. Having Python 3.6\ - \ support\r\nwill make life easier there.\r\n\r\nSigned-off-by: Hunor\ - \ Csomort\xE1ni " - closed_at: '2020-07-16T15:27:34Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/438/comments - created_at: '2020-07-16T14:39:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/438/events - html_url: https://github.com/packit/ogr/pull/438 - id: 658262033 + body: "Signed-off-by: Hunor Csomort\xE1ni " + closed_at: '2021-03-03T14:32:55Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/547/comments + created_at: '2021-03-03T13:07:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/547/events + html_url: https://github.com/packit/ogr/pull/547 + id: 821093261 labels: - color: 0e8a16 default: false @@ -45319,24 +57275,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/438/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/547/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDUwMjQ5NTU2 - number: 438 + node_id: MDExOlB1bGxSZXF1ZXN0NTgzOTQzODE5 + number: 547 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/438.diff - html_url: https://github.com/packit/ogr/pull/438 - patch_url: https://github.com/packit/ogr/pull/438.patch - url: https://api.github.com/repos/packit/ogr/pulls/438 + diff_url: https://github.com/packit/ogr/pull/547.diff + html_url: https://github.com/packit/ogr/pull/547 + patch_url: https://github.com/packit/ogr/pull/547.patch + url: https://api.github.com/repos/packit/ogr/pulls/547 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Revert "Drop python 3.6" - updated_at: '2020-07-16T15:27:34Z' - url: https://api.github.com/repos/packit/ogr/issues/438 + title: Write a changelog entry for release 0.22.0 + updated_at: '2021-03-03T14:33:18Z' + url: https://api.github.com/repos/packit/ogr/issues/547 user: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -45354,18 +57310,84 @@ requests.sessions: subscriptions_url: https://api.github.com/users/csomh/subscriptions type: User url: https://api.github.com/users/csomh + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-03-02T08:45:39Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/546/comments + created_at: '2021-03-01T16:54:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/546/events + html_url: https://github.com/packit/ogr/pull/546 + id: 819059663 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/546/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTgyMjIyMDg1 + number: 546 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/546.diff + html_url: https://github.com/packit/ogr/pull/546 + patch_url: https://github.com/packit/ogr/pull/546.patch + url: https://api.github.com/repos/packit/ogr/pulls/546 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-03-02T08:45:41Z' + url: https://api.github.com/repos/packit/ogr/issues/546 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Related: https://github.com/packit-service/ogr/pull/436' + body: "https://github.com/packit-service/ogr/pull/415 implements `PagurePullRequest.patch`\ + \ property to get a patch from a pull request.\r\n`Gitlab` & `Github`\ + \ implementation are missing.\r\n\r\nUpdate by @lachmanfrantisek :\r\ + \n\r\nThe task is to implement `patch` property fo `GithubPullRequest`\ + \ and `GitlabPullRequest` that will return `patch` of the changes for\ + \ pull-request (not the URL of it).\r\n\r\n- Github:\r\n - URL of\ + \ patch: https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.patch_url\r\ + \n - The URL looks like this: https://patch-diff.githubusercontent.com/raw/packit/packit-service/pull/1003.patch\r\ + \n - But this one works as well: https://github.com/packit/ogr/issues/416.patch\r\ + \n- Gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\r\ + \n - I am not sure if `diffs` will work.\r\n - The same approach\ + \ as in GitHub (adding `.patch` to the URL) works well: https://gitlab.com/cki-project/kernel-ark/-/merge_requests/800.patch" closed_at: null - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/437/comments - created_at: '2020-07-16T12:54:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/437/events - html_url: https://github.com/packit/ogr/issues/437 - id: 658172107 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/416/comments + created_at: '2020-05-22T16:21:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/416/events + html_url: https://github.com/packit/ogr/issues/416 + id: 623324928 labels: - color: '000000' default: false @@ -45381,6 +57403,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: a2eeef default: false description: New feature or a request for enhancement. @@ -45395,243 +57424,835 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/437/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/416/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NTgxNzIxMDc= - number: 437 + node_id: MDU6SXNzdWU2MjMzMjQ5Mjg= + number: 416 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: Support adding group permission for Gitlab and Github projects - updated_at: '2020-07-16T13:21:03Z' - url: https://api.github.com/repos/packit/ogr/issues/437 + title: Implement patch property in GitlabPullRequest and GithubPullRequest + updated_at: '2021-02-25T13:04:37Z' + url: https://api.github.com/repos/packit/ogr/issues/416 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Closes #414' - closed_at: '2020-06-25T10:41:12Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/419/comments - created_at: '2020-05-26T10:39:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/419/events - html_url: https://github.com/packit/ogr/pull/419 - id: 624783863 + author_association: CONTRIBUTOR + body: "I believe this is a flake but wanna make sure it's not an actual\ + \ bug. The logs are coming from [a sandcastle CI run](https://github.com/packit/sandcastle/pull/104#issuecomment-784432707).\r\ + \n```\r\n2021-02-23 18:55:03.228152 | test-node | E sandcastle.exceptions.SandcastleCommandFailed:\ + \ Command failed (rc=2, reason={\"metadata\":{},\"status\":\"Failure\"\ + ,\"message\":\"command terminated with non-zero exit code: Error executing\ + \ in Docker Container: 2\",\"reason\":\"NonZeroExitCode\",\"details\"\ + :{\"causes\":[{\"reason\":\"ExitCode\",\"message\":\"2\"}]}})\r\n2021-02-23\ + \ 18:55:03.228239 | test-node | E 18:42:55.563 config.py DEBUG\ + \ Loading user config from directory: /home/sandcastle/.config\r\n\ + 2021-02-23 18:55:03.228250 | test-node | E 18:42:55.564 config.py \ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.yaml\r\ + \n2021-02-23 18:55:03.228256 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.yml\r\ + \n2021-02-23 18:55:03.228263 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/.packit.json\r\ + \n2021-02-23 18:55:03.228269 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.yaml\r\ + \n2021-02-23 18:55:03.228275 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.yml\r\ + \n2021-02-23 18:55:03.228281 | test-node | E 18:42:55.564 config.py\ + \ DEBUG Trying to load user config from: /home/sandcastle/.config/packit.json\r\ + \n2021-02-23 18:55:03.228310 | test-node | E 18:42:55.572 config.py\ + \ DEBUG Loaded config: Config(debug='False', fas_user='None',\ + \ keytab_path='None', upstream_git_remote='None', command_handler='RunCommandType.local',\ + \ command_handler_work_dir='/sandcastle', command_handler_pvc_env_var='SANDCASTLE_PVC',\ + \ command_handler_image_reference='docker.io/usercont/sandcastle', command_handler_k8s_namespace='myproject')\r\ + \n2021-02-23 18:55:03.228383 | test-node | E 18:42:55.572 logging.py\ + \ DEBUG Logging set to DEBUG\r\n2021-02-23 18:55:03.228398 |\ + \ test-node | E 18:42:55.574 packit_base.py DEBUG Packit 0.24.0\ + \ is being used.\r\n2021-02-23 18:55:03.228404 | test-node | E 18:42:55.574\ + \ types.py DEBUG Input is a directory: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902\r\ + \n2021-02-23 18:55:03.228420 | test-node | E 18:42:55.575 local_project.py\ + \ DEBUG Arguments received in the init method of the LocalProject\ + \ class:\r\n2021-02-23 18:55:03.228426 | test-node | E git_repo: None\r\ + \n2021-02-23 18:55:03.228433 | test-node | E working_dir: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902\r\ + \n2021-02-23 18:55:03.228439 | test-node | E ref: None\r\n2021-02-23\ + \ 18:55:03.228445 | test-node | E git_project: None\r\n2021-02-23 18:55:03.228451\ + \ | test-node | E git_service: None\r\n2021-02-23 18:55:03.228458 |\ + \ test-node | E git_url:\r\n2021-02-23 18:55:03.228464 | test-node\ + \ | E full_name:\r\n2021-02-23 18:55:03.228470 | test-node | E namespace:\r\ + \n2021-02-23 18:55:03.228476 | test-node | E repo_name:\r\n2021-02-23\ + \ 18:55:03.228482 | test-node | E offline: False\r\n2021-02-23 18:55:03.228488\ + \ | test-node | E refresh True\r\n2021-02-23 18:55:03.228494 | test-node\ + \ | E remote: None\r\n2021-02-23 18:55:03.228501 | test-node | E pr_id:\ + \ None\r\n2021-02-23 18:55:03.228507 | test-node | E\r\n2021-02-23 18:55:03.228559\ + \ | test-node | E 18:42:55.575 local_project.py DEBUG `working_dir`\ + \ is set and `git_repo` is not: let's discover...\r\n2021-02-23 18:55:03.228607\ + \ | test-node | E 18:42:55.575 local_project.py DEBUG It's a git\ + \ repo!\r\n2021-02-23 18:55:03.228615 | test-node | E 18:42:55.577\ + \ local_project.py DEBUG Parsed ref 'main' from the repo .\r\ + \n2021-02-23 18:55:03.228630 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed remote url 'https://github.com/packit/ogr.git' from\ + \ the repo .\r\ + \n2021-02-23 18:55:03.228651 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed namespace and repo name (packit, ogr) from url 'https://github.com/packit/ogr.git'.\r\ + \n2021-02-23 18:55:03.228660 | test-node | E 18:42:55.578 local_project.py\ + \ DEBUG Parsed full repo name 'packit/ogr'.\r\n2021-02-23 18:55:03.228666\ + \ | test-node | E 18:42:55.578 package_config.py DEBUG Local package\ + \ config found: /sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/.packit.yaml\r\ + \n2021-02-23 18:55:03.228673 | test-node | E 18:42:55.590 package_config.py\ + \ DEBUG Local spec files found: [PosixPath('fedora/python-ogr.spec')].\ + \ Taking: fedora/python-ogr.spec\r\n2021-02-23 18:55:03.228679 | test-node\ + \ | E 18:42:55.591 package_config.py DEBUG Package config:\r\n2021-02-23\ + \ 18:55:03.228685 | test-node | E {\r\n2021-02-23 18:55:03.228692 |\ + \ test-node | E \"specfile_path\": \"fedora/python-ogr.spec\",\r\ + \n2021-02-23 18:55:03.228698 | test-node | E \"synced_files\":\ + \ [\r\n2021-02-23 18:55:03.228720 | test-node | E \"fedora/changelog\"\ + \r\n2021-02-23 18:55:03.228728 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.228735 | test-node | E \"downstream_package_name\":\ + \ \"python-ogr\",\r\n2021-02-23 18:55:03.228741 | test-node | E \ + \ \"upstream_project_url\": \"https://github.com/packit/ogr\",\r\n\ + 2021-02-23 18:55:03.228747 | test-node | E \"upstream_package_name\"\ + : \"ogr\",\r\n2021-02-23 18:55:03.228754 | test-node | E \"copy_upstream_release_description\"\ + : true,\r\n2021-02-23 18:55:03.228760 | test-node | E \"actions\"\ + : {\r\n2021-02-23 18:55:03.228766 | test-node | E \"create-archive\"\ + : [\r\n2021-02-23 18:55:03.228772 | test-node | E \"python3\ + \ setup.py sdist --dist-dir ./fedora/\",\r\n2021-02-23 18:55:03.228786\ + \ | test-node | E \"bash -c \\\"ls -1t ./fedora/*.tar.gz\ + \ | head -n 1\\\"\"\r\n2021-02-23 18:55:03.228793 | test-node | E \ + \ ],\r\n2021-02-23 18:55:03.228799 | test-node | E \"\ + get-current-version\": \"python3 setup.py --version\"\r\n2021-02-23\ + \ 18:55:03.228805 | test-node | E },\r\n2021-02-23 18:55:03.228811\ + \ | test-node | E \"jobs\": [\r\n2021-02-23 18:55:03.228818 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.228824 | test-node | E \ + \ \"job\": \"sync_from_downstream\",\r\n2021-02-23 18:55:03.228967\ + \ | test-node | E \"trigger\": \"commit\"\r\n2021-02-23\ + \ 18:55:03.229025 | test-node | E },\r\n2021-02-23 18:55:03.229032\ + \ | test-node | E {\r\n2021-02-23 18:55:03.229039 | test-node\ + \ | E \"job\": \"propose_downstream\",\r\n2021-02-23 18:55:03.229045\ + \ | test-node | E \"trigger\": \"release\",\r\n2021-02-23\ + \ 18:55:03.229051 | test-node | E \"metadata\": {\r\n2021-02-23\ + \ 18:55:03.229058 | test-node | E \"dist_git_branches\"\ + : [\r\n2021-02-23 18:55:03.229064 | test-node | E \ + \ \"fedora-all\",\r\n2021-02-23 18:55:03.229070 | test-node | E \ + \ \"epel-8\"\r\n2021-02-23 18:55:03.229076 | test-node\ + \ | E ]\r\n2021-02-23 18:55:03.229082 | test-node |\ + \ E }\r\n2021-02-23 18:55:03.229089 | test-node | E \ + \ },\r\n2021-02-23 18:55:03.229095 | test-node | E {\r\ + \n2021-02-23 18:55:03.229101 | test-node | E \"job\": \"\ + copr_build\",\r\n2021-02-23 18:55:03.229107 | test-node | E \ + \ \"trigger\": \"pull_request\",\r\n2021-02-23 18:55:03.229114\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229120\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229126\ + \ | test-node | E \"fedora-all\",\r\n2021-02-23\ + \ 18:55:03.229132 | test-node | E \"epel-8\"\r\n\ + 2021-02-23 18:55:03.229138 | test-node | E ]\r\n2021-02-23\ + \ 18:55:03.229147 | test-node | E }\r\n2021-02-23 18:55:03.229185\ + \ | test-node | E },\r\n2021-02-23 18:55:03.229207 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.229217 | test-node | E \ + \ \"job\": \"tests\",\r\n2021-02-23 18:55:03.229237 | test-node\ + \ | E \"trigger\": \"pull_request\",\r\n2021-02-23 18:55:03.229245\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229252\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229258\ + \ | test-node | E \"fedora-all\",\r\n2021-02-23\ + \ 18:55:03.229264 | test-node | E \"epel-8\"\r\n\ + 2021-02-23 18:55:03.229270 | test-node | E ]\r\n2021-02-23\ + \ 18:55:03.229276 | test-node | E }\r\n2021-02-23 18:55:03.229282\ + \ | test-node | E },\r\n2021-02-23 18:55:03.229289 | test-node\ + \ | E {\r\n2021-02-23 18:55:03.229303 | test-node | E \ + \ \"job\": \"production_build\",\r\n2021-02-23 18:55:03.229310\ + \ | test-node | E \"trigger\": \"pull_request\",\r\n2021-02-23\ + \ 18:55:03.229316 | test-node | E \"metadata\": {\r\n2021-02-23\ + \ 18:55:03.229322 | test-node | E \"scratch\": true,\r\ + \n2021-02-23 18:55:03.229328 | test-node | E \"targets\"\ + : [\r\n2021-02-23 18:55:03.229334 | test-node | E \ + \ \"fedora-development\"\r\n2021-02-23 18:55:03.229349 | test-node\ + \ | E ]\r\n2021-02-23 18:55:03.229355 | test-node |\ + \ E }\r\n2021-02-23 18:55:03.229362 | test-node | E \ + \ },\r\n2021-02-23 18:55:03.229368 | test-node | E {\r\ + \n2021-02-23 18:55:03.229374 | test-node | E \"job\": \"\ + copr_build\",\r\n2021-02-23 18:55:03.229380 | test-node | E \ + \ \"trigger\": \"commit\",\r\n2021-02-23 18:55:03.229386 | test-node\ + \ | E \"metadata\": {\r\n2021-02-23 18:55:03.229392 | test-node\ + \ | E \"branch\": \"master\",\r\n2021-02-23 18:55:03.229399\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229405\ + \ | test-node | E \"fedora-stable\"\r\n2021-02-23\ + \ 18:55:03.229411 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.229417 | test-node | E \"project\": \"packit-master\"\ + ,\r\n2021-02-23 18:55:03.229423 | test-node | E \"\ + list_on_homepage\": true,\r\n2021-02-23 18:55:03.229430 | test-node\ + \ | E \"preserve_project\": true\r\n2021-02-23 18:55:03.229436\ + \ | test-node | E }\r\n2021-02-23 18:55:03.229442 | test-node\ + \ | E },\r\n2021-02-23 18:55:03.229448 | test-node | E \ + \ {\r\n2021-02-23 18:55:03.229454 | test-node | E \ + \ \"job\": \"copr_build\",\r\n2021-02-23 18:55:03.229461 | test-node\ + \ | E \"trigger\": \"release\",\r\n2021-02-23 18:55:03.229467\ + \ | test-node | E \"metadata\": {\r\n2021-02-23 18:55:03.229473\ + \ | test-node | E \"targets\": [\r\n2021-02-23 18:55:03.229479\ + \ | test-node | E \"fedora-stable\"\r\n2021-02-23\ + \ 18:55:03.229485 | test-node | E ],\r\n2021-02-23\ + \ 18:55:03.229518 | test-node | E \"project\": \"packit-releases\"\ + ,\r\n2021-02-23 18:55:03.229556 | test-node | E \"\ + list_on_homepage\": true,\r\n2021-02-23 18:55:03.229567 | test-node\ + \ | E \"preserve_project\": true\r\n2021-02-23 18:55:03.229601\ + \ | test-node | E }\r\n2021-02-23 18:55:03.229608 | test-node\ + \ | E }\r\n2021-02-23 18:55:03.229614 | test-node | E \ + \ ]\r\n2021-02-23 18:55:03.229620 | test-node | E }\r\n2021-02-23 18:55:03.230131\ + \ | test-node | E 18:42:55.594 package_config.py DEBUG PackageConfig(config_file_path='.packit.yaml',\ + \ specfile_path='fedora/python-ogr.spec', synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', jobs='[JobConfig(job=JobType.sync_from_downstream,\ + \ trigger=JobConfigTriggerType.commit, meta=JobMetadataConfig(targets=set(),\ + \ timeout=7200, owner=None, project=None, dist_git_branches=set(), branch=None,\ + \ scratch=False, list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.propose_downstream, trigger=JobConfigTriggerType.release,\ + \ meta=JobMetadataConfig(targets=set(), timeout=7200, owner=None, project=None,\ + \ dist_git_branches={'epel-8', 'fedora-all'}, branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'epel-8', 'fedora-all'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.tests, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'epel-8', 'fedora-all'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.production_build, trigger=JobConfigTriggerType.pull_request,\ + \ meta=JobMetadataConfig(targets={'fedora-development'}, timeout=7200,\ + \ owner=None, project=None, dist_git_branches=set(), branch=None, scratch=True,\ + \ list_on_homepage=False, preserve_project=False, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.commit,\ + \ meta=JobMetadataConfig(targets={'fedora-stable'}, timeout=7200, owner=None,\ + \ project=packit-master, dist_git_branches=set(), branch=master, scratch=False,\ + \ list_on_homepage=True, preserve_project=True, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True'),\ + \ JobConfig(job=JobType.copr_build, trigger=JobConfigTriggerType.release,\ + \ meta=JobMetadataConfig(targets={'fedora-stable'}, timeout=7200, owner=None,\ + \ project=packit-releases, dist_git_branches=set(), branch=None, scratch=False,\ + \ list_on_homepage=True, preserve_project=True, additional_packages=[],\ + \ additional_repos=[]), config_file_path='.packit.yaml', specfile_path='fedora/python-ogr.spec',\ + \ synced_files='SyncFilesConfig([SyncFilesItem(src=fedora/changelog,\ + \ dest=fedora/changelog)])', dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', patch_generation_ignore_paths='[]',copy_upstream_release_description='True')]',\ + \ dist_git_namespace='rpms', upstream_project_url='https://github.com/packit/ogr',\ + \ upstream_package_name='ogr', downstream_project_url='https://src.fedoraproject.org/rpms/python-ogr.git',\ + \ downstream_package_name='python-ogr', dist_git_base_url='https://src.fedoraproject.org/',\ + \ create_tarball_command='None', current_version_command='None', actions='{: ['python3 setup.py sdist --dist-dir ./fedora/',\ + \ 'bash -c \"ls -1t ./fedora/*.tar.gz | head -n 1\"'], : 'python3 setup.py --version'}', upstream_ref='None',\ + \ allowed_gpg_keys='None', create_pr='True', sync_changelog='False',\ + \ spec_source_id='Source0', upstream_tag_template='{version}', archive_root_dir_template={upstream_pkg_name}-{version}',\ + \ patch_generation_ignore_paths='[]', copy_upstream_release_description='True')\r\ + \n2021-02-23 18:55:03.230260 | test-node | E 18:42:55.604 utils.py\ + \ DEBUG Input directory is an upstream repository.\r\n2021-02-23\ + \ 18:55:03.230290 | test-node | E 18:42:55.604 base_git.py DEBUG\ + \ Running ActionName.post_upstream_clone hook.\r\n2021-02-23 18:55:03.230298\ + \ | test-node | E 18:42:55.604 base_git.py DEBUG Running ActionName.post_upstream_clone.\r\ + \n2021-02-23 18:55:03.230305 | test-node | E 18:42:55.605 base_git.py\ + \ DEBUG Running default implementation for ActionName.post_upstream_clone.\r\ + \n2021-02-23 18:55:03.230312 | test-node | E Using user-defined script\ + \ for ActionName.get_current_version: [['python3', 'setup.py', '--version']]\r\ + \n2021-02-23 18:55:03.230318 | test-node | E 18:42:55.605 base_git.py\ + \ DEBUG Command handler: RunCommandType.local\r\n2021-02-23 18:55:03.230383\ + \ | test-node | E 18:42:55.605 commands.py DEBUG Command: python3\ + \ setup.py --version\r\n2021-02-23 18:55:03.230439 | test-node | E \ + \ WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None,\ + \ status=None)) after connection broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230479 | test-node | E WARNING: Retrying (Retry(total=3,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230504 | test-node | E WARNING: Retrying (Retry(total=2,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230515 | test-node | E WARNING: Retrying (Retry(total=1,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230525 | test-node | E WARNING: Retrying (Retry(total=0,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.230597 | test-node | E ERROR: Exception:\r\n\ + 2021-02-23 18:55:03.230624 | test-node | E Traceback (most recent call\ + \ last):\r\n2021-02-23 18:55:03.230637 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 381, in _make_request\r\n2021-02-23 18:55:03.230655 | test-node\ + \ | E self._validate_conn(conn)\r\n2021-02-23 18:55:03.230665 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 976, in _validate_conn\r\n2021-02-23 18:55:03.230684 | test-node\ + \ | E conn.connect()\r\n2021-02-23 18:55:03.230711 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py\"\ + , line 361, in connect\r\n2021-02-23 18:55:03.230724 | test-node | E\ + \ self.sock = ssl_wrap_socket(\r\n2021-02-23 18:55:03.230733 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py\"\ + , line 377, in ssl_wrap_socket\r\n2021-02-23 18:55:03.230743 | test-node\ + \ | E return context.wrap_socket(sock, server_hostname=server_hostname)\r\ + \n2021-02-23 18:55:03.230752 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 500, in wrap_socket\r\n2021-02-23 18:55:03.230761 | test-node\ + \ | E return self.sslsocket_class._create(\r\n2021-02-23 18:55:03.230789\ + \ | test-node | E File \"/usr/lib64/python3.9/ssl.py\", line 1040,\ + \ in _create\r\n2021-02-23 18:55:03.230808 | test-node | E self.do_handshake()\r\ + \n2021-02-23 18:55:03.230831 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 1309, in do_handshake\r\n2021-02-23 18:55:03.230841 | test-node\ + \ | E self._sslobj.do_handshake()\r\n2021-02-23 18:55:03.230851\ + \ | test-node | E socket.timeout: _ssl.c:1106: The handshake operation\ + \ timed out\r\n2021-02-23 18:55:03.230879 | test-node | E\r\n2021-02-23\ + \ 18:55:03.230899 | test-node | E During handling of the above exception,\ + \ another exception occurred:\r\n2021-02-23 18:55:03.230909 | test-node\ + \ | E\r\n2021-02-23 18:55:03.230919 | test-node | E Traceback (most\ + \ recent call last):\r\n2021-02-23 18:55:03.230928 | test-node | E \ + \ File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 670, in urlopen\r\n2021-02-23 18:55:03.230937 | test-node | E\ + \ httplib_response = self._make_request(\r\n2021-02-23 18:55:03.230957\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 384, in _make_request\r\n2021-02-23 18:55:03.230983 | test-node\ + \ | E self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)\r\ + \n2021-02-23 18:55:03.230994 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 335, in _raise_timeout\r\n2021-02-23 18:55:03.231004 | test-node\ + \ | E raise ReadTimeoutError(\r\n2021-02-23 18:55:03.231031 | test-node\ + \ | E pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\r\n2021-02-23 18:55:03.231060\ + \ | test-node | E\r\n2021-02-23 18:55:03.231081 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.231090 | test-node | E\r\n2021-02-23 18:55:03.231100 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.231109\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 439, in send\r\n2021-02-23 18:55:03.231118 | test-node | E \ + \ resp = conn.urlopen(\r\n2021-02-23 18:55:03.231138 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231166 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231224 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231261 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231272 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.231289 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.231318 | test-node\ + \ | E [Previous line repeated 2 more times]\r\n2021-02-23 18:55:03.231347\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 724, in urlopen\r\n2021-02-23 18:55:03.231389 | test-node | E\ + \ retries = retries.increment(\r\n2021-02-23 18:55:03.231409 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py\"\ + , line 439, in increment\r\n2021-02-23 18:55:03.231418 | test-node |\ + \ E raise MaxRetryError(_pool, url, error or ResponseError(cause))\r\ + \n2021-02-23 18:55:03.231425 | test-node | E pip._vendor.urllib3.exceptions.MaxRetryError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.231432\ + \ | test-node | E\r\n2021-02-23 18:55:03.231438 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.231445 | test-node | E\r\n2021-02-23 18:55:03.231452 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.231458\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/base_command.py\"\ + , line 216, in _main\r\n2021-02-23 18:55:03.231465 | test-node | E \ + \ status = self.run(options, args)\r\n2021-02-23 18:55:03.231471\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/req_command.py\"\ + , line 182, in wrapper\r\n2021-02-23 18:55:03.231477 | test-node | E\ + \ return func(self, options, args)\r\n2021-02-23 18:55:03.231514\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/commands/wheel.py\"\ + , line 155, in run\r\n2021-02-23 18:55:03.231566 | test-node | E \ + \ requirement_set = resolver.resolve(\r\n2021-02-23 18:55:03.231604\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 184, in resolve\r\n2021-02-23 18:55:03.231611 | test-node | E\ + \ discovered_reqs.extend(self._resolve_one(requirement_set, req))\r\ + \n2021-02-23 18:55:03.231618 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 391, in _resolve_one\r\n2021-02-23 18:55:03.231624 | test-node\ + \ | E abstract_dist = self._get_abstract_dist_for(req_to_install)\r\ + \n2021-02-23 18:55:03.231631 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 343, in _get_abstract_dist_for\r\n2021-02-23 18:55:03.231656\ + \ | test-node | E abstract_dist = self.preparer.prepare_linked_requirement(req)\r\ + \n2021-02-23 18:55:03.231668 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 467, in prepare_linked_requirement\r\n2021-02-23 18:55:03.231675\ + \ | test-node | E local_file = unpack_url(\r\n2021-02-23 18:55:03.231681\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 255, in unpack_url\r\n2021-02-23 18:55:03.231688 | test-node\ + \ | E file = get_http_url(\r\n2021-02-23 18:55:03.231695 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 129, in get_http_url\r\n2021-02-23 18:55:03.231710 | test-node\ + \ | E from_path, content_type = _download_http_url(\r\n2021-02-23\ + \ 18:55:03.231716 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 278, in _download_http_url\r\n2021-02-23 18:55:03.231723 | test-node\ + \ | E download = downloader(link)\r\n2021-02-23 18:55:03.231730\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 170, in __call__\r\n2021-02-23 18:55:03.231736 | test-node |\ + \ E resp = _http_get_download(self._session, link)\r\n2021-02-23\ + \ 18:55:03.231743 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 139, in _http_get_download\r\n2021-02-23 18:55:03.231749 | test-node\ + \ | E resp = session.get(target_url, headers=HEADERS, stream=True)\r\ + \n2021-02-23 18:55:03.231756 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 543, in get\r\n2021-02-23 18:55:03.231763 | test-node | E \ + \ return self.request('GET', url, **kwargs)\r\n2021-02-23 18:55:03.231769\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/session.py\"\ + , line 421, in request\r\n2021-02-23 18:55:03.231775 | test-node | E\ + \ return super(PipSession, self).request(method, url, *args, **kwargs)\r\ + \n2021-02-23 18:55:03.231807 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 530, in request\r\n2021-02-23 18:55:03.231816 | test-node | E\ + \ resp = self.send(prep, **send_kwargs)\r\n2021-02-23 18:55:03.231823\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 643, in send\r\n2021-02-23 18:55:03.231829 | test-node | E \ + \ r = adapter.send(request, **kwargs)\r\n2021-02-23 18:55:03.231836\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py\"\ + , line 53, in send\r\n2021-02-23 18:55:03.231843 | test-node | E \ + \ resp = super(CacheControlAdapter, self).send(request, **kw)\r\n\ + 2021-02-23 18:55:03.231849 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 516, in send\r\n2021-02-23 18:55:03.231856 | test-node | E \ + \ raise ConnectionError(e, request=request)\r\n2021-02-23 18:55:03.231879\ + \ | test-node | E pip._vendor.requests.exceptions.ConnectionError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.231891\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.231898 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 128, in fetch_build_egg\r\n2021-02-23 18:55:03.231904 | test-node\ + \ | E subprocess.check_call(cmd)\r\n2021-02-23 18:55:03.231924\ + \ | test-node | E File \"/usr/lib64/python3.9/subprocess.py\", line\ + \ 373, in check_call\r\n2021-02-23 18:55:03.231936 | test-node | E \ + \ raise CalledProcessError(retcode, cmd)\r\n2021-02-23 18:55:03.231943\ + \ | test-node | E subprocess.CalledProcessError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.231970 | test-node\ + \ | E\r\n2021-02-23 18:55:03.231979 | test-node | E The above exception\ + \ was the direct cause of the following exception:\r\n2021-02-23 18:55:03.231991\ + \ | test-node | E\r\n2021-02-23 18:55:03.231998 | test-node | E Traceback\ + \ (most recent call last):\r\n2021-02-23 18:55:03.232005 | test-node\ + \ | E File \"/sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/setup.py\"\ + , line 5, in \r\n2021-02-23 18:55:03.232011 | test-node | E\ + \ setup(use_scm_version=True)\r\n2021-02-23 18:55:03.232018 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 164, in setup\r\n2021-02-23 18:55:03.232025 | test-node | E \ + \ _install_setup_requires(attrs)\r\n2021-02-23 18:55:03.232031 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 159, in _install_setup_requires\r\n2021-02-23 18:55:03.232039\ + \ | test-node | E dist.fetch_build_eggs(dist.setup_requires)\r\n\ + 2021-02-23 18:55:03.232052 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 699, in fetch_build_eggs\r\n2021-02-23 18:55:03.232084 | test-node\ + \ | E resolved_dists = pkg_resources.working_set.resolve(\r\n2021-02-23\ + \ 18:55:03.232102 | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 779, in resolve\r\n2021-02-23 18:55:03.232111 | test-node | E\ + \ dist = best[req.key] = env.best_match(\r\n2021-02-23 18:55:03.232121\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1064, in best_match\r\n2021-02-23 18:55:03.232130 | test-node\ + \ | E return self.obtain(req, installer)\r\n2021-02-23 18:55:03.232140\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1076, in obtain\r\n2021-02-23 18:55:03.232168 | test-node | E\ + \ return installer(requirement)\r\n2021-02-23 18:55:03.232217 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 758, in fetch_build_egg\r\n2021-02-23 18:55:03.232262 | test-node\ + \ | E return fetch_build_egg(self, req)\r\n2021-02-23 18:55:03.232274\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 130, in fetch_build_egg\r\n2021-02-23 18:55:03.232284 | test-node\ + \ | E raise DistutilsError(str(e)) from e\r\n2021-02-23 18:55:03.232312\ + \ | test-node | E distutils.errors.DistutilsError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.232333 | test-node\ + \ | E ERROR Command 'python3 setup.py --version' failed.\r\n2021-02-23\ + \ 18:55:03.232343 | test-node | E 18:44:34.521 commands.py DEBUG\ + \ Command stderr: WARNING: Retrying (Retry(total=4, connect=None,\ + \ read=None, redirect=None, status=None)) after connection broken by\ + \ 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232355 | test-node | E WARNING: Retrying (Retry(total=3,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232366 | test-node | E WARNING: Retrying (Retry(total=2,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232427 | test-node | E WARNING: Retrying (Retry(total=1,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232464 | test-node | E WARNING: Retrying (Retry(total=0,\ + \ connect=None, read=None, redirect=None, status=None)) after connection\ + \ broken by 'ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\")': /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\r\ + \n2021-02-23 18:55:03.232474 | test-node | E ERROR: Exception:\r\n\ + 2021-02-23 18:55:03.232481 | test-node | E Traceback (most recent call\ + \ last):\r\n2021-02-23 18:55:03.232487 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 381, in _make_request\r\n2021-02-23 18:55:03.232494 | test-node\ + \ | E self._validate_conn(conn)\r\n2021-02-23 18:55:03.232501 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 976, in _validate_conn\r\n2021-02-23 18:55:03.232508 | test-node\ + \ | E conn.connect()\r\n2021-02-23 18:55:03.232515 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connection.py\"\ + , line 361, in connect\r\n2021-02-23 18:55:03.232522 | test-node | E\ + \ self.sock = ssl_wrap_socket(\r\n2021-02-23 18:55:03.232553 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/ssl_.py\"\ + , line 377, in ssl_wrap_socket\r\n2021-02-23 18:55:03.232566 | test-node\ + \ | E return context.wrap_socket(sock, server_hostname=server_hostname)\r\ + \n2021-02-23 18:55:03.232597 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 500, in wrap_socket\r\n2021-02-23 18:55:03.232605 | test-node\ + \ | E return self.sslsocket_class._create(\r\n2021-02-23 18:55:03.232612\ + \ | test-node | E File \"/usr/lib64/python3.9/ssl.py\", line 1040,\ + \ in _create\r\n2021-02-23 18:55:03.232619 | test-node | E self.do_handshake()\r\ + \n2021-02-23 18:55:03.232625 | test-node | E File \"/usr/lib64/python3.9/ssl.py\"\ + , line 1309, in do_handshake\r\n2021-02-23 18:55:03.232632 | test-node\ + \ | E self._sslobj.do_handshake()\r\n2021-02-23 18:55:03.232638\ + \ | test-node | E socket.timeout: _ssl.c:1106: The handshake operation\ + \ timed out\r\n2021-02-23 18:55:03.232645 | test-node | E\r\n2021-02-23\ + \ 18:55:03.232651 | test-node | E During handling of the above exception,\ + \ another exception occurred:\r\n2021-02-23 18:55:03.232658 | test-node\ + \ | E\r\n2021-02-23 18:55:03.232678 | test-node | E Traceback (most\ + \ recent call last):\r\n2021-02-23 18:55:03.232689 | test-node | E \ + \ File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 670, in urlopen\r\n2021-02-23 18:55:03.232696 | test-node | E\ + \ httplib_response = self._make_request(\r\n2021-02-23 18:55:03.232702\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 384, in _make_request\r\n2021-02-23 18:55:03.232709 | test-node\ + \ | E self._raise_timeout(err=e, url=url, timeout_value=conn.timeout)\r\ + \n2021-02-23 18:55:03.232716 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 335, in _raise_timeout\r\n2021-02-23 18:55:03.232742 | test-node\ + \ | E raise ReadTimeoutError(\r\n2021-02-23 18:55:03.232752 | test-node\ + \ | E pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\r\n2021-02-23 18:55:03.232758\ + \ | test-node | E\r\n2021-02-23 18:55:03.232765 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.232772 | test-node | E\r\n2021-02-23 18:55:03.232778 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.232785\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 439, in send\r\n2021-02-23 18:55:03.232791 | test-node | E \ + \ resp = conn.urlopen(\r\n2021-02-23 18:55:03.232798 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232804 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232811 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232832 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232844 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 752, in urlopen\r\n2021-02-23 18:55:03.232850 | test-node | E\ + \ return self.urlopen(\r\n2021-02-23 18:55:03.232857 | test-node\ + \ | E [Previous line repeated 2 more times]\r\n2021-02-23 18:55:03.232863\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/connectionpool.py\"\ + , line 724, in urlopen\r\n2021-02-23 18:55:03.232870 | test-node | E\ + \ retries = retries.increment(\r\n2021-02-23 18:55:03.232876 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/urllib3/util/retry.py\"\ + , line 439, in increment\r\n2021-02-23 18:55:03.232883 | test-node |\ + \ E raise MaxRetryError(_pool, url, error or ResponseError(cause))\r\ + \n2021-02-23 18:55:03.232890 | test-node | E pip._vendor.urllib3.exceptions.MaxRetryError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.232918\ + \ | test-node | E\r\n2021-02-23 18:55:03.232927 | test-node | E During\ + \ handling of the above exception, another exception occurred:\r\n2021-02-23\ + \ 18:55:03.232934 | test-node | E\r\n2021-02-23 18:55:03.232940 | test-node\ + \ | E Traceback (most recent call last):\r\n2021-02-23 18:55:03.232947\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/base_command.py\"\ + , line 216, in _main\r\n2021-02-23 18:55:03.232954 | test-node | E \ + \ status = self.run(options, args)\r\n2021-02-23 18:55:03.232960\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/cli/req_command.py\"\ + , line 182, in wrapper\r\n2021-02-23 18:55:03.232967 | test-node | E\ + \ return func(self, options, args)\r\n2021-02-23 18:55:03.232974\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/commands/wheel.py\"\ + , line 155, in run\r\n2021-02-23 18:55:03.232980 | test-node | E \ + \ requirement_set = resolver.resolve(\r\n2021-02-23 18:55:03.232987\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 184, in resolve\r\n2021-02-23 18:55:03.233000 | test-node | E\ + \ discovered_reqs.extend(self._resolve_one(requirement_set, req))\r\ + \n2021-02-23 18:55:03.233007 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 391, in _resolve_one\r\n2021-02-23 18:55:03.233014 | test-node\ + \ | E abstract_dist = self._get_abstract_dist_for(req_to_install)\r\ + \n2021-02-23 18:55:03.233020 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/resolution/legacy/resolver.py\"\ + , line 343, in _get_abstract_dist_for\r\n2021-02-23 18:55:03.233027\ + \ | test-node | E abstract_dist = self.preparer.prepare_linked_requirement(req)\r\ + \n2021-02-23 18:55:03.233035 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 467, in prepare_linked_requirement\r\n2021-02-23 18:55:03.233041\ + \ | test-node | E local_file = unpack_url(\r\n2021-02-23 18:55:03.233048\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 255, in unpack_url\r\n2021-02-23 18:55:03.233054 | test-node\ + \ | E file = get_http_url(\r\n2021-02-23 18:55:03.233061 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 129, in get_http_url\r\n2021-02-23 18:55:03.233068 | test-node\ + \ | E from_path, content_type = _download_http_url(\r\n2021-02-23\ + \ 18:55:03.233074 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/operations/prepare.py\"\ + , line 278, in _download_http_url\r\n2021-02-23 18:55:03.233081 | test-node\ + \ | E download = downloader(link)\r\n2021-02-23 18:55:03.233087\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 170, in __call__\r\n2021-02-23 18:55:03.233094 | test-node |\ + \ E resp = _http_get_download(self._session, link)\r\n2021-02-23\ + \ 18:55:03.233100 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/download.py\"\ + , line 139, in _http_get_download\r\n2021-02-23 18:55:03.233107 | test-node\ + \ | E resp = session.get(target_url, headers=HEADERS, stream=True)\r\ + \n2021-02-23 18:55:03.233127 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 543, in get\r\n2021-02-23 18:55:03.233139 | test-node | E \ + \ return self.request('GET', url, **kwargs)\r\n2021-02-23 18:55:03.233148\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_internal/network/session.py\"\ + , line 421, in request\r\n2021-02-23 18:55:03.233190 | test-node | E\ + \ return super(PipSession, self).request(method, url, *args, **kwargs)\r\ + \n2021-02-23 18:55:03.233213 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 530, in request\r\n2021-02-23 18:55:03.233220 | test-node | E\ + \ resp = self.send(prep, **send_kwargs)\r\n2021-02-23 18:55:03.233227\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/sessions.py\"\ + , line 643, in send\r\n2021-02-23 18:55:03.233233 | test-node | E \ + \ r = adapter.send(request, **kwargs)\r\n2021-02-23 18:55:03.233240\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/cachecontrol/adapter.py\"\ + , line 53, in send\r\n2021-02-23 18:55:03.233246 | test-node | E \ + \ resp = super(CacheControlAdapter, self).send(request, **kw)\r\n\ + 2021-02-23 18:55:03.233253 | test-node | E File \"/usr/lib/python3.9/site-packages/pip/_vendor/requests/adapters.py\"\ + , line 516, in send\r\n2021-02-23 18:55:03.233259 | test-node | E \ + \ raise ConnectionError(e, request=request)\r\n2021-02-23 18:55:03.233274\ + \ | test-node | E pip._vendor.requests.exceptions.ConnectionError:\ + \ HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max\ + \ retries exceeded with url: /packages/7e/83/284c6d3fac2e74532a9f51f908018690709db9af1469cf728574f6be3abf/setuptools_scm_git_archive-1.1-py2.py3-none-any.whl\ + \ (Caused by ReadTimeoutError(\"HTTPSConnectionPool(host='files.pythonhosted.org',\ + \ port=443): Read timed out. (read timeout=15)\"))\r\n2021-02-23 18:55:03.233308\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233318 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 128, in fetch_build_egg\r\n2021-02-23 18:55:03.233359 | test-node\ + \ | E subprocess.check_call(cmd)\r\n2021-02-23 18:55:03.233396\ + \ | test-node | E File \"/usr/lib64/python3.9/subprocess.py\", line\ + \ 373, in check_call\r\n2021-02-23 18:55:03.233405 | test-node | E \ + \ raise CalledProcessError(retcode, cmd)\r\n2021-02-23 18:55:03.233412\ + \ | test-node | E subprocess.CalledProcessError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.233420 | test-node\ + \ | E\r\n2021-02-23 18:55:03.233427 | test-node | E The above exception\ + \ was the direct cause of the following exception:\r\n2021-02-23 18:55:03.233433\ + \ | test-node | E\r\n2021-02-23 18:55:03.233440 | test-node | E Traceback\ + \ (most recent call last):\r\n2021-02-23 18:55:03.233446 | test-node\ + \ | E File \"/sandcastle/docker-io-usercont-sandcastle-prod-20210223-184248933902/setup.py\"\ + , line 5, in \r\n2021-02-23 18:55:03.233452 | test-node | E\ + \ setup(use_scm_version=True)\r\n2021-02-23 18:55:03.233458 | test-node\ + \ | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 164, in setup\r\n2021-02-23 18:55:03.233465 | test-node | E \ + \ _install_setup_requires(attrs)\r\n2021-02-23 18:55:03.233472 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/__init__.py\"\ + , line 159, in _install_setup_requires\r\n2021-02-23 18:55:03.233478\ + \ | test-node | E dist.fetch_build_eggs(dist.setup_requires)\r\n\ + 2021-02-23 18:55:03.233484 | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 699, in fetch_build_eggs\r\n2021-02-23 18:55:03.233491 | test-node\ + \ | E resolved_dists = pkg_resources.working_set.resolve(\r\n2021-02-23\ + \ 18:55:03.233497 | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 779, in resolve\r\n2021-02-23 18:55:03.233504 | test-node | E\ + \ dist = best[req.key] = env.best_match(\r\n2021-02-23 18:55:03.233510\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1064, in best_match\r\n2021-02-23 18:55:03.233517 | test-node\ + \ | E return self.obtain(req, installer)\r\n2021-02-23 18:55:03.233523\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/pkg_resources/__init__.py\"\ + , line 1076, in obtain\r\n2021-02-23 18:55:03.233551 | test-node | E\ + \ return installer(requirement)\r\n2021-02-23 18:55:03.233565 |\ + \ test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/dist.py\"\ + , line 758, in fetch_build_egg\r\n2021-02-23 18:55:03.233624 | test-node\ + \ | E return fetch_build_egg(self, req)\r\n2021-02-23 18:55:03.233636\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/setuptools/installer.py\"\ + , line 130, in fetch_build_egg\r\n2021-02-23 18:55:03.233643 | test-node\ + \ | E raise DistutilsError(str(e)) from e\r\n2021-02-23 18:55:03.233649\ + \ | test-node | E distutils.errors.DistutilsError: Command '['/usr/bin/python3',\ + \ '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps',\ + \ '-w', '/tmp/tmpeni7u8f2', '--quiet', 'setuptools_scm_git_archive']'\ + \ returned non-zero exit status 2.\r\n2021-02-23 18:55:03.233665 | test-node\ + \ | E\r\n2021-02-23 18:55:03.233672 | test-node | E 18:44:34.522 commands.py\ + \ DEBUG Command stdout:\r\n2021-02-23 18:55:03.233678 | test-node\ + \ | E ERROR Preparing of the upstream to the SRPM build failed:\ + \ Command 'python3 setup.py --version' failed.\r\n2021-02-23 18:55:03.233685\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233691 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/api.py\"\ + , line 510, in create_srpm\r\n2021-02-23 18:55:03.233698 | test-node\ + \ | E self.up.prepare_upstream_for_srpm_creation(upstream_ref=upstream_ref)\r\ + \n2021-02-23 18:55:03.233704 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/upstream.py\"\ + , line 673, in prepare_upstream_for_srpm_creation\r\n2021-02-23 18:55:03.233711\ + \ | test-node | E current_git_describe_version = self.get_current_version()\r\ + \n2021-02-23 18:55:03.233717 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/upstream.py\"\ + , line 276, in get_current_version\r\n2021-02-23 18:55:03.233736 | test-node\ + \ | E action_output = self.get_output_from_action(\r\n2021-02-23\ + \ 18:55:03.233754 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/base_git.py\"\ + , line 314, in get_output_from_action\r\n2021-02-23 18:55:03.233761\ + \ | test-node | E self.command_handler.run_command(\r\n2021-02-23\ + \ 18:55:03.233768 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/command_handler.py\"\ + , line 100, in run_command\r\n2021-02-23 18:55:03.233774 | test-node\ + \ | E return commands.run_command(\r\n2021-02-23 18:55:03.233797\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/packit/utils/commands.py\"\ + , line 97, in run_command\r\n2021-02-23 18:55:03.233810 | test-node\ + \ | E raise PackitCommandFailedError(\r\n2021-02-23 18:55:03.233816\ + \ | test-node | E packit.exceptions.PackitCommandFailedError: Command\ + \ 'python3 setup.py --version' failed.\r\n2021-02-23 18:55:03.233823\ + \ | test-node | E\r\n2021-02-23 18:55:03.233829 | test-node | E The\ + \ above exception was the direct cause of the following exception:\r\ + \n2021-02-23 18:55:03.233836 | test-node | E\r\n2021-02-23 18:55:03.233843\ + \ | test-node | E Traceback (most recent call last):\r\n2021-02-23\ + \ 18:55:03.233849 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/cli/utils.py\"\ + , line 64, in covered_func\r\n2021-02-23 18:55:03.233856 | test-node\ + \ | E func(config=config, *args, **kwargs)\r\n2021-02-23 18:55:03.233862\ + \ | test-node | E File \"/usr/lib/python3.9/site-packages/packit/cli/srpm.py\"\ + , line 66, in srpm\r\n2021-02-23 18:55:03.233869 | test-node | E \ + \ srpm_path = api.create_srpm(output_file=output, upstream_ref=upstream_ref)\r\ + \n2021-02-23 18:55:03.233875 | test-node | E File \"/usr/lib/python3.9/site-packages/packit/api.py\"\ + , line 512, in create_srpm\r\n2021-02-23 18:55:03.233882 | test-node\ + \ | E raise PackitSRPMException(\r\n2021-02-23 18:55:03.233889\ + \ | test-node | E packit.exceptions.PackitSRPMException: Preparing\ + \ of the upstream to the SRPM build failed: Command 'python3 setup.py\ + \ --version' failed.\r\n```\r\nMy assumption is this was a network flake\ + \ with files.pythonhosted.org but since the new retry mechanism can\ + \ be seen in play here, I wanna confirm this behaviour is expected.\r\ + \n" + closed_at: '2021-02-24T09:16:06Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/545/comments + created_at: '2021-02-24T08:26:38Z' + events_url: https://api.github.com/repos/packit/ogr/issues/545/events + html_url: https://github.com/packit/ogr/issues/545 + id: 815243822 labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/419/labels{/name} + - color: 008672 + default: true + description: Extra attention is needed + id: 1160311265 + name: help wanted + node_id: MDU6TGFiZWwxMTYwMzExMjY1 + url: https://api.github.com/repos/packit/ogr/labels/help%20wanted + labels_url: https://api.github.com/repos/packit/ogr/issues/545/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDIzMTI1MDgx - number: 419 + node_id: MDU6SXNzdWU4MTUyNDM4MjI= + number: 545 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/419.diff - html_url: https://github.com/packit/ogr/pull/419 - patch_url: https://github.com/packit/ogr/pull/419.patch - url: https://api.github.com/repos/packit/ogr/pulls/419 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pull requests on Gitlab - updated_at: '2020-07-14T21:08:48Z' - url: https://api.github.com/repos/packit/ogr/issues/419 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos - site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions - type: User - url: https://api.github.com/users/dinolinjob - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos - site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions - type: User - url: https://api.github.com/users/dinolinjob - author_association: MEMBER - body: "Multiple times in the code (mostly in the `parsing.py`), we need\ - \ to parse the hostname of the instance.\r\n\r\n```python\r\nservice_repo_url\ - \ = parse_git_repo(repo_url.get_instance_url())\r\nservice_repo_url.hostname\r\ - \n```\r\n\r\nIt would be useful to have a `hostame` property in service\ - \ classes`.\r\n\r\nTODO:\r\n- [ ] add the (read-only) property to the\ - \ `abstract.py`\r\n- [ ] implement the common behaviour in the `base.py`\ - \ (see the example above)\r\n - services with multiple instances possible\r\ - \n- [ ] hardcode the value for static instances (GitHub)\r\n- [ ] use\ - \ that property in places, where we are getting hostname of the instance\r\ - \n- [ ] create some unit tests for that" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/338/comments - created_at: '2020-02-21T08:57:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/338/events - html_url: https://github.com/packit/ogr/issues/338 - id: 568821401 - labels: - - color: fbca04 - default: false - description: Reserved for the participants/applicants of the Google - Summer of Code. - id: 1867054141 - name: GSOC - node_id: MDU6TGFiZWwxODY3MDU0MTQx - url: https://api.github.com/repos/packit/ogr/labels/GSOC - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/338/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1Njg4MjE0MDE= - number: 338 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: hostname property in the service classes - updated_at: '2020-07-14T06:47:13Z' - url: https://api.github.com/repos/packit/ogr/issues/338 + title: Max retries exceeded with url files.pythonhosted.org + updated_at: '2021-02-24T12:53:54Z' + url: https://api.github.com/repos/packit/ogr/issues/545 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Remove unused util functions. - - - Refactor using [sourcery](https://sourcery.ai/).' - closed_at: '2020-07-10T12:43:50Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/435/comments - created_at: '2020-07-10T11:46:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/435/events - html_url: https://github.com/packit/ogr/pull/435 - id: 654723717 + author_association: CONTRIBUTOR + body: "This update implements retry mechanism for Github requests.\r\n\ + \r\nNumber of retry attempts can be set in `GithubService()` and instances\ + \ dictionary (used by `get_instances_from_dict()`), eg:\r\n```\r\n{\ + \ \ + \ \r\n \"github.com\": { \ + \ \r\n \"token\": \"abcd\", \ + \ \r\n \"max_retries\"\ + : \"3\", \r\n } \r\n} \r\n```\ + \ \r\nThis allows to enable request retries in packit/packit-service\ + \ by adding key `max_retries` to configuration (`authentication ->\ + \ github -> max_retries`). I'm not sure If this is an acceptable solution,\ + \ as far as it may be a bit confusing to set number of request retries\ + \ not necessarily related to authentication in authentication section\ + \ of config.\r\n\r\n\r\n" + closed_at: '2021-02-23T14:59:25Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/537/comments + created_at: '2021-02-09T23:05:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/537/events + html_url: https://github.com/packit/ogr/pull/537 + id: 804999188 labels: - color: 0e8a16 default: false @@ -45640,134 +58261,111 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/435/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/537/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQ3Mzk0MDIz - number: 435 + node_id: MDExOlB1bGxSZXF1ZXN0NTcwNjc3MzIx + number: 537 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/435.diff - html_url: https://github.com/packit/ogr/pull/435 - patch_url: https://github.com/packit/ogr/pull/435.patch - url: https://api.github.com/repos/packit/ogr/pulls/435 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Sourcery refactor - updated_at: '2020-07-10T12:46:54Z' - url: https://api.github.com/repos/packit/ogr/issues/435 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 + diff_url: https://github.com/packit/ogr/pull/537.diff + html_url: https://github.com/packit/ogr/pull/537 + patch_url: https://github.com/packit/ogr/pull/537.patch + url: https://api.github.com/repos/packit/ogr/pulls/537 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement retry mechanism for Github + updated_at: '2021-02-23T14:59:25Z' + url: https://api.github.com/repos/packit/ogr/issues/537 + user: + avatar_url: https://avatars.githubusercontent.com/u/8876312?v=4 + events_url: https://api.github.com/users/mmuzila/events{/privacy} + followers_url: https://api.github.com/users/mmuzila/followers + following_url: https://api.github.com/users/mmuzila/following{/other_user} + gists_url: https://api.github.com/users/mmuzila/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/mmuzila + id: 8876312 + login: mmuzila + node_id: MDQ6VXNlcjg4NzYzMTI= + organizations_url: https://api.github.com/users/mmuzila/orgs + received_events_url: https://api.github.com/users/mmuzila/received_events + repos_url: https://api.github.com/users/mmuzila/repos + site_admin: false + starred_url: https://api.github.com/users/mmuzila/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/mmuzila/subscriptions + type: User + url: https://api.github.com/users/mmuzila - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `Failed to init kerberos ticket:` | - - | `f32` | `Failed to init kerberos ticket:` | - - | `master` | `Failed to init kerberos ticket:` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-07-10T05:57:19Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/434/comments - created_at: '2020-07-09T11:03:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/434/events - html_url: https://github.com/packit/ogr/issues/434 - id: 653971970 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/434/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-02-22T17:25:21Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/544/comments + created_at: '2021-02-22T17:05:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/544/events + html_url: https://github.com/packit/ogr/pull/544 + id: 813687966 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/544/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NTM5NzE5NzA= - number: 434 + node_id: MDExOlB1bGxSZXF1ZXN0NTc3Nzk0ODQ2 + number: 544 performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[packit] Propose update failed for release 0.12.2' - updated_at: '2020-07-10T09:36:14Z' - url: https://api.github.com/repos/packit/ogr/issues/434 - user: - avatar_url: https://avatars0.githubusercontent.com/in/29180?v=4 - events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service-stg - id: 49729116 - login: packit-as-a-service-stg[bot] - node_id: MDM6Qm90NDk3MjkxMTY= - organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + pull_request: + diff_url: https://github.com/packit/ogr/pull/544.diff + html_url: https://github.com/packit/ogr/pull/544 + patch_url: https://github.com/packit/ogr/pull/544.patch + url: https://api.github.com/repos/packit/ogr/pulls/544 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-02-22T17:25:24Z' + url: https://api.github.com/repos/packit/ogr/issues/544 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions type: Bot - url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Job metadata key 'dist_git_branch'\ - \ has been renamed to 'dist_git_branches'\n* Replace Python version\ - \ glob with macro\n* Fix get_file_content was returning byte format\n\ - * Build in copr for master commits and releases\n* Add usage to creating\ - \ PRs on GitLab\n* Fix GitLab pull requests\n* Add tests for creating\ - \ PRs on GitLab\n* [Zuul] Don't redefine base job\n* [Zuul] Use common\ - \ pre-commit job\n* Drop python 3.6\n* Update & run pre-commit\n* Improve\ - \ the message when marking issues as stale\n* Fix remarks from compatibility.md\ - \ review\n* Add compatibility table\n\n\nYou can change it by editing\ - \ `CHANGELOG.md` in the root of this repository and pushing to `0.12.2-release`\ - \ branch before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-07-09T10:57:56Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/433/comments - created_at: '2020-07-09T07:36:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/433/events - html_url: https://github.com/packit/ogr/pull/433 - id: 653835899 + assignee: null + assignees: [] + author_association: MEMBER + body: "In case there is no existing release, instead of failing with an\ + \ exception\r\nreturn `None`.\r\n\r\nFixes #540\r\n\r\nSigned-off-by:\ + \ Matej Focko " + closed_at: '2021-02-22T10:07:04Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/542/comments + created_at: '2021-02-18T14:35:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/542/events + html_url: https://github.com/packit/ogr/pull/542 + id: 811155673 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -45775,117 +58373,159 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/433/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/542/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQ2Njc2Mjcz - number: 433 + node_id: MDExOlB1bGxSZXF1ZXN0NTc1NzI5NDQ3 + number: 542 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/433.diff - html_url: https://github.com/packit/ogr/pull/433 - patch_url: https://github.com/packit/ogr/pull/433.patch - url: https://api.github.com/repos/packit/ogr/pulls/433 + diff_url: https://github.com/packit/ogr/pull/542.diff + html_url: https://github.com/packit/ogr/pull/542 + patch_url: https://github.com/packit/ogr/pull/542.patch + url: https://api.github.com/repos/packit/ogr/pulls/542 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.12.2 release - updated_at: '2020-07-09T11:01:07Z' - url: https://api.github.com/repos/packit/ogr/issues/433 + title: Fix getting latest release + updated_at: '2021-02-22T10:07:04Z' + url: https://api.github.com/repos/packit/ogr/issues/542 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-07-09T07:36:32Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/432/comments - created_at: '2020-07-09T07:36:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/432/events - html_url: https://github.com/packit/ogr/issues/432 - id: 653835751 + body: "```py\r\n def get_latest_release(self) -> Release:\r\n```\r\n\ + \r\nIn case that no release exists, I'd expect to get `None` instead\ + \ of being smacked in face with exception.\r\n\r\n- GitHub throws 404\ + \ Exception\r\n- GitLab throws IndexError\r\n\r\nAction items:\r\n-\ + \ [ ] Switch return type from `Release` to `Optional[Release]`\r\n-\ + \ [ ] Update implementation to check for such situation\r\n\r\nCould\ + \ be used in refactor for packit/packit-service#985, currently is a\ + \ blocker, since we need to check non-existing release there." + closed_at: '2021-02-22T10:07:03Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/540/comments + created_at: '2021-02-18T11:00:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/540/events + html_url: https://github.com/packit/ogr/issues/540 + id: 810992567 labels: - - color: ededed + - color: '000000' default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/432/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/540/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2NTM4MzU3NTE= - number: 432 + node_id: MDU6SXNzdWU4MTA5OTI1Njc= + number: 540 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New patch release - updated_at: '2020-07-09T07:36:32Z' - url: https://api.github.com/repos/packit/ogr/issues/432 + title: '`get_latest_release` when no release exists' + updated_at: '2021-02-22T10:07:03Z' + url: https://api.github.com/repos/packit/ogr/issues/540 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: in https://github.com/packit-service/packit/pull/797 - closed_at: '2020-07-07T06:51:21Z' + body: 'Signed-off-by: Matej Focko ' + closed_at: '2021-02-19T15:51:07Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/431/comments - created_at: '2020-07-03T14:49:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/431/events - html_url: https://github.com/packit/ogr/pull/431 - id: 650642351 + comments_url: https://api.github.com/repos/packit/ogr/issues/543/comments + created_at: '2021-02-19T12:30:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/543/events + html_url: https://github.com/packit/ogr/pull/543 + id: 811985098 labels: - color: 0e8a16 default: false @@ -45894,24 +58534,81 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/431/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/543/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQ0MDk0ODQx - number: 431 + node_id: MDExOlB1bGxSZXF1ZXN0NTc2NDI2MDQw + number: 543 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/431.diff - html_url: https://github.com/packit/ogr/pull/431 - patch_url: https://github.com/packit/ogr/pull/431.patch - url: https://api.github.com/repos/packit/ogr/pulls/431 + diff_url: https://github.com/packit/ogr/pull/543.diff + html_url: https://github.com/packit/ogr/pull/543 + patch_url: https://github.com/packit/ogr/pull/543.patch + url: https://api.github.com/repos/packit/ogr/pulls/543 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Job metadata key 'dist_git_branch' was renamed to 'dist_git_branches' - updated_at: '2020-07-07T07:13:31Z' - url: https://api.github.com/repos/packit/ogr/issues/431 + title: Release 0.21.0 + updated_at: '2021-02-19T15:51:07Z' + url: https://api.github.com/repos/packit/ogr/issues/543 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- current convention is to store fmf files in `plans/`\r\n- `shell`\ + \ execute method has been deprecated, `how:` defaults to `tmt`\r\n-\ + \ added `summary:`\r\n- added `README.md`" + closed_at: '2021-02-19T13:12:37Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/541/comments + created_at: '2021-02-18T14:28:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/541/events + html_url: https://github.com/packit/ogr/pull/541 + id: 811150489 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/541/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTc1NzI1MTA4 + number: 541 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/541.diff + html_url: https://github.com/packit/ogr/pull/541 + patch_url: https://github.com/packit/ogr/pull/541.patch + url: https://api.github.com/repos/packit/ogr/pulls/541 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Split ci.fmf into plans/*.fmf + updated_at: '2021-02-19T13:52:42Z' + url: https://api.github.com/repos/packit/ogr/issues/541 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -45932,148 +58629,116 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Implement get_files() method in Pagure. - closed_at: null - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/310/comments - created_at: '2020-01-21T12:50:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/310/events - html_url: https://github.com/packit/ogr/issues/310 - id: 552856957 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* https://github.com/packit-service\ + \ -> https://github.com/packit\n* Add Jupyter examples\n* fix create\ + \ issue in Github and add test\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.13.1-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-08-20T07:58:30Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/455/comments + created_at: '2020-08-19T11:07:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/455/events + html_url: https://github.com/packit/ogr/pull/455 + id: 681753984 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: bc4812 + - color: ededed default: false - description: We are blocked! - id: 1432779229 - name: blocker - node_id: MDU6TGFiZWwxNDMyNzc5MjI5 - url: https://api.github.com/repos/packit/ogr/labels/blocker - - color: a2eeef + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/310/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/455/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTI4NTY5NTc= - number: 310 + node_id: MDExOlB1bGxSZXF1ZXN0NDcwMDkyNTEx + number: 455 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/455.diff + html_url: https://github.com/packit/ogr/pull/455 + patch_url: https://github.com/packit/ogr/pull/455.patch + url: https://api.github.com/repos/packit/ogr/pulls/455 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Support get_files() in Pagure - updated_at: '2020-07-07T06:21:10Z' - url: https://api.github.com/repos/packit/ogr/issues/310 + state: closed + title: 0.13.1 release + updated_at: '2021-02-19T12:31:31Z' + url: https://api.github.com/repos/packit/ogr/issues/455 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "When working with PRs, there are also URLs linking directly to\ - \ commit list tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the\ - \ `url_commits` and implement it.\r\n - Use API if possible, otherwise\ - \ \"guess\" the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\n\ - Examples:\r\n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/commits\r\ - \n- https://github.com/packit-service/ogr/pull/1/commits\r\n- https://pagure.io/ogr-tests/pull-request/7#commit_list\r\ - \n" - closed_at: null - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/212/comments - created_at: '2019-09-19T18:48:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/212/events - html_url: https://github.com/packit/ogr/issues/212 - id: 495968279 + body: '- Be able to run tests via tmt also locally.' + closed_at: '2021-02-18T18:31:30Z' + comments: 20 + comments_url: https://api.github.com/repos/packit/ogr/issues/358/comments + created_at: '2020-03-19T08:50:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/358/events + html_url: https://github.com/packit/ogr/pull/358 + id: 584255021 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 + - color: dd5f74 default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/212/labels{/name} + description: Work in progress. + id: 1432779248 + name: do-not-merge + node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 + url: https://api.github.com/repos/packit/ogr/labels/do-not-merge + labels_url: https://api.github.com/repos/packit/ogr/issues/358/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU5NjgyNzk= - number: 212 + node_id: MDExOlB1bGxSZXF1ZXN0MzkwODczODYy + number: 358 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/358.diff + html_url: https://github.com/packit/ogr/pull/358 + patch_url: https://github.com/packit/ogr/pull/358.patch + url: https://api.github.com/repos/packit/ogr/pulls/358 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Add commits url to PullRequest class - updated_at: '2020-07-03T14:18:58Z' - url: https://api.github.com/repos/packit/ogr/issues/212 + state: closed + title: 'WIP: Tmt local run' + updated_at: '2021-02-19T10:30:11Z' + url: https://api.github.com/repos/packit/ogr/issues/358 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -46095,85 +58760,14 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "This is needed for Python 3.10+.\r\n\r\nSee devel-list message\ - \ for details:\r\n\r\nhttps://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/PQIGCQCRNBYNXBX2ICWEM3PLDLNOG2ZT/\r\ - \n\r\nSigned-off-by: Hunor Csomort\xE1ni " - closed_at: '2020-06-30T07:33:05Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/430/comments - created_at: '2020-06-30T07:12:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/430/events - html_url: https://github.com/packit/ogr/pull/430 - id: 647926952 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/430/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQxODMwMDgy - number: 430 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/430.diff - html_url: https://github.com/packit/ogr/pull/430 - patch_url: https://github.com/packit/ogr/pull/430.patch - url: https://api.github.com/repos/packit/ogr/pulls/430 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Replace Python version glob with macro - updated_at: '2020-06-30T07:33:06Z' - url: https://api.github.com/repos/packit/ogr/issues/430 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: "The object [gitlab.v4.objects.ProjectFile](https://python-gitlab.readthedocs.io/en/stable/api/gitlab.v4.html#gitlab.v4.objects.ProjectFile)\ - \ with the function [decode()](https://python-gitlab.readthedocs.io/en/stable/api/gitlab.v4.html#gitlab.v4.objects.ProjectFile.decode)\ - \ will return bytes -\r\n\r\n`b'---\\nspecfile_path: hello.spec\\nsynced_files:\\\ - n - hello.spec\\n# actions:\\n# post-upstream-clone: \"python3 setup.py\ - \ sdist --dist-dir .\"\\n# current_version_command: [\"python3\", \"\ - setup.py\", \"--version\"]\\n# create_tarball_command: [\"python3\"\ - , \"setup.py\", \"sdist\", \"--dist-dir\", \".\"]\\njobs:\\n- job: copr_build\\\ - n trigger: pull_request\\n metadata:\\n targets:\\n - fedora-30-x86_64'`\r\ - \n\r\nExpected string - \r\n\r\n```\r\n---\r\nspecfile_path: hello.spec\r\ - \nsynced_files:\r\n - hello.spec\r\n# actions:\r\n# post-upstream-clone:\ - \ \"python3 setup.py sdist --dist-dir .\"\r\n# current_version_command:\ - \ [\"python3\", \"setup.py\", \"--version\"]\r\n# create_tarball_command:\ - \ [\"python3\", \"setup.py\", \"sdist\", \"--dist-dir\", \".\"]\r\n\ - jobs:\r\n- job: copr_build\r\n trigger: pull_request\r\n metadata:\r\ - \n targets:\r\n - fedora-30-x86_64\r\n```\r\n" - closed_at: '2020-06-29T12:03:35Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/429/comments - created_at: '2020-06-28T21:32:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/429/events - html_url: https://github.com/packit/ogr/pull/429 - id: 647009475 + body: "Fixes #310\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2021-02-15T20:48:43Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/539/comments + created_at: '2021-02-12T13:43:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/539/events + html_url: https://github.com/packit/ogr/pull/539 + id: 807247111 labels: - color: 0e8a16 default: false @@ -46182,63 +58776,63 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/429/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/539/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQxMTE3MTUw - number: 429 + node_id: MDExOlB1bGxSZXF1ZXN0NTcyNTI4NDEy + number: 539 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/429.diff - html_url: https://github.com/packit/ogr/pull/429 - patch_url: https://github.com/packit/ogr/pull/429.patch - url: https://api.github.com/repos/packit/ogr/pulls/429 + diff_url: https://github.com/packit/ogr/pull/539.diff + html_url: https://github.com/packit/ogr/pull/539 + patch_url: https://github.com/packit/ogr/pull/539.patch + url: https://api.github.com/repos/packit/ogr/pulls/539 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix get_file_content() returning bytes - updated_at: '2020-06-29T12:03:35Z' - url: https://api.github.com/repos/packit/ogr/issues/429 + title: Implement get_files for Pagure + updated_at: '2021-02-15T20:55:37Z' + url: https://api.github.com/repos/packit/ogr/issues/539 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Would be nice to be able to manipulate labels on pagure issues.\ - \ i.e. `get_issue_labels()` `add_issue_labels()`, etc.. \r\n\r\n\r\n\ - *update by @lachmanfrantisek:*\r\n\r\nTODO: \r\n- [x] `labels` property\ - \ for `PagureIssue` class (https://github.com/packit-service/ogr/pull/321\ - \ by @cverna )\r\n- [x] `labels` argument for `PagureIssue.create` and\ - \ `PagureProject.create_issue` (https://github.com/packit-service/ogr/pull/321\ - \ by @cverna)\r\n- [ ] `labels` property for `PagurePullRequest` class\r\ - \n- [ ] `labels` argument for `PagurePullRequest.create` and `PagureProject.create_pr`\r\ - \n- [ ] `add_label` methods blocked by the PagureAPI (https://pagure.io/pagure/issue/2175)\r\ - \n- [ ] add tests for all of those\r\n\r\n" - closed_at: null - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/147/comments - created_at: '2019-08-09T22:23:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/147/events - html_url: https://github.com/packit/ogr/issues/147 - id: 479187441 + body: "Implement `get_files()` method in Pagure.\r\n\r\n- Structure can\ + \ be seen in the docstring of the code that implements that: https://pagure.io/pagure/blob/dd207ee/f/pagure/api/project.py#_709\r\ + \n- Example: https://pagure.io/api/0/pagure/tree\r\n" + closed_at: '2021-02-15T20:48:43Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/310/comments + created_at: '2020-01-21T12:50:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/310/events + html_url: https://github.com/packit/ogr/issues/310 + id: 552856957 labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -46246,6 +58840,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 + default: false + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker - color: a2eeef default: false description: New feature or a request for enhancement. @@ -46253,120 +58854,219 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: bf6b0b + - color: 7057ff default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - labels_url: https://api.github.com/repos/packit/ogr/issues/147/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/310/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzkxODc0NDE= - number: 147 + node_id: MDU6SXNzdWU1NTI4NTY5NTc= + number: 310 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: create label* functions for pagure backend - updated_at: '2020-06-29T06:46:49Z' - url: https://api.github.com/repos/packit/ogr/issues/147 + state: closed + title: Support get_files() in Pagure + updated_at: '2021-02-15T20:48:43Z' + url: https://api.github.com/repos/packit/ogr/issues/310 user: - avatar_url: https://avatars2.githubusercontent.com/u/4530030?v=4 - events_url: https://api.github.com/users/dustymabe/events{/privacy} - followers_url: https://api.github.com/users/dustymabe/followers - following_url: https://api.github.com/users/dustymabe/following{/other_user} - gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + 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/dustymabe - id: 4530030 - login: dustymabe - node_id: MDQ6VXNlcjQ1MzAwMzA= - organizations_url: https://api.github.com/users/dustymabe/orgs - received_events_url: https://api.github.com/users/dustymabe/received_events - repos_url: https://api.github.com/users/dustymabe/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + 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/dustymabe - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=3: - - metadata: - latency: 0.751899242401123 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/lbarcziova + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: "Sentry Issue: [RED-HAT-0P-2PA](https://sentry.io/organizations/red-hat-0p/issues/1785839618/?referrer=github_integration)\n\ + \n```\nRemoteDisconnected: Remote end closed connection without response\n\ + (2 additional frame(s) were not displayed)\n...\n File \"\"\ + , line 3, in raise_from\n # Permission is hereby granted, free of\ + \ charge, to any person obtaining a copy\n File \"urllib3/connectionpool.py\"\ + , line 416, in _make_request\n httplib_response = conn.getresponse()\n\ + \ File \"http/client.py\", line 1369, in getresponse\n response.begin()\n\ + \ File \"http/client.py\", line 310, in begin\n version, status,\ + \ reason = self._read_status()\n File \"http/client.py\", line 279,\ + \ in _read_status\n raise RemoteDisconnected(\"Remote end closed\ + \ connection without\"\n\nProtocolError: ('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))\n(6 additional frame(s)\ + \ were not displayed)\n...\n File \"\", line 3, in raise_from\n\ + \ # Permission is hereby granted, free of charge, to any person obtaining\ + \ a copy\n File \"urllib3/connectionpool.py\", line 416, in _make_request\n\ + \ httplib_response = conn.getresponse()\n File \"http/client.py\"\ + , line 1369, in getresponse\n response.begin()\n File \"http/client.py\"\ + , line 310, in begin\n version, status, reason = self._read_status()\n\ + \ File \"http/client.py\", line 279, in _read_status\n raise RemoteDisconnected(\"\ + Remote end closed connection without\"\n\nConnectionError: ('Connection\ + \ aborted.', RemoteDisconnected('Remote end closed connection without\ + \ response'))\n File \"ogr/services/pagure/service.py\", line 168,\ + \ in call_api_raw\n method=method, url=url, params=params, data=data\n\ + \ File \"ogr/services/pagure/service.py\", line 186, in get_raw_request\n\ + \ verify=not self.insecure,\n File \"requests/sessions.py\", line\ + \ 533, in request\n resp = self.send(prep, **send_kwargs)\n File\ + \ \"requests/sessions.py\", line 646, in send\n r = adapter.send(request,\ + \ **kwargs)\n File \"requests/adapters.py\", line 498, in send\n \ + \ raise ConnectionError(err, request=request)\n\nPagureAPIException:\ + \ (\"Cannot connect to url: 'https://git.stg.centos.org/api/0/source-git/acl/c/48d4feb54ebcb47cb593ab3c304ec36b755e8769/flag'.\"\ + , ConnectionError(ProtocolError('Connection aborted.', RemoteDisconnected('Remote\ + \ end closed connection without response'))))\n(11 additional frame(s)\ + \ were not displayed)\n...\n File \"ogr/services/pagure/project.py\"\ + , line 464, in set_commit_status\n uid=uid,\n File \"ogr/services/pagure/flag.py\"\ + , line 88, in set\n \"c\", commit, \"flag\", method=\"POST\", data=data\n\ + \ File \"ogr/services/pagure/project.py\", line 129, in _call_project_api\n\ + \ url=request_url, method=method, params=params, data=data\n File\ + \ \"ogr/services/pagure/service.py\", line 128, in call_api\n response\ + \ = self.call_api_raw(url=url, method=method, params=params, data=data)\n\ + \ File \"ogr/services/pagure/service.py\", line 173, in call_api_raw\n\ + \ raise PagureAPIException(f\"Cannot connect to url: '{url}'.\",\ + \ er)\n```" + closed_at: '2021-02-12T12:22:11Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/464/comments + created_at: '2020-09-16T07:25:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/464/events + html_url: https://github.com/packit/ogr/issues/464 + id: 702525467 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + labels_url: https://api.github.com/repos/packit/ogr/issues/464/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MDI1MjU0Njc= + number: 464 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[Pagure] ProtocolError: (''Connection aborted.'', RemoteDisconnected(''Remote + end closed connection without response''))' + updated_at: '2021-02-12T12:22:11Z' + url: https://api.github.com/repos/packit/ogr/issues/464 + user: + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 + events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers + following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/sentry-io + id: 39604003 + login: sentry-io[bot] + node_id: MDM6Qm90Mzk2MDQwMDM= + organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events + repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/sentry-io%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `[Errno 2] No such file or directory: ''/tmp/packit-dist-gitl5r40_6q/sources''` + | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-02-12T12:21:06Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/530/comments + created_at: '2021-02-05T09:26:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/530/events + html_url: https://github.com/packit/ogr/issues/530 + id: 802000731 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/530/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU4MDIwMDA3MzE= + number: 530 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose downstream failed for release 0.20.0' + updated_at: '2021-02-12T12:21:06Z' + url: https://api.github.com/repos/packit/ogr/issues/530 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Build in Copr for master commits and releases.\r\n- We are using\ - \ same copr projects as we do for packit.\r\n- Relates to https://github.com/packit-service/ogr/pull/428." - closed_at: '2020-06-26T12:08:08Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/428/comments - created_at: '2020-06-26T08:42:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/428/events - html_url: https://github.com/packit/ogr/pull/428 - id: 646108018 + body: "# TODO\r\n\r\n- [ ] decide between `pdoc` and `pdoc3` (they seem\ + \ to be separate packages)\r\n oh, there's the tea https://github.com/mitmproxy/pdoc#pdoc-vs-pdoc3\r\ + \n- [ ] we currently use Sphinx markup that doesn't really work well\ + \ with either of `pdoc`s\r\n- [ ] since we use `__all__` it seems to\ + \ be harder to navigate the docs\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2021-02-09T11:16:41Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/531/comments + created_at: '2021-02-05T10:53:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/531/events + html_url: https://github.com/packit/ogr/pull/531 + id: 802064566 labels: - color: 0e8a16 default: false @@ -46382,92 +59082,149 @@ requests.sessions: name: "\U0001F31E Friday \U0001F91F" node_id: MDU6TGFiZWwyMTYyNTc2MjIx url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F - labels_url: https://api.github.com/repos/packit/ogr/issues/428/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/531/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDQwNDU5MTk2 - number: 428 + node_id: MDExOlB1bGxSZXF1ZXN0NTY4MjcwNTA2 + number: 531 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/428.diff - html_url: https://github.com/packit/ogr/pull/428 - patch_url: https://github.com/packit/ogr/pull/428.patch - url: https://api.github.com/repos/packit/ogr/pulls/428 + diff_url: https://github.com/packit/ogr/pull/531.diff + html_url: https://github.com/packit/ogr/pull/531 + patch_url: https://github.com/packit/ogr/pull/531.patch + url: https://api.github.com/repos/packit/ogr/pulls/531 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Copr build for master and releases - updated_at: '2020-06-26T12:13:35Z' - url: https://api.github.com/repos/packit/ogr/issues/428 + title: Add autogeneration of docs + updated_at: '2021-02-12T11:43:27Z' + url: https://api.github.com/repos/packit/ogr/issues/531 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko + - active_lock_reason: null + assignee: null + assignees: [] + author_association: FIRST_TIME_CONTRIBUTOR + body: "Implemented list projects for GitServices (#485 )\r\n\r\n@lachmanfrantisek " + closed_at: '2021-02-12T08:01:33Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/522/comments + created_at: '2021-01-24T03:23:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/522/events + html_url: https://github.com/packit/ogr/pull/522 + id: 792711474 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/522/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTYwNTM3ODc2 + number: 522 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/522.diff + html_url: https://github.com/packit/ogr/pull/522 + patch_url: https://github.com/packit/ogr/pull/522.patch + url: https://api.github.com/repos/packit/ogr/pulls/522 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implemented list projects for GitServices (#485) + updated_at: '2021-02-12T08:05:16Z' + url: https://api.github.com/repos/packit/ogr/issues/522 + user: + avatar_url: https://avatars.githubusercontent.com/u/18401396?v=4 + events_url: https://api.github.com/users/abkosar/events{/privacy} + followers_url: https://api.github.com/users/abkosar/followers + following_url: https://api.github.com/users/abkosar/following{/other_user} + gists_url: https://api.github.com/users/abkosar/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/abkosar + id: 18401396 + login: abkosar + node_id: MDQ6VXNlcjE4NDAxMzk2 + organizations_url: https://api.github.com/users/abkosar/orgs + received_events_url: https://api.github.com/users/abkosar/received_events + repos_url: https://api.github.com/users/abkosar/repos + site_admin: false + starred_url: https://api.github.com/users/abkosar/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/abkosar/subscriptions + type: User + url: https://api.github.com/users/abkosar - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "By looking at the code I noticed there are no tests for creating\ - \ pull requests in different scenarios (like Github has) and also the\ - \ code doesn't seem to be compliant to the documentation of ogr.\r\n\ - \r\n- [ ] Add tests\r\n- [ ] Fix the implementation\r\n\r\nMay be\ - \ blocked by #412" - closed_at: '2020-06-25T10:41:12Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/414/comments - created_at: '2020-05-20T21:34:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/414/events - html_url: https://github.com/packit/ogr/issues/414 - id: 622098916 + body: "Tools that we use for autogeneration of documentation support mainly\ + \ markdown (also optionally numpy or google style of docstrings). We\ + \ should transition from our current sphinx-style of comments to one\ + \ of those.\r\n\r\n- [ ] decide between markdown, numpy or google style\r\ + \n - [ ] update GitHub action for generating of documentation if necessary\r\ + \n- [ ] update docstrings to adhere to the chosen style/format\r\n\r\ + \nFollow-up of #531 " + closed_at: null + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/532/comments + created_at: '2021-02-09T13:57:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/532/events + html_url: https://github.com/packit/ogr/issues/532 + id: 804575574 labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: d73a4a + - color: c5def5 default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 42e529 + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/414/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/532/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjIwOTg5MTY= - number: 414 + node_id: MDU6SXNzdWU4MDQ1NzU1NzQ= + number: 532 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Pull requests on Gitlab projects - updated_at: '2020-06-25T10:41:12Z' - url: https://api.github.com/repos/packit/ogr/issues/414 + state: open + title: Docstrings' format + updated_at: '2021-02-11T14:47:10Z' + url: https://api.github.com/repos/packit/ogr/issues/532 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -46489,14 +59246,15 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-06-23T15:27:42Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/427/comments - created_at: '2020-06-23T14:34:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/427/events - html_url: https://github.com/packit/ogr/pull/427 - id: 643894847 + body: This was amended in cf86074e to be compatible with both old/new + TF, but can be removed completely now since the old TF no longer exists. + closed_at: '2021-02-10T08:12:03Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/536/comments + created_at: '2021-02-09T14:51:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/536/events + html_url: https://github.com/packit/ogr/pull/536 + id: 804622682 labels: - color: 0e8a16 default: false @@ -46505,24 +59263,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/427/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/536/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDM4NjEzNzgx - number: 427 + node_id: MDExOlB1bGxSZXF1ZXN0NTcwMzU4OTIx + number: 536 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/427.diff - html_url: https://github.com/packit/ogr/pull/427 - patch_url: https://github.com/packit/ogr/pull/427.patch - url: https://api.github.com/repos/packit/ogr/pulls/427 + diff_url: https://github.com/packit/ogr/pull/536.diff + html_url: https://github.com/packit/ogr/pull/536 + patch_url: https://github.com/packit/ogr/pull/536.patch + url: https://api.github.com/repos/packit/ogr/pulls/536 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Zuul & pre-commit related changes - updated_at: '2020-06-24T08:10:43Z' - url: https://api.github.com/repos/packit/ogr/issues/427 + title: '[ci.fmf] remove old TF specific code' + updated_at: '2021-02-10T08:56:36Z' + url: https://api.github.com/repos/packit/ogr/issues/536 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -46543,123 +59301,28 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "* We first to need to create an abstraction on top of all forges\r\ - \n* and then implement it for each\r\n\r\nThis is an example how pagure\ - \ does it:\r\n```python\r\nmod_acls = {\r\n 'user_type': 'group',\r\ - \n 'name': 'git-packit-team',\r\n 'acl': 'admin',\r\n\ - }\r\n\r\nreq = requests.post(\r\n url + 'source-git/%s/git/modifyacls'\ - \ % (project),\r\n headers=headers,\r\n verify=False,\r\ - \n data=mod_acls\r\n)\r\n```" - closed_at: '2020-06-22T13:36:26Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/364/comments - created_at: '2020-03-25T12:55:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/364/events - html_url: https://github.com/packit/ogr/issues/364 - id: 587676376 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/364/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1ODc2NzYzNzY= - number: 364 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: provide a way to modify ACLs of repositories - updated_at: '2020-06-22T13:36:27Z' - url: https://api.github.com/repos/packit/ogr/issues/364 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "It is sometimes hard to get the right problem when a user receives\ - \ a long traceback with some GitHub/GitLab exception at the end. Those\ - \ exceptions are not always clear or too general (`e.g. Object not found`).\r\ - \n\r\nWe can probably do better and raise our exceptions that will have\ - \ much clearer message since we usually know the context (e.g. `PR with\ - \ id={id} not found.`).\r\n\r\nAC:\r\n\r\n- [ ] Go through the code\ - \ and cover some parts of code in the try blocks and raise our exception\ - \ with good message:\r\n\r\n```python\r\n try:\r\n problematic_code()\r\ - \n except TheExternalException as ex:\r\n raise SomeOgrException(\"\ - Good reason\", ex)\r\n```\r\n- [ ] update/extend the tests\r\n" - closed_at: null + author_association: NONE + body: "There is no documentation on how to use the library, currently.\ + \ A documentation will help people on how to use ogr, and showcase it's\ + \ features and functions.\r\n\r\nThis can be done by adding the wiki\ + \ pages (on Github), since the documentation might be quite long and\ + \ the Wiki will help in segregating several topics (for instance, how\ + \ to use ogr for GitHub, GitLab and Pagure).\r\n\r\n" + closed_at: '2021-02-09T14:13:50Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/199/comments - created_at: '2019-09-13T08:04:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/199/events - html_url: https://github.com/packit/ogr/issues/199 - id: 493190190 + comments_url: https://api.github.com/repos/packit/ogr/issues/53/comments + created_at: '2019-04-04T13:30:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/53/events + html_url: https://github.com/packit/ogr/issues/53 + id: 429280678 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation - color: bf6b0b default: false description: '' @@ -46667,6 +59330,102 @@ requests.sessions: name: pinned node_id: MDU6TGFiZWwyMTAxODk4Njg3 url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/53/labels{/name} + locked: false + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0MjkyODA2Nzg= + number: 53 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add a documentation for API + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/issues/53 + user: + avatar_url: https://avatars.githubusercontent.com/u/31067398?v=4 + events_url: https://api.github.com/users/Aniket-Pradhan/events{/privacy} + followers_url: https://api.github.com/users/Aniket-Pradhan/followers + following_url: https://api.github.com/users/Aniket-Pradhan/following{/other_user} + gists_url: https://api.github.com/users/Aniket-Pradhan/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Aniket-Pradhan + id: 31067398 + login: Aniket-Pradhan + node_id: MDQ6VXNlcjMxMDY3Mzk4 + organizations_url: https://api.github.com/users/Aniket-Pradhan/orgs + received_events_url: https://api.github.com/users/Aniket-Pradhan/received_events + repos_url: https://api.github.com/users/Aniket-Pradhan/repos + site_admin: false + starred_url: https://api.github.com/users/Aniket-Pradhan/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Aniket-Pradhan/subscriptions + type: User + url: https://api.github.com/users/Aniket-Pradhan + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Currently we use [pdoc3](https://pypi.org/project/pdoc3/) to generate\ + \ our documentation, it would be in our interest to switch to original\ + \ project [pdoc](https://pypi.org/project/pdoc/), since it provides\ + \ built-in search feature and cleaner UI.\r\n\r\nCurrently can't be\ + \ used since there is a failure while parsing our source files.\r\n\r\ + \nFollow-up of #531" + closed_at: null + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/535/comments + created_at: '2021-02-09T14:12:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/535/events + html_url: https://github.com/packit/ogr/issues/535 + id: 804588067 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation - color: 8be567 default: false description: Usability issue. @@ -46674,52 +59433,62 @@ requests.sessions: name: user-experience node_id: MDU6TGFiZWwxNDMyNzc5NDY0 url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/199/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/535/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTMxOTAxOTA= - number: 199 + node_id: MDU6SXNzdWU4MDQ1ODgwNjc= + number: 535 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: Do not let the external exception go to the user - updated_at: '2020-06-16T12:56:15Z' - url: https://api.github.com/repos/packit/ogr/issues/199 + title: Transition to pdoc from pdoc3 + updated_at: '2021-02-09T14:12:22Z' + url: https://api.github.com/repos/packit/ogr/issues/535 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "In #226 we found multiple problems with the offline x online handling.\r\ - \n\r\nWe need to:\r\n\r\n- [x] agree on the rules (e.g. properties cannot\ - \ touch the services)\r\n- [ ] document the rules\r\n- [x] fix the current\ - \ implementation(s) to satisfy the rules\r\n - use deprecations if\ - \ needed\r\n\r\nRelated to #214 " + body: "pdoc(3) supports inheriting of docstrings, there is no need to\ + \ have multiple identical docstrings and also try to rethink exporting\ + \ of the classes/modules through `__all__`, since it makes the documentation\ + \ harder to navigate\r\n\r\n- [ ] remove duplicit docstrings\r\n -\ + \ [ ] add specific docstrings where the interface deviates\r\n- [ ]\ + \ try to think about better structure of exports for `__all__` (shouldn't\ + \ be a problem in specific services, just clean it up at the top-level)\r\ + \n\r\nFollow-up of #531" closed_at: null - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/229/comments - created_at: '2019-10-01T07:47:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/229/events - html_url: https://github.com/packit/ogr/issues/229 - id: 500722982 + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/533/comments + created_at: '2021-02-09T14:01:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/533/events + html_url: https://github.com/packit/ogr/issues/533 + id: 804579179 labels: - color: c5def5 default: true @@ -46728,13 +59497,6 @@ requests.sessions: name: documentation node_id: MDU6TGFiZWwxNDMyNzc5MjY3 url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - color: c2ef58 default: false description: Technical debt - the code needs love. @@ -46749,19 +59511,95 @@ requests.sessions: name: user-experience node_id: MDU6TGFiZWwxNDMyNzc5NDY0 url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/229/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/533/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDA3MjI5ODI= - number: 229 + node_id: MDU6SXNzdWU4MDQ1NzkxNzk= + number: 533 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: Investigate online x offline handling - updated_at: '2020-06-15T08:46:36Z' - url: https://api.github.com/repos/packit/ogr/issues/229 + title: Remove duplicit docstrings + make documentation easier to navigate + updated_at: '2021-02-09T14:01:52Z' + url: https://api.github.com/repos/packit/ogr/issues/533 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Pipelines are specific to the GitLab but there were some requests\ + \ (ping @thrix ) to support them in OGR as well.\r\n\r\n- It's going\ + \ against the purpose of OGR to have one API for multiple forges. :-1:\ + \ \r\n- Users can access `python-gitlab` to do that instead. :-1: \r\ + \n - But it's not a good UX. `python-gitlab` is our implementation\ + \ detail. We should not force users to access that. :+1: \r\n- Technically\ + \ it will be easy to implement. :+1: (No big changes needed, just add\ + \ some GitLab specific classes and methods.)\r\n- It will be useful\ + \ for packit-service GitLab implementation :+1: (ping @shreyaspapi ..;-)\r\ + \n\r\nAC:\r\n- [ ] Provide a class abstraction on top of the objects\ + \ related to that.\r\n - Make here a proposal before coding.\r\n- [\ + \ ] Implement useful methods and classes.\r\n- [ ] Create new issues\ + \ for anything that can be implemented later." + closed_at: null + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/420/comments + created_at: '2020-05-26T14:37:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/420/events + html_url: https://github.com/packit/ogr/issues/420 + id: 624934468 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/420/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjQ5MzQ0Njg= + number: 420 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Support for GitLab pipelines + updated_at: '2021-02-09T08:43:48Z' + url: https://api.github.com/repos/packit/ogr/issues/420 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -46782,92 +59620,129 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Needed in https://github.com/packit-service/packit-service/pull/662 - closed_at: '2020-06-11T07:53:09Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/425/comments - created_at: '2020-06-08T10:16:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/425/events - html_url: https://github.com/packit/ogr/pull/425 - id: 634481719 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/425/labels{/name} + author_association: CONTRIBUTOR + body: "and ideally link it with pull request and git project\r\n\r\nThe\ + \ expectation here is that when ogr returns name of a branch, it would\ + \ return a GitBranch instance instead.\r\n\r\nThe class should contain\ + \ at minimum:\r\n* name\r\n* be linked to a repository\r\n* commit SHA\ + \ of the HEAD\r\n\r\nWould be nice if:\r\n* there was a connection to\ + \ a PR if there is one\r\n* datetime it was created\r\n* datetime of\ + \ last change" + closed_at: null + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/359/comments + created_at: '2020-03-23T12:36:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/359/events + html_url: https://github.com/packit/ogr/issues/359 + id: 586176845 + labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/359/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDMxMDI4NDEw - number: 425 + node_id: MDU6SXNzdWU1ODYxNzY4NDU= + number: 359 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/425.diff - html_url: https://github.com/packit/ogr/pull/425 - patch_url: https://github.com/packit/ogr/pull/425.patch - url: https://api.github.com/repos/packit/ogr/pulls/425 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Implement PagurePullRequest.get_flags() - updated_at: '2020-06-11T07:53:14Z' - url: https://api.github.com/repos/packit/ogr/issues/425 + state: open + title: introduce a class for a git branch + updated_at: '2021-02-09T08:39:32Z' + url: https://api.github.com/repos/packit/ogr/issues/359 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Use literal style (|) in the YAML string, in order to keep new-lines\ - \ and\r\nhave a better formatting.\r\n\r\nBe explicit about the dates.\r\ - \n\r\nBe more English (hopefully).\r\n\r\nSigned-off-by: Hunor Csomort\xE1\ - ni " - closed_at: '2020-06-10T13:35:30Z' + body: "After the Packit organisation rename, I had to regenerate the test\ + \ data for GitHub. This proved to be a considerable effort, with roughly\ + \ the following steps:\r\n\r\n- create a Python virtualenv and install\ + \ test dependencies - this needed several attempts, to get it right.\r\ + \n- clean up test data for GitHub\r\n- set my GitHub API token\r\n-\ + \ run the tests with `make check` only to realise that the `GITHUB_APP_ID`\ + \ and the `GITHUB_APP_PRIVATE_KEY_PATH` env vars were not set. Ask by\ + \ the team how what values to set these (stage is fine) and run the\ + \ tests again.\r\n- Start following comments left in individul tests,\ + \ to manually bring the repos, PRs, issues in the state the state expected\ + \ them to be. For this I had to run the tests over and over again, see\ + \ a test fail, inspect the failure to figure out the reason, fix the\ + \ pre-conditions and run the tests again to check that the fix worked.\r\ + \n\r\nThe above is extremely tedious and frustrating.\r\n\r\nRegenerating\ + \ test data should be trivial, for example:\r\n\r\n- if credentials\ + \ are needed, the contribution guide should explicitly call those out\ + \ with clear indication what their values/credentials should be.\r\n\ + - they should be checked to be set even before starting any test run.\r\ + \n- pre-conditions for tests should be checked, and preferably automatically\ + \ set up given the credentials above, without requiring any manual action.\r\ + \n- if it's still required to set pre-conditions manually, these steps\ + \ should be clearly called out with detailed instructions in the contribution\ + \ guide. " + closed_at: null comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/426/comments - created_at: '2020-06-10T06:41:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/426/events - html_url: https://github.com/packit/ogr/pull/426 - id: 635974319 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/426/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/445/comments + created_at: '2020-08-03T13:50:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/445/events + html_url: https://github.com/packit/ogr/issues/445 + id: 672091016 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/445/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDMyMjM2NzY4 - number: 426 + node_id: MDU6SXNzdWU2NzIwOTEwMTY= + number: 445 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/426.diff - html_url: https://github.com/packit/ogr/pull/426 - patch_url: https://github.com/packit/ogr/pull/426.patch - url: https://api.github.com/repos/packit/ogr/pulls/426 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Improve the message when marking issues as stale - updated_at: '2020-06-10T13:35:30Z' - url: https://api.github.com/repos/packit/ogr/issues/426 + state: open + title: Regenerating the test data for the integration tests should be + trivial + updated_at: '2021-02-08T08:27:43Z' + url: https://api.github.com/repos/packit/ogr/issues/445 user: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -46888,72 +59763,197 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: "During pre-commit I'm getting the following issues (Trying to solve\ - \ #338 )\r\n```\r\nogr/abstract.py:731: error: Too many arguments\r\n\ - ogr/services/github/service.py:172: error: Too many arguments\r\n```" - closed_at: '2020-06-08T19:38:15Z' + author_association: MEMBER + body: "Fixes #413\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2021-01-22T13:24:40Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/498/comments + created_at: '2020-11-27T09:47:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/498/events + html_url: https://github.com/packit/ogr/pull/498 + id: 752121082 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/498/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTI4NTA2MjI4 + number: 498 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/498.diff + html_url: https://github.com/packit/ogr/pull/498 + patch_url: https://github.com/packit/ogr/pull/498.patch + url: https://api.github.com/repos/packit/ogr/pulls/498 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Change exception for edited on GitLab's commit flag + updated_at: '2021-02-05T11:56:48Z' + url: https://api.github.com/repos/packit/ogr/issues/498 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "- Also fix other `__str__`s and reformat them\r\n\r\nSigned-off-by:\ + \ Matej Focko " + closed_at: '2020-12-09T12:38:35Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/505/comments + created_at: '2020-12-09T12:18:11Z' + events_url: https://api.github.com/repos/packit/ogr/issues/505/events + html_url: https://github.com/packit/ogr/pull/505 + id: 760280757 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/505/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTM1MTM5MDYz + number: 505 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/505.diff + html_url: https://github.com/packit/ogr/pull/505 + patch_url: https://github.com/packit/ogr/pull/505.patch + url: https://api.github.com/repos/packit/ogr/pulls/505 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add missing `__str__`s used in tests and format them + updated_at: '2021-02-05T11:56:45Z' + url: https://api.github.com/repos/packit/ogr/issues/505 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Will fix #496\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2020-12-01T11:46:18Z' comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/362/comments - created_at: '2020-03-24T15:41:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/362/events - html_url: https://github.com/packit/ogr/pull/362 - id: 587056910 + comments_url: https://api.github.com/repos/packit/ogr/issues/497/comments + created_at: '2020-11-27T09:13:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/497/events + html_url: https://github.com/packit/ogr/pull/497 + id: 752099361 labels: - - color: '000000' + - color: 0e8a16 default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/362/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/497/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzkzMDcwNzg0 - number: 362 + node_id: MDExOlB1bGxSZXF1ZXN0NTI4NDg5MDYw + number: 497 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/362.diff - html_url: https://github.com/packit/ogr/pull/362 - patch_url: https://github.com/packit/ogr/pull/362.patch - url: https://api.github.com/repos/packit/ogr/pulls/362 + diff_url: https://github.com/packit/ogr/pull/497.diff + html_url: https://github.com/packit/ogr/pull/497 + patch_url: https://github.com/packit/ogr/pull/497.patch + url: https://api.github.com/repos/packit/ogr/pulls/497 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: adding hostname property - updated_at: '2020-06-08T19:38:15Z' - url: https://api.github.com/repos/packit/ogr/issues/362 + title: Add more tests to parsing and improve parsing + updated_at: '2021-02-05T11:56:43Z' + url: https://api.github.com/repos/packit/ogr/issues/497 user: - avatar_url: https://avatars0.githubusercontent.com/u/36095091?v=4 - events_url: https://api.github.com/users/dinolinjob/events{/privacy} - followers_url: https://api.github.com/users/dinolinjob/followers - following_url: https://api.github.com/users/dinolinjob/following{/other_user} - gists_url: https://api.github.com/users/dinolinjob/gists{/gist_id} + 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/dinolinjob - id: 36095091 - login: dinolinjob - node_id: MDQ6VXNlcjM2MDk1MDkx - organizations_url: https://api.github.com/users/dinolinjob/orgs - received_events_url: https://api.github.com/users/dinolinjob/received_events - repos_url: https://api.github.com/users/dinolinjob/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions + 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/dinolinjob + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Fixes #406\r\n\r\n- [x] Fix unit tests" - closed_at: '2020-05-26T09:47:07Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/411/comments - created_at: '2020-05-15T09:31:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/411/events - html_url: https://github.com/packit/ogr/pull/411 - id: 618832407 + body: "- Add an abstract class with `__repr__` definition\r\n - Enhances\ + \ debugging\r\n\r\nFixes #365\r\n\r\nSigned-off-by: Matej Focko \r\ + \n\r\n*Edit tt: added Fixes line*" + closed_at: '2020-12-09T11:20:42Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/504/comments + created_at: '2020-12-09T08:41:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/504/events + html_url: https://github.com/packit/ogr/pull/504 + id: 760127932 labels: - color: 0e8a16 default: false @@ -46962,24 +59962,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/411/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/504/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDE4NDgxODAx - number: 411 + node_id: MDExOlB1bGxSZXF1ZXN0NTM1MDExNjA2 + number: 504 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/411.diff - html_url: https://github.com/packit/ogr/pull/411 - patch_url: https://github.com/packit/ogr/pull/411.patch - url: https://api.github.com/repos/packit/ogr/pulls/411 + diff_url: https://github.com/packit/ogr/pull/504.diff + html_url: https://github.com/packit/ogr/pull/504 + patch_url: https://github.com/packit/ogr/pull/504.patch + url: https://api.github.com/repos/packit/ogr/pulls/504 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Creating PRs from `fork` to `other-fork` on Github - updated_at: '2020-06-07T18:05:12Z' - url: https://api.github.com/repos/packit/ogr/issues/411 + title: Add an abstract class with binding of repr to str + updated_at: '2021-02-05T11:56:41Z' + url: https://api.github.com/repos/packit/ogr/issues/504 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -46997,19 +59997,77 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko + _next: null + elapsed: 0.425809 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:43 GMT + ETag: W/"79e9ecb076e8eda5c52201786c66c230b9257b3398e65e34b5a49ab4357b428c" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78ED7E:13332AD:6075DC87 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4418' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '582' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=3: + - metadata: + latency: 0.7952353954315186 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- [ ] should be thoroughly checked (`Project`, `Service`, `User`, - `Release` should be fine)' - closed_at: '2020-06-05T15:20:24Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/311/comments - created_at: '2020-01-24T22:31:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/311/events - html_url: https://github.com/packit/ogr/pull/311 - id: 554985894 + body: "Fixes #212\r\n\r\nSigned-off-by: Matej Focko " + closed_at: '2021-02-03T19:24:22Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/527/comments + created_at: '2021-02-03T15:09:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/527/events + html_url: https://github.com/packit/ogr/pull/527 + id: 800420217 labels: - color: 0e8a16 default: false @@ -47018,24 +60076,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/311/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/527/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY3MDQxOTA2 - number: 311 + node_id: MDExOlB1bGxSZXF1ZXN0NTY2OTA4NDAw + number: 527 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/311.diff - html_url: https://github.com/packit/ogr/pull/311 - patch_url: https://github.com/packit/ogr/pull/311.patch - url: https://api.github.com/repos/packit/ogr/pulls/311 + diff_url: https://github.com/packit/ogr/pull/527.diff + html_url: https://github.com/packit/ogr/pull/527 + patch_url: https://github.com/packit/ogr/pull/527.patch + url: https://api.github.com/repos/packit/ogr/pulls/527 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add compatibility table - updated_at: '2020-06-05T15:36:55Z' - url: https://api.github.com/repos/packit/ogr/issues/311 + title: Implement commits_url for pull requests + updated_at: '2021-02-05T11:56:32Z' + url: https://api.github.com/repos/packit/ogr/issues/527 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -47053,206 +60111,80 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] - author_association: COLLABORATOR - body: "*Updated by @lachmanfrantisek :*\r\n\r\nWe have a lot of methods\ - \ related to the permissions (e.g. who can merge/close,..)\r\n\r\nIt's\ - \ not consistent, let's clean that!\r\n\r\nFeel free to solve this in\ - \ smaller parts. Just write on what you are going to work...\r\n\r\n\ - AC:\r\n- [ ] Make sure, that we have all of the provided methods in\ - \ the `abstract.py`\r\n (raising the `NotImplementedError`)\r\n- [\ - \ ] Make sure, that we have all of these in all the implementations:\r\ - \n - [ ] GitLab\r\n - [ ] GitHub\r\n - [ ] Pagure\r\n- [ ] Deprecate\ - \ the project methods related to specific issue/pull-request.\r\n- [\ - \ ] Move helping methods to the base classes.\r\n - The only exception\ - \ is a more efficient solution in the code of the specific implementation.\r\ - \n - Example:\r\nhttps://github.com/packit-service/ogr/blob/89435655150b8dd79ef93209c3463585d0715e0d/ogr/services/github/project.py#L219-L220\r\ - \n\r\nThe progress is tracked in the following tables. (Any update in\ - \ the comments is appreciated.)\r\n\r\n| Project | `who_can_close_issue()\ - \ -> Set[str]` | `who_can_merge_pr() -> Set[str]` | `can_close_issue(username:\ - \ str) -> bool` | `can_merge_pr(username: str) -> bool` |\r\n| --- |\ - \ --- | --- | --- | --- |\r\n| abstract | :+1: | :+1: | :exclamation:\ - \ deprecate the `Issue` argument | \r\n| base | nothing | nothing |\ - \ implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\n\ - | GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |\r\n\r\n| Issue\ - \ | `who_can_close() -> Set[str]` | `can_close(username: str) -> bool`\ - \ |\r\n| --- | --- | --- |\r\n| abstract | ? | ? |\r\n| base | nothing\ - \ | implement here |\r\n| Github | ? | ? |\r\n| GitLab | ? | ? |\r\n\ - | Pagure | ? | ? |\r\n\r\n| PullRequest | `who_can_close() -> Set[str]`\ - \ | `who_can_merge() -> Set[str]` | `can_close(username: str) -> bool`\ - \ | `can_merge(username: str) -> bool` |\r\n| --- | --- | --- | ---\ - \ | --- |\r\n| abstract | ? | ? | ? | ? | \r\n| base | nothing | nothing\ - \ | implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\ - \n| GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |" - closed_at: null - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/100/comments - created_at: '2019-07-05T07:09:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/100/events - html_url: https://github.com/packit/ogr/issues/100 - id: 464495604 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/100/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NjQ0OTU2MDQ= - number: 100 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: open - title: user's permissions on Issues/PRs - updated_at: '2020-06-01T08:47:32Z' - url: https://api.github.com/repos/packit/ogr/issues/100 - user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos - site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions - type: User - url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] author_association: NONE - body: "There is no documentation on how to use the library, currently.\ - \ A documentation will help people on how to use ogr, and showcase it's\ - \ features and functions.\r\n\r\nThis can be done by adding the wiki\ - \ pages (on Github), since the documentation might be quite long and\ - \ the Wiki will help in segregating several topics (for instance, how\ - \ to use ogr for GitHub, GitLab and Pagure).\r\n\r\n" - closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/53/comments - created_at: '2019-04-04T13:30:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/53/events - html_url: https://github.com/packit/ogr/issues/53 - id: 429280678 - labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: bf6b0b - default: false - description: '' - id: 2101898687 - name: pinned - node_id: MDU6TGFiZWwyMTAxODk4Njg3 - url: https://api.github.com/repos/packit/ogr/labels/pinned - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/53/labels{/name} + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `epel8` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f33` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | + + | `main` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.20.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-02-05T09:28:13Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/529/comments + created_at: '2021-02-05T09:07:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/529/events + html_url: https://github.com/packit/ogr/issues/529 + id: 801987621 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/529/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjkyODA2Nzg= - number: 53 + node_id: MDU6SXNzdWU4MDE5ODc2MjE= + number: 529 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Add a documentation for API - updated_at: '2020-06-01T08:45:12Z' - url: https://api.github.com/repos/packit/ogr/issues/53 + state: closed + title: '[packit] Propose downstream failed for release 0.20.0' + updated_at: '2021-02-05T09:28:13Z' + url: https://api.github.com/repos/packit/ogr/issues/529 user: - avatar_url: https://avatars3.githubusercontent.com/u/31067398?v=4 - events_url: https://api.github.com/users/Aniket-Pradhan/events{/privacy} - followers_url: https://api.github.com/users/Aniket-Pradhan/followers - following_url: https://api.github.com/users/Aniket-Pradhan/following{/other_user} - gists_url: https://api.github.com/users/Aniket-Pradhan/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/Aniket-Pradhan - id: 31067398 - login: Aniket-Pradhan - node_id: MDQ6VXNlcjMxMDY3Mzk4 - organizations_url: https://api.github.com/users/Aniket-Pradhan/orgs - received_events_url: https://api.github.com/users/Aniket-Pradhan/received_events - repos_url: https://api.github.com/users/Aniket-Pradhan/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/Aniket-Pradhan/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/Aniket-Pradhan/subscriptions - type: User - url: https://api.github.com/users/Aniket-Pradhan + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: Figure out how to handle releases in Pagure. closed_at: null comments: 7 @@ -47262,13 +60194,6 @@ requests.sessions: html_url: https://github.com/packit/ogr/issues/112 id: 466754779 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - color: 1d76db default: false description: Related to Pagure implementation. @@ -47292,17 +60217,51 @@ requests.sessions: url: https://api.github.com/repos/packit/ogr/labels/triaged labels_url: https://api.github.com/repos/packit/ogr/issues/112/labels{/name} locked: false - milestone: null + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 node_id: MDU6SXNzdWU0NjY3NTQ3Nzk= number: 112 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open title: Support releases in Pagure - updated_at: '2020-06-01T08:05:12Z' + updated_at: '2021-02-05T08:49:37Z' url: https://api.github.com/repos/packit/ogr/issues/112 user: - avatar_url: https://avatars3.githubusercontent.com/u/49026743?v=4 + 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} @@ -47324,112 +60283,167 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Fix unit tests for Github\ - \ PRs\n* Implement creating PRs fork->other-fork on Github\n* Use custom_instances\ - \ to provide custom_mapping\n* Add PullRequest.patch property\n* GitHub:\ - \ query only one user when telling if a user can merge PRs\n* Adding\ - \ tests for add_user\n* Adding collaborators to projects - (Github,\ - \ Gitlab)\n\n\nYou can change it by editing `CHANGELOG.md` in the root\ - \ of this repository and pushing to `0.12.1-release` branch before merging\ - \ this PR.\nI didn't find any files where `__version__` is set." - closed_at: '2020-05-27T13:46:01Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/422/comments - created_at: '2020-05-26T15:00:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/422/events - html_url: https://github.com/packit/ogr/pull/422 - id: 624951772 + body: "Currently, we can instantiate objects (i.e. GitProject), that does\ + \ not exist.\r\n\r\nWe probably need to agree on the common understanding\ + \ of this approach:\r\n\r\n1. allow creating non-existing objects\r\n\ + \ - add `exists() -> Bool` method\r\n - add `create() -> ????`\ + \ methods\r\n - we do not need to connect to servers on each instantiation\r\ + \n - due to laziness it can fail at not-predictable places\r\n2.\ + \ raise an exception in methods like `get_project`\r\n - easier implementation\r\ + \n - we need to connect to the remote service even when it is not\ + \ needed" + closed_at: '2020-10-30T23:47:21Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/214/comments + created_at: '2019-09-19T19:30:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/214/events + html_url: https://github.com/packit/ogr/issues/214 + id: 495986265 labels: - - color: ededed + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: ff9990 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + - color: '000000' default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/422/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/214/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDIzMjYxMzM2 - number: 422 + node_id: MDU6SXNzdWU0OTU5ODYyNjU= + number: 214 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/422.diff - html_url: https://github.com/packit/ogr/pull/422 - patch_url: https://github.com/packit/ogr/pull/422.patch - url: https://api.github.com/repos/packit/ogr/pulls/422 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.12.1 release - updated_at: '2020-05-27T13:47:20Z' - url: https://api.github.com/repos/packit/ogr/issues/422 + title: '[question] Allow objects representing nonexisting objects' + updated_at: '2021-02-05T08:34:05Z' + url: https://api.github.com/repos/packit/ogr/issues/214 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-05-26T15:00:38Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/421/comments - created_at: '2020-05-26T14:59:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/421/events - html_url: https://github.com/packit/ogr/issues/421 - id: 624950979 + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR + body: "AFAIK at the moment it is not possible to get the info about whether\ + \ the repository is private or not in pagure. Now we depend on the info\ + \ that in src.fedoraproject.org and pagure.io, the private repositories\ + \ are not allowed. \r\n\r\nNote: Will this be an issue for https://git.centos.org/?" + closed_at: null + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/330/comments + created_at: '2020-02-18T12:39:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/330/events + html_url: https://github.com/packit/ogr/issues/330 + id: 566865331 labels: - - color: ededed + - color: 1d76db default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: bc4812 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/421/labels{/name} + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/330/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MjQ5NTA5Nzk= - number: 421 + node_id: MDU6SXNzdWU1NjY4NjUzMzE= + number: 330 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: New patch release - updated_at: '2020-05-26T15:00:38Z' - url: https://api.github.com/repos/packit/ogr/issues/421 + state: open + title: better is_private method for pagure projects + updated_at: '2021-02-05T08:31:21Z' + url: https://api.github.com/repos/packit/ogr/issues/330 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -47451,40 +60465,33 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "After merging #404 there's no support only for creating PR from\ - \ one fork to different fork.\r\n\r\nPyGithub (GitHub API respectively)\ - \ doesn't allow creating pull requests on a repository we're \"merging\"\ - \ from.\r\n\r\n- [ ] implement getting other fork repository when creating\ - \ PR against it (internal Repository should be enough)\r\n - [ ]\ - \ handle non-existing fork" - closed_at: '2020-05-26T09:47:07Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/406/comments - created_at: '2020-05-05T10:19:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/406/events - html_url: https://github.com/packit/ogr/issues/406 - id: 612492491 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - labels_url: https://api.github.com/repos/packit/ogr/issues/406/labels{/name} + body: 'Signed-off-by: Matej Focko ' + closed_at: '2021-02-05T08:15:27Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/528/comments + created_at: '2021-02-04T15:33:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/528/events + html_url: https://github.com/packit/ogr/pull/528 + id: 801393596 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/528/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MTI0OTI0OTE= - number: 406 + node_id: MDExOlB1bGxSZXF1ZXN0NTY3NzE2ODUx + number: 528 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/528.diff + html_url: https://github.com/packit/ogr/pull/528 + patch_url: https://github.com/packit/ogr/pull/528.patch + url: https://api.github.com/repos/packit/ogr/pulls/528 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Creating pull requests from fork to other fork - updated_at: '2020-05-26T09:47:07Z' - url: https://api.github.com/repos/packit/ogr/issues/406 + title: Release 0.20.0 + updated_at: '2021-02-05T08:15:31Z' + url: https://api.github.com/repos/packit/ogr/issues/528 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -47505,175 +60512,114 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Update `custom_mapping` with the info provided in the `custom_instances`. - - - Fixes: https://github.com/packit-service/ogr/issues/417' - closed_at: '2020-05-26T05:56:28Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/418/comments - created_at: '2020-05-25T09:11:57Z' - events_url: https://api.github.com/repos/packit/ogr/issues/418/events - html_url: https://github.com/packit/ogr/pull/418 - id: 624162285 + author_association: CONTRIBUTOR + body: 'Related: https://github.com/packit-service/ogr/pull/436' + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/437/comments + created_at: '2020-07-16T12:54:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/437/events + html_url: https://github.com/packit/ogr/issues/437 + id: 658172107 labels: - - color: 0e8a16 + - color: '000000' default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/418/labels{/name} + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/437/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDIyNjM4Mzc4 - number: 418 + node_id: MDU6SXNzdWU2NTgxNzIxMDc= + number: 437 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/418.diff - html_url: https://github.com/packit/ogr/pull/418 - patch_url: https://github.com/packit/ogr/pull/418.patch - url: https://api.github.com/repos/packit/ogr/pulls/418 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Fix factory.get_project - updated_at: '2020-05-26T05:57:27Z' - url: https://api.github.com/repos/packit/ogr/issues/418 + state: open + title: Support adding group permission for Gitlab and Github projects + updated_at: '2021-02-04T19:58:55Z' + url: https://api.github.com/repos/packit/ogr/issues/437 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: "I want to enhance the-new-hotness with the ability to file PRs\ - \ directly to dist-git projects instead of attaching patches to bugzilla.\ - \ I started to work on it in this PR [here](https://github.com/fedora-infra/the-new-hotness/pull/235).\ - \ All the packit related code could be find in https://github.com/fedora-infra/the-new-hotness/pull/235/files#diff-d74ad19fb2d5a66e5bdf8eec8555ca1d\r\ - \n\r\nI'm using only the dist-git module from the packit itself and\ - \ my use case should work like this:\r\n1. Create fork of the target\ - \ repository\r\n2. Update branch\r\n3. Create PR against the specific\ - \ branch in target repository\r\n\r\nWith my current code it needs kerberos\ - \ ticket and user must be in packager group. I tried to do the same\ - \ using dist-git web interface and only thing I need to execute the\ - \ above scenario is the FAS account. \r\nThis should be doable with\ - \ only the pagure token, which allows both forking and creating PR." - closed_at: '2020-05-26T05:56:28Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/417/comments - created_at: '2020-01-28T14:53:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/417/events - html_url: https://github.com/packit/ogr/issues/417 - id: 624162109 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/417/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MjQxNjIxMDk= - number: 417 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[use-case] the-new-hotness dist-git pull request creation' - updated_at: '2020-05-26T05:56:28Z' - url: https://api.github.com/repos/packit/ogr/issues/417 - user: - avatar_url: https://avatars3.githubusercontent.com/u/6943409?v=4 - events_url: https://api.github.com/users/Zlopez/events{/privacy} - followers_url: https://api.github.com/users/Zlopez/followers - following_url: https://api.github.com/users/Zlopez/following{/other_user} - gists_url: https://api.github.com/users/Zlopez/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/Zlopez - id: 6943409 - login: Zlopez - node_id: MDQ6VXNlcjY5NDM0MDk= - organizations_url: https://api.github.com/users/Zlopez/orgs - received_events_url: https://api.github.com/users/Zlopez/received_events - repos_url: https://api.github.com/users/Zlopez/repos - site_admin: false - starred_url: https://api.github.com/users/Zlopez/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/Zlopez/subscriptions - type: User - url: https://api.github.com/users/Zlopez - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.githubusercontent.com/u/20343475?v=4 - events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} - followers_url: https://api.github.com/users/RafayGhafoor/followers - following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} - gists_url: https://api.github.com/users/RafayGhafoor/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/RafayGhafoor - id: 20343475 - login: RafayGhafoor - node_id: MDQ6VXNlcjIwMzQzNDc1 - organizations_url: https://api.github.com/users/RafayGhafoor/orgs - received_events_url: https://api.github.com/users/RafayGhafoor/received_events - repos_url: https://api.github.com/users/RafayGhafoor/repos - site_admin: false - starred_url: https://api.github.com/users/RafayGhafoor/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/RafayGhafoor/subscriptions - type: User - url: https://api.github.com/users/RafayGhafoor - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/20343475?v=4 - events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} - followers_url: https://api.github.com/users/RafayGhafoor/followers - following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} - gists_url: https://api.github.com/users/RafayGhafoor/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/RafayGhafoor - id: 20343475 - login: RafayGhafoor - node_id: MDQ6VXNlcjIwMzQzNDc1 - organizations_url: https://api.github.com/users/RafayGhafoor/orgs - received_events_url: https://api.github.com/users/RafayGhafoor/received_events - repos_url: https://api.github.com/users/RafayGhafoor/repos - site_admin: false - starred_url: https://api.github.com/users/RafayGhafoor/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/RafayGhafoor/subscriptions - type: User - url: https://api.github.com/users/RafayGhafoor - author_association: MEMBER - body: "We have some URLs in the tests -- it would be nice to validate\ - \ them.\r\n\r\n*Originally reported by @jscotka :*\r\n> Maybe one note,\ - \ would be nice to test in tests that URLs are valid for github/gitlba/pagure,\ - \ eg. via urllib download the diff and check if there are few expected\ - \ lines." - closed_at: '2020-05-25T14:18:31Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/342/comments - created_at: '2020-02-26T09:49:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/342/events - html_url: https://github.com/packit/ogr/issues/342 - id: 571202848 + author_association: CONTRIBUTOR + body: "and ideally link it with pull request, branch, author and git project\r\ + \n\r\nThe expectation here is that when ogr returns a commit has, it\ + \ would return a GitCommit instance instead.\r\n\r\nThe class should\ + \ contain at minimum:\r\n* sha\r\n* be linked to a repository\r\n* author\r\ + \n* datetime it was created\r\n* subject\r\n* body\r\n* branch it's\ + \ on\r\n\r\n@lachmanfrantisek added links to the documentation:\r\n\ + - Github:\r\n - https://pygithub.readthedocs.io/en/latest/examples/Commit.html\r\ + \n - https://pygithub.readthedocs.io/en/latest/github_objects/Commit.html\r\ + \n - https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.get_commits\r\ + \n - https://pygithub.readthedocs.io/en/latest/github_objects/PullRequest.html#github.PullRequest.PullRequest.merge_commit_sha\ + \ (?)\r\n- Gitlab:\r\n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html\r\ + \n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/mrs.html\ + \ -> `List commits of a MR:`\r\n- Pagure:\r\n - https://src.fedoraproject.org/api/0/\ + \ -> `Pull-request information`" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/360/comments + created_at: '2020-03-23T12:38:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/360/events + html_url: https://github.com/packit/ogr/issues/360 + id: 586178020 labels: - - color: fbca04 + - color: be8fd8 default: false - description: Reserved for the participants/applicants of the Google - Summer of Code. - id: 1867054141 - name: GSOC - node_id: MDU6TGFiZWwxODY3MDU0MTQx - url: https://api.github.com/repos/packit/ogr/labels/GSOC + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -47681,20 +60627,6 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: '000000' - default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - color: 42e529 default: false description: This issue was already processed and well defined. @@ -47702,93 +60634,36 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/342/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1NzEyMDI4NDg= - number: 342 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Validate the urls - updated_at: '2020-05-25T14:18:31Z' - url: https://api.github.com/repos/packit/ogr/issues/342 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Currently implemented only for PagurePullRequest.\r\n\r\nIt returns\ - \ bytes in case there's some binary blob in the patch.\r\n\r\nI'd like\ - \ to use this in https://github.com/packit-service/packit-service/pull/627" - closed_at: '2020-05-22T17:27:23Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/415/comments - created_at: '2020-05-22T11:43:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/415/events - html_url: https://github.com/packit/ogr/pull/415 - id: 623151328 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/415/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/360/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDIxODc0NDAw - number: 415 + node_id: MDU6SXNzdWU1ODYxNzgwMjA= + number: 360 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/415.diff - html_url: https://github.com/packit/ogr/pull/415 - patch_url: https://github.com/packit/ogr/pull/415.patch - url: https://api.github.com/repos/packit/ogr/pulls/415 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add PullRequest.patch property - updated_at: '2020-05-25T09:38:26Z' - url: https://api.github.com/repos/packit/ogr/issues/415 + state: open + title: introduce a new class for GitCommit + updated_at: '2021-02-04T19:58:47Z' + url: https://api.github.com/repos/packit/ogr/issues/360 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] @@ -47800,45 +60675,36 @@ requests.sessions: | --------------- | ----- | - | `f30` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is dirty.This - is not supported.` | - - | `f31` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.12.0.tar.gz. - Reason: ''Not Found''. ` | - - | `f32` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is dirty.This - is not supported.` | - - | `master` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is - dirty.This is not supported.` | + | `f34` | `Ref ''remotes/origin/f34'' did not resolve to an object` + | - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. + You can retrigger the update by adding a comment (`/packit propose-update`) + into this issue. ' - closed_at: '2020-05-21T11:58:35Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/409/comments - created_at: '2020-05-06T15:57:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/409/events - html_url: https://github.com/packit/ogr/issues/409 - id: 613430701 + closed_at: '2021-02-04T19:34:57Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/512/comments + created_at: '2020-12-10T11:18:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/512/events + html_url: https://github.com/packit/ogr/issues/512 + id: 761150482 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/409/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/512/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MTM0MzA3MDE= - number: 409 + node_id: MDU6SXNzdWU3NjExNTA0ODI= + number: 512 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.12.0' - updated_at: '2020-05-21T11:58:35Z' - url: https://api.github.com/repos/packit/ogr/issues/409 + title: '[packit] Propose update failed for release 0.18.1' + updated_at: '2021-02-04T19:34:57Z' + url: https://api.github.com/repos/packit/ogr/issues/512 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} @@ -47857,22 +60723,59 @@ requests.sessions: type: Bot url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: MEMBER - body: "Figure out how we can return data:\r\n- only when needed\r\n- only\ - \ a limited number of results at first\r\n\r\nAC:\r\n- Provide the same\ - \ API for users of all implementations (e.g. change lists to generators).\r\ - \n- Be transparent to user == download the additional data when the\ - \ user really needs them.\r\n - e.g. Use lazy properties where possible.\r\ - \n- Enable efficient filtering on the results / during the calls.\r\n" + body: "- [x] Forward some object to the issue/pr/... instances to allow\ + \ connection to the service. (Classes are not only data-holders.)\r\n\ + - [x] All ogr classes to have properties with setters allowing to update\ + \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ + - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ + \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ + \ \r\n" closed_at: null - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/325/comments - created_at: '2020-02-13T18:52:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/325/events - html_url: https://github.com/packit/ogr/issues/325 - id: 564883774 + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments + created_at: '2019-06-25T13:15:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/86/events + html_url: https://github.com/packit/ogr/issues/86 + id: 460418171 labels: - color: 134ac1 default: false @@ -47881,6 +60784,27 @@ requests.sessions: name: EPIC node_id: MDU6TGFiZWwxNDMyNzc5MjA3 url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: b60205 default: false description: Issue reserved to students from Red Hat Open Source Contest @@ -47888,13 +60812,13 @@ requests.sessions: name: RHOSC node_id: MDU6TGFiZWwxNTYzMzA5Nzcz url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: ff9990 + - color: a2eeef default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 42e529 default: false description: This issue was already processed and well defined. @@ -47902,26 +60826,53 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/325/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} locked: false - milestone: null - node_id: MDU6SXNzdWU1NjQ4ODM3NzQ= - number: 325 + milestone: + closed_at: null + closed_issues: 1 + created_at: '2021-02-04T19:32:02Z' + creator: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + description: '' + due_on: null + html_url: https://github.com/packit/ogr/milestone/1 + id: 6394942 + labels_url: https://api.github.com/repos/packit/ogr/milestones/1/labels + node_id: MDk6TWlsZXN0b25lNjM5NDk0Mg== + number: 1 + open_issues: 2 + state: open + title: 1.0.0 + updated_at: '2021-02-09T14:13:50Z' + url: https://api.github.com/repos/packit/ogr/milestones/1 + node_id: MDU6SXNzdWU0NjA0MTgxNzE= + number: 86 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: Laziness - updated_at: '2020-05-18T08:42:29Z' - url: https://api.github.com/repos/packit/ogr/issues/325 + title: object-specific methods bound to ogr classes + updated_at: '2021-02-04T19:34:29Z' + url: https://api.github.com/repos/packit/ogr/issues/86 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -47940,58 +60891,252 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 - events_url: https://api.github.com/users/TomasJani/events{/privacy} - followers_url: https://api.github.com/users/TomasJani/followers - following_url: https://api.github.com/users/TomasJani/following{/other_user} - gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2021-02-04T19:33:53Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/492/comments + created_at: '2020-10-27T12:41:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/492/events + html_url: https://github.com/packit/ogr/issues/492 + id: 730415953 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/492/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MzA0MTU5NTM= + number: 492 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: New minor release + updated_at: '2021-02-04T19:33:53Z' + url: https://api.github.com/repos/packit/ogr/issues/492 + 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/TomasJani - id: 21237576 - login: TomasJani - node_id: MDQ6VXNlcjIxMjM3NTc2 - organizations_url: https://api.github.com/users/TomasJani/orgs - received_events_url: https://api.github.com/users/TomasJani/received_events - repos_url: https://api.github.com/users/TomasJani/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + 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/TomasJani + url: https://api.github.com/users/jpopelka + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 - events_url: https://api.github.com/users/TomasJani/events{/privacy} - followers_url: https://api.github.com/users/TomasJani/followers - following_url: https://api.github.com/users/TomasJani/following{/other_user} - gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + - avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu + author_association: MEMBER + body: "We already have `exists` method implemented for Pagure and the\ + \ #479 adds the support for GitLab. GitHub is the last one missing.\r\ + \n\r\n- [ ] Look at the other implementations and add `exists` method\ + \ to the `GithubProject` class." + closed_at: '2021-02-04T19:32:54Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/480/comments + created_at: '2020-10-14T08:39:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/480/events + html_url: https://github.com/packit/ogr/issues/480 + id: 721260961 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/480/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MjEyNjA5NjE= + number: 480 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement project.exists for GitHub + updated_at: '2021-02-04T19:32:54Z' + url: https://api.github.com/repos/packit/ogr/issues/480 + 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/TomasJani - id: 21237576 - login: TomasJani - node_id: MDQ6VXNlcjIxMjM3NTc2 - organizations_url: https://api.github.com/users/TomasJani/orgs - received_events_url: https://api.github.com/users/TomasJani/received_events - repos_url: https://api.github.com/users/TomasJani/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + 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/TomasJani + url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "- [x] add the `created` and `edited` properties to the commit flag\ - \ classes\r\n - [x] abstract class\r\n - [x] github:\r\n - https://pygithub.readthedocs.io/en/latest/github_objects/Commit.html#github.Commit.Commit.get_statuses\r\ - \n - [ ] gitlab:\r\n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status\r\ - \n - https://docs.gitlab.com/ce/api/commits.html\r\n - pagure:\r\ - \n - https://src.fedoraproject.org/api/0/ -> `Flags for a commit`\r\ - \n- [x] tests for all implementations" - closed_at: '2020-05-16T16:37:40Z' + body: "- [ ] Check tests and create them if necessary\r\n- [ ] Implement\ + \ creating diff comments for GitLab (already implemented for GitHub\ + \ and Pagure)\r\n- [ ] Create and implement interface for properties\ + \ of diff comments (`is_diff_comment`, `commit`, `path`, `position`;\ + \ consider new/old or only one)\r\n- [ ] Implement functions for acquiring\ + \ diff comments on pull requests, e.g. `get_diff_comments`" + closed_at: null comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/344/comments - created_at: '2020-03-02T11:25:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/344/events - html_url: https://github.com/packit/ogr/issues/344 - id: 573909124 + comments_url: https://api.github.com/repos/packit/ogr/issues/424/comments + created_at: '2020-05-29T09:01:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/424/events + html_url: https://github.com/packit/ogr/issues/424 + id: 627115330 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/424/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjcxMTUzMzA= + number: 424 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Diff/review comments on pull requests + updated_at: '2021-02-04T12:01:57Z' + url: https://api.github.com/repos/packit/ogr/issues/424 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "When working with PRs, there are also URLs linking directly to\ + \ commit list tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the\ + \ `url_commits` and implement it.\r\n - Use API if possible, otherwise\ + \ \"guess\" the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\n\ + Examples:\r\n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/commits\r\ + \n- https://github.com/packit-service/ogr/pull/1/commits\r\n- https://pagure.io/ogr-tests/pull-request/7#commit_list\r\ + \n" + closed_at: '2021-02-03T19:24:22Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/212/comments + created_at: '2019-09-19T18:48:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/212/events + html_url: https://github.com/packit/ogr/issues/212 + id: 495968279 labels: - color: '000000' default: false @@ -48007,6 +61152,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -48014,13 +61166,6 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: a2eeef default: false description: New feature or a request for enhancement. @@ -48035,26 +61180,33 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + - color: fef2c0 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/344/labels{/name} + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/212/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NzM5MDkxMjQ= - number: 344 + node_id: MDU6SXNzdWU0OTU5NjgyNzk= + number: 212 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add datetime to commit flags - updated_at: '2020-05-18T08:05:17Z' - url: https://api.github.com/repos/packit/ogr/issues/344 + title: Add commits url to PullRequest class + updated_at: '2021-02-03T19:24:22Z' + url: https://api.github.com/repos/packit/ogr/issues/212 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -48072,25 +61224,129 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Implemented project.exists for GitHub. #480\r\n\r\n@lachmanfrantisek\ + \ Please review." + closed_at: '2021-02-03T12:07:09Z' + comments: 13 + comments_url: https://api.github.com/repos/packit/ogr/issues/521/comments + created_at: '2021-01-21T07:37:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/521/events + html_url: https://github.com/packit/ogr/pull/521 + id: 790781809 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/521/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTU4OTM5ODMx + number: 521 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/521.diff + html_url: https://github.com/packit/ogr/pull/521 + patch_url: https://github.com/packit/ogr/pull/521.patch + url: https://api.github.com/repos/packit/ogr/pulls/521 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implemented project.exists for GitHub (#480) + updated_at: '2021-02-03T12:07:09Z' + url: https://api.github.com/repos/packit/ogr/issues/521 + user: + avatar_url: https://avatars.githubusercontent.com/u/35947115?v=4 + events_url: https://api.github.com/users/path2himanshu/events{/privacy} + followers_url: https://api.github.com/users/path2himanshu/followers + following_url: https://api.github.com/users/path2himanshu/following{/other_user} + gists_url: https://api.github.com/users/path2himanshu/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/path2himanshu + id: 35947115 + login: path2himanshu + node_id: MDQ6VXNlcjM1OTQ3MTE1 + organizations_url: https://api.github.com/users/path2himanshu/orgs + received_events_url: https://api.github.com/users/path2himanshu/received_events + repos_url: https://api.github.com/users/path2himanshu/repos + site_admin: false + starred_url: https://api.github.com/users/path2himanshu/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/path2himanshu/subscriptions + type: User + url: https://api.github.com/users/path2himanshu + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2021-02-01T17:50:58Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/526/comments + created_at: '2021-02-01T16:51:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/526/events + html_url: https://github.com/packit/ogr/pull/526 + id: 798530734 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/526/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTY1MzMxNzkz + number: 526 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/526.diff + html_url: https://github.com/packit/ogr/pull/526 + patch_url: https://github.com/packit/ogr/pull/526.patch + url: https://api.github.com/repos/packit/ogr/pulls/526 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-02-01T17:51:01Z' + url: https://api.github.com/repos/packit/ogr/issues/526 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "When telling if a user can merge PRs in a GitHub repo, ask GitHub\ - \ for\r\nthe user's permission on the repo instead of checking if the\ - \ user is in\r\nthe list of collaborators.\r\n\r\nThis should lead to\ - \ fewer API calls in cases when the full list of\r\ncollaborators is\ - \ not needed, but it also returns better results: the\r\nlist of collaborators\ - \ does not seem to be always up to date when queries\r\nare done using\ - \ GitHub App tokens.\r\n\r\nRelates to packit-service/packit-service#612.\r\ - \n\r\nSigned-off-by: Hunor Csomort\xE1ni " - closed_at: '2020-05-12T10:44:25Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/410/comments - created_at: '2020-05-11T13:29:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/410/events - html_url: https://github.com/packit/ogr/pull/410 - id: 615885823 + body: "Signed-off-by: Hunor Csomort\xE1ni " + closed_at: '2021-01-29T07:29:53Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/524/comments + created_at: '2021-01-28T17:13:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/524/events + html_url: https://github.com/packit/ogr/pull/524 + id: 796195674 labels: - color: 0e8a16 default: false @@ -48099,24 +61355,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/410/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/524/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDE2MTA1NjQy - number: 410 + node_id: MDExOlB1bGxSZXF1ZXN0NTYzNDE0MjM0 + number: 524 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/410.diff - html_url: https://github.com/packit/ogr/pull/410 - patch_url: https://github.com/packit/ogr/pull/410.patch - url: https://api.github.com/repos/packit/ogr/pulls/410 + diff_url: https://github.com/packit/ogr/pull/524.diff + html_url: https://github.com/packit/ogr/pull/524 + patch_url: https://github.com/packit/ogr/pull/524.patch + url: https://api.github.com/repos/packit/ogr/pulls/524 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'GitHub: query only one user when telling if a user can merge PRs' - updated_at: '2020-05-12T10:44:25Z' - url: https://api.github.com/repos/packit/ogr/issues/410 + title: Remove 'master' from task name + updated_at: '2021-01-29T07:30:00Z' + url: https://api.github.com/repos/packit/ogr/issues/524 user: - avatar_url: https://avatars0.githubusercontent.com/u/11816497?v=4 + 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} @@ -48138,15 +61394,14 @@ requests.sessions: assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Fixes #216 \r\n\r\nAdded to Github and Gitlab, Pagure is still\ - \ left to do." - closed_at: '2020-05-11T19:45:01Z' - comments: 26 - comments_url: https://api.github.com/repos/packit/ogr/issues/376/comments - created_at: '2020-04-09T16:55:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/376/events - html_url: https://github.com/packit/ogr/pull/376 - id: 597420110 + body: '' + closed_at: '2021-01-26T09:20:19Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/523/comments + created_at: '2021-01-25T16:42:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/523/events + html_url: https://github.com/packit/ogr/pull/523 + id: 793540044 labels: - color: 0e8a16 default: false @@ -48155,102 +61410,117 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/376/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/523/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAxNTM3MTMx - number: 376 + node_id: MDExOlB1bGxSZXF1ZXN0NTYxMjEwOTE4 + number: 523 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/376.diff - html_url: https://github.com/packit/ogr/pull/376 - patch_url: https://github.com/packit/ogr/pull/376.patch - url: https://api.github.com/repos/packit/ogr/pulls/376 + diff_url: https://github.com/packit/ogr/pull/523.diff + html_url: https://github.com/packit/ogr/pull/523 + patch_url: https://github.com/packit/ogr/pull/523.patch + url: https://api.github.com/repos/packit/ogr/pulls/523 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2021-01-26T09:20:21Z' + url: https://api.github.com/repos/packit/ogr/issues/523 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "https://bugzilla.redhat.com/show_bug.cgi?id=1905223\r\n\r\nRequires\ + \ all the dependencies to be in epel-8 as well.\r\n\r\nSigned-off-by:\ + \ Frantisek Lachman " + closed_at: '2021-01-22T14:07:43Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/503/comments + created_at: '2020-12-08T08:10:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/503/events + html_url: https://github.com/packit/ogr/pull/503 + id: 759203132 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/503/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTM0MjQzOTM0 + number: 503 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/503.diff + html_url: https://github.com/packit/ogr/pull/503 + patch_url: https://github.com/packit/ogr/pull/503.patch + url: https://api.github.com/repos/packit/ogr/pulls/503 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Adding collaborators to projects - (Github, Gitlab, Pagure) - updated_at: '2020-05-11T19:45:01Z' - url: https://api.github.com/repos/packit/ogr/issues/376 + title: Enable build and test for epel-8 + updated_at: '2021-01-22T14:24:31Z' + url: https://api.github.com/repos/packit/ogr/issues/503 user: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + 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/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + 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/shreyaspapi + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos - site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions - type: User - url: https://api.github.com/users/shreyaspapi - assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/22324802?v=4 - events_url: https://api.github.com/users/shreyaspapi/events{/privacy} - followers_url: https://api.github.com/users/shreyaspapi/followers - following_url: https://api.github.com/users/shreyaspapi/following{/other_user} - gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/shreyaspapi - id: 22324802 - login: shreyaspapi - node_id: MDQ6VXNlcjIyMzI0ODAy - organizations_url: https://api.github.com/users/shreyaspapi/orgs - received_events_url: https://api.github.com/users/shreyaspapi/received_events - repos_url: https://api.github.com/users/shreyaspapi/repos - site_admin: false - starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions - type: User - url: https://api.github.com/users/shreyaspapi + assignee: null + assignees: [] author_association: MEMBER - body: "- [ ] Add the `add_to_collaborators` method to `abstract.GitProject`.\ - \ (And raise `NotImplementedError`.)\r\n- [ ] Implement the method for\ - \ all forges (GitHub, GitLab, Pagure).\r\n- [ ] Add tests for this method.\r\ - \n\r\nDocumentation:\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-members\r\ - \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ - \n- https://pagure.io/api/0/ ( > Modify ACLs on a project ?)\r\n" - closed_at: '2020-05-11T19:45:01Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/216/comments - created_at: '2019-09-20T05:52:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/216/events - html_url: https://github.com/packit/ogr/issues/216 - id: 496159491 + body: "Follow-up of #344 (PR: #374)\r\n\r\nAPI docs (https://docs.gitlab.com/ee/api/commits.html#post-the-build-status-to-a-commit):\r\ + \n> Adds or updates a build status of a commit.\r\n\r\nGitlab API suggests\ + \ that setting commit flag can update existing one, which could mean\ + \ this issue is blocked by API.\r\n\r\nUpdating could also mean:\r\n\ + 1. adding new commit flag that replaces old one\r\n2. adding new commit\ + \ flag, but keeping the old one\r\n\r\nExample output from docs doesn't\ + \ contain commit flag with same name." + closed_at: '2021-01-22T13:24:39Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/413/comments + created_at: '2020-05-20T21:27:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/413/events + html_url: https://github.com/packit/ogr/issues/413 + id: 622095374 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -48258,27 +61528,6 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: fef2c0 default: false description: Low priority. @@ -48286,58 +61535,127 @@ requests.sessions: name: low-prio node_id: MDU6TGFiZWwxNDMyNzc5MzQw url: https://api.github.com/repos/packit/ogr/labels/low-prio - labels_url: https://api.github.com/repos/packit/ogr/issues/216/labels{/name} + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/413/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjIwOTUzNzQ= + number: 413 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: edited on Gitlab's commit flag + updated_at: '2021-01-22T13:24:39Z' + url: https://api.github.com/repos/packit/ogr/issues/413 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `f34` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can retrigger the update by adding a comment (`/packit propose-downstream`) + into this issue. + + ' + closed_at: '2021-01-07T12:55:21Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/520/comments + created_at: '2021-01-07T12:07:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/520/events + html_url: https://github.com/packit/ogr/issues/520 + id: 781266150 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/520/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTYxNTk0OTE= - number: 216 + node_id: MDU6SXNzdWU3ODEyNjYxNTA= + number: 520 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Adding collaborators to projects - updated_at: '2020-05-11T19:45:01Z' - url: https://api.github.com/repos/packit/ogr/issues/216 + title: '[packit] Propose downstream failed for release 0.19.0' + updated_at: '2021-01-07T12:55:21Z' + url: https://api.github.com/repos/packit/ogr/issues/520 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Declare repositories on\ - \ git.centos.org not private\n* Create PR works for Github and fixed\ - \ test\n* Refactor getting projects internally\n* Add tests for `source_project`\ - \ on PullRequest\n* Implement `source_project` on PullRequest\n* Add\ - \ source/target_project to PullRequest\n* Fix tests after requre update\n\ - * Implement `head_commit` for GitHub and GitLab\n* Make tests for `head_commit`\ - \ on PullRequest\n* spec: don't do python_provide on F33+\n\n\nYou can\ - \ change it by editing `CHANGELOG.md` in the root of this repository\ - \ and pushing to `0.12.0-release` branch before merging this PR.\nI\ + \ is the changelog I created:\n### Changes\n* [pre-commit.ci] pre-commit\ + \ autoupdate\n* [pre-commit.ci] pre-commit autoupdate\n* Regenerate\ + \ requre data\n* Add and implement GitProject.default_branch property\n\ + * [Makefile] fix remove-response-files-* targets\n* PagureService: Make\ + \ retries parametrizable\n* [pre-commit.ci] pre-commit autoupdate\n\ + * [.packit.yaml] Set copy_upstream_release_description to true\n\n\n\ + You can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.19.0-release` branch before merging this PR.\nI\ \ didn't find any files where `__version__` is set." - closed_at: '2020-05-06T15:53:24Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/408/comments - created_at: '2020-05-06T13:34:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/408/events - html_url: https://github.com/packit/ogr/pull/408 - id: 613324595 + closed_at: '2021-01-07T11:59:47Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/518/comments + created_at: '2021-01-07T09:25:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/518/events + html_url: https://github.com/packit/ogr/pull/518 + id: 781163841 labels: - color: ededed default: false @@ -48360,24 +61678,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/408/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/518/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDE0MTAwMTc4 - number: 408 + node_id: MDExOlB1bGxSZXF1ZXN0NTUwOTM0MTc5 + number: 518 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/408.diff - html_url: https://github.com/packit/ogr/pull/408 - patch_url: https://github.com/packit/ogr/pull/408.patch - url: https://api.github.com/repos/packit/ogr/pulls/408 + diff_url: https://github.com/packit/ogr/pull/518.diff + html_url: https://github.com/packit/ogr/pull/518 + patch_url: https://github.com/packit/ogr/pull/518.patch + url: https://api.github.com/repos/packit/ogr/pulls/518 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.12.0 release - updated_at: '2020-05-06T15:57:57Z' - url: https://api.github.com/repos/packit/ogr/issues/408 + title: 0.19.0 release + updated_at: '2021-01-07T12:04:13Z' + url: https://api.github.com/repos/packit/ogr/issues/518 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -48395,77 +61713,18 @@ requests.sessions: subscriptions_url: https://api.github.com/users/usercont-release-bot/subscriptions type: User url: https://api.github.com/users/usercont-release-bot - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: Let's create a new release! - closed_at: '2020-05-06T13:34:20Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/407/comments - created_at: '2020-05-06T13:32:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/407/events - html_url: https://github.com/packit/ogr/issues/407 - id: 613323657 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/407/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MTMzMjM2NTc= - number: 407 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: New minor release - updated_at: '2020-05-06T13:34:20Z' - url: https://api.github.com/repos/packit/ogr/issues/407 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Related to #307 \r\nIf the fork_name arg is passed, PR is created\ - \ on the forked repo.\r\nIf the fork_name arg is not passed PR is made\ - \ to parent repo. \r\n\r\nTested for (fork-fork, fork-upstream, upstream-upstream)" - closed_at: '2020-05-05T07:34:36Z' - comments: 16 - comments_url: https://api.github.com/repos/packit/ogr/issues/404/comments - created_at: '2020-05-01T20:16:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/404/events - html_url: https://github.com/packit/ogr/pull/404 - id: 610947143 + body: '' + closed_at: '2020-12-29T11:39:20Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/517/comments + created_at: '2020-12-28T16:36:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/517/events + html_url: https://github.com/packit/ogr/pull/517 + id: 775485168 labels: - color: 0e8a16 default: false @@ -48474,192 +61733,53 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/404/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/517/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDEyMjg0MDE0 - number: 404 + node_id: MDExOlB1bGxSZXF1ZXN0NTQ2MTU3ODg5 + number: 517 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/404.diff - html_url: https://github.com/packit/ogr/pull/404 - patch_url: https://github.com/packit/ogr/pull/404.patch - url: https://api.github.com/repos/packit/ogr/pulls/404 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Create PR's to forked Repo fixed for Github - updated_at: '2020-05-05T12:36:03Z' - url: https://api.github.com/repos/packit/ogr/issues/404 - user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 - events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} - followers_url: https://api.github.com/users/saisankargochhayat/followers - following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} - gists_url: https://api.github.com/users/saisankargochhayat/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/saisankargochhayat - id: 9396452 - login: saisankargochhayat - node_id: MDQ6VXNlcjkzOTY0NTI= - organizations_url: https://api.github.com/users/saisankargochhayat/orgs - received_events_url: https://api.github.com/users/saisankargochhayat/received_events - repos_url: https://api.github.com/users/saisankargochhayat/repos - site_admin: false - starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions - type: User - url: https://api.github.com/users/saisankargochhayat - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=4: - - metadata: - latency: 0.5180885791778564 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "I am looking at this code:\r\n\r\nhttps://github.com/packit-service/ogr/blob/b7c5333c4df64ecdf854a5375c207a789ca51a01/ogr/services/github/pull_request.py#L111\r\ - \n\r\nwhat if I want to create a PR against my fork and not the upstream\ - \ project?" - closed_at: '2020-05-05T10:14:22Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/307/comments - created_at: '2020-01-14T11:20:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/307/events - html_url: https://github.com/packit/ogr/issues/307 - id: 549501262 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/307/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1NDk1MDEyNjI= - number: 307 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: how can I create a PR against my fork - updated_at: '2020-05-05T10:14:22Z' - url: https://api.github.com/repos/packit/ogr/issues/307 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 + diff_url: https://github.com/packit/ogr/pull/517.diff + html_url: https://github.com/packit/ogr/pull/517 + patch_url: https://github.com/packit/ogr/pull/517.patch + url: https://api.github.com/repos/packit/ogr/pulls/517 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2020-12-29T11:39:22Z' + url: https://api.github.com/repos/packit/ogr/issues/517 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "The best solution though would be to make this list configurable.\ - \ But I'm in a hurry now :slightly_smiling_face: \r\n\r\nSigned-off-by:\ - \ Hunor Csomort\xE1ni " - closed_at: '2020-05-05T09:54:09Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/405/comments - created_at: '2020-05-05T09:34:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/405/events - html_url: https://github.com/packit/ogr/pull/405 - id: 612468201 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-21T20:51:00Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/516/comments + created_at: '2020-12-21T16:46:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/516/events + html_url: https://github.com/packit/ogr/pull/516 + id: 772306910 labels: - color: 0e8a16 default: false @@ -48668,71 +61788,57 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/405/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/516/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDEzNDA2MjI3 - number: 405 + node_id: MDExOlB1bGxSZXF1ZXN0NTQzNTk0NTEz + number: 516 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/405.diff - html_url: https://github.com/packit/ogr/pull/405 - patch_url: https://github.com/packit/ogr/pull/405.patch - url: https://api.github.com/repos/packit/ogr/pulls/405 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Declare repositories on git.centos.org not private - updated_at: '2020-05-05T09:54:09Z' - url: https://api.github.com/repos/packit/ogr/issues/405 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos - 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 + diff_url: https://github.com/packit/ogr/pull/516.diff + html_url: https://github.com/packit/ogr/pull/516 + patch_url: https://github.com/packit/ogr/pull/516.patch + url: https://api.github.com/repos/packit/ogr/pulls/516 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2020-12-21T20:51:04Z' + url: https://api.github.com/repos/packit/ogr/issues/516 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Closes #400\r\n\r\n# TODO\r\n\r\n(copied from issue)\r\n\r\n- [x]\ - \ add `source_project` property (abstract and implementations) returning\ - \ the project with the source branch\r\n- [x] create tests:\r\n - [x]\ - \ basic PR from `fork` to `upstream`\r\n - [x] renamed `fork`\r\n \ - \ - [x] renamed `upstream`\r\n - [x] PR from `fork` to `fork`\r\n \ - \ - [x] PR from `upstream` to `upstream`\r\n- [x] ? `target_project`\ - \ property that will replace the current `project` one to make it clear\r\ - \n - [x] don't forget to support both and deprecate the old one\r\n\ - - [x] squash commits\r\n- [x] check getting projects by internal representation\ - \ (github: creating from github.Repository, gitlab: from project_id)\r\ - \n - [x] Github: project uses almost the same way of initializing\ - \ `GithubProject` in `L129, L172, L385, L564`\r\n\r\n# Discussion\r\n\ - \r\n- [x] deprecating `.project`\r\n - [x] provide `.project` as\ - \ a property?\r\n - [ ] if so, do we need setters for them outside\ - \ class?\r\n- [ ] consider having `GithubProject.from_github_repository`,\ - \ which would take just the github repo from PyGithub and return new\ - \ project\r\n- [ ] consider creating GitLab projects just from _project\ - \ id_ (python-gitlab doesn't offer any way to get to source project\ - \ than ID)" - closed_at: '2020-04-30T16:23:19Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/401/comments - created_at: '2020-04-27T20:33:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/401/events - html_url: https://github.com/packit/ogr/pull/401 - id: 607834495 + body: "All git forges support changing of a default branch of a repo/project.\r\ + \nAll newly created Github projects have had 'main' as a default branch\ + \ instead of 'master' since Oct 2020.\r\n\r\n- https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/changing-the-default-branch\r\ + \n- https://docs.gitlab.com/ee/user/project/repository/branches/#default-branch\r\ + \n- https://pagure.io/api/0/#projects-tab (List git branches)" + closed_at: '2020-12-18T12:01:05Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/515/comments + created_at: '2020-12-18T10:57:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/515/events + html_url: https://github.com/packit/ogr/pull/515 + id: 770791051 labels: - color: 0e8a16 default: false @@ -48741,169 +61847,110 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/401/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/515/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA5NzMxMzg3 - number: 401 + node_id: MDExOlB1bGxSZXF1ZXN0NTQyNDY4ODM4 + number: 515 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/401.diff - html_url: https://github.com/packit/ogr/pull/401 - patch_url: https://github.com/packit/ogr/pull/401.patch - url: https://api.github.com/repos/packit/ogr/pulls/401 + diff_url: https://github.com/packit/ogr/pull/515.diff + html_url: https://github.com/packit/ogr/pull/515 + patch_url: https://github.com/packit/ogr/pull/515.patch + url: https://api.github.com/repos/packit/ogr/pulls/515 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Enhance project references in pull requests - updated_at: '2020-04-30T16:34:07Z' - url: https://api.github.com/repos/packit/ogr/issues/401 + title: ' Add and implement GitProject.default_branch property' + updated_at: '2020-12-18T12:13:07Z' + url: https://api.github.com/repos/packit/ogr/issues/515 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/jpopelka - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 + assignee: null + assignees: [] author_association: MEMBER - body: "Now, we have only `project` property in the PR class, but it's\ - \ hard to get the source project. (It can be sometimes very tricky to\ - \ pick the right repo from the OGR's user perspective.)\r\n\r\n- [ ]\ - \ add `source_project` property (abstract and implementations) returning\ - \ the project with the source branch\r\n- [ ] create tests:\r\n - [\ - \ ] basic PR from `fork` to `upstream`\r\n - [ ] renamed `fork`\r\n\ - \ - [ ] renamed `upstream`\r\n - [ ] PR from `fork` to `fork`\r\n\ - \ - [ ] PR from `upstream` to `upstream`\r\n- [ ] ? `target_project`\ - \ property that will replace the current `project` one to make it clear\r\ - \n - [ ] don't forget to support both and deprecate the old one" - closed_at: '2020-04-30T16:23:19Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/400/comments - created_at: '2020-04-27T15:09:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/400/events - html_url: https://github.com/packit/ogr/issues/400 - id: 607627181 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef + body: "This way users of a PagureService object can control how failures\ + \ of API\r\ncalls are retried.\r\n\r\nSigned-off-by: Hunor Csomort\xE1\ + ni " + closed_at: '2020-12-15T09:03:00Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/514/comments + created_at: '2020-12-15T08:31:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/514/events + html_url: https://github.com/packit/ogr/pull/514 + id: 767320871 + labels: + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/400/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/514/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDc2MjcxODE= - number: 400 + node_id: MDExOlB1bGxSZXF1ZXN0NTQwMDcyOTIw + number: 514 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/514.diff + html_url: https://github.com/packit/ogr/pull/514 + patch_url: https://github.com/packit/ogr/pull/514.patch + url: https://api.github.com/repos/packit/ogr/pulls/514 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: source_project property for PR class - updated_at: '2020-04-30T16:23:19Z' - url: https://api.github.com/repos/packit/ogr/issues/400 + title: 'PagureService: Make retries parametrizable' + updated_at: '2020-12-15T10:09:39Z' + url: https://api.github.com/repos/packit/ogr/issues/514 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2020-04-30T15:29:45Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/403/comments - created_at: '2020-04-30T15:05:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/403/events - html_url: https://github.com/packit/ogr/pull/403 - id: 610115589 + closed_at: '2020-12-14T19:31:39Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/513/comments + created_at: '2020-12-14T16:39:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/513/events + html_url: https://github.com/packit/ogr/pull/513 + id: 766702566 labels: - color: 0e8a16 default: false @@ -48912,55 +61959,298 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/403/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/513/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDExNjA3OTEx - number: 403 + node_id: MDExOlB1bGxSZXF1ZXN0NTM5NjUyMzUy + number: 513 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/403.diff - html_url: https://github.com/packit/ogr/pull/403 - patch_url: https://github.com/packit/ogr/pull/403.patch - url: https://api.github.com/repos/packit/ogr/pulls/403 + diff_url: https://github.com/packit/ogr/pull/513.diff + html_url: https://github.com/packit/ogr/pull/513 + patch_url: https://github.com/packit/ogr/pull/513.patch + url: https://api.github.com/repos/packit/ogr/pulls/513 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2020-12-14T19:31:42Z' + url: https://api.github.com/repos/packit/ogr/issues/513 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: Discussed in packit/packit-service#890 + closed_at: '2020-12-11T09:28:47Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/510/comments + created_at: '2020-12-10T11:04:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/510/events + html_url: https://github.com/packit/ogr/pull/510 + id: 761139932 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/510/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTM1ODUyMjY5 + number: 510 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/510.diff + html_url: https://github.com/packit/ogr/pull/510 + patch_url: https://github.com/packit/ogr/pull/510.patch + url: https://api.github.com/repos/packit/ogr/pulls/510 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix tests after requre update - updated_at: '2020-04-30T15:36:23Z' - url: https://api.github.com/repos/packit/ogr/issues/403 + title: '[.packit.yaml] Set copy_upstream_release_description to true' + updated_at: '2020-12-11T09:28:47Z' + url: https://api.github.com/repos/packit/ogr/issues/510 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Closes #368\r\n\r\n- [x] Implements `head_commit` for Github and\ - \ Gitlab\r\n- [x] Integration tests for all implementations" - closed_at: '2020-04-30T13:57:52Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/402/comments - created_at: '2020-04-30T10:24:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/402/events - html_url: https://github.com/packit/ogr/pull/402 - id: 609796401 + body: "Similar to how `get_tags()` return `GitTag` objects which also\ + \ store the commit sha, would be nice if `get_branches()` would return\ + \ `GitBranch` objects with a `head` attribute storing the commit sha\ + \ of the HEAD of the branch.\r\n\r\nMost probably related to #359." + closed_at: '2020-12-11T09:19:03Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/509/comments + created_at: '2020-12-09T14:16:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/509/events + html_url: https://github.com/packit/ogr/issues/509 + id: 760368277 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/509/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3NjAzNjgyNzc= + number: 509 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '`project.get_branches()` should also return the HEAD commits for + each branch' + updated_at: '2020-12-11T09:19:03Z' + url: https://api.github.com/repos/packit/ogr/issues/509 + 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 + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `f34` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can retrigger the update by adding a comment (`/packit propose-update`) + into this issue. + + ' + closed_at: '2020-12-11T09:14:01Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/511/comments + created_at: '2020-12-10T11:17:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/511/events + html_url: https://github.com/packit/ogr/issues/511 + id: 761149749 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/511/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3NjExNDk3NDk= + number: 511 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.18.1' + updated_at: '2020-12-11T09:14:01Z' + url: https://api.github.com/repos/packit/ogr/issues/511 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + _next: null + elapsed: 0.794556 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:46 GMT + ETag: W/"aa522026a7e103d20cb1da7d3521e150bccc2acb8a6b778e275177770cb3a851" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78EE23:13334D8:6075DC89 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4404' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '596' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=4: + - metadata: + latency: 0.40642881393432617 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add str for GitProject\ + \ (used in mocking tests)\n* Fix str representation of GitlabCommitFlag\n\ + * Add __str__ for CommitComment\n* Add an abstract class with binding\ + \ of repr to str\n* Trigger scratch koji build for fedora-devel on PRs\n\ + * [ci.fmf] there's no git-source/ in 'new' Testing Farm\n* Do not pass\ + \ username to the PagureProject if not fork\n* Fix parsing of ssh urls\ + \ and default to https protocol\n* Update parsing tests\n* Add more\ + \ tests to parsing\n* [pre-commit.ci] pre-commit autoupdate\n* Turn\ + \ off requre in pre-commit CI and move rebase to pre-push\n* Do not\ + \ skip bug and security issues by stalebot\n\n\nYou can change it by\ + \ editing `CHANGELOG.md` in the root of this repository and pushing\ + \ to `0.18.1-release` branch before merging this PR.\nI didn't find\ + \ any files where `__version__` is set." + closed_at: '2020-12-10T11:11:16Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/508/comments + created_at: '2020-12-09T13:27:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/508/events + html_url: https://github.com/packit/ogr/pull/508 + id: 760329639 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -48968,95 +62258,88 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/402/labels{/name} + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/508/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDExMzIzMDM3 - number: 402 + node_id: MDExOlB1bGxSZXF1ZXN0NTM1MTc5NTEy + number: 508 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/402.diff - html_url: https://github.com/packit/ogr/pull/402 - patch_url: https://github.com/packit/ogr/pull/402.patch - url: https://api.github.com/repos/packit/ogr/pulls/402 + diff_url: https://github.com/packit/ogr/pull/508.diff + html_url: https://github.com/packit/ogr/pull/508 + patch_url: https://github.com/packit/ogr/pull/508.patch + url: https://api.github.com/repos/packit/ogr/pulls/508 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Head commit on PRs - updated_at: '2020-04-30T14:06:58Z' - url: https://api.github.com/repos/packit/ogr/issues/402 + title: 0.18.1 release + updated_at: '2020-12-10T11:15:28Z' + url: https://api.github.com/repos/packit/ogr/issues/508 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Implement PullRequest.head_commit for github and gitlab - closed_at: '2020-04-30T13:57:51Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/368/comments - created_at: '2020-03-27T10:47:08Z' - events_url: https://api.github.com/repos/packit/ogr/issues/368/events - html_url: https://github.com/packit/ogr/issues/368 - id: 589045263 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-09T13:27:43Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/507/comments + created_at: '2020-12-09T13:27:01Z' + events_url: https://api.github.com/repos/packit/ogr/issues/507/events + html_url: https://github.com/packit/ogr/issues/507 + id: 760329156 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/368/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/507/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1ODkwNDUyNjM= - number: 368 + node_id: MDU6SXNzdWU3NjAzMjkxNTY= + number: 507 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement PullRequest.head_commit for github and gitlab - updated_at: '2020-04-30T13:57:51Z' - url: https://api.github.com/repos/packit/ogr/issues/368 + title: New patch release + updated_at: '2020-12-09T13:27:43Z' + url: https://api.github.com/repos/packit/ogr/issues/507 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -49074,23 +62357,215 @@ requests.sessions: subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User url: https://api.github.com/users/sakalosj + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\n2020-12-09 12:32:08.652548 | container | /usr/local/lib/python3.8/site-packages/ogr/abstract.py:47:\ + \ in __repr__\r\n2020-12-09 12:32:08.652556 | container | return\ + \ f\"<{str(self)}>\"\r\n2020-12-09 12:32:08.652565 | container | \ + \ self = <[RecursionError('maximum recursion depth exceeded')\ + \ raised in repr()] GitProject object at 0x7f8380a9ca90>\r\n2020-12-09\ + \ 12:32:08.652574 | container | /usr/local/lib/python3.8/site-packages/ogr/abstract.py:47:\ + \ in __repr__\r\n2020-12-09 12:32:08.652582 | container | return\ + \ f\"<{str(self)}>\"\r\n2020-12-09 12:32:08.652591 | container | E \ + \ RecursionError: maximum recursion depth exceeded\r\n2020-12-09 12:32:08.652599\ + \ | container | self = <[RecursionError('maximum recursion\ + \ depth exceeded') raised in repr()] GitProject object at 0x7f8380a9ca90>\r\ + \n2020-12-09 12:32:08.652608 | container | !!! Recursion detected (same\ + \ locals & position)\r\n```\r\n\r\nhttps://softwarefactory-project.io/logs/70/970/b8e3aa6794ccc0999106539acb1829d5ea08d03b/check/reverse-dep-packit-service-tests/bc1e055/job-output.txt.gz" + closed_at: '2020-12-09T13:21:57Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/506/comments + created_at: '2020-12-09T13:19:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/506/events + html_url: https://github.com/packit/ogr/issues/506 + id: 760323336 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/506/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3NjAzMjMzMzY= + number: 506 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: python doesn't like the new __repr__ + updated_at: '2020-12-09T13:21:57Z' + url: https://api.github.com/repos/packit/ogr/issues/506 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "* [ ] Project\r\n* [ ] Service (**don't** include secrets)\r\n\ + * [ ] Release\r\n* [ ] PR\r\n* [ ] Issue" + closed_at: '2020-12-09T11:20:42Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/365/comments + created_at: '2020-03-25T13:23:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/365/events + html_url: https://github.com/packit/ogr/issues/365 + id: 587692896 + labels: + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/365/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1ODc2OTI4OTY= + number: 365 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: add __repr__ to classes + updated_at: '2020-12-09T11:20:42Z' + url: https://api.github.com/repos/packit/ogr/issues/365 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'packaging guidelines say this is automatic since F33 and we should - - disable it - - - https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_provides' - closed_at: '2020-04-27T17:21:08Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/399/comments - created_at: '2020-04-27T10:25:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/399/events - html_url: https://github.com/packit/ogr/pull/399 - id: 607427901 + body: "This is partly a dog-fooding of packit.\r\n\r\nSigned-off-by: Frantisek\ + \ Lachman " + closed_at: '2020-12-04T15:49:58Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/502/comments + created_at: '2020-12-04T08:04:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/502/events + html_url: https://github.com/packit/ogr/pull/502 + id: 756894507 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/502/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTMyMzYzOTMx + number: 502 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/502.diff + html_url: https://github.com/packit/ogr/pull/502 + patch_url: https://github.com/packit/ogr/pull/502.patch + url: https://api.github.com/repos/packit/ogr/pulls/502 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Trigger scratch koji build for fedora-devel on PRs + updated_at: '2020-12-07T07:16:31Z' + url: https://api.github.com/repos/packit/ogr/issues/502 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2020-12-03T17:40:16Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/501/comments + created_at: '2020-12-03T14:29:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/501/events + html_url: https://github.com/packit/ogr/pull/501 + id: 756245027 labels: - color: 0e8a16 default: false @@ -49099,31 +62574,76 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/399/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/501/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA5NDAzNjI3 - number: 399 + node_id: MDExOlB1bGxSZXF1ZXN0NTMxODIwNTc1 + number: 501 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/399.diff - html_url: https://github.com/packit/ogr/pull/399 - patch_url: https://github.com/packit/ogr/pull/399.patch - url: https://api.github.com/repos/packit/ogr/pulls/399 + diff_url: https://github.com/packit/ogr/pull/501.diff + html_url: https://github.com/packit/ogr/pull/501 + patch_url: https://github.com/packit/ogr/pull/501.patch + url: https://api.github.com/repos/packit/ogr/pulls/501 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'spec: don''t do python_provide on F33+' - updated_at: '2020-04-28T08:16:08Z' - url: https://api.github.com/repos/packit/ogr/issues/399 + title: '[ci.fmf] there''s no git-source/ in ''new'' Testing Farm' + updated_at: '2020-12-04T08:50:31Z' + url: https://api.github.com/repos/packit/ogr/issues/501 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "```\r\nIn [1]: from ogr.parsing import parse_git_repo \r\n\r\n\ + In [2]: parse_git_repo(\"git@gitlab.com:packit-service/src/libvirt.git\"\ + ) \r\n\r\nIn [3]: :( \r\n ...: \r\n```" + closed_at: '2020-12-01T11:46:18Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/496/comments + created_at: '2020-11-26T14:01:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/496/events + html_url: https://github.com/packit/ogr/issues/496 + id: 751614853 + labels: + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/496/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3NTE2MTQ4NTM= + number: 496 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: ogr can't parse a subnamespace in gitlab's URL + updated_at: '2020-12-03T12:08:10Z' + url: https://api.github.com/repos/packit/ogr/issues/496 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -49144,97 +62664,16 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f30` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.3.tar.gz. - Reason: ''Not Found''. ` | - - | `f31` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This - is not supported.` | - - | `f32` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This - is not supported.` | - - | `master` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is - dirty.This is not supported.` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-04-27T10:09:07Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/398/comments - created_at: '2020-04-27T09:59:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/398/events - html_url: https://github.com/packit/ogr/issues/398 - id: 607410636 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/398/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MDc0MTA2MzY= - number: 398 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[packit] Propose update failed for release 0.11.3' - updated_at: '2020-04-27T10:11:01Z' - url: https://api.github.com/repos/packit/ogr/issues/398 - user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Fix pagination in GitLab\ - \ and add tests\n* Fix pagination for GitlabCommitFlag\n* Add tests\ - \ for PagureIssue setters\n* Implement Issue setters for Pagure\n* revert\ - \ rpmautospec\n* spec: dont hardcode name/version, use macros instead\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.11.3-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2020-04-27T09:58:02Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/393/comments - created_at: '2020-04-24T07:15:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/393/events - html_url: https://github.com/packit/ogr/pull/393 - id: 606096113 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-12-01T08:33:48Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/500/comments + created_at: '2020-11-30T16:31:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/500/events + html_url: https://github.com/packit/ogr/pull/500 + id: 753623648 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -49242,67 +62681,59 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/393/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/500/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA4Mzc0MDEw - number: 393 + node_id: MDExOlB1bGxSZXF1ZXN0NTI5NjY1Njgx + number: 500 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/393.diff - html_url: https://github.com/packit/ogr/pull/393 - patch_url: https://github.com/packit/ogr/pull/393.patch - url: https://api.github.com/repos/packit/ogr/pulls/393 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.11.3 release - updated_at: '2020-04-27T10:00:28Z' - url: https://api.github.com/repos/packit/ogr/issues/393 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos - 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 + diff_url: https://github.com/packit/ogr/pull/500.diff + html_url: https://github.com/packit/ogr/pull/500 + patch_url: https://github.com/packit/ogr/pull/500.patch + url: https://api.github.com/repos/packit/ogr/pulls/500 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[pre-commit.ci] pre-commit autoupdate' + updated_at: '2020-12-01T08:33:52Z' + url: https://api.github.com/repos/packit/ogr/issues/500 + user: + avatar_url: https://avatars.githubusercontent.com/in/68672?v=4 + events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/followers + following_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/pre-commit-ci + id: 66853113 + login: pre-commit-ci[bot] + node_id: MDM6Qm90NjY4NTMxMTM= + organizations_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/received_events + repos_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pre-commit-ci%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/pre-commit-ci%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #396' - closed_at: '2020-04-26T19:23:07Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/397/comments - created_at: '2020-04-25T11:55:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/397/events - html_url: https://github.com/packit/ogr/pull/397 - id: 606754068 + body: "Turn off requre clean up in pre-commit CI since it times out.\r\ + \n\r\nSigned-off-by: Matej Focko \r\n\r\nnot sure\ + \ how much it changes running locally, I run manually and had to use\ + \ `pre-commit run --hook-stage manual --all`\r\n\r\n- [x] Check if is\ + \ not skipped in zuul; gotta add `--hook-stage manual` to zuul too\r\ + \n- [x] What's wrong with the rebase??? (no network)\r\n There\ + \ are no remotes in pre-commit CI?" + closed_at: '2020-11-30T13:45:59Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/499/comments + created_at: '2020-11-27T10:31:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/499/events + html_url: https://github.com/packit/ogr/pull/499 + id: 752149999 labels: - color: 0e8a16 default: false @@ -49311,63 +62742,31 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/397/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/499/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA4ODk2ODgw - number: 397 + node_id: MDExOlB1bGxSZXF1ZXN0NTI4NTI5NDY4 + number: 499 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/397.diff - html_url: https://github.com/packit/ogr/pull/397 - patch_url: https://github.com/packit/ogr/pull/397.patch - url: https://api.github.com/repos/packit/ogr/pulls/397 + diff_url: https://github.com/packit/ogr/pull/499.diff + html_url: https://github.com/packit/ogr/pull/499 + patch_url: https://github.com/packit/ogr/pull/499.patch + url: https://api.github.com/repos/packit/ogr/pulls/499 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Switch backticks to apostrophes in Pagure errors - updated_at: '2020-04-27T09:06:09Z' - url: https://api.github.com/repos/packit/ogr/issues/397 + title: Turn off requre in pre-commit CI + updated_at: '2020-11-30T14:31:49Z' + url: https://api.github.com/repos/packit/ogr/issues/499 user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -49385,88 +62784,47 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - author_association: MEMBER - body: "As can be seen in https://github.com/abrt/reportd/issues/10 both\ - \ [ogr](https://github.com/packit-service/ogr/blob/master/ogr/services/pagure/service.py#L150)\ - \ and [packit-service](https://github.com/packit-service/packit-service/blob/master/packit_service/worker/handlers/github_handlers.py#L179)\ - \ use backticks, which results in strange Github comments.\r\n\r\nCan\ - \ ogr use apostrophes instead?" - closed_at: '2020-04-26T19:23:07Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/396/comments - created_at: '2020-04-25T08:39:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/396/events - html_url: https://github.com/packit/ogr/issues/396 - id: 606721347 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/396/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MDY3MjEzNDc= - number: 396 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Use apostrophe rather than backtics in log messages. - updated_at: '2020-04-26T19:23:07Z' - url: https://api.github.com/repos/packit/ogr/issues/396 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-04-24T18:06:20Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/395/comments - created_at: '2020-04-24T12:55:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/395/events - html_url: https://github.com/packit/ogr/pull/395 - id: 606292445 + body: "Introduced in #452 \r\n\r\nThere's a missing response for GitLab\ + \ (F31 version of python-gitlab) tests" + closed_at: '2020-11-30T08:37:14Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/472/comments + created_at: '2020-09-24T19:38:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/472/events + html_url: https://github.com/packit/ogr/issues/472 + id: 708425597 labels: - - color: 0e8a16 + - color: d93f0b default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/395/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/472/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA4NTM0Mzk4 - number: 395 + node_id: MDU6SXNzdWU3MDg0MjU1OTc= + number: 472 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/395.diff - html_url: https://github.com/packit/ogr/pull/395 - patch_url: https://github.com/packit/ogr/pull/395.patch - url: https://api.github.com/repos/packit/ogr/pulls/395 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add is_fork and username to PagureProject __str__ - updated_at: '2020-04-24T18:25:00Z' - url: https://api.github.com/repos/packit/ogr/issues/395 + title: Missing response for F31 + updated_at: '2020-11-30T08:37:14Z' + url: https://api.github.com/repos/packit/ogr/issues/472 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -49488,14 +62846,14 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-04-24T13:31:09Z' + body: 'Signed-off-by: Frantisek Lachman ' + closed_at: '2020-11-12T16:10:20Z' comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/394/comments - created_at: '2020-04-24T10:45:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/394/events - html_url: https://github.com/packit/ogr/pull/394 - id: 606221125 + comments_url: https://api.github.com/repos/packit/ogr/issues/495/comments + created_at: '2020-11-12T14:51:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/495/events + html_url: https://github.com/packit/ogr/pull/495 + id: 741664481 labels: - color: 0e8a16 default: false @@ -49504,81 +62862,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/394/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/495/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA4NDc1OTAz - number: 394 + node_id: MDExOlB1bGxSZXF1ZXN0NTE5OTM3ODcy + number: 495 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/394.diff - html_url: https://github.com/packit/ogr/pull/394 - patch_url: https://github.com/packit/ogr/pull/394.patch - url: https://api.github.com/repos/packit/ogr/pulls/394 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Zuul related refactoring changes - updated_at: '2020-04-24T13:33:17Z' - url: https://api.github.com/repos/packit/ogr/issues/394 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: Thanks in advance! - closed_at: '2020-04-24T07:15:34Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/385/comments - created_at: '2020-04-16T07:48:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/385/events - html_url: https://github.com/packit/ogr/issues/385 - id: 600821635 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/385/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU2MDA4MjE2MzU= - number: 385 - performed_via_github_app: null + diff_url: https://github.com/packit/ogr/pull/495.diff + html_url: https://github.com/packit/ogr/pull/495 + patch_url: https://github.com/packit/ogr/pull/495.patch + url: https://api.github.com/repos/packit/ogr/pulls/495 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New patch release - updated_at: '2020-04-24T07:15:34Z' - url: https://api.github.com/repos/packit/ogr/issues/385 + title: Do not skip bug and security issues by stalebot + updated_at: '2020-11-12T17:17:56Z' + url: https://api.github.com/repos/packit/ogr/issues/495 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -49599,183 +62900,155 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Create a class decorator that would iterate through members of\ - \ class and check if superclass has the same member with docstring,\ - \ if so, copy the docstring.\r\n\r\nReduces the unnecessary copy-pasting\ - \ of docstrings." - closed_at: '2020-04-23T11:37:34Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/271/comments - created_at: '2019-11-13T11:21:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/271/events - html_url: https://github.com/packit/ogr/issues/271 - id: 522140617 - labels: - - color: fef2c0 - default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/271/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-29T10:19:07Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/494/comments + created_at: '2020-10-29T09:59:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/494/events + html_url: https://github.com/packit/ogr/issues/494 + id: 732170676 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/494/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MjIxNDA2MTc= - number: 271 + node_id: MDU6SXNzdWU3MzIxNzA2NzY= + number: 494 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Inherit docstrings - updated_at: '2020-04-23T11:37:34Z' - url: https://api.github.com/repos/packit/ogr/issues/271 + title: '[packit] Propose update failed for release 0.18.0' + updated_at: '2020-10-29T10:19:07Z' + url: https://api.github.com/repos/packit/ogr/issues/494 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Shoudn't be this working?\r\n\r\nconfig:\r\n```\r\nauthentication:\r\ - \n git.stg.centos.org:\r\n instance_url: https://git.stg.centos.org\r\ - \n token: ---token---\r\n type: pagure\r\n```\r\nerror:\r\n```\r\ - \nAuthentication for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ - \ is missing in the config.\r\nTraceback (most recent call last):\r\n\ - \ File \"/home/sakalosj/projects/packit/packit/config/config.py\",\ - \ line 203, in _get_project\r\n url=url, custom_instances=self.services,\ - \ **get_project_kwargs\r\n File \"/home/sakalosj/projects/ogr/ogr/factory.py\"\ - , line 83, in get_project\r\n kls = get_service_class(url=url, service_mapping_update=service_mapping_update)\r\ - \n File \"/home/sakalosj/projects/ogr/ogr/factory.py\", line 144, in\ - \ get_service_class\r\n raise OgrException(\"No matching service\ - \ was found.\")\r\nogr.exceptions.OgrException: No matching service\ - \ was found.\r\n\r\nDuring handling of the above exception, another\ - \ exception occurred:\r\n\r\nTraceback (most recent call last):\r\n\ - \ File \"/home/sakalosj/projects/packit-service/tmp_local/runner.py\"\ - , line 63, in \r\n process_new_pr()\r\n File \"/home/sakalosj/projects/packit-service/tmp_local/runner.py\"\ - , line 22, in process_new_pr\r\n SteveJobs().process_message(event=new_pr,\ - \ source=\"centosmsg\")\r\n File \"/home/sakalosj/projects/packit-service/packit_service/worker/jobs.py\"\ - , line 320, in process_message\r\n if project:\r\n File \"/home/sakalosj/projects/packit/packit/config/config.py\"\ - , line 208, in _get_project\r\n raise PackitConfigException(msg,\ - \ ex)\r\npackit.exceptions.PackitConfigException: (\"Authentication\ - \ for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ - \ is missing in the config.\", OgrException('No matching service was\ - \ found.'))\r\n```" - closed_at: null - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/383/comments - created_at: '2020-04-15T21:50:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/383/events - html_url: https://github.com/packit/ogr/issues/383 - id: 600609280 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Fix anonymous GitlabService\n\ + * Adding delete project functionality\n* Update pre-commit configuration\ + \ for prettier\n* Add assignees argument while creating issue\n\n\n\ + You can change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.18.0-release` branch before merging this PR.\nI\ + \ didn't find any files where `__version__` is set." + closed_at: '2020-10-29T09:54:07Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/493/comments + created_at: '2020-10-27T12:42:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/493/events + html_url: https://github.com/packit/ogr/pull/493 + id: 730416075 labels: - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 42e529 + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/383/labels{/name} + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/493/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDA2MDkyODA= - number: 383 + node_id: MDExOlB1bGxSZXF1ZXN0NTEwNzI0Mjkx + number: 493 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/493.diff + html_url: https://github.com/packit/ogr/pull/493 + patch_url: https://github.com/packit/ogr/pull/493.patch + url: https://api.github.com/repos/packit/ogr/pulls/493 repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Initializing service via get_instances_from_dict() not working - as expected - updated_at: '2020-04-23T11:27:50Z' - url: https://api.github.com/repos/packit/ogr/issues/383 + state: closed + title: 0.18.0 release + updated_at: '2020-10-29T09:57:53Z' + url: https://api.github.com/repos/packit/ogr/issues/493 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Supposed to Fix #391 \r\n\r\nAs far as I understand the `python-gitlab`\ - \ package, they follow Gitlab's REST API with few additions like `list()`\ - \ methods on some objects.\r\n\r\n- [x] (#391) Branches API does neither\ - \ state returning paginated list or explicitly say it returns *all*\ - \ branches\r\n works with `all=True` even though it's not documented\ - \ in Gitlab API\r\n - [x] will have to try using it at some repository\ - \ with many branches (default pagination is 20 in other API endpoints)\ - \ or could you provide the repository that brought this issue to light?\ - \ ;)\r\n- [x] Repository tree - can't find `all` parameter in API,\ - \ it is used though and there is pagination => should look into that\r\ - \n same, works even though it's not in the API documentation\r\n-\ - \ [x] Releases list - by API it is paginated, there's no mention of\ - \ adjusting the count of releases per page nor `all`-parameter\r\n \ - \ same, no mention of `all` in docs\r\n- [x] Add tests" - closed_at: '2020-04-22T13:38:46Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/392/comments - created_at: '2020-04-22T08:59:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/392/events - html_url: https://github.com/packit/ogr/pull/392 - id: 604582696 + body: "- Allows no-auth read-only access to GitLab\r\n - authenticates\ + \ only if provided token\r\n\r\nFixes #481\r\n\r\nSigned-off-by: Matej\ + \ Focko " + closed_at: '2020-10-21T12:44:59Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/488/comments + created_at: '2020-10-20T09:42:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/488/events + html_url: https://github.com/packit/ogr/pull/488 + id: 725402916 labels: - color: 0e8a16 default: false @@ -49784,24 +63057,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/392/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/488/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA3MTQ5MDgy - number: 392 + node_id: MDExOlB1bGxSZXF1ZXN0NTA2NjQxMTc1 + number: 488 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/392.diff - html_url: https://github.com/packit/ogr/pull/392 - patch_url: https://github.com/packit/ogr/pull/392.patch - url: https://api.github.com/repos/packit/ogr/pulls/392 + diff_url: https://github.com/packit/ogr/pull/488.diff + html_url: https://github.com/packit/ogr/pull/488 + patch_url: https://github.com/packit/ogr/pull/488.patch + url: https://api.github.com/repos/packit/ogr/pulls/488 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitLab pagination - updated_at: '2020-04-22T15:04:34Z' - url: https://api.github.com/repos/packit/ogr/issues/392 + title: Fix anonymous GitlabService + updated_at: '2020-10-21T15:42:48Z' + url: https://api.github.com/repos/packit/ogr/issues/488 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -49820,8 +63093,56 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + assignee: null + assignees: [] + author_association: MEMBER + body: "ogr allows creating GitHub service instances without any authentication\ + \ (provides read-only access)\r\n\r\nBased on testing for #479 it's\ + \ been found out that we cannot create GitLab instance without providing\ + \ token (as we can with GitHub) *even though* it is supported by `python-gitlab`\ + \ (https://python-gitlab.readthedocs.io/en/stable/api-usage.html#gitlab-gitlab-class)" + closed_at: '2020-10-21T12:44:59Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/481/comments + created_at: '2020-10-14T10:27:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/481/events + html_url: https://github.com/packit/ogr/issues/481 + id: 721337045 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/481/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU3MjEzMzcwNDU= + number: 481 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: GitLab service cannot be created without providing auth + updated_at: '2020-10-21T12:44:59Z' + url: https://api.github.com/repos/packit/ogr/issues/481 + 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} @@ -49839,37 +63160,88 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - assignees: - - avatar_url: https://avatars0.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} + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "fixes #215 \r\n\r\n- [x] Added tests" + closed_at: '2020-10-21T11:18:40Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/489/comments + created_at: '2020-10-21T03:36:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/489/events + html_url: https://github.com/packit/ogr/pull/489 + id: 726103440 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/489/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTA3MjI1MTM2 + number: 489 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/489.diff + html_url: https://github.com/packit/ogr/pull/489 + patch_url: https://github.com/packit/ogr/pull/489.patch + url: https://api.github.com/repos/packit/ogr/pulls/489 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Adding delete project functionality + updated_at: '2020-10-21T11:18:40Z' + url: https://api.github.com/repos/packit/ogr/issues/489 + user: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/shreyaspapi + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "By now, we get only 20 branches at max. Looks like a pagination\ - \ issue.\r\n\r\nWe need to tweak pagination to list all -- we already\ - \ have that on some other method." - closed_at: '2020-04-22T13:38:46Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/391/comments - created_at: '2020-04-21T11:18:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/391/events - html_url: https://github.com/packit/ogr/issues/391 - id: 603917055 + body: "Add method to project classes to delete a project.\r\n\r\nAC:\r\ + \n- [ ] In each implementation, add the `delete` method to project class\ + \ and implement it.\r\n - If possible/supported. (Document that if\ + \ it is not possible and raise an exception with a good message.)\r\n\ + - [ ] Add tests for that.\r\n\r\nLinks:\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html\r\ + \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ + \n- https://pagure.io/api/0/ (not found the possible API call for that\ + \ on the first look)" + closed_at: '2020-10-21T11:18:39Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/215/comments + created_at: '2019-09-20T05:36:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/215/events + html_url: https://github.com/packit/ogr/issues/215 + id: 496154927 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub - color: d93f0b default: false description: Related to GitLab implementation. @@ -49877,13 +63249,27 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -49891,19 +63277,26 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/391/labels{/name} + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/215/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDM5MTcwNTU= - number: 391 + node_id: MDU6SXNzdWU0OTYxNTQ5Mjc= + number: 215 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Return all project branches from Gitlab ' - updated_at: '2020-04-22T13:38:46Z' - url: https://api.github.com/repos/packit/ogr/issues/391 + title: Implement GitProject.delete() + updated_at: '2020-10-21T11:18:40Z' + url: https://api.github.com/repos/packit/ogr/issues/215 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -49925,14 +63318,15 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Fixes #302 \r\n\r\n- [x] Add tests" - closed_at: '2020-04-20T12:38:20Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/389/comments - created_at: '2020-04-20T08:44:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/389/events - html_url: https://github.com/packit/ogr/pull/389 - id: 603054798 + body: "Related to https://github.com/prettier/prettier/issues/9459\r\n\ + \r\nSigned-off-by: Matej Focko " + closed_at: '2020-10-21T10:11:54Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/491/comments + created_at: '2020-10-21T09:50:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/491/events + html_url: https://github.com/packit/ogr/pull/491 + id: 726321387 labels: - color: 0e8a16 default: false @@ -49941,24 +63335,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/389/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/491/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA1OTE2MDgx - number: 389 + node_id: MDExOlB1bGxSZXF1ZXN0NTA3NDA0NDY3 + number: 491 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/389.diff - html_url: https://github.com/packit/ogr/pull/389 - patch_url: https://github.com/packit/ogr/pull/389.patch - url: https://api.github.com/repos/packit/ogr/pulls/389 + diff_url: https://github.com/packit/ogr/pull/491.diff + html_url: https://github.com/packit/ogr/pull/491 + patch_url: https://github.com/packit/ogr/pull/491.patch + url: https://api.github.com/repos/packit/ogr/pulls/491 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement Issue setters for Pagure - updated_at: '2020-04-20T12:43:44Z' - url: https://api.github.com/repos/packit/ogr/issues/389 + title: Update pre-commit configuration for prettier + updated_at: '2020-10-21T10:15:27Z' + url: https://api.github.com/repos/packit/ogr/issues/491 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -49979,17 +63373,143 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Implement updating title and description of issue on Pagure when\ - \ the API allows it.\r\n\r\nBlocked by: [Pagure's issue](https://pagure.io/pagure/issue/4704)" - closed_at: '2020-04-20T12:38:20Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/302/comments - created_at: '2020-01-02T16:42:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/302/events - html_url: https://github.com/packit/ogr/issues/302 - id: 544654301 + author_association: CONTRIBUTOR + body: "fixes #329 \r\n\r\n- [x] tests" + closed_at: '2020-10-20T14:41:14Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/487/comments + created_at: '2020-10-17T14:29:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/487/events + html_url: https://github.com/packit/ogr/pull/487 + id: 723770962 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/487/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NTA1MjkxMDUy + number: 487 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/487.diff + html_url: https://github.com/packit/ogr/pull/487 + patch_url: https://github.com/packit/ogr/pull/487.patch + url: https://api.github.com/repos/packit/ogr/pulls/487 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Add assignees argument while creating issue + updated_at: '2020-10-20T14:41:14Z' + url: https://api.github.com/repos/packit/ogr/issues/487 + user: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + author_association: CONTRIBUTOR + body: "Is it possible to assign Issues to particular user-names using\ + \ the issue object by any chance?\r\n\r\n#### Github\r\n- github-api:\ + \ https://developer.github.com/v3/issues/assignees/#add-assignees-to-an-issue\r\ + \n- pygithub: https://pygithub.readthedocs.io/en/latest/github_objects/Issue.html\r\ + \n\r\n#### Gitlab\r\n- gitlab-api: https://docs.gitlab.com/ee/api/issues.html#edit-issue\r\ + \n- python-gitlab: https://python-gitlab.readthedocs.io/en/stable/gl_objects/issues.html\r\ + \n- example of the code: https://gitlab.fi.muni.cz/xlachma1/figitool/blob/master/figitool/figitool.py#L576\r\ + \n```python\r\n user_id = gitlab_instance.users.list(username=login)[0].id\r\ + \n gitlab_mr.assignee_id = user_id\r\n gitlab_mr.save()\r\ + \n```\r\n\r\n#### Pagure:\r\n- https://src.fedoraproject.org/api/0/#issues\r\ + \n - -> Create a new issue\r\n - -> Assign an issue\r\n\r\n### TODO:\r\ + \n\r\n- [ ] add `assignee` argument to methods for creating the issue\r\ + \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ + \ tests for it\r\n- [ ] add the get/set property for the Issue classes\r\ + \n - in the `abstract.py`\r\n - for each implementation\r\n - add\ + \ tests for it\r\n\r\n\r\nupdated by @lachmanfrantisek " + closed_at: '2020-10-20T14:41:14Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/329/comments + created_at: '2020-02-17T15:16:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/329/events + html_url: https://github.com/packit/ogr/issues/329 + id: 566364748 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -49997,13 +63517,6 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: bc4812 - default: false - description: We are blocked! - id: 1432779229 - name: blocker - node_id: MDU6TGFiZWwxNDMyNzc5MjI5 - url: https://api.github.com/repos/packit/ogr/labels/blocker - color: a2eeef default: false description: New feature or a request for enhancement. @@ -50011,121 +63524,209 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 8be567 + - color: 7057ff default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/302/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/329/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1NjYzNjQ3NDg= + number: 329 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Assigning Issues to based on usernames. + updated_at: '2020-10-20T14:41:14Z' + url: https://api.github.com/repos/packit/ogr/issues/329 + user: + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 + events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} + followers_url: https://api.github.com/users/saisankargochhayat/followers + following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} + gists_url: https://api.github.com/users/saisankargochhayat/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/saisankargochhayat + id: 9396452 + login: saisankargochhayat + node_id: MDQ6VXNlcjkzOTY0NTI= + organizations_url: https://api.github.com/users/saisankargochhayat/orgs + received_events_url: https://api.github.com/users/saisankargochhayat/received_events + repos_url: https://api.github.com/users/saisankargochhayat/repos + site_admin: false + starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions + type: User + url: https://api.github.com/users/saisankargochhayat + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-19T07:46:55Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/486/comments + created_at: '2020-10-15T15:36:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/486/events + html_url: https://github.com/packit/ogr/issues/486 + id: 722446903 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/486/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDQ2NTQzMDE= - number: 302 + node_id: MDU6SXNzdWU3MjI0NDY5MDM= + number: 486 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Issue setters (Pagure) - updated_at: '2020-04-20T12:38:20Z' - url: https://api.github.com/repos/packit/ogr/issues/302 + title: '[packit] Propose update failed for release 0.17.0' + updated_at: '2020-10-19T07:46:55Z' + url: https://api.github.com/repos/packit/ogr/issues/486 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'I should read more carefully: rpmautospec is not in production - yet, + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: - should be only tested on staging: + | dist-git branch | error | - https://lists.fedoraproject.org/archives/list/devel-announce@lists.fedoraproject.org/thread/LWE4URIRWVTEZKXKP7QOK5JXFNVJRUNW/ + | --------------- | ----- | + | `f31` | `The distgit repository /tmp/packit-dist-gitbut5ttez is dirty.This + is not supported.` | - Since we use this repository in packit''s tests, I''ll keep the spec - in a subdir so we can exercise this functionality while testing.' - closed_at: '2020-04-20T09:27:42Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/390/comments - created_at: '2020-04-20T09:09:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/390/events - html_url: https://github.com/packit/ogr/pull/390 - id: 603072599 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/390/labels{/name} + | `f32` | `Cmd(''git'') failed due to: exit code(128) cmdline: git + reset --hard remotes/origin/0.17.0-f32-update stderr: ''fatal: ambiguous + argument ''remotes/origin/0.17.0-f32-update'': unknown revision or path + not in the working tree. Use ''--'' to separate paths from revisions, + like this: ''git [...] -- [...]''''` | + + | `f33` | `The distgit repository /tmp/packit-dist-gitbut5ttez is dirty.This + is not supported.` | + + | `master` | `The distgit repository /tmp/packit-dist-gitbut5ttez is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-15T07:28:47Z' + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/484/comments + created_at: '2020-10-15T06:05:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/484/events + html_url: https://github.com/packit/ogr/issues/484 + id: 722023608 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/484/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA1OTMwMTIw - number: 390 + node_id: MDU6SXNzdWU3MjIwMjM2MDg= + number: 484 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/390.diff - html_url: https://github.com/packit/ogr/pull/390 - patch_url: https://github.com/packit/ogr/pull/390.patch - url: https://api.github.com/repos/packit/ogr/pulls/390 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: revert rpmautospec - updated_at: '2020-04-20T12:28:41Z' - url: https://api.github.com/repos/packit/ogr/issues/390 + title: '[packit] Propose update failed for release 0.17.0' + updated_at: '2020-10-15T15:38:59Z' + url: https://api.github.com/repos/packit/ogr/issues/484 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: https://docs.pagure.org/Fedora-Infra.rpmautospec/principle.html - closed_at: '2020-04-15T08:48:11Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/378/comments - created_at: '2020-04-14T14:38:06Z' - events_url: https://api.github.com/repos/packit/ogr/issues/378/events - html_url: https://github.com/packit/ogr/pull/378 - id: 599623468 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Implement project.exists\ + \ for GitLab\n* Raise better exception for user's email in Pagure\n\ + * Add description argument to all project_create methods\n\n\nYou can\ + \ change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.17.0-release` branch before merging this PR.\nI\ + \ didn't find any files where `__version__` is set." + closed_at: '2020-10-15T06:01:36Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/483/comments + created_at: '2020-10-14T15:44:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/483/events + html_url: https://github.com/packit/ogr/pull/483 + id: 721573177 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -50133,53 +63734,60 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/378/labels{/name} + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/483/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzMjI1MjMy - number: 378 + node_id: MDExOlB1bGxSZXF1ZXN0NTAzNDY4NzQ4 + number: 483 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/378.diff - html_url: https://github.com/packit/ogr/pull/378 - patch_url: https://github.com/packit/ogr/pull/378.patch - url: https://api.github.com/repos/packit/ogr/pulls/378 + diff_url: https://github.com/packit/ogr/pull/483.diff + html_url: https://github.com/packit/ogr/pull/483 + patch_url: https://github.com/packit/ogr/pull/483.patch + url: https://api.github.com/repos/packit/ogr/pulls/483 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: use rpmautospec - updated_at: '2020-04-20T06:44:58Z' - url: https://api.github.com/repos/packit/ogr/issues/378 + title: 0.17.0 release + updated_at: '2020-10-15T06:06:31Z' + url: https://api.github.com/repos/packit/ogr/issues/483 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: my bad, didn't notice packit changed it and I committed it. - closed_at: '2020-04-17T06:44:16Z' + body: '`project_dir` has been [set by zuul base job](https://github.com/packit/packit-service-zuul/blob/master/zuul.d/jobs.yaml#L13).' + closed_at: '2020-10-14T16:46:10Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/388/comments - created_at: '2020-04-17T06:23:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/388/events - html_url: https://github.com/packit/ogr/pull/388 - id: 601732754 + comments_url: https://api.github.com/repos/packit/ogr/issues/482/comments + created_at: '2020-10-14T14:20:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/482/events + html_url: https://github.com/packit/ogr/pull/482 + id: 721504247 labels: - color: 0e8a16 default: false @@ -50188,114 +63796,118 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/388/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/482/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA0OTQ1NTQx - number: 388 + node_id: MDExOlB1bGxSZXF1ZXN0NTAzNDExNDE2 + number: 482 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/388.diff - html_url: https://github.com/packit/ogr/pull/388 - patch_url: https://github.com/packit/ogr/pull/388.patch - url: https://api.github.com/repos/packit/ogr/pulls/388 + diff_url: https://github.com/packit/ogr/pull/482.diff + html_url: https://github.com/packit/ogr/pull/482 + patch_url: https://github.com/packit/ogr/pull/482.patch + url: https://api.github.com/repos/packit/ogr/pulls/482 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'spec: dont hardcode name/version, use macros instead' - updated_at: '2020-04-17T08:24:33Z' - url: https://api.github.com/repos/packit/ogr/issues/388 + title: Remove files/tasks/zuul-project-setup.yaml + updated_at: '2020-10-14T17:10:37Z' + url: https://api.github.com/repos/packit/ogr/issues/482 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `master` | `[Errno 2] No such file or directory: ''/tmp/packit-dist-git1w9t9eub/fedora/changelog''` - | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-04-16T14:27:25Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/387/comments - created_at: '2020-04-16T09:54:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/387/events - html_url: https://github.com/packit/ogr/issues/387 - id: 600905691 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/387/labels{/name} + author_association: MEMBER + body: '' + closed_at: '2020-10-14T15:44:17Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/473/comments + created_at: '2020-09-30T09:36:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/473/events + html_url: https://github.com/packit/ogr/issues/473 + id: 711792673 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/473/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU2MDA5MDU2OTE= - number: 387 + node_id: MDU6SXNzdWU3MTE3OTI2NzM= + number: 473 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.11.2' - updated_at: '2020-04-16T15:02:35Z' - url: https://api.github.com/repos/packit/ogr/issues/387 + title: New minor release + updated_at: '2020-10-14T15:44:17Z' + url: https://api.github.com/repos/packit/ogr/issues/473 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + 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/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'we are setting this so we can use packit from ogr''s dist-git - - packit can''t know what''s the upstream name when running from distgit' - closed_at: '2020-04-16T06:54:10Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/382/comments - created_at: '2020-04-15T15:53:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/382/events - html_url: https://github.com/packit/ogr/pull/382 - id: 600404945 + body: 'Signed-off-by: Frantisek Lachman ' + closed_at: '2020-10-14T10:43:09Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/479/comments + created_at: '2020-10-14T08:34:45Z' + events_url: https://api.github.com/repos/packit/ogr/issues/479/events + html_url: https://github.com/packit/ogr/pull/479 + id: 721258049 labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -50303,63 +63915,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/382/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/479/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzODQ1ODM3 - number: 382 + node_id: MDExOlB1bGxSZXF1ZXN0NTAzMjA2NzU3 + number: 479 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/382.diff - html_url: https://github.com/packit/ogr/pull/382 - patch_url: https://github.com/packit/ogr/pull/382.patch - url: https://api.github.com/repos/packit/ogr/pulls/382 + diff_url: https://github.com/packit/ogr/pull/479.diff + html_url: https://github.com/packit/ogr/pull/479 + patch_url: https://github.com/packit/ogr/pull/479.patch + url: https://api.github.com/repos/packit/ogr/pulls/479 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'packit.xml: set upstream_package_name' - updated_at: '2020-04-16T14:03:12Z' - url: https://api.github.com/repos/packit/ogr/issues/382 + title: Implement project.exists for GitLab + updated_at: '2020-10-14T10:50:55Z' + url: https://api.github.com/repos/packit/ogr/issues/479 user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -50377,34 +63950,21 @@ requests.sessions: subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions type: User url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Add a method to set flags\ - \ on Pagure PRs\n* Annotate PagurePullRequest.head_commit's return type\n\ - * Remove test jobs from zuul gating jobs\n* packit.xml: set upstream_package_name\n\ - * added CentOS prod/stg instances to pagure service\n* use rpmautospec\n\ - * p.yaml: use new syntax for dist_git_branch\n* Add created/edited properties\ - \ to CommitFlag\n* print pagure API errors properly\n* revert change\n\ - * PR comment: use pagure pagination metadata\n* using pagination to\ - \ retrieve pagure issue list\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.11.2-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-04-16T09:53:01Z' + body: "Chosen as a better resolution to unsupported API (previously raised\ + \ an exception).\r\n\r\nSigned-off-by: Matej Focko \r\ + \n\r\nCloses #126" + closed_at: '2020-10-12T12:16:21Z' comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/386/comments - created_at: '2020-04-16T07:51:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/386/events - html_url: https://github.com/packit/ogr/pull/386 - id: 600823758 + comments_url: https://api.github.com/repos/packit/ogr/issues/477/comments + created_at: '2020-10-08T19:30:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/477/events + html_url: https://github.com/packit/ogr/pull/477 + id: 717605937 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -50412,121 +63972,169 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed + - color: 7cf4be default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/386/labels{/name} + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/477/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDA0MTc5NDE0 - number: 386 + node_id: MDExOlB1bGxSZXF1ZXN0NTAwMTM5MzYx + number: 477 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/386.diff - html_url: https://github.com/packit/ogr/pull/386 - patch_url: https://github.com/packit/ogr/pull/386.patch - url: https://api.github.com/repos/packit/ogr/pulls/386 + diff_url: https://github.com/packit/ogr/pull/477.diff + html_url: https://github.com/packit/ogr/pull/477 + patch_url: https://github.com/packit/ogr/pull/477.patch + url: https://api.github.com/repos/packit/ogr/pulls/477 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.11.2 release - updated_at: '2020-04-16T09:54:56Z' - url: https://api.github.com/repos/packit/ogr/issues/386 + title: Return `None` for user's email in Pagure + updated_at: '2020-10-12T12:23:41Z' + url: https://api.github.com/repos/packit/ogr/issues/477 user: - avatar_url: https://avatars1.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} + 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/usercont-release-bot - id: 36231209 - login: usercont-release-bot - node_id: MDQ6VXNlcjM2MjMxMjA5 - organizations_url: https://api.github.com/users/usercont-release-bot/orgs - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos 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 + 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/usercont-release-bot + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Flags on PRs are specific to Pagure.\r\n\r\nOther forges allow\ - \ setting flags/statuses only on commits and will\r\ndisplay the flags\ - \ for the PR head on the PR page, if any is set.\r\n\r\nDue to the above\ - \ this method is added only to PagurePullRequests, and we\r\nexpect\ - \ OGR library users to implement the \"show the flags of the last\r\n\ - commit for the PR\" behaviour for Pagure, in case they need it.\r\n\r\ - \nSigned-off-by: Hunor Csomort\xE1ni " - closed_at: '2020-04-16T07:44:45Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/381/comments - created_at: '2020-04-15T15:15:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/381/events - html_url: https://github.com/packit/ogr/pull/381 - id: 600376230 + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: COLLABORATOR + body: "We have `get_username` method in GitUser class. At the moment we\ + \ are missing method `get_email` for both ~~Github~~ and Pagure services.\r\ + \n\r\n-----\r\n\r\n- [x] GitHub\r\n- [x] GitLab\r\n- [ ] Pagure" + closed_at: '2020-10-12T12:16:21Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/126/comments + created_at: '2019-07-18T07:56:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/126/events + html_url: https://github.com/packit/ogr/issues/126 + id: 469623000 labels: - - color: 0e8a16 + - color: 1d76db default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/381/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/126/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzODIzNTY4 - number: 381 + node_id: MDU6SXNzdWU0Njk2MjMwMDA= + number: 126 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/381.diff - html_url: https://github.com/packit/ogr/pull/381 - patch_url: https://github.com/packit/ogr/pull/381.patch - url: https://api.github.com/repos/packit/ogr/pulls/381 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Set PR flags in Pagure - updated_at: '2020-04-16T07:46:43Z' - url: https://api.github.com/repos/packit/ogr/issues/381 + title: get_email for GitUser + updated_at: '2020-10-12T12:16:21Z' + url: https://api.github.com/repos/packit/ogr/issues/126 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/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 - received_events_url: https://api.github.com/users/csomh/received_events - repos_url: https://api.github.com/users/csomh/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/csomh/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/csomh/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/csomh + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-04-16T07:14:48Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/380/comments - created_at: '2020-04-15T13:00:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/380/events - html_url: https://github.com/packit/ogr/pull/380 - id: 600279414 + body: '- Add description argument to all `project_create` methods.' + closed_at: '2020-10-12T08:13:58Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/476/comments + created_at: '2020-10-07T14:28:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/476/events + html_url: https://github.com/packit/ogr/pull/476 + id: 716582560 labels: - color: 0e8a16 default: false @@ -50535,144 +64143,162 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/380/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/476/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzNzQ1MDM3 - number: 380 + node_id: MDExOlB1bGxSZXF1ZXN0NDk5MjkzOTk4 + number: 476 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/380.diff - html_url: https://github.com/packit/ogr/pull/380 - patch_url: https://github.com/packit/ogr/pull/380.patch - url: https://api.github.com/repos/packit/ogr/pulls/380 + diff_url: https://github.com/packit/ogr/pull/476.diff + html_url: https://github.com/packit/ogr/pull/476 + patch_url: https://github.com/packit/ogr/pull/476.patch + url: https://api.github.com/repos/packit/ogr/pulls/476 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove test jobs from zuul gating jobs - updated_at: '2020-04-16T07:14:48Z' - url: https://api.github.com/repos/packit/ogr/issues/380 + title: Unify project_create method + updated_at: '2020-10-12T08:47:46Z' + url: https://api.github.com/repos/packit/ogr/issues/476 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: added CentOS prod/stg instances to pagure service - closed_at: '2020-04-15T14:44:22Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/379/comments - created_at: '2020-04-15T08:59:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/379/events - html_url: https://github.com/packit/ogr/pull/379 - id: 600137338 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `The distgit repository /tmp/packit-dist-git9pvi9zgh is dirty.This + is not supported.` | + + | `f32` | `The distgit repository /tmp/packit-dist-git9pvi9zgh is dirty.This + is not supported.` | + + | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.13.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-06T12:06:10Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/448/comments + created_at: '2020-08-07T09:12:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/448/events + html_url: https://github.com/packit/ogr/issues/448 + id: 674879684 labels: - - color: 18e033 + - color: '000000' default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/379/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/448/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAzNjMwOTAx - number: 379 + node_id: MDU6SXNzdWU2NzQ4Nzk2ODQ= + number: 448 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/379.diff - html_url: https://github.com/packit/ogr/pull/379 - patch_url: https://github.com/packit/ogr/pull/379.patch - url: https://api.github.com/repos/packit/ogr/pulls/379 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: added CentOS prod/stg instances to pagure service - updated_at: '2020-04-15T14:44:22Z' - url: https://api.github.com/repos/packit/ogr/issues/379 + title: '[packit] Propose update failed for release 0.13.0' + updated_at: '2020-10-06T12:06:10Z' + url: https://api.github.com/repos/packit/ogr/issues/448 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D _next: null - elapsed: 0.2 + elapsed: 0.405797 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:01:49 GMT + ETag: W/"363ce9f879f2ad27239190406a5ec264598c45445031fa4abca54fa1a88e36c9" Link: ; rel="prev", ; - rel="next", ; + rel="next", ; rel="last", ; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78EF04:1333768:6075DC8C + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4387' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '613' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=5: - metadata: - latency: 0.5515000820159912 + latency: 0.3710770606994629 module_call_list: - unittest.case - requre.online_replacing @@ -50692,146 +64318,95 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: 'Add datetime to commit flags #344' - closed_at: '2020-04-14T16:09:59Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/374/comments - created_at: '2020-04-08T13:34:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/374/events - html_url: https://github.com/packit/ogr/pull/374 - id: 596583247 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/374/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-10-01T08:40:05Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/475/comments + created_at: '2020-09-30T19:27:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/475/events + html_url: https://github.com/packit/ogr/issues/475 + id: 712218395 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/475/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAwODUyNzQ0 - number: 374 + node_id: MDU6SXNzdWU3MTIyMTgzOTU= + number: 475 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/374.diff - html_url: https://github.com/packit/ogr/pull/374 - patch_url: https://github.com/packit/ogr/pull/374.patch - url: https://api.github.com/repos/packit/ogr/pulls/374 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add datetime to commitflags - updated_at: '2020-04-14T16:09:59Z' - url: https://api.github.com/repos/packit/ogr/issues/374 + title: '[packit] Propose update failed for release 0.16.0' + updated_at: '2020-10-01T08:40:06Z' + url: https://api.github.com/repos/packit/ogr/issues/475 user: - avatar_url: https://avatars1.githubusercontent.com/u/21237576?v=4 - events_url: https://api.github.com/users/TomasJani/events{/privacy} - followers_url: https://api.github.com/users/TomasJani/followers - following_url: https://api.github.com/users/TomasJani/following{/other_user} - gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/TomasJani - id: 21237576 - login: TomasJani - node_id: MDQ6VXNlcjIxMjM3NTc2 - organizations_url: https://api.github.com/users/TomasJani/orgs - received_events_url: https://api.github.com/users/TomasJani/received_events - repos_url: https://api.github.com/users/TomasJani/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasJani/subscriptions - type: User - url: https://api.github.com/users/TomasJani + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: PaureProject.get_files() not implemented. Maybe not possible because - pagure api doesnt provide any possiblity to get repository content. - closed_at: '2020-04-14T09:13:43Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/377/comments - created_at: '2020-04-14T07:44:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/377/events - html_url: https://github.com/packit/ogr/issues/377 - id: 599365195 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Update contribution guide\n\ + * Refactor Pagure and factory tests\n* Refactor GitLab tests\n* Refactor\ + \ GitHub tests\n* this is first draft how new tests could look like\n\ + * Add badge for pre-commit and black to README\n* Refactor `parse_git_repo`\n\ + * Use parenthesis for lru_cache decorator\n* Add hostname property to\ + \ service class\n* Fix inheritance of GitlabService from BaseGitService\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.16.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-09-30T19:24:44Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/474/comments + created_at: '2020-09-30T09:37:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/474/events + html_url: https://github.com/packit/ogr/pull/474 + id: 711793587 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: cfd3d7 - default: true - description: This issue or pull request already exists - id: 1160311263 - name: duplicate - node_id: MDU6TGFiZWwxMTYwMzExMjYz - url: https://api.github.com/repos/packit/ogr/labels/duplicate - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: ff9990 + - color: ededed default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - labels_url: https://api.github.com/repos/packit/ogr/issues/377/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1OTkzNjUxOTU= - number: 377 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: PaureProject.get_files() not implemented - updated_at: '2020-04-14T09:13:43Z' - url: https://api.github.com/repos/packit/ogr/issues/377 - user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos - site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'the "errors" may not be set - - - Fixes #334' - closed_at: '2020-04-09T11:55:55Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/375/comments - created_at: '2020-04-09T10:00:07Z' - events_url: https://api.github.com/repos/packit/ogr/issues/375/events - html_url: https://github.com/packit/ogr/pull/375 - id: 597167333 - labels: + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -50839,120 +64414,91 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 + - color: ededed default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/375/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/474/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAxMzI4NDE2 - number: 375 + node_id: MDExOlB1bGxSZXF1ZXN0NDk1MzgxMTcx + number: 474 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/375.diff - html_url: https://github.com/packit/ogr/pull/375 - patch_url: https://github.com/packit/ogr/pull/375.patch - url: https://api.github.com/repos/packit/ogr/pulls/375 + diff_url: https://github.com/packit/ogr/pull/474.diff + html_url: https://github.com/packit/ogr/pull/474 + patch_url: https://github.com/packit/ogr/pull/474.patch + url: https://api.github.com/repos/packit/ogr/pulls/474 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: print pagure API errors properly - updated_at: '2020-04-09T11:58:14Z' - url: https://api.github.com/repos/packit/ogr/issues/375 + title: 0.16.0 release + updated_at: '2020-09-30T19:26:46Z' + url: https://api.github.com/repos/packit/ogr/issues/474 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - author_association: MEMBER - body: "edited by @lachmanfrantisek :\r\n\r\nTODO:\r\n- Add tests for https://github.com/packit-service/ogr/pull/333\ - \ (better pagure error messages)\r\n - e.g. wrong URL, wrong token,\ - \ not-found object,..." - closed_at: '2020-04-09T11:55:54Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/334/comments - created_at: '2020-02-19T13:50:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/334/events - html_url: https://github.com/packit/ogr/issues/334 - id: 567583973 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Shoudn't be this working?\r\n\r\nconfig:\r\n```\r\nauthentication:\r\ + \n git.stg.centos.org:\r\n instance_url: https://git.stg.centos.org\r\ + \n token: ---token---\r\n type: pagure\r\n```\r\nerror:\r\n```\r\ + \nAuthentication for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ + \ is missing in the config.\r\nTraceback (most recent call last):\r\n\ + \ File \"/home/sakalosj/projects/packit/packit/config/config.py\",\ + \ line 203, in _get_project\r\n url=url, custom_instances=self.services,\ + \ **get_project_kwargs\r\n File \"/home/sakalosj/projects/ogr/ogr/factory.py\"\ + , line 83, in get_project\r\n kls = get_service_class(url=url, service_mapping_update=service_mapping_update)\r\ + \n File \"/home/sakalosj/projects/ogr/ogr/factory.py\", line 144, in\ + \ get_service_class\r\n raise OgrException(\"No matching service\ + \ was found.\")\r\nogr.exceptions.OgrException: No matching service\ + \ was found.\r\n\r\nDuring handling of the above exception, another\ + \ exception occurred:\r\n\r\nTraceback (most recent call last):\r\n\ + \ File \"/home/sakalosj/projects/packit-service/tmp_local/runner.py\"\ + , line 63, in \r\n process_new_pr()\r\n File \"/home/sakalosj/projects/packit-service/tmp_local/runner.py\"\ + , line 22, in process_new_pr\r\n SteveJobs().process_message(event=new_pr,\ + \ source=\"centosmsg\")\r\n File \"/home/sakalosj/projects/packit-service/packit_service/worker/jobs.py\"\ + , line 320, in process_message\r\n if project:\r\n File \"/home/sakalosj/projects/packit/packit/config/config.py\"\ + , line 208, in _get_project\r\n raise PackitConfigException(msg,\ + \ ex)\r\npackit.exceptions.PackitConfigException: (\"Authentication\ + \ for url 'https://git.stg.centos.org/source-git/packit-hello-world'\ + \ is missing in the config.\", OgrException('No matching service was\ + \ found.'))\r\n```" + closed_at: '2020-09-30T15:25:59Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/383/comments + created_at: '2020-04-15T21:50:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/383/events + html_url: https://github.com/packit/ogr/issues/383 + id: 600609280 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug - color: 42e529 default: false description: This issue was already processed and well defined. @@ -50960,19 +64506,20 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/334/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/383/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1Njc1ODM5NzM= - number: 334 + node_id: MDU6SXNzdWU2MDA2MDkyODA= + number: 383 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve pagure unit tests - updated_at: '2020-04-09T11:55:54Z' - url: https://api.github.com/repos/packit/ogr/issues/334 + title: Initializing service via get_instances_from_dict() not working + as expected + updated_at: '2020-09-30T15:25:59Z' + url: https://api.github.com/repos/packit/ogr/issues/383 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -50994,126 +64541,920 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #334' - closed_at: '2020-04-09T09:43:45Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/373/comments - created_at: '2020-04-07T09:08:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/373/events - html_url: https://github.com/packit/ogr/pull/373 - id: 595713934 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/373/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0NDAwMTM4Nzgx - number: 373 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/373.diff - html_url: https://github.com/packit/ogr/pull/373 - patch_url: https://github.com/packit/ogr/pull/373.patch - url: https://api.github.com/repos/packit/ogr/pulls/373 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'pagure: errors may be not set, add tests' - updated_at: '2020-04-09T09:43:45Z' - url: https://api.github.com/repos/packit/ogr/issues/373 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: FIRST_TIMER - body: "Fixes #339 \r\nPagure's API allows [pagination with 100 issues\ - \ per page](https://pagure.io/api/0/#issues), this code iterates though\ - \ issues pages until reaching either max issues (default 1000) or last\ - \ issue.\r\n" - closed_at: '2020-04-07T12:06:30Z' - comments: 17 - comments_url: https://api.github.com/repos/packit/ogr/issues/361/comments - created_at: '2020-03-23T14:55:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/361/events - html_url: https://github.com/packit/ogr/pull/361 - id: 586272328 + body: "There are many warnings and errors when running `mypy` in a strict\ + \ mode. Each error can mean potentially problematic part of the code.\ + \ (The goal is to make the code better, not only to silence the mypy.)\ + \ \r\n\r\nIt would be nice to reduce the number of errors/warnings.\r\ + \n\r\nWhat you can do:\r\n- Run the mypy on the code:\r\n ```sh\r\n\ + \ mypy ogr --strict\r\n ```\r\n- pick an error/warning\r\n- try to\ + \ fix the problem which can mean\r\n - adding a type annotation\r\n\ + \ - changing the type annotation\r\n - adding some test for the input\ + \ and raising a propper exception\r\n - something else\r\n- send a\ + \ PR with the fix or raise an issue if you found some problem, that\ + \ cannot be easily fixed\r\n\r\nThis does not need to be done in one\ + \ PR. Also, one fixed error can be useful to us.\r\n\r\n
\r\n\ + 'mypy ogr --strict' output\r\n\r\n```\r\n$ mypy ogr\ + \ --strict\r\nogr/deprecation.py:23: error: Cannot find implementation\ + \ or library stub for module named 'deprecated'\r\nogr/deprecation.py:26:\ + \ error: Function is missing a type annotation\r\nogr/services/github/auth_providers/abstract.py:6:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/auth_providers/abstract.py:6: note:\ + \ See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports\r\ + \nogr/services/github/auth_providers/abstract.py:32: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/parsing.py:99:\ + \ error: Function is missing a return type annotation\r\nogr/parsing.py:155:\ + \ error: Argument 1 to \"RepoUrl\" has incompatible type \"None\"; expected\ + \ \"str\"\r\nogr/services/github/auth_providers/token.py:6: error: Cannot\ + \ find implementation or library stub for module named 'github'\r\n\ + ogr/services/github/auth_providers/token.py:12: error: Function is missing\ + \ a type annotation for one or more arguments\r\nogr/services/github/auth_providers/token.py:35:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/auth_providers/token.py:35: error: Incompatible\ + \ default for argument \"token\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:7:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/auth_providers/github_app.py:26: error:\ + \ Returning Any from function declared to return \"bool\"\r\nogr/services/github/auth_providers/github_app.py:61:\ + \ error: Incompatible return value type (got \"None\", expected \"str\"\ + )\r\nogr/services/github/auth_providers/github_app.py:76: error: Incompatible\ + \ return value type (got \"None\", expected \"str\")\r\nogr/services/github/auth_providers/github_app.py:87:\ + \ error: unused 'type: ignore' comment\r\nogr/services/github/auth_providers/github_app.py:94:\ + \ error: unused 'type: ignore' comment\r\nogr/services/github/auth_providers/github_app.py:95:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/auth_providers/github_app.py:98: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/github/auth_providers/github_app.py:99:\ + \ error: Incompatible default for argument \"github_app_id\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:100:\ + \ error: Incompatible default for argument \"github_app_private_key\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/auth_providers/github_app.py:101:\ + \ error: Incompatible default for argument \"github_app_private_key_path\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/abstract.py:34:\ + \ error: Module 'functools' has no attribute 'cached_property'\r\nogr/abstract.py:82:\ + \ error: Function is missing a return type annotation\r\nogr/abstract.py:103:\ + \ error: Incompatible return value type (got \"Optional[datetime]\"\ + , expected \"datetime\")\r\nogr/abstract.py:107: error: Incompatible\ + \ return value type (got \"Optional[datetime]\", expected \"datetime\"\ + )\r\nogr/abstract.py:113: error: Incompatible return value type (got\ + \ \"Optional[Any]\", expected \"Issue\")\r\nogr/abstract.py:122: error:\ + \ Incompatible return value type (got \"Optional[Any]\", expected \"\ + PullRequest\")\r\nogr/abstract.py:172: error: Missing type parameters\ + \ for generic type \"List\"\r\nogr/abstract.py:244: error: Incompatible\ + \ default for argument \"filter_regex\" (default has type \"None\",\ + \ argument has type \"str\")\r\nogr/abstract.py:244: error: Incompatible\ + \ default for argument \"author\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/abstract.py:299: error: Call to untyped function\ + \ \"deprecate_and_set_removal\" in typed context\r\nogr/abstract.py:299:\ + \ error: Untyped decorator makes function \"__init__\" untyped\r\nogr/abstract.py:420:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:751:\ + \ error: Untyped decorator makes function \"hostname\" untyped\r\nogr/abstract.py:1204:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:1224:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:1373:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/read_only.py:52:\ + \ error: Missing type parameters for generic type \"Callable\"\r\nogr/read_only.py:66:\ + \ error: Function is missing a type annotation\r\nogr/read_only.py:68:\ + \ error: Function is missing a type annotation\r\nogr/read_only.py:165:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/read_only.py:165: error: Untyped decorator makes function\ + \ \"pr_create\" untyped\r\nogr/read_only.py:177: error: Incompatible\ + \ default for argument \"fork_username\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/read_only.py:195: error: Incompatible\ + \ default for argument \"fork_username\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/read_only.py:215: error: Incompatible\ + \ default for argument \"commit\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/read_only.py:216: error: Incompatible default\ + \ for argument \"filename\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/read_only.py:217: error: Incompatible default\ + \ for argument \"row\" (default has type \"None\", argument has type\ + \ \"int\")\r\nogr/read_only.py:233: error: Returning Any from function\ + \ declared to return \"PullRequest\"\r\nogr/read_only.py:239: error:\ + \ Returning Any from function declared to return \"PullRequest\"\r\n\ + ogr/read_only.py:257: error: Returning Any from function declared to\ + \ return \"GitProject\"\r\nogr/factory.py:33: error: Function is missing\ + \ a return type annotation\r\nogr/factory.py:33: error: Function is\ + \ missing a type annotation for one or more arguments\r\nogr/factory.py:57:\ + \ error: Function is missing a type annotation\r\nogr/factory.py:59:\ + \ error: Function is missing a return type annotation\r\nogr/factory.py:65:\ + \ error: Call to untyped function \"decorator_cover\" in typed context\r\ + \nogr/factory.py:68: error: Function is missing a type annotation for\ + \ one or more arguments\r\nogr/factory.py:70: error: Incompatible default\ + \ for argument \"service_mapping_update\" (default has type \"None\"\ + , argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:71:\ + \ error: Incompatible default for argument \"custom_instances\" (default\ + \ has type \"None\", argument has type \"Iterable[GitService]\")\r\n\ + ogr/factory.py:86: error: Invalid index type \"Optional[str]\" for \"\ + Dict[str, Type[GitService]]\"; expected type \"str\"\r\nogr/factory.py:95:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + hostname\"\r\nogr/factory.py:105: error: Item \"None\" of \"Optional[RepoUrl]\"\ + \ has no attribute \"get_instance_url\"\r\nogr/factory.py:110: error:\ + \ Incompatible default for argument \"service_mapping_update\" (default\ + \ has type \"None\", argument has type \"Dict[str, Type[GitService]]\"\ + )\r\nogr/factory.py:132: error: Incompatible default for argument \"\ + service_mapping_update\" (default has type \"None\", argument has type\ + \ \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:149: error: Implicit\ + \ generic \"Any\". Use \"typing.Dict\" and specify generic parameters\r\ + \nogr/services/gitlab/comments.py:26: error: Cannot find implementation\ + \ or library stub for module named 'gitlab.v4.objects'\r\nogr/services/gitlab/comments.py:41:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/comments.py:50: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/comments.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.IssueComment'\r\nogr/services/github/comments.py:27: error:\ + \ Cannot find implementation or library stub for module named 'github.PullRequestComment'\r\ + \nogr/services/github/comments.py:42: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/comments.py:50:\ + \ error: Returning Any from function declared to return \"datetime\"\ + \r\nogr/services/github/auth_providers/tokman.py:7: error: Cannot find\ + \ implementation or library stub for module named 'github'\r\nogr/services/github/auth_providers/tokman.py:39:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/auth_providers/tokman.py:42: error: Function is\ + \ missing a type annotation for one or more arguments\r\nogr/services/github/auth_providers/tokman.py:42:\ + \ error: Incompatible default for argument \"tokman_instance_url\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:46:\ + \ error: Module 'functools' has no attribute 'cached_property'\r\nogr/services/base.py:55:\ + \ error: Untyped decorator makes function \"hostname\" untyped\r\nogr/services/base.py:60:\ + \ error: Argument \"potential_url\" to \"parse_git_repo\" has incompatible\ + \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/base.py:81:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:81: error: Untyped decorator makes\ + \ function \"get_pr_comments\" untyped\r\nogr/services/base.py:86: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/base.py:87: error: Incompatible default for argument \"\ + filter_regex\" (default has type \"None\", argument has type \"str\"\ + )\r\nogr/services/base.py:87: error: Incompatible default for argument\ + \ \"author\" (default has type \"None\", argument has type \"str\")\r\ + \nogr/services/base.py:100: error: Call to untyped function \"deprecate_and_set_removal\"\ + \ in typed context\r\nogr/services/base.py:100: error: Untyped decorator\ + \ makes function \"search_in_pr\" untyped\r\nogr/services/base.py:123:\ + \ error: Untyped decorator makes function \"pr_close\" untyped\r\nogr/services/base.py:124:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:124: error: Untyped decorator makes\ + \ function \"pr_close\" untyped\r\nogr/services/base.py:132: error:\ + \ Untyped decorator makes function \"pr_merge\" untyped\r\nogr/services/base.py:133:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:133: error: Untyped decorator makes\ + \ function \"pr_merge\" untyped\r\nogr/services/base.py:141: error:\ + \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:141: error: Untyped decorator makes function\ + \ \"get_pr_labels\" untyped\r\nogr/services/base.py:149: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:149: error: Untyped decorator makes function\ + \ \"add_pr_labels\" untyped\r\nogr/services/base.py:157: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:157: error: Untyped decorator makes function\ + \ \"get_pr_info\" untyped\r\nogr/services/base.py:165: error: Call to\ + \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ + ogr/services/base.py:165: error: Untyped decorator makes function \"\ + update_pr_info\" untyped\r\nogr/services/base.py:175: error: Call to\ + \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ + ogr/services/base.py:175: error: Untyped decorator makes function \"\ + get_all_pr_commits\" untyped\r\nogr/services/base.py:183: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:183: error: Untyped decorator makes function\ + \ \"_get_all_pr_comments\" untyped\r\nogr/services/base.py:191: error:\ + \ Untyped decorator makes function \"pr_comment\" untyped\r\nogr/services/base.py:195:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:195: error: Untyped decorator makes\ + \ function \"pr_comment\" untyped\r\nogr/services/base.py:204: error:\ + \ Incompatible default for argument \"commit\" (default has type \"\ + None\", argument has type \"str\")\r\nogr/services/base.py:205: error:\ + \ Incompatible default for argument \"filename\" (default has type \"\ + None\", argument has type \"str\")\r\nogr/services/base.py:206: error:\ + \ Incompatible default for argument \"row\" (default has type \"None\"\ + , argument has type \"int\")\r\nogr/services/base.py:210: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:210: error: Untyped decorator makes function\ + \ \"get_issue_comments\" untyped\r\nogr/services/base.py:215: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/base.py:218: error: Incompatible default for argument \"\ + filter_regex\" (default has type \"None\", argument has type \"str\"\ + )\r\nogr/services/base.py:220: error: Incompatible default for argument\ + \ \"author\" (default has type \"None\", argument has type \"str\")\r\ + \nogr/services/base.py:224: error: Call to untyped function \"deprecate_and_set_removal\"\ + \ in typed context\r\nogr/services/base.py:224: error: Untyped decorator\ + \ makes function \"pr_create\" untyped\r\nogr/services/base.py:235:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:245:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:245: error: Untyped decorator makes\ + \ function \"can_close_issue\" untyped\r\nogr/services/base.py:253:\ + \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ + \ context\r\nogr/services/base.py:253: error: Untyped decorator makes\ + \ function \"get_issue_info\" untyped\r\nogr/services/base.py:261: error:\ + \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:261: error: Untyped decorator makes function\ + \ \"_get_all_issue_comments\" untyped\r\nogr/services/base.py:269: error:\ + \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:269: error: Untyped decorator makes function\ + \ \"issue_comment\" untyped\r\nogr/services/base.py:277: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:277: error: Untyped decorator makes function\ + \ \"issue_close\" untyped\r\nogr/services/base.py:285: error: Call to\ + \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ + ogr/services/base.py:285: error: Untyped decorator makes function \"\ + get_issue_labels\" untyped\r\nogr/services/base.py:293: error: Call\ + \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ + \nogr/services/base.py:293: error: Untyped decorator makes function\ + \ \"add_issue_labels\" untyped\r\nogr/services/base.py:367: error: Function\ + \ is missing a return type annotation\r\nogr/services/base.py:367: error:\ + \ Argument 1 of \"get_comments\" is incompatible with supertype \"PullRequest\"\ + ; supertype defines the argument type as \"Optional[str]\"\r\nogr/services/base.py:367:\ + \ error: Argument 3 of \"get_comments\" is incompatible with supertype\ + \ \"PullRequest\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/base.py:368: error: Incompatible default for argument\ + \ \"filter_regex\" (default has type \"None\", argument has type \"\ + str\")\r\nogr/services/base.py:368: error: Incompatible default for\ + \ argument \"author\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/base.py:373: error: Function is missing a\ + \ return type annotation\r\nogr/services/base.py:397: error: Incompatible\ + \ default for argument \"filter_regex\" (default has type \"None\",\ + \ argument has type \"str\")\r\nogr/services/base.py:397: error: Incompatible\ + \ default for argument \"author\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/pagure/release.py:28: error: Name\ + \ 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:37:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:42:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/release.py:46:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:38:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:39:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:41:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/pull_request.py:45:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:45:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/pull_request.py:52:\ + \ error: Call to untyped function \"__update\" in typed context\r\n\ + ogr/services/pagure/pull_request.py:53: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:61:\ + \ error: Returning Any from function declared to return \"int\"\r\n\ + ogr/services/pagure/pull_request.py:65: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:72:\ + \ error: List item 0 has incompatible type \"Optional[str]\"; expected\ + \ \"str\"\r\nogr/services/pagure/pull_request.py:81: error: Call to\ + \ untyped function \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:82:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/pull_request.py:90: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:94:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/pull_request.py:98: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:117:\ + \ error: Returning Any from function declared to return \"bytes\"\r\n\ + ogr/services/pagure/pull_request.py:121: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:124:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:145:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/pull_request.py:145: error: Implicit generic \"\ + Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/pull_request.py:146:\ + \ error: Returning Any from function declared to return \"Dict[Any,\ + \ Any]\"\r\nogr/services/pagure/pull_request.py:152: error: Name 'ogr_pagure.PagureProject'\ + \ is not defined\r\nogr/services/pagure/pull_request.py:157: error:\ + \ Incompatible default for argument \"fork_username\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/pull_request.py:178:\ + \ error: Returning Any from function declared to return \"PullRequest\"\ + \r\nogr/services/pagure/pull_request.py:178: error: Call to untyped\ + \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:181:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:183:\ + \ error: Returning Any from function declared to return \"PullRequest\"\ + \r\nogr/services/pagure/pull_request.py:183: error: Call to untyped\ + \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:186:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/pull_request.py:187: error: Name 'ogr_pagure.PagureProject'\ + \ is not defined\r\nogr/services/pagure/pull_request.py:199: error:\ + \ Call to untyped function \"PagurePullRequest\" in typed context\r\n\ + ogr/services/pagure/pull_request.py:219: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:266:\ + \ error: Call to untyped function \"__update\" in typed context\r\n\ + ogr/services/pagure/pull_request.py:277: error: Implicit generic \"\ + Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/issue.py:34:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:36:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/issue.py:40:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/issue.py:40:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/issue.py:47:\ + \ error: Call to untyped function \"__update\" in typed context\r\n\ + ogr/services/pagure/issue.py:48: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/issue.py:56: error:\ + \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:57:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/pagure/issue.py:61: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/pagure/issue.py:65: error:\ + \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:70:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/issue.py:76: error: Call to untyped function \"\ + __update\" in typed context\r\nogr/services/pagure/issue.py:77: error:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/pagure/issue.py:85:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/issue.py:93: error: Returning Any from function\ + \ declared to return \"List[str]\"\r\nogr/services/pagure/issue.py:118:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:132:\ + \ error: Returning Any from function declared to return \"Issue\"\r\n\ + ogr/services/pagure/issue.py:132: error: Call to untyped function \"\ + PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:135:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:137:\ + \ error: Returning Any from function declared to return \"Issue\"\r\n\ + ogr/services/pagure/issue.py:137: error: Call to untyped function \"\ + PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:141:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:168:\ + \ error: Call to untyped function \"PagureIssue\" in typed context\r\ + \nogr/services/pagure/issue.py:171: error: Call to untyped function\ + \ \"__update\" in typed context\r\nogr/services/pagure/flag.py:44: error:\ + \ Function is missing a return type annotation\r\nogr/services/pagure/flag.py:44:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/flag.py:45:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:46:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:47:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:48:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:49:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:52:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:61:\ + \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:67:\ + \ error: Incompatible default for argument \"percent\" (default has\ + \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/flag.py:69:\ + \ error: Incompatible default for argument \"uid\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/flag.py:97:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:103:\ + \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/project.py:58:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:64:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:65:\ + \ error: Incompatible default for argument \"username\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:68:\ + \ error: Argument 3 to \"__init__\" of \"GitProject\" has incompatible\ + \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/pagure/project.py:75:\ + \ error: Incompatible types in assignment (expression has type \"Optional[str]\"\ + , variable has type \"str\")\r\nogr/services/pagure/project.py:102:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/project.py:107: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/project.py:108: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/project.py:108:\ + \ error: Incompatible default for argument \"params\" (default has type\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:109:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/project.py:109: error: Incompatible\ + \ default for argument \"data\" (default has type \"None\", argument\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:110:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/project.py:122: error: Call to untyped\ + \ function \"_get_project_url\" in typed context\r\nogr/services/pagure/project.py:128:\ + \ error: Returning Any from function declared to return \"Dict[Any,\ + \ Any]\"\r\nogr/services/pagure/project.py:132: error: Function is missing\ + \ a type annotation for one or more arguments\r\nogr/services/pagure/project.py:137:\ + \ error: Incompatible default for argument \"method\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:138:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/project.py:138: error: Incompatible\ + \ default for argument \"params\" (default has type \"None\", argument\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:139:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/project.py:139: error: Incompatible\ + \ default for argument \"data\" (default has type \"None\", argument\ + \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:152:\ + \ error: Call to untyped function \"_get_project_url\" in typed context\r\ + \nogr/services/pagure/project.py:158: error: Returning Any from function\ + \ declared to return \"RequestResponse\"\r\nogr/services/pagure/project.py:162:\ + \ error: Function is missing a type annotation\r\nogr/services/pagure/project.py:163:\ + \ error: Need type annotation for 'additional_parts' (hint: \"additional_parts:\ + \ List[] = ...\")\r\nogr/services/pagure/project.py:174: error:\ + \ Function is missing a return type annotation\r\nogr/services/pagure/project.py:179:\ + \ error: Returning Any from function declared to return \"List[str]\"\ + \r\nogr/services/pagure/project.py:182: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/project.py:182:\ + \ error: Call to untyped function \"get_project_info\" in typed context\r\ + \nogr/services/pagure/project.py:185: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:186:\ + \ error: Returning Any from function declared to return \"List[str]\"\ + \r\nogr/services/pagure/project.py:190: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:199:\ + \ error: Call to untyped function \"get_project_info\" in typed context\r\ + \nogr/services/pagure/project.py:205: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/project.py:208:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/project.py:208:\ + \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/project.py:236:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/project.py:246: error: Untyped decorator makes\ + \ function \"create_pr\" untyped\r\nogr/services/pagure/project.py:253:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:263:\ + \ error: Untyped decorator makes function \"fork_create\" untyped\r\n\ + ogr/services/pagure/project.py:295: error: Call to untyped function\ + \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:301:\ + \ error: Returning Any from function declared to return \"Optional[PagureProject]\"\ + \r\nogr/services/pagure/project.py:310: error: Function is missing a\ + \ return type annotation\r\nogr/services/pagure/project.py:342: error:\ + \ Call to untyped function \"exists\" in typed context\r\nogr/services/pagure/project.py:342:\ + \ error: Item \"None\" of \"Optional[PagureProject]\" has no attribute\ + \ \"exists\"\r\nogr/services/pagure/project.py:345: error: Call to untyped\ + \ function \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:359:\ + \ error: Call to untyped function \"get_project_info\" in typed context\r\ + \nogr/services/pagure/project.py:366: error: Returning Any from function\ + \ declared to return \"Dict[str, str]\"\r\nogr/services/pagure/project.py:378:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/project.py:388:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/project.py:420: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/project.py:438:\ + \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ + \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/pagure/project.py:438: error: Argument 4 of \"commit_comment\"\ + \ is incompatible with supertype \"GitProject\"; supertype defines the\ + \ argument type as \"Optional[int]\"\r\nogr/services/pagure/project.py:439:\ + \ error: Incompatible default for argument \"filename\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:439:\ + \ error: Incompatible default for argument \"row\" (default has type\ + \ \"None\", argument has type \"int\")\r\nogr/services/pagure/project.py:443:\ + \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ + \nogr/services/pagure/project.py:451: error: Incompatible default for\ + \ argument \"percent\" (default has type \"None\", argument has type\ + \ \"int\")\r\nogr/services/pagure/project.py:452: error: Incompatible\ + \ default for argument \"uid\" (default has type \"None\", argument\ + \ has type \"str\")\r\nogr/services/pagure/project.py:520: error: Call\ + \ to untyped function \"get_project_info\" in typed context\r\nogr/services/pagure/user.py:31:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/user.py:33:\ + \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/user.py:43:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/service.py:44: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/service.py:46:\ + \ error: Incompatible default for argument \"token\" (default has type\ + \ \"None\", argument has type \"str\")\r\nogr/services/pagure/service.py:88:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/pagure/service.py:99: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/pagure/service.py:110:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + repo\"\r\nogr/services/pagure/service.py:111: error: Item \"None\" of\ + \ \"Optional[RepoUrl]\" has no attribute \"namespace\"\r\nogr/services/pagure/service.py:112:\ + \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ + is_fork\"\r\nogr/services/pagure/service.py:113: error: Item \"None\"\ + \ of \"Optional[RepoUrl]\" has no attribute \"username\"\r\nogr/services/pagure/service.py:121:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/service.py:122: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/service.py:122: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:122:\ + \ error: Incompatible default for argument \"params\" (default has type\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:123:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/pagure/service.py:160: error: Returning\ + \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/service.py:162:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:162:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/service.py:163: error: Incompatible default for\ + \ argument \"method\" (default has type \"None\", argument has type\ + \ \"str\")\r\nogr/services/pagure/service.py:163: error: Implicit generic\ + \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:163:\ + \ error: Incompatible default for argument \"params\" (default has type\ + \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:176:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/pagure/service.py:204: error: Function is missing a return\ + \ type annotation\r\nogr/services/pagure/service.py:207: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:220:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/pagure/service.py:230: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/pagure/service.py:232:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:241:\ + \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:283:\ + \ error: Argument 2 to \"__handle_project_create_fail\" of \"PagureService\"\ + \ has incompatible type \"Optional[str]\"; expected \"str\"\r\nogr/services/gitlab/user.py:28:\ + \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:30:\ + \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:37:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/user.py:41:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/user.py:44: error: Returning Any from function declared\ + \ to return \"str\"\r\nogr/services/gitlab/release.py:30: error: Name\ + \ 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/release.py:32:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/gitlab/release.py:39: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/release.py:46: error: Function\ + \ is missing a return type annotation\r\nogr/services/gitlab/release.py:50:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/pull_request.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab.v4.objects'\r\nogr/services/gitlab/pull_request.py:37: error:\ + \ Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:38:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:42:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/pull_request.py:51: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/gitlab/pull_request.py:63:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/pull_request.py:67: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:76:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/pull_request.py:80: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:84:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/pull_request.py:88: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/gitlab/pull_request.py:92:\ + \ error: Returning Any from function declared to return \"List[str]\"\ + \r\nogr/services/gitlab/pull_request.py:100: error: Returning Any from\ + \ function declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:103:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:117:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:122:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/pull_request.py:169:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:170:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:190:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:196:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/issue.py:27: error: Cannot find implementation\ + \ or library stub for module named 'gitlab.v4.objects'\r\nogr/services/gitlab/issue.py:41:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/issue.py:50: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/gitlab/issue.py:54: error:\ + \ Returning Any from function declared to return \"bool\"\r\nogr/services/gitlab/issue.py:66:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/issue.py:70: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/issue.py:79: error:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/gitlab/issue.py:83:\ + \ error: Returning Any from function declared to return \"datetime\"\ + \r\nogr/services/gitlab/issue.py:86: error: Missing type parameters\ + \ for generic type \"List\"\r\nogr/services/gitlab/issue.py:87: error:\ + \ Returning Any from function declared to return \"List[Any]\"\r\nogr/services/gitlab/issue.py:94:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:107:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:115:\ + \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/flag.py:27:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/flag.py:53: error: Function is missing\ + \ a return type annotation\r\nogr/services/gitlab/flag.py:53: note:\ + \ Use \"-> None\" if function does not return a value\r\nogr/services/gitlab/flag.py:54:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"sha\"\ + \r\nogr/services/gitlab/flag.py:55: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"status\"\r\nogr/services/gitlab/flag.py:56: error:\ + \ Item \"None\" of \"Optional[Any]\" has no attribute \"name\"\r\nogr/services/gitlab/flag.py:57:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ + \r\nogr/services/gitlab/flag.py:58: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"id\"\r\nogr/services/gitlab/flag.py:59: error:\ + \ Item \"None\" of \"Optional[Any]\" has no attribute \"target_url\"\ + \r\nogr/services/gitlab/flag.py:62: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/flag.py:77: error: Name 'ogr_gitlab.GitlabProject'\ + \ is not defined\r\nogr/services/gitlab/flag.py:108: error: Item \"\ + None\" of \"Optional[Any]\" has no attribute \"created_at\"\r\nogr/services/gitlab/project.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'gitlab'\r\nogr/services/gitlab/project.py:27: error: Cannot find\ + \ implementation or library stub for module named 'gitlab.v4.objects'\r\ + \nogr/services/gitlab/project.py:54: error: Name 'ogr_gitlab.GitlabService'\ + \ is not defined\r\nogr/services/gitlab/project.py:56: error: Function\ + \ is missing a type annotation for one or more arguments\r\nogr/services/gitlab/project.py:59:\ + \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/project.py:129:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/gitlab/project.py:135: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:190:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/gitlab/project.py:256: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:267:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:278:\ + \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ + \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/gitlab/project.py:278: error: Argument 4 of \"commit_comment\"\ + \ is incompatible with supertype \"GitProject\"; supertype defines the\ + \ argument type as \"Optional[int]\"\r\nogr/services/gitlab/project.py:279:\ + \ error: Incompatible default for argument \"filename\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:279:\ + \ error: Incompatible default for argument \"row\" (default has type\ + \ \"None\", argument has type \"int\")\r\nogr/services/gitlab/project.py:364:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:370:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/gitlab/project.py:373: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/gitlab/project.py:378:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:449:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/gitlab/project.py:455: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:473:\ + \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:505:\ + \ error: Function is missing a type annotation\r\nogr/services/gitlab/project.py:517:\ + \ error: Call to untyped function \"_normalize_label_color\" in typed\ + \ context\r\nogr/services/gitlab/project.py:530: error: Function is\ + \ missing a type annotation\r\nogr/services/gitlab/project.py:536: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/gitlab/project.py:541: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:560:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/gitlab/service.py:23: error: Cannot find implementation\ + \ or library stub for module named 'gitlab'\r\nogr/services/gitlab/service.py:37:\ + \ error: Function is missing a type annotation\r\nogr/services/gitlab/service.py:75:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/gitlab/service.py:84: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/gitlab/service.py:104:\ + \ error: Argument 2 of \"project_create\" is incompatible with supertype\ + \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/gitlab/service.py:104: error: Incompatible default\ + \ for argument \"namespace\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/services/github/release.py:23: error: Cannot\ + \ find implementation or library stub for module named 'github.GitRelease'\r\ + \nogr/services/github/release.py:30: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/release.py:39: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/release.py:46: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/release.py:50:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/pull_request.py:27:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/pull_request.py:28: error: Cannot\ + \ find implementation or library stub for module named 'github.Label'\r\ + \nogr/services/github/pull_request.py:29: error: Cannot find implementation\ + \ or library stub for module named 'github.PullRequest'\r\nogr/services/github/pull_request.py:30:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.Repository'\r\nogr/services/github/pull_request.py:31: error:\ + \ Cannot find implementation or library stub for module named 'github.IssueComment'\r\ + \nogr/services/github/pull_request.py:32: error: Cannot find implementation\ + \ or library stub for module named 'github.PullRequestComment'\r\nogr/services/github/pull_request.py:45:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:46:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:50:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:58: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/github/pull_request.py:70:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:74: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/pull_request.py:82:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:86: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/pull_request.py:90:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:94: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/pull_request.py:106:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/pull_request.py:109: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/pull_request.py:124: error:\ + \ Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:129:\ + \ error: Incompatible default for argument \"fork_username\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/pull_request.py:166:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:172:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/issue.py:27: error: Cannot find implementation\ + \ or library stub for module named 'github.Issue'\r\nogr/services/github/issue.py:40:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:51:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/issue.py:59: error: Returning Any from function\ + \ declared to return \"int\"\r\nogr/services/github/issue.py:67: error:\ + \ Returning Any from function declared to return \"str\"\r\nogr/services/github/issue.py:71:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/issue.py:79: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/issue.py:83: error:\ + \ Returning Any from function declared to return \"datetime\"\r\nogr/services/github/issue.py:86:\ + \ error: Missing type parameters for generic type \"List\"\r\nogr/services/github/issue.py:94:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:106:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:112:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/flag.py:26:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/flag.py:44: error: Function is missing\ + \ a return type annotation\r\nogr/services/github/flag.py:44: note:\ + \ Use \"-> None\" if function does not return a value\r\nogr/services/github/flag.py:45:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"state\"\ + \r\nogr/services/github/flag.py:46: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"context\"\r\nogr/services/github/flag.py:47: error:\ + \ Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ + \r\nogr/services/github/flag.py:48: error: Item \"None\" of \"Optional[Any]\"\ + \ has no attribute \"target_url\"\r\nogr/services/github/flag.py:49:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"id\"\r\ + \nogr/services/github/flag.py:52: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/flag.py:67: error: Name 'ogr_github.GithubProject'\ + \ is not defined\r\nogr/services/github/flag.py:87: error: Returning\ + \ Any from function declared to return \"datetime\"\r\nogr/services/github/flag.py:87:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"created_at\"\ + \r\nogr/services/github/flag.py:91: error: Returning Any from function\ + \ declared to return \"datetime\"\r\nogr/services/github/flag.py:91:\ + \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"updated_at\"\ + \r\nogr/services/github/project.py:26: error: Cannot find implementation\ + \ or library stub for module named 'github'\r\nogr/services/github/project.py:28:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github.Repository'\r\nogr/services/github/project.py:29: error: Cannot\ + \ find implementation or library stub for module named 'github.CommitComment'\r\ + \nogr/services/github/project.py:30: error: Cannot find implementation\ + \ or library stub for module named 'github.GitRelease'\r\nogr/services/github/project.py:58:\ + \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/project.py:62:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/project.py:65: error: Name 'ogr_github.GithubService'\ + \ is not defined\r\nogr/services/github/project.py:82: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/project.py:91:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:133:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/github/project.py:150: error: Returning Any from function\ + \ declared to return \"bool\"\r\nogr/services/github/project.py:167:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/project.py:194: error: Function is missing a return\ + \ type annotation\r\nogr/services/github/project.py:194: note: Use \"\ + -> None\" if function does not return a value\r\nogr/services/github/project.py:213:\ + \ error: Returning Any from function declared to return \"Optional[GithubProject]\"\ + \r\nogr/services/github/project.py:248: error: Function is missing a\ + \ type annotation for one or more arguments\r\nogr/services/github/project.py:254:\ + \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ + \ parameters\r\nogr/services/github/project.py:302: error: Returning\ + \ Any from function declared to return \"str\"\r\nogr/services/github/project.py:312:\ + \ error: Untyped decorator makes function \"create_pr\" untyped\r\n\ + ogr/services/github/project.py:319: error: Incompatible default for\ + \ argument \"fork_username\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/services/github/project.py:330: error: Untyped\ + \ decorator makes function \"commit_comment\" untyped\r\nogr/services/github/project.py:335:\ + \ error: Incompatible default for argument \"filename\" (default has\ + \ type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:335:\ + \ error: Incompatible default for argument \"row\" (default has type\ + \ \"None\", argument has type \"int\")\r\nogr/services/github/project.py:355:\ + \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ + \nogr/services/github/project.py:359: error: Function is missing a return\ + \ type annotation\r\nogr/services/github/project.py:402: error: Untyped\ + \ decorator makes function \"fork_create\" untyped\r\nogr/services/github/project.py:411:\ + \ error: Returning Any from function declared to return \"GithubProject\"\ + \r\nogr/services/github/project.py:415: error: Function is missing a\ + \ return type annotation\r\nogr/services/github/project.py:418: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/project.py:420: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/project.py:427:\ + \ error: Incompatible default for argument \"filter_regex\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:498:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:505:\ + \ error: Function is missing a type annotation\r\nogr/services/github/project.py:516:\ + \ error: Call to untyped function \"_normalize_label_color\" in typed\ + \ context\r\nogr/services/github/project.py:525: error: Function is\ + \ missing a type annotation\r\nogr/services/github/project.py:530: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/project.py:534: error: Returning Any from function\ + \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:537:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/project.py:541: error: Returning Any from function\ + \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:544:\ + \ error: Function is missing a type annotation for one or more arguments\r\ + \nogr/services/github/project.py:553: error: Argument \"git_tag\" to\ + \ \"_release_from_github_object\" of \"GithubProject\" has incompatible\ + \ type \"Optional[GitTag]\"; expected \"GitTag\"\r\nogr/services/github/project.py:559:\ + \ error: Argument \"git_tag\" to \"_release_from_github_object\" of\ + \ \"GithubProject\" has incompatible type \"Optional[GitTag]\"; expected\ + \ \"GitTag\"\r\nogr/services/github/project.py:567: error: Argument\ + \ \"git_tag\" to \"_release_from_github_object\" of \"GithubProject\"\ + \ has incompatible type \"Optional[GitTag]\"; expected \"GitTag\"\r\n\ + ogr/services/github/project.py:596: error: Returning Any from function\ + \ declared to return \"str\"\r\nogr/services/github/user.py:31: error:\ + \ Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:33:\ + \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:40:\ + \ error: Function is missing a return type annotation\r\nogr/services/github/user.py:44:\ + \ error: Returning Any from function declared to return \"str\"\r\n\ + ogr/services/github/user.py:46: error: Return type \"Optional[str]\"\ + \ of \"get_email\" incompatible with return type \"str\" in supertype\ + \ \"GitUser\"\r\nogr/services/github/user.py:49: error: Returning Any\ + \ from function declared to return \"Optional[str]\"\r\nogr/services/github/user.py:58:\ + \ error: Returning Any from function declared to return \"Optional[str]\"\ + \r\nogr/services/github/user.py:61: error: Returning Any from function\ + \ declared to return \"Optional[str]\"\r\nogr/services/github/user.py:63:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/user.py:75:\ + \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/service.py:25:\ + \ error: Cannot find implementation or library stub for module named\ + \ 'github'\r\nogr/services/github/service.py:37: error: Module 'ogr.services.github.auth_providers'\ + \ has no attribute 'GithubAuthentication'\r\nogr/services/github/service.py:37:\ + \ error: Module 'ogr.services.github.auth_providers' has no attribute\ + \ 'TokenAuthentication'\r\nogr/services/github/service.py:37: error:\ + \ Module 'ogr.services.github.auth_providers' has no attribute 'GithubApp'\r\ + \nogr/services/github/service.py:37: error: Module 'ogr.services.github.auth_providers'\ + \ has no attribute 'Tokman'\r\nogr/services/github/service.py:52: error:\ + \ Function is missing a type annotation for one or more arguments\r\n\ + ogr/services/github/service.py:56: error: Incompatible default for argument\ + \ \"github_app_id\" (default has type \"None\", argument has type \"\ + str\")\r\nogr/services/github/service.py:57: error: Incompatible default\ + \ for argument \"github_app_private_key\" (default has type \"None\"\ + , argument has type \"str\")\r\nogr/services/github/service.py:58: error:\ + \ Incompatible default for argument \"github_app_private_key_path\"\ + \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:59:\ + \ error: Incompatible default for argument \"tokman_instance_url\" (default\ + \ has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:74:\ + \ error: Call to untyped function \"__set_authentication\" in typed\ + \ context\r\nogr/services/github/service.py:82: error: Function is missing\ + \ a type annotation\r\nogr/services/github/service.py:96: error: Function\ + \ is missing a return type annotation\r\nogr/services/github/service.py:113:\ + \ error: Returning Any from function declared to return \"bool\"\r\n\ + ogr/services/github/service.py:121: error: Function is missing a type\ + \ annotation for one or more arguments\r\nogr/services/github/service.py:152:\ + \ error: Argument 2 of \"project_create\" is incompatible with supertype\ + \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ + \r\nogr/services/github/service.py:152: error: Incompatible default\ + \ for argument \"namespace\" (default has type \"None\", argument has\ + \ type \"str\")\r\nogr/__init__.py:35: error: Module 'ogr.services.github'\ + \ has no attribute 'GithubService'\r\nogr/__init__.py:36: error: Module\ + \ 'ogr.services.gitlab' has no attribute 'GitlabService'\r\nogr/__init__.py:37:\ + \ error: Module 'ogr.services.pagure' has no attribute 'PagureService'\r\ + \nFound 512 errors in 34 files (checked 43 source files)\r\n```\r\n\ +
" + closed_at: null + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/251/comments + created_at: '2019-10-22T12:09:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/251/events + html_url: https://github.com/packit/ogr/issues/251 + id: 510612410 labels: - - color: 0e8a16 + - color: 134ac1 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/361/labels{/name} + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/251/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzkyNDM2NTcw - number: 361 + node_id: MDU6SXNzdWU1MTA2MTI0MTA= + number: 251 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/361.diff - html_url: https://github.com/packit/ogr/pull/361 - patch_url: https://github.com/packit/ogr/pull/361.patch - url: https://api.github.com/repos/packit/ogr/pulls/361 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Using pagination to retrieve pagure's full issue list - updated_at: '2020-04-07T12:06:30Z' - url: https://api.github.com/repos/packit/ogr/issues/361 + state: open + title: Strict mypy + updated_at: '2020-09-30T15:07:16Z' + url: https://api.github.com/repos/packit/ogr/issues/251 user: - avatar_url: https://avatars3.githubusercontent.com/u/28443421?v=4 - events_url: https://api.github.com/users/AdarLavi/events{/privacy} - followers_url: https://api.github.com/users/AdarLavi/followers - following_url: https://api.github.com/users/AdarLavi/following{/other_user} - gists_url: https://api.github.com/users/AdarLavi/gists{/gist_id} + 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/AdarLavi - id: 28443421 - login: AdarLavi - node_id: MDQ6VXNlcjI4NDQzNDIx - organizations_url: https://api.github.com/users/AdarLavi/orgs - received_events_url: https://api.github.com/users/AdarLavi/received_events - repos_url: https://api.github.com/users/AdarLavi/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/AdarLavi/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/AdarLavi/subscriptions + 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/AdarLavi + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "Currently using a Pagure service the get_issue_list method returns\ - \ only the last 20 issues of a project. This is because Pagure paginate\ - \ the results, I have not looked at GitHub and GitLab but I guess it\ - \ works the same.\r\n\r\nIdeally `get_issue_list` should return a list\ - \ of all the issues for a project and the pagination should be transparent\ - \ to the user." - closed_at: '2020-04-07T12:06:30Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/339/comments - created_at: '2020-02-21T13:47:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/339/events - html_url: https://github.com/packit/ogr/issues/339 - id: 568965084 + author_association: COLLABORATOR + body: "*Updated by @lachmanfrantisek :*\r\n\r\nWe have a lot of methods\ + \ related to the permissions (e.g. who can merge/close,..)\r\n\r\nIt's\ + \ not consistent, let's clean that!\r\n\r\nFeel free to solve this in\ + \ smaller parts. Just write on what you are going to work...\r\n\r\n\ + AC:\r\n- [ ] Make sure, that we have all of the provided methods in\ + \ the `abstract.py`\r\n (raising the `NotImplementedError`)\r\n- [\ + \ ] Make sure, that we have all of these in all the implementations:\r\ + \n - [ ] GitLab\r\n - [ ] GitHub\r\n - [ ] Pagure\r\n- [ ] Deprecate\ + \ the project methods related to specific issue/pull-request.\r\n- [\ + \ ] Move helping methods to the base classes.\r\n - The only exception\ + \ is a more efficient solution in the code of the specific implementation.\r\ + \n - Example:\r\nhttps://github.com/packit-service/ogr/blob/89435655150b8dd79ef93209c3463585d0715e0d/ogr/services/github/project.py#L219-L220\r\ + \n\r\nThe progress is tracked in the following tables. (Any update in\ + \ the comments is appreciated.)\r\n\r\n| Project | `who_can_close_issue()\ + \ -> Set[str]` | `who_can_merge_pr() -> Set[str]` | `can_close_issue(username:\ + \ str) -> bool` | `can_merge_pr(username: str) -> bool` |\r\n| --- |\ + \ --- | --- | --- | --- |\r\n| abstract | :+1: | :+1: | :exclamation:\ + \ deprecate the `Issue` argument | \r\n| base | nothing | nothing |\ + \ implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\n\ + | GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |\r\n\r\n| Issue\ + \ | `who_can_close() -> Set[str]` | `can_close(username: str) -> bool`\ + \ |\r\n| --- | --- | --- |\r\n| abstract | ? | ? |\r\n| base | nothing\ + \ | implement here |\r\n| Github | ? | ? |\r\n| GitLab | ? | ? |\r\n\ + | Pagure | ? | ? |\r\n\r\n| PullRequest | `who_can_close() -> Set[str]`\ + \ | `who_can_merge() -> Set[str]` | `can_close(username: str) -> bool`\ + \ | `can_merge(username: str) -> bool` |\r\n| --- | --- | --- | ---\ + \ | --- |\r\n| abstract | ? | ? | ? | ? | \r\n| base | nothing | nothing\ + \ | implement here | implement here |\r\n| Github | ? | ? | ? | ? |\r\ + \n| GitLab | ? | ? | ? | ? |\r\n| Pagure | ? | ? | ? | ? |" + closed_at: null + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/100/comments + created_at: '2019-07-05T07:09:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/100/events + html_url: https://github.com/packit/ogr/issues/100 + id: 464495604 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -51121,20 +65462,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 + - color: a2eeef default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -51142,6 +65476,20 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: bf6b0b + default: false + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor - color: 42e529 default: false description: This issue was already processed and well defined. @@ -51149,467 +65497,58 @@ requests.sessions: name: triaged node_id: MDU6TGFiZWwxNDMyNzc5NDYy url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/339/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1Njg5NjUwODQ= - number: 339 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: support pagination for get_issue_list - updated_at: '2020-04-07T12:06:30Z' - url: https://api.github.com/repos/packit/ogr/issues/339 - user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 - events_url: https://api.github.com/users/cverna/events{/privacy} - followers_url: https://api.github.com/users/cverna/followers - following_url: https://api.github.com/users/cverna/following{/other_user} - gists_url: https://api.github.com/users/cverna/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/cverna - id: 7237866 - login: cverna - node_id: MDQ6VXNlcjcyMzc4NjY= - organizations_url: https://api.github.com/users/cverna/orgs - received_events_url: https://api.github.com/users/cverna/received_events - repos_url: https://api.github.com/users/cverna/repos - site_admin: false - starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/cverna/subscriptions - type: User - url: https://api.github.com/users/cverna - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "similar to https://github.com/packit-service/requre/issues/29\r\ - \nplease add reverse dependency testing what will check that change\ - \ will not break ``packit`` and in case it is broken, will raise that\ - \ you have to create issue to packit to regenerate response files, or\ - \ that it found bug in ogr. " - closed_at: '2020-04-07T08:41:19Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/237/comments - created_at: '2019-10-09T05:48:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/237/events - html_url: https://github.com/packit/ogr/issues/237 - id: 504429863 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/237/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1MDQ0Mjk4NjM= - number: 237 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: add reverse dependency testing to packit package - updated_at: '2020-04-07T08:41:19Z' - url: https://api.github.com/repos/packit/ogr/issues/237 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos - site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions - type: User - url: https://api.github.com/users/jscotka - - active_lock_reason: null - assignee: null - assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f30` | `The distgit repository /tmp/packit-dist-git8t1ct16f is dirty.This - is not supported.` | - - | `f31` | `The distgit repository /tmp/packit-dist-git8t1ct16f is dirty.This - is not supported.` | - - | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.1.tar.gz. - Reason: ''Not Found''. ` | - - | `master` | `The distgit repository /tmp/packit-dist-git8t1ct16f is - dirty.This is not supported.` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-04-01T13:27:44Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/372/comments - created_at: '2020-04-01T13:14:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/372/events - html_url: https://github.com/packit/ogr/issues/372 - id: 591906915 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/372/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1OTE5MDY5MTU= - number: 372 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: '[packit] Propose update failed for release 0.11.1' - updated_at: '2020-04-01T13:27:44Z' - url: https://api.github.com/repos/packit/ogr/issues/372 - user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos - site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* unnecessry pip/rpm install\ - \ removed\n* add last_commit property to Pagure project\n* github: raise\ - \ when we didn't obtain install id\n* whitespace: put space b/w words\n\ - * invoke tests directly with pytest\n* gitlab,get_forks: p-gitlab can't\ - \ process server's response\n* raise OperationNotSupported when gitlab\ - \ doesn't support releases\n* zuul: don't install twine, we don't need\ - \ it in CI\n* gitlab.members.all() turned into dict\n* github.repo.get_issues\ - \ wants GithubLabel, not str\n* split test_issue_permissions into two\n\ - * Fix and refactor packit rev-dep tests\n* Fix the descriptions in playbooks\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.11.1-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2020-04-01T13:11:44Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/371/comments - created_at: '2020-04-01T08:33:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/371/events - html_url: https://github.com/packit/ogr/pull/371 - id: 591729812 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/371/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzk2ODQxOTA3 - number: 371 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/371.diff - html_url: https://github.com/packit/ogr/pull/371 - patch_url: https://github.com/packit/ogr/pull/371.patch - url: https://api.github.com/repos/packit/ogr/pulls/371 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 0.11.1 release - updated_at: '2020-04-01T13:15:17Z' - url: https://api.github.com/repos/packit/ogr/issues/371 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-04-01T08:33:46Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/370/comments - created_at: '2020-04-01T08:31:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/370/events - html_url: https://github.com/packit/ogr/issues/370 - id: 591728360 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/370/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1OTE3MjgzNjA= - number: 370 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: New patch release - updated_at: '2020-04-01T08:33:46Z' - url: https://api.github.com/repos/packit/ogr/issues/370 - user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos - site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-04-01T08:28:05Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/366/comments - created_at: '2020-03-26T14:07:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/366/events - html_url: https://github.com/packit/ogr/pull/366 - id: 588448629 - labels: - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/366/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/100/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzk0MTkyNzMy - number: 366 + node_id: MDU6SXNzdWU0NjQ0OTU2MDQ= + number: 100 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/366.diff - html_url: https://github.com/packit/ogr/pull/366 - patch_url: https://github.com/packit/ogr/pull/366.patch - url: https://api.github.com/repos/packit/ogr/pulls/366 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: added function to update mapping - updated_at: '2020-04-01T08:28:05Z' - url: https://api.github.com/repos/packit/ogr/issues/366 + state: open + title: user's permissions on Issues/PRs + updated_at: '2020-09-30T15:00:39Z' + url: https://api.github.com/repos/packit/ogr/issues/100 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/25414049?v=4 + events_url: https://api.github.com/users/marusinm/events{/privacy} + followers_url: https://api.github.com/users/marusinm/followers + following_url: https://api.github.com/users/marusinm/following{/other_user} + gists_url: https://api.github.com/users/marusinm/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/marusinm + id: 25414049 + login: marusinm + node_id: MDQ6VXNlcjI1NDE0MDQ5 + organizations_url: https://api.github.com/users/marusinm/orgs + received_events_url: https://api.github.com/users/marusinm/received_events + repos_url: https://api.github.com/users/marusinm/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/marusinm/subscriptions type: User - url: https://api.github.com/users/sakalosj + url: https://api.github.com/users/marusinm - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-03-27T16:27:42Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/367/comments - created_at: '2020-03-26T14:08:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/367/events - html_url: https://github.com/packit/ogr/pull/367 - id: 588448982 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 - default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/367/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzk0MTkzMDE1 - number: 367 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/367.diff - html_url: https://github.com/packit/ogr/pull/367 - patch_url: https://github.com/packit/ogr/pull/367.patch - url: https://api.github.com/repos/packit/ogr/pulls/367 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: add last_commit property to Pagure project - updated_at: '2020-03-27T16:27:42Z' - url: https://api.github.com/repos/packit/ogr/issues/367 - user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos - site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: MEMBER - body: "- [ ] Forward some object to the issue/pr/... instances to allow\ - \ connection to the service. (Classes are not only data-holders.)\r\n\ - - [ ] All ogr classes to have properties with setters allowing to update\ - \ its attributes\r\n - I can do `my_pr.title = \"something\"`\r\n\ - - [x] Objects are linked together (Service <-> Project <-> PR <-> PRComment)\r\ - \n- [x] Keep old methods, mark them as deprecated.\r\n\r\nneeds #121\ - \ \r\n" + author_association: MEMBER + body: "It is sometimes hard to get the right problem when a user receives\ + \ a long traceback with some GitHub/GitLab exception at the end. Those\ + \ exceptions are not always clear or too general (`e.g. Object not found`).\r\ + \n\r\nWe can probably do better and raise our exceptions that will have\ + \ much clearer message since we usually know the context (e.g. `PR with\ + \ id={id} not found.`).\r\n\r\nAC:\r\n\r\n- [ ] Go through the code\ + \ and cover some parts of code in the try blocks and raise our exception\ + \ with good message:\r\n\r\n```python\r\n try:\r\n problematic_code()\r\ + \n except TheExternalException as ex:\r\n raise SomeOgrException(\"\ + Good reason\", ex)\r\n```\r\n- [ ] update/extend the tests\r\n" closed_at: null - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/86/comments - created_at: '2019-06-25T13:15:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/86/events - html_url: https://github.com/packit/ogr/issues/86 - id: 460418171 + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/199/comments + created_at: '2019-09-13T08:04:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/199/events + html_url: https://github.com/packit/ogr/issues/199 + id: 493190190 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - color: '000000' default: false description: Related to GitHub implementation. @@ -51624,6 +65563,13 @@ requests.sessions: name: GitLab node_id: MDU6TGFiZWwxMzgxNjA3MjU5 url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: be8fd8 + default: false + description: Participate in https://hacktoberfest.digitalocean.com + id: 1592645945 + name: Hacktoberfest + node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 + url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -51631,40 +65577,40 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 + - color: 7057ff default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: bf6b0b default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 42e529 + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: 8be567 default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/86/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/199/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjA0MTgxNzE= - number: 86 + node_id: MDU6SXNzdWU0OTMxOTAxOTA= + number: 199 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: open - title: object-specific methods bound to ogr classes - updated_at: '2020-03-27T13:50:33Z' - url: https://api.github.com/repos/packit/ogr/issues/86 + title: Do not let the external exception go to the user + updated_at: '2020-09-30T14:57:41Z' + url: https://api.github.com/repos/packit/ogr/issues/199 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -51678,578 +65624,146 @@ requests.sessions: received_events_url: https://api.github.com/users/lachmanfrantisek/received_events repos_url: https://api.github.com/users/lachmanfrantisek/repos 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "~~Blocked on #357~~\r\n\r\nReplaces an error like this:\r\n```\r\ - \ngithub.GithubException.GithubException: 401 {\"message\":\"'Issuer'\ - \ claim ('iss') must be an Integer\",\"documentation_url\":\"https://developer.github.com/v3\"\ - }\r\n```" - closed_at: '2020-03-18T13:13:11Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/352/comments - created_at: '2020-03-16T10:19:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/352/events - html_url: https://github.com/packit/ogr/pull/352 - id: 582171280 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/352/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg5MTMwMDA2 - number: 352 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/352.diff - html_url: https://github.com/packit/ogr/pull/352 - patch_url: https://github.com/packit/ogr/pull/352.patch - url: https://api.github.com/repos/packit/ogr/pulls/352 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'github: raise when we didn''t obtain install id' - updated_at: '2020-03-18T14:55:12Z' - url: https://api.github.com/repos/packit/ogr/issues/352 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #353 - - - Also fixes some test failures, let''s see...' - closed_at: '2020-03-18T12:37:13Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/357/comments - created_at: '2020-03-18T08:37:16Z' - events_url: https://api.github.com/repos/packit/ogr/issues/357/events - html_url: https://github.com/packit/ogr/pull/357 - id: 583559616 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/357/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzkwMjk1MDIx - number: 357 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/357.diff - html_url: https://github.com/packit/ogr/pull/357 - patch_url: https://github.com/packit/ogr/pull/357.patch - url: https://api.github.com/repos/packit/ogr/pulls/357 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: invoke tests directly with pytest - updated_at: '2020-03-18T14:27:38Z' - url: https://api.github.com/repos/packit/ogr/issues/357 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "```\r\n$ tox\r\nGLOB sdist-make: /home/tt/g/user-cont/ogr/setup.py\ - \ \r\npy36 inst-nodeps: /home/tt/g/user-cont/ogr/.tox/.tmp/package/1/ogr-0.11.1.dev4+g022e9df.zip\r\ - \nWARNING: Discarding $PYTHONPATH from environment, to override specify\ - \ PYTHONPATH in 'passenv' in your configuration.\r\npy36 installed:\ - \ amqp==2.5.0,-e git+git@github.com:TomasTomecek/ansible-bender.git@e3ef97fb7cdb4e19bb8f21266c09d6fdc5e76392#egg=ansible_bender,aspy.yaml==1.2.0,attrs==19.3.0,\r\ - \nbeanbag==1.9.2,billiard==3.6.0.0,celery==4.3.0,certifi==2019.11.28,cffi==1.14.0,cfgv==1.5.0,chardet==3.0.4,click==7.1.1,colin-redhat==0.0.2,conu==0.6.0,coverage==5.0.3,crypt\r\ - \nography==2.8,Deprecated==1.2.5,dnspython==1.16.0,dpath==1.4.2,eventlet==0.25.0,flexmock==0.10.4,frambo==0.0.3,generator==0.1.dev34+g6448aff,gevent==1.4.0,gitchangelog==3.0.4\r\ - \n,gitdb==4.0.2,GitPython==3.1.0,identify==1.4.0,idna==2.9,importlib-metadata==0.8,jsl==0.2.4,kobo==0.7.0,koji==1.16.0,kombu==4.6.3,kubernetes==8.0.2,monotonic==1.5,more-itert\r\ - \nools==8.2.0,nodeenv==1.3.3,numpy==1.17.2,-e git+git@github.com:TomasTomecek/ogr@022e9dff7fd02e2f4d34ca836ac298127d7f5694#egg=ogr,packaging==20.3,-e\ - \ git+git@github.com:TomasT\r\nomecek/packit.git@25a1ca9a2d746b493ee10aced1ce477cfd529653#egg=packitos,persistentdict==0.1.0,pluggy==0.13.1,pre-commit==1.14.4,py==1.8.1,pycparser==2.20,PyGithub==1.46,PyJW\r\ - \nT==1.7.1,pyparsing==2.4.6,pystache==0.5.4,pytest==5.4.1,pytest-cov==2.8.1,python-gitlab==2.1.2,PyYAML==5.3,raven==6.10.0,redis==3.2.1,requests==2.23.0,-e\ - \ git+git@github.com:\r\nTomasTomecek/requre.git@f5410b0095d31e2b0f27b92d7ca24e365b472d33#egg=requre,rlsbot-test==1.0.0,rpm-py-installer==0.8.0,-e\ - \ git+git@github.com:TomasTomecek/generator.git@65a43\r\n07bcd0d8f45b3c7ed8b757be5d44601a62d#egg=sandcastle,sentry-sdk==0.12.2,show-me==0.1.dev25+g72bc7ba,six==1.14.0,smmap==3.0.1,tool==0.1.0.dev0,ucho==0.1.0,-e\ - \ git+git@github.com\r\n:TomasTomecek/upsint.git@972ba36e63c8b44eedf291ac1d30f87954258ef6#egg=upsint,urllib3==1.25.8,vine==1.3.0,wcwidth==0.1.8,wrapt==1.11.1,zipp==0.3.3\r\ - \npy36 run-test-pre: PYTHONHASHSEED='2399286198'\r\npy36 run-test: commands[0]\ - \ | pytest --color=yes --verbose --showlocals --cov=ogr --cov-report=term-missing\r\ - \n============================================================================\ - \ test session starts ============================================================================\r\ - \nplatform linux -- Python 3.6.10, pytest-5.4.1, py-1.8.1, pluggy-0.13.1\ - \ -- /home/tt/g/user-cont/ogr/.tox/py36/bin/python\r\ncachedir: .tox/py36/.pytest_cache\r\ - \nrootdir: /home/tt/g/user-cont/ogr\r\nplugins: cov-2.8.1\r\ncollected\ - \ 255 items \ - \ \ - \ \r\n\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_github\ - \ FAILED \ - \ [ 0%]\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_gitlab\ - \ FAILED \ - \ [ 0%]\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_pagure\ - \ FAILED \ - \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments\ - \ FAILED \ - \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_author\ - \ FAILED \ - \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_author_regex\ - \ FAILED \ - \ [ 2%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_regex\ - \ FAILED \ - \ [ 2%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_regex_reversed\ - \ FAILED \ - \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_reversed\ - \ FAILED \ - \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_updates\ - \ FAILED \ - \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_pr_comments\ - \ FAILED \ - \ [ 4%]\r\ntests/integration/test_github.py::Comments::test_pr_comments_author\ - \ FAILED \ - \ [ 4%]\r\ntests/integration/test_github.py::Comments::test_pr_comments_author_regex\ - \ FAILED \ - \ [ 5%]\r\n```\r\n\r\n```\r\nE \ - \ requre.exceptions.ItemNotInStorage: Keys not in storage:/home/tt/g/user-cont/ogr/tests/integration/test_data/test_github/tests.integration.test_github.Ge\r\ - \nnericCommands.test_description.yaml Matched: ['SKIP tests.integration.test_github',\ - \ 'SKIP ogr.services.github.project', 'SKIP github.MainClass', 'SKIP\ - \ github.Requester', 'SK\r\nIP requests.sessions', 'SKIP requre.objects'],\ - \ Missing: ['requests.sessions', 'send']\r\n```\r\n\r\nHappens even\ - \ when I use older pygithub." - closed_at: '2020-03-18T12:37:12Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/353/comments - created_at: '2020-03-16T11:20:59Z' - events_url: https://api.github.com/repos/packit/ogr/issues/353/events - html_url: https://github.com/packit/ogr/issues/353 - id: 582211662 - labels: - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/353/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1ODIyMTE2NjI= - number: 353 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: most of the tests are failing on master now - updated_at: '2020-03-18T12:37:12Z' - url: https://api.github.com/repos/packit/ogr/issues/353 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: CONTRIBUTOR - body: 'I was wondering if OGR does support interacting with enterprise - versions of Gitlab, when provided with an private token. I think Gitlab - enterprise has the same set of API''s as the public version, so is there - a way to like provide the service url like for example - https://gitlab.cee.redhat.com - and it would then try accessing repo''s from that instead of publicly - hosted Gitlab. ' - closed_at: '2020-03-17T14:46:29Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/354/comments - created_at: '2020-03-16T16:10:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/354/events - html_url: https://github.com/packit/ogr/issues/354 - id: 582420398 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - labels_url: https://api.github.com/repos/packit/ogr/issues/354/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1ODI0MjAzOTg= - number: 354 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Supporting enterprise versions of Gitlab - updated_at: '2020-03-17T14:58:14Z' - url: https://api.github.com/repos/packit/ogr/issues/354 - user: - avatar_url: https://avatars1.githubusercontent.com/u/9396452?v=4 - events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} - followers_url: https://api.github.com/users/saisankargochhayat/followers - following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} - gists_url: https://api.github.com/users/saisankargochhayat/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/saisankargochhayat - id: 9396452 - login: saisankargochhayat - node_id: MDQ6VXNlcjkzOTY0NTI= - organizations_url: https://api.github.com/users/saisankargochhayat/orgs - received_events_url: https://api.github.com/users/saisankargochhayat/received_events - repos_url: https://api.github.com/users/saisankargochhayat/repos - site_admin: false - starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions - type: User - url: https://api.github.com/users/saisankargochhayat - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Related #350 ' - closed_at: '2020-03-12T13:26:35Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/351/comments - created_at: '2020-03-11T08:26:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/351/events - html_url: https://github.com/packit/ogr/pull/351 - id: 579088221 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/351/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg2NTQ3NzEz - number: 351 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/351.diff - html_url: https://github.com/packit/ogr/pull/351 - patch_url: https://github.com/packit/ogr/pull/351.patch - url: https://api.github.com/repos/packit/ogr/pulls/351 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Fix and refactor packit rev-dep tests - updated_at: '2020-03-12T13:26:35Z' - url: https://api.github.com/repos/packit/ogr/issues/351 - user: - avatar_url: https://avatars3.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 - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "The [Fedora dist-git CI fails](https://fedora.softwarefactory-project.io/zuul/build/755e891747f145b8810a8933c37fef3a/logs)\ - \ with that error.\r\nI'm not sure where's the correct place to fix\ - \ it, but I'm creating this so that we don't forget about it since I\ - \ need to merge [that PR](https://src.fedoraproject.org/rpms/python-ogr/pull-request/159)." - closed_at: '2020-03-12T12:24:37Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/323/comments - created_at: '2020-02-05T12:03:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/323/events - html_url: https://github.com/packit/ogr/issues/323 - id: 560327796 - labels: - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/323/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1NjAzMjc3OTY= - number: 323 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'ModuleNotFoundError: No module named ''flexmock''' - updated_at: '2020-03-12T12:24:37Z' - url: https://api.github.com/repos/packit/ogr/issues/323 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos - site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - assignees: - - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos - site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions - type: User - url: https://api.github.com/users/sakalosj - author_association: MEMBER - body: pagure provides more detailed error info stored under 'errors' key, - which is not currently not used in output - closed_at: '2020-03-12T12:16:11Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/331/comments - created_at: '2020-02-18T14:15:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/331/events - html_url: https://github.com/packit/ogr/issues/331 - id: 566921606 + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "Closes #209 \r\n\r\nmerge after packit/contributing#1" + closed_at: '2020-09-24T20:15:17Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/471/comments + created_at: '2020-09-21T21:09:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/471/events + html_url: https://github.com/packit/ogr/pull/471 + id: 705918401 labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 8be567 + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/331/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/471/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NjY5MjE2MDY= - number: 331 + node_id: MDExOlB1bGxSZXF1ZXN0NDkwNTYxMzU3 + number: 471 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/471.diff + html_url: https://github.com/packit/ogr/pull/471 + patch_url: https://github.com/packit/ogr/pull/471.patch + url: https://api.github.com/repos/packit/ogr/pulls/471 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: pagure provides more detailed error info stored under 'errors' - key - updated_at: '2020-03-12T12:16:11Z' - url: https://api.github.com/repos/packit/ogr/issues/331 + title: Extend contribution guide + updated_at: '2020-09-24T20:21:33Z' + url: https://api.github.com/repos/packit/ogr/issues/471 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'It seems that ogr-reverse-dep-packit-tests does not really test - packit with the ogr change, I broke the ogr and `ogr-reverse-dep-packit-tests - : SUCCESS in 8m 01s`.' - closed_at: '2020-03-11T08:27:40Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/350/comments - created_at: '2020-03-10T18:56:23Z' - events_url: https://api.github.com/repos/packit/ogr/issues/350/events - html_url: https://github.com/packit/ogr/pull/350 - id: 578793909 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/350/labels{/name} + body: "It would be nice to add the following parts to CONTRIBUTING.md\r\ + \n\r\n- What is `git rebase` and how to rebase a pull-request.\r\n \ + \ - We want to have a git tree like this: \r\n![Sn\xEDmek z 2019-09-19\ + \ 11-43-15](https://user-images.githubusercontent.com/20214043/65233459-2712aa00-dad3-11e9-8849-6bb5babf75fe.png)\r\ + \n - not this: \r\n![Sn\xEDmek z 2019-09-19 11-43-51](https://user-images.githubusercontent.com/20214043/65233488-309c1200-dad3-11e9-93a9-b2b15e8a0f39.png)\r\ + \n\r\n- links to documentation we are using when implementing the code\ + \ for github, gitlab, pagure\r\n - https://src.fedoraproject.org/api/0/\r\ + \n - https://pagure.io/api/0/\r\n - https://pygithub.readthedocs.io/\r\ + \n - https://python-gitlab.readthedocs.io/\r\n - ...\r\n \r\n\ + - How to write a good git commit messages:\r\n - https://chris.beams.io/posts/git-commit/" + closed_at: '2020-09-24T20:15:17Z' + comments: 13 + comments_url: https://api.github.com/repos/packit/ogr/issues/209/comments + created_at: '2019-09-19T09:51:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/209/events + html_url: https://github.com/packit/ogr/issues/209 + id: 495693202 + labels: + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/209/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg2MzA4Njk0 - number: 350 + node_id: MDU6SXNzdWU0OTU2OTMyMDI= + number: 209 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/350.diff - html_url: https://github.com/packit/ogr/pull/350 - patch_url: https://github.com/packit/ogr/pull/350.patch - url: https://api.github.com/repos/packit/ogr/pulls/350 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Just testing the rev-dep tests - updated_at: '2020-03-11T08:27:40Z' - url: https://api.github.com/repos/packit/ogr/issues/350 + title: Add info about git workflow to contribution guide (and other suggestions) + updated_at: '2020-09-24T20:15:17Z' + url: https://api.github.com/repos/packit/ogr/issues/209 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Add stage to expected\ - \ pagure instances\n* Set missing info in GitHub commit flags\n* Regenerate\ - \ responses for 'test_issue_list_label'\n* List all GitLab issues (ignore\ - \ pagination)\n* Allow to filter issues by labels.\n* enable getting\ - \ projects defined with SSH URLs\n* Add diff_url to the PR classes\n\ - * Add missing setters to abstract PR class\n* apply precommit changes\n\ - * simplify requre testcases and use requre base test class\n* Use only\ - \ first+last token/key character in the __str__ methods\n* updated PullRequest\ - \ depr message Co-Authored-By: lachmanfrantisek \n\ - * provide is_private method on GitProjects\n* improve pagure error response\n\ - * [.packit.yaml] remove no-longer needed keys & use aliases\n* [CONTRIBUTING.md]\ - \ update\n* Add support for tags when creating pagure issues.\n* Generate\ - \ standard .gitignore file\n* [Pre-commit] Use Prettier\n* [pre-commit]\ - \ autoupdate\n* Run setup-cfg-fmt\n* Strip trailing slash from URL,\ - \ if it exists\n* Add test for trailing slash in URL\n* github.pr.author:\ - \ use login instead of name\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.11.0-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ - \ is set." - closed_at: '2020-03-09T12:38:54Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/347/comments - created_at: '2020-03-07T06:10:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/347/events - html_url: https://github.com/packit/ogr/pull/347 - id: 577286080 + author_association: CONTRIBUTOR + body: there is just one issue, and it is that __init__.py has to be clear, + because now it causes confusion, and try sto store keys with various + depth -> raise error. + closed_at: '2020-09-24T19:43:18Z' + comments: 29 + comments_url: https://api.github.com/repos/packit/ogr/issues/452/comments + created_at: '2020-08-13T13:44:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/452/events + html_url: https://github.com/packit/ogr/pull/452 + id: 678448961 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -52257,127 +65771,118 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/347/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/452/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg1MTA5ODI1 - number: 347 + node_id: MDExOlB1bGxSZXF1ZXN0NDY3Mzk1MTgz + number: 452 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/347.diff - html_url: https://github.com/packit/ogr/pull/347 - patch_url: https://github.com/packit/ogr/pull/347.patch - url: https://api.github.com/repos/packit/ogr/pulls/347 + diff_url: https://github.com/packit/ogr/pull/452.diff + html_url: https://github.com/packit/ogr/pull/452 + patch_url: https://github.com/packit/ogr/pull/452.patch + url: https://api.github.com/repos/packit/ogr/pulls/452 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.11.0 release - updated_at: '2020-03-11T08:26:41Z' - url: https://api.github.com/repos/packit/ogr/issues/347 + title: this is first draft how new tests could look like + updated_at: '2020-09-24T19:43:18Z' + url: https://api.github.com/repos/packit/ogr/issues/452 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos 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 + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f30` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This - is not supported.` | - - | `f31` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This - is not supported.` | - - | `f32` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This - is not supported.` | - - | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.0.tar.gz. - Reason: ''Not Found''. ` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-03-09T14:02:41Z' + author_association: MEMBER + body: "Split tests into files like the implementations are.\r\n\r\nAs\ + \ @lachmanfrantisek suggested, it would be great to have both old tests\ + \ (checking that deprecated interfaces are still usable) and new ones,\ + \ but this would lead to keeping duplicates of test_data, since they\ + \ would check the same things, but each would need separate yaml for\ + \ responses.\r\n\r\nSo I suggest transition from old to new tests right\ + \ after 0.13.0 (or before 1.0.0, in case it will be released sooner)" + closed_at: '2020-09-24T19:43:18Z' comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/348/comments - created_at: '2020-03-09T12:44:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/348/events - html_url: https://github.com/packit/ogr/issues/348 - id: 577881745 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/348/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/295/comments + created_at: '2019-12-05T10:40:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/295/events + html_url: https://github.com/packit/ogr/issues/295 + id: 533267519 + labels: + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/295/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1Nzc4ODE3NDU= - number: 348 + node_id: MDU6SXNzdWU1MzMyNjc1MTk= + number: 295 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.11.0' - updated_at: '2020-03-10T09:57:32Z' - url: https://api.github.com/repos/packit/ogr/issues/348 + title: Restructure tests + updated_at: '2020-09-24T19:43:18Z' + url: https://api.github.com/repos/packit/ogr/issues/295 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + 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/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + 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 - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-03-09T16:13:07Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/349/comments - created_at: '2020-03-09T15:12:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/349/events - html_url: https://github.com/packit/ogr/pull/349 - id: 577980538 + body: "[![black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\r\ + \n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)\r\ + \n\r\n- Add pre-commit and black badge.\r\n- README: https://github.com/packit/ogr/blob/8c3d9a3ddf2c69e211b5bbb44c3df08b70804a84/README.md" + closed_at: '2020-09-23T07:04:47Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/469/comments + created_at: '2020-09-18T12:18:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/469/events + html_url: https://github.com/packit/ogr/pull/469 + id: 704334311 labels: - color: 0e8a16 default: false @@ -52386,110 +65891,116 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/349/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/469/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzg1NjQ2MjU3 - number: 349 + node_id: MDExOlB1bGxSZXF1ZXN0NDg5Mjc5NjYw + number: 469 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/349.diff - html_url: https://github.com/packit/ogr/pull/349 - patch_url: https://github.com/packit/ogr/pull/349.patch - url: https://api.github.com/repos/packit/ogr/pulls/349 + diff_url: https://github.com/packit/ogr/pull/469.diff + html_url: https://github.com/packit/ogr/pull/469 + patch_url: https://github.com/packit/ogr/pull/469.patch + url: https://api.github.com/repos/packit/ogr/pulls/469 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix the descriptions in playbooks - updated_at: '2020-03-09T16:13:07Z' - url: https://api.github.com/repos/packit/ogr/issues/349 + title: pre-commit and black badge + updated_at: '2020-09-23T07:13:06Z' + url: https://api.github.com/repos/packit/ogr/issues/469 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER body: '' - closed_at: '2020-03-07T06:10:20Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/346/comments - created_at: '2020-03-07T06:08:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/346/events - html_url: https://github.com/packit/ogr/issues/346 - id: 577285921 + closed_at: '2020-09-22T15:17:15Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/467/comments + created_at: '2020-09-17T09:45:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/467/events + html_url: https://github.com/packit/ogr/pull/467 + id: 703433869 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/346/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/467/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NzcyODU5MjE= - number: 346 + node_id: MDExOlB1bGxSZXF1ZXN0NDg4NTQyNjcz + number: 467 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/467.diff + html_url: https://github.com/packit/ogr/pull/467 + patch_url: https://github.com/packit/ogr/pull/467.patch + url: https://api.github.com/repos/packit/ogr/pulls/467 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: New minor release - updated_at: '2020-03-07T06:10:20Z' - url: https://api.github.com/repos/packit/ogr/issues/346 + title: Refactor `parse_git_repo` + updated_at: '2020-09-22T15:18:08Z' + url: https://api.github.com/repos/packit/ogr/issues/467 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-03-05T07:21:02Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/345/comments - created_at: '2020-03-04T16:38:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/345/events - html_url: https://github.com/packit/ogr/pull/345 - id: 575562256 + body: "- Use parenthesis for `lru_cache` decorator for backwards compatibility.\r\ + \n- Fixes problem found in packit PR: https://github.com/packit/packit-service/pull/820" + closed_at: '2020-09-21T09:19:28Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/470/comments + created_at: '2020-09-21T08:01:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/470/events + html_url: https://github.com/packit/ogr/pull/470 + id: 705378424 labels: - color: 0e8a16 default: false @@ -52498,55 +66009,57 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/345/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/470/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzgzNjkxODk5 - number: 345 + node_id: MDExOlB1bGxSZXF1ZXN0NDkwMTE3MDk0 + number: 470 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/345.diff - html_url: https://github.com/packit/ogr/pull/345 - patch_url: https://github.com/packit/ogr/pull/345.patch - url: https://api.github.com/repos/packit/ogr/pulls/345 + diff_url: https://github.com/packit/ogr/pull/470.diff + html_url: https://github.com/packit/ogr/pull/470 + patch_url: https://github.com/packit/ogr/pull/470.patch + url: https://api.github.com/repos/packit/ogr/pulls/470 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add stage to expected pagure instances - updated_at: '2020-03-05T07:21:02Z' - url: https://api.github.com/repos/packit/ogr/issues/345 + title: Fix lru_cache decorator + updated_at: '2020-09-21T10:18:40Z' + url: https://api.github.com/repos/packit/ogr/issues/470 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Set missing info in GitHub commit flags. + body: '- Add hostname property to service class. - - Test was improved to cover that.' - closed_at: '2020-03-04T09:57:25Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/343/comments - created_at: '2020-03-02T11:17:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/343/events - html_url: https://github.com/packit/ogr/pull/343 - id: 573904235 + - Fix inheritance of `GitlabService` from `BaseGitService`. + + - Fixes: #338' + closed_at: '2020-09-18T14:55:56Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/468/comments + created_at: '2020-09-18T08:42:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/468/events + html_url: https://github.com/packit/ogr/pull/468 + id: 704201238 labels: - color: 0e8a16 default: false @@ -52555,24 +66068,31 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/343/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/468/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzgyMzI1NTEz - number: 343 + node_id: MDExOlB1bGxSZXF1ZXN0NDg5MTY4MTQy + number: 468 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/343.diff - html_url: https://github.com/packit/ogr/pull/343 - patch_url: https://github.com/packit/ogr/pull/343.patch - url: https://api.github.com/repos/packit/ogr/pulls/343 + diff_url: https://github.com/packit/ogr/pull/468.diff + html_url: https://github.com/packit/ogr/pull/468 + patch_url: https://github.com/packit/ogr/pull/468.patch + url: https://api.github.com/repos/packit/ogr/pulls/468 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix GitHub commit flags - updated_at: '2020-03-04T10:31:38Z' - url: https://api.github.com/repos/packit/ogr/issues/343 + title: Implement hostname property + updated_at: '2020-09-21T07:10:59Z' + url: https://api.github.com/repos/packit/ogr/issues/468 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -52591,24 +66111,71 @@ requests.sessions: type: User url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 author_association: MEMBER - body: "When working with PRs, there are also URLs linking directly to\ - \ diff tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the `url_diff`\ - \ and implement it.\r\n - Use API if possible, otherwise \"guess\"\ - \ the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\nExamples:\r\ - \n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/diffs\r\ - \n- https://github.com/packit-service/ogr/pull/1/files\r\n- https://pagure.io/ogr-tests/pull-request/7#request_diff\r\ - \n" - closed_at: '2020-03-03T15:49:36Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/211/comments - created_at: '2019-09-19T18:48:47Z' - events_url: https://api.github.com/repos/packit/ogr/issues/211/events - html_url: https://github.com/packit/ogr/issues/211 - id: 495968184 + body: "Multiple times in the code (mostly in the `parsing.py`), we need\ + \ to parse the hostname of the instance.\r\n\r\n```python\r\nservice_repo_url\ + \ = parse_git_repo(repo_url.get_instance_url())\r\nservice_repo_url.hostname\r\ + \n```\r\n\r\nIt would be useful to have a `hostame` property in service\ + \ classes`.\r\n\r\nTODO:\r\n- [ ] add the (read-only) property to the\ + \ `abstract.py`\r\n- [ ] implement the common behaviour in the `base.py`\ + \ (see the example above)\r\n - services with multiple instances possible\r\ + \n- [ ] hardcode the value for static instances (GitHub)\r\n- [ ] use\ + \ that property in places, where we are getting hostname of the instance\r\ + \n- [ ] create some unit tests for that" + closed_at: '2020-09-18T14:55:56Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/338/comments + created_at: '2020-02-21T08:57:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/338/events + html_url: https://github.com/packit/ogr/issues/338 + id: 568821401 labels: + - color: fbca04 + default: false + description: Reserved for the participants/applicants of the Google + Summer of Code. + id: 1867054141 + name: GSOC + node_id: MDU6TGFiZWwxODY3MDU0MTQx + url: https://api.github.com/repos/packit/ogr/labels/GSOC - color: '000000' default: false description: Related to GitHub implementation. @@ -52630,13 +66197,6 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -52644,33 +66204,33 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: fef2c0 + - color: c2ef58 default: false - description: Low priority. - id: 1432779340 - name: low-prio - node_id: MDU6TGFiZWwxNDMyNzc5MzQw - url: https://api.github.com/repos/packit/ogr/labels/low-prio - - color: '000000' + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/211/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/338/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTU5NjgxODQ= - number: 211 + node_id: MDU6SXNzdWU1Njg4MjE0MDE= + number: 338 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add diff url to PullRequest class - updated_at: '2020-03-03T15:49:36Z' - url: https://api.github.com/repos/packit/ogr/issues/211 + title: hostname property in the service classes + updated_at: '2020-09-18T14:55:56Z' + url: https://api.github.com/repos/packit/ogr/issues/338 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -52691,132 +66251,281 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Added object representation for GitHub releases. + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: - - What about pagure? Is there anything that can be used?' - closed_at: '2019-03-12T13:36:17Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/19/comments - created_at: '2019-02-21T15:14:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/19/events - html_url: https://github.com/packit/ogr/pull/19 - id: 412975574 + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-16T15:47:15Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/466/comments + created_at: '2020-09-16T15:33:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/466/events + html_url: https://github.com/packit/ogr/issues/466 + id: 702867074 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/19/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/466/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MjU1MDY0MDU2 - number: 19 + node_id: MDU6SXNzdWU3MDI4NjcwNzQ= + number: 466 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.15.0' + updated_at: '2020-09-16T15:47:15Z' + url: https://api.github.com/repos/packit/ogr/issues/466 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Support multi-part namespaces\ + \ in parsing\n* Validate commit flag state before setting\n* Add type\ + \ ignore to GitHub App auth\n* Update pre-commit configuration and fix\ + \ mypy remarks\n\n\nYou can change it by editing `CHANGELOG.md` in the\ + \ root of this repository and pushing to `0.15.0-release` branch before\ + \ merging this PR.\nI didn't find any files where `__version__` is\ + \ set." + closed_at: '2020-09-16T15:05:17Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/465/comments + created_at: '2020-09-16T13:15:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/465/events + html_url: https://github.com/packit/ogr/pull/465 + id: 702756388 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/465/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDg3OTgxNzk4 + number: 465 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/19.diff - html_url: https://github.com/packit/ogr/pull/19 - patch_url: https://github.com/packit/ogr/pull/19.patch - url: https://api.github.com/repos/packit/ogr/pulls/19 + diff_url: https://github.com/packit/ogr/pull/465.diff + html_url: https://github.com/packit/ogr/pull/465 + patch_url: https://github.com/packit/ogr/pull/465.patch + url: https://api.github.com/repos/packit/ogr/pulls/465 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Releases - updated_at: '2020-02-28T11:35:03Z' - url: https://api.github.com/repos/packit/ogr/issues/19 + title: 0.15.0 release + updated_at: '2020-09-16T15:08:48Z' + url: https://api.github.com/repos/packit/ogr/issues/465 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=6: - - metadata: - latency: 0.6028845310211182 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/usercont-release-bot + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-09-16T13:15:51Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/457/comments + created_at: '2020-09-01T13:57:37Z' + events_url: https://api.github.com/repos/packit/ogr/issues/457/events + html_url: https://github.com/packit/ogr/issues/457 + id: 690166541 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/457/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2OTAxNjY1NDE= + number: 457 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: New minor release + updated_at: '2020-09-16T13:15:51Z' + url: https://api.github.com/repos/packit/ogr/issues/457 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-16T09:45:50Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/456/comments + created_at: '2020-08-20T08:09:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/456/events + html_url: https://github.com/packit/ogr/issues/456 + id: 682514734 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/456/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2ODI1MTQ3MzQ= + number: 456 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.13.1' + updated_at: '2020-09-16T09:45:50Z' + url: https://api.github.com/repos/packit/ogr/issues/456 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Do not use tokens/private_keys in the `__str__` methods.\n -\ - \ used `set`/`not set` instead\n - reason: We've started to show logs\ - \ publicly in the packit-service and it can be easy to forget about\ - \ this \"feature\"." - closed_at: '2020-02-21T12:13:33Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/336/comments - created_at: '2020-02-20T09:28:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/336/events - html_url: https://github.com/packit/ogr/pull/336 - id: 568163719 + body: '- Support multi-part namespaces in parsing.' + closed_at: '2020-09-14T12:00:53Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/463/comments + created_at: '2020-09-14T10:25:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/463/events + html_url: https://github.com/packit/ogr/pull/463 + id: 700972195 labels: - color: 0e8a16 default: false @@ -52825,24 +66534,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/336/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/463/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc3NjQzMzYy - number: 336 + node_id: MDExOlB1bGxSZXF1ZXN0NDg2NTA2NTQw + number: 463 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/336.diff - html_url: https://github.com/packit/ogr/pull/336 - patch_url: https://github.com/packit/ogr/pull/336.patch - url: https://api.github.com/repos/packit/ogr/pulls/336 + diff_url: https://github.com/packit/ogr/pull/463.diff + html_url: https://github.com/packit/ogr/pull/463 + patch_url: https://github.com/packit/ogr/pull/463.patch + url: https://api.github.com/repos/packit/ogr/pulls/463 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Do not use tokens and keys in the __str__ methods - updated_at: '2020-02-28T11:34:56Z' - url: https://api.github.com/repos/packit/ogr/issues/336 + title: Support multi part namespaces + updated_at: '2020-09-14T12:04:19Z' + url: https://api.github.com/repos/packit/ogr/issues/463 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -52863,17 +66572,15 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "This commit adds the possibility to provide\r\na list of labels\ - \ to filter the issues of a\r\nproject.\r\n\r\nSigned-off-by: Clement\ - \ Verna " - closed_at: '2020-02-28T10:13:37Z' - comments: 22 - comments_url: https://api.github.com/repos/packit/ogr/issues/340/comments - created_at: '2020-02-21T14:19:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/340/events - html_url: https://github.com/packit/ogr/pull/340 - id: 568983388 + author_association: MEMBER + body: '' + closed_at: '2020-09-09T13:45:38Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/462/comments + created_at: '2020-09-09T11:11:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/462/events + html_url: https://github.com/packit/ogr/pull/462 + id: 696721276 labels: - color: 0e8a16 default: false @@ -52882,57 +66589,54 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/340/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/462/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc4MzA1ODAw - number: 340 + node_id: MDExOlB1bGxSZXF1ZXN0NDgyNzY1NDAz + number: 462 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/340.diff - html_url: https://github.com/packit/ogr/pull/340 - patch_url: https://github.com/packit/ogr/pull/340.patch - url: https://api.github.com/repos/packit/ogr/pulls/340 + diff_url: https://github.com/packit/ogr/pull/462.diff + html_url: https://github.com/packit/ogr/pull/462 + patch_url: https://github.com/packit/ogr/pull/462.patch + url: https://api.github.com/repos/packit/ogr/pulls/462 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Allow to filter issues by labels. - updated_at: '2020-02-28T10:17:42Z' - url: https://api.github.com/repos/packit/ogr/issues/340 + title: Validate commit flag state before setting + updated_at: '2020-09-09T16:04:05Z' + url: https://api.github.com/repos/packit/ogr/issues/462 user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 - events_url: https://api.github.com/users/cverna/events{/privacy} - followers_url: https://api.github.com/users/cverna/followers - following_url: https://api.github.com/users/cverna/following{/other_user} - gists_url: https://api.github.com/users/cverna/gists{/gist_id} + 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/cverna - id: 7237866 - login: cverna - node_id: MDQ6VXNlcjcyMzc4NjY= - organizations_url: https://api.github.com/users/cverna/orgs - received_events_url: https://api.github.com/users/cverna/received_events - repos_url: https://api.github.com/users/cverna/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/cverna/subscriptions - type: User - url: https://api.github.com/users/cverna - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #306 - - - Franto, we didn''t speak about this, but this how I expect it to work, - WDYT?' - closed_at: '2020-02-26T11:51:17Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/337/comments - created_at: '2020-02-20T21:27:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/337/events - html_url: https://github.com/packit/ogr/pull/337 - id: 568583084 + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "* Update pre-commit\r\n* Fix imports from PyGithub\r\n* Type-cast\ + \ `release.created_at` from datetime to string" + closed_at: '2020-09-03T09:09:02Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/460/comments + created_at: '2020-09-02T11:02:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/460/events + html_url: https://github.com/packit/ogr/pull/460 + id: 690926698 labels: - color: 0e8a16 default: false @@ -52941,181 +66645,287 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/337/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/460/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc3OTgyODUz - number: 337 + node_id: MDExOlB1bGxSZXF1ZXN0NDc3NzQxMTAx + number: 460 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/337.diff - html_url: https://github.com/packit/ogr/pull/337 - patch_url: https://github.com/packit/ogr/pull/337.patch - url: https://api.github.com/repos/packit/ogr/pulls/337 + diff_url: https://github.com/packit/ogr/pull/460.diff + html_url: https://github.com/packit/ogr/pull/460 + patch_url: https://github.com/packit/ogr/pull/460.patch + url: https://api.github.com/repos/packit/ogr/pulls/460 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: enable getting projects defined with SSH URLs - updated_at: '2020-02-26T11:51:17Z' - url: https://api.github.com/repos/packit/ogr/issues/337 + title: Update pre-commit configuration and fix mypy remarks + updated_at: '2020-09-03T09:14:01Z' + url: https://api.github.com/repos/packit/ogr/issues/460 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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} + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `f33` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-09-02T08:18:37Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/459/comments + created_at: '2020-09-02T07:22:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/459/events + html_url: https://github.com/packit/ogr/issues/459 + id: 690786308 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/459/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2OTA3ODYzMDg= + number: 459 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.14.0' + updated_at: '2020-09-02T08:18:37Z' + url: https://api.github.com/repos/packit/ogr/issues/459 + user: + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos 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 - assignees: - - avatar_url: https://avatars0.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} + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add remarks from review\n\ + * Refactor authentication in `GithubService`\n* Add suggestions from\ + \ review for token managers\n* Check for multiple auth methods in `GithubService`\n\ + * Add unit tests for parsing `tokman_instance_url`\n* Implement TokmanGithubTokenManager\n\ + * Implement suggestions from review\n* Introduce token managers for\ + \ GitHub App\n* Move getting github_instance from project to service\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.14.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-09-02T07:19:22Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/458/comments + created_at: '2020-09-01T13:58:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/458/events + html_url: https://github.com/packit/ogr/pull/458 + id: 690167196 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/458/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDc3MTAxNzA0 + number: 458 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/458.diff + html_url: https://github.com/packit/ogr/pull/458 + patch_url: https://github.com/packit/ogr/pull/458.patch + url: https://api.github.com/repos/packit/ogr/pulls/458 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.14.0 release + updated_at: '2020-09-02T07:23:29Z' + url: https://api.github.com/repos/packit/ogr/issues/458 + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/usercont-release-bot + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: 'see below: https://github.com/packit-service/ogr/issues/306#issuecomment-575204355' - closed_at: '2020-02-26T11:51:17Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/306/comments - created_at: '2020-01-10T15:38:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/306/events - html_url: https://github.com/packit/ogr/issues/306 - id: 548146892 + body: changed description + closed_at: '2018-12-13T14:24:08Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/1/comments + created_at: '2018-12-13T13:01:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/1/events + html_url: https://github.com/packit/ogr/pull/1 + id: 390668872 labels: - - color: '000000' + - color: ededed default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/306/labels{/name} + description: null + id: 1457192587 + name: test_lb1 + node_id: MDU6TGFiZWwxNDU3MTkyNTg3 + url: https://api.github.com/repos/packit/ogr/labels/test_lb1 + - color: ededed + default: false + description: null + id: 1457192593 + name: test_lb2 + node_id: MDU6TGFiZWwxNDU3MTkyNTkz + url: https://api.github.com/repos/packit/ogr/labels/test_lb2 + labels_url: https://api.github.com/repos/packit/ogr/issues/1/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDgxNDY4OTI= - number: 306 + node_id: MDExOlB1bGxSZXF1ZXN0MjM4MzgxNzIz + number: 1 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/1.diff + html_url: https://github.com/packit/ogr/pull/1 + patch_url: https://github.com/packit/ogr/pull/1.patch + url: https://api.github.com/repos/packit/ogr/pulls/1 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'ogr can''t figure out auth for SSH style of URL: git@github...' - updated_at: '2020-02-26T11:51:17Z' - url: https://api.github.com/repos/packit/ogr/issues/306 + title: 'WIP: API' + updated_at: '2020-08-26T11:58:33Z' + url: https://api.github.com/repos/packit/ogr/issues/1 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- Add diff_url to the PR classes.\r\n- Add missing setters to abstract\ - \ PR class.\r\n\r\nA rebased version of https://github.com/packit-service/ogr/pull/280\ - \ ." - closed_at: '2020-02-26T09:52:29Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/335/comments - created_at: '2020-02-20T06:22:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/335/events - html_url: https://github.com/packit/ogr/pull/335 - id: 568078329 + body: "The `ogr` is a nice, short name, but the 'meaning' should be changed.\r\ + \n\r\nFeel free to edit this comment.\r\n\r\n| O | G | R |\r\n| - |\ + \ - | - |\r\n| our | git | rule |\r\n| one | git-forge | revolution\ + \ |\r\n| open | | rebellion |\r\n| object | | realm |\r\n| only | |\ + \ route |\r\n| omnipotent | | rocket |\r\n| | | recipe |\r\n| | | rainbow\ + \ |\r\n| | | roadway |\r\n| | | reactor |\r\n| | | reunion |\r\n| |\ + \ | rebel |\r\n| | | ruler |\r\n\r\nPossible combinations (and votes):\r\ + \n- our-git-rebel @phracek \r\n- open-git-rainbow @phracek @TomasTomecek\ + \ \r\n- object-git-reactor @phracek \r\n- the [O]ne [G]it [R]uler @TomasTomecek\ + \ \r\n- [O]ne [G]it library to [R]ule @TomasTomecek @jpopelka\r\n- [O]mniponent\ + \ [G]it-forge [R]uler @jpopelka @lachmanfrantisek @TomasTomecek " + closed_at: '2019-02-14T13:28:27Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/4/comments + created_at: '2019-01-17T08:26:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/4/events + html_url: https://github.com/packit/ogr/issues/4 + id: 400160755 labels: - - color: 0e8a16 + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: 18e033 + description: null + id: 1457192587 + name: test_lb1 + node_id: MDU6TGFiZWwxNDU3MTkyNTg3 + url: https://api.github.com/repos/packit/ogr/labels/test_lb1 + - color: ededed default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/335/labels{/name} + description: null + id: 1457192593 + name: test_lb2 + node_id: MDU6TGFiZWwxNDU3MTkyNTkz + url: https://api.github.com/repos/packit/ogr/labels/test_lb2 + labels_url: https://api.github.com/repos/packit/ogr/issues/4/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc3NTcyNzgz - number: 335 + node_id: MDU6SXNzdWU0MDAxNjA3NTU= + number: 4 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/335.diff - html_url: https://github.com/packit/ogr/pull/335 - patch_url: https://github.com/packit/ogr/pull/335.patch - url: https://api.github.com/repos/packit/ogr/pulls/335 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: diff url for pull-requests - updated_at: '2020-02-26T10:14:51Z' - url: https://api.github.com/repos/packit/ogr/issues/335 + title: Better name + updated_at: '2020-08-26T10:58:41Z' + url: https://api.github.com/repos/packit/ogr/issues/4 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -53137,14 +66947,15 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-02-26T07:46:42Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/341/comments - created_at: '2020-02-25T13:21:16Z' - events_url: https://api.github.com/repos/packit/ogr/issues/341/events - html_url: https://github.com/packit/ogr/pull/341 - id: 570565436 + body: "- [x] Interface for token manager using github app\r\n- [x] Refactor\ + \ default solution\r\n- [x] Implement support for `tokman`" + closed_at: '2020-08-25T09:31:39Z' + comments: 18 + comments_url: https://api.github.com/repos/packit/ogr/issues/450/comments + created_at: '2020-08-11T09:16:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/450/events + html_url: https://github.com/packit/ogr/pull/450 + id: 676716034 labels: - color: 0e8a16 default: false @@ -53153,129 +66964,190 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/341/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/450/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc5NTc3NjE5 - number: 341 + node_id: MDExOlB1bGxSZXF1ZXN0NDY1OTc3NzQ2 + number: 450 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/341.diff - html_url: https://github.com/packit/ogr/pull/341 - patch_url: https://github.com/packit/ogr/pull/341.patch - url: https://api.github.com/repos/packit/ogr/pulls/341 + diff_url: https://github.com/packit/ogr/pull/450.diff + html_url: https://github.com/packit/ogr/pull/450 + patch_url: https://github.com/packit/ogr/pull/450.patch + url: https://api.github.com/repos/packit/ogr/pulls/450 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: simplify requre testcases and use requre base test class - updated_at: '2020-02-26T07:46:42Z' - url: https://api.github.com/repos/packit/ogr/issues/341 + title: Use tokman in ogr + updated_at: '2020-08-25T17:28:39Z' + url: https://api.github.com/repos/packit/ogr/issues/450 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: null - assignees: [] + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 author_association: CONTRIBUTOR - body: "Closes #211\r\n\r\nI added diff url to PullRequest.\r\n\r\nImplementation:\r\ - \n- [x] BasePullRequest\r\n- [x] Github\r\n- [x] Gitlab\r\n- [x] Pagure\r\ - \n\r\nBut I found diff url in api for github, so I \"guess\" url. \r\ - \nBut for github there are two option \"/files\" (consistent with other\ - \ services) or \".diff\" (consistent with Github api).\r\n\r\nFor example:\r\ - \nhttps://github.com/packit-service/ogr/pull/1/files\r\nand \r\nhttps://patch-diff.githubusercontent.com/raw/packit-service/ogr/pull/1.diff\r\ - \n\r\nI think \".files\" looks better and that option was in issue as\ - \ example, that why I chose this one. But if you want I can change to\ - \ github api option \".diff\" \r\n\r\nFor others services I couldn't\ - \ find in api, so I \"guess\" url. \r\n" - closed_at: '2020-02-20T08:39:54Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/280/comments - created_at: '2019-11-22T10:17:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/280/events - html_url: https://github.com/packit/ogr/pull/280 - id: 527108315 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/280/labels{/name} + body: "The current implementation of labels has no implementation of GitLabel\ + \ defined in the abstract classes, which would be consistent with what\ + \ is done for GitUser, GitProject etc. This is leading to inconsistent\ + \ typing in the library where we have the following function signatures\ + \ within the codebase:\r\n\r\nabstract.py\r\n`def get_issue_labels(self,\ + \ issue_id: int) -> List[Any]`\r\n\r\ngithub/project.py\r\n`def get_issue_labels(self,\ + \ issue_id: int) -> List[GithubLabel]`\r\n\r\ngitlab/project.py\r\n\ + `def get_issue_labels(self, issue_id: int) -> List[str]`\r\n\r\nWould\ + \ be good to make this consistent and inherit from a base class of GitLabel.\r\ + \n\r\n@lachmanfrantisek " + closed_at: null + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/263/comments + created_at: '2019-11-02T14:16:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/263/events + html_url: https://github.com/packit/ogr/issues/263 + id: 516607686 + labels: + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: bf6b0b + default: false + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + labels_url: https://api.github.com/repos/packit/ogr/issues/263/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ0NDQ0OTEz - number: 280 + node_id: MDU6SXNzdWU1MTY2MDc2ODY= + number: 263 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/280.diff - html_url: https://github.com/packit/ogr/pull/280 - patch_url: https://github.com/packit/ogr/pull/280.patch - url: https://api.github.com/repos/packit/ogr/pulls/280 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add url diff to PullRequest - updated_at: '2020-02-20T08:39:54Z' - url: https://api.github.com/repos/packit/ogr/issues/280 + state: open + title: Improve class structure for Labels type + updated_at: '2020-08-24T06:40:40Z' + url: https://api.github.com/repos/packit/ogr/issues/263 user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 - events_url: https://api.github.com/users/pawelkopka/events{/privacy} - followers_url: https://api.github.com/users/pawelkopka/followers - following_url: https://api.github.com/users/pawelkopka/following{/other_user} - gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/32942101?v=4 + events_url: https://api.github.com/users/svenharris/events{/privacy} + followers_url: https://api.github.com/users/svenharris/followers + following_url: https://api.github.com/users/svenharris/following{/other_user} + gists_url: https://api.github.com/users/svenharris/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/pawelkopka - id: 17784034 - login: pawelkopka - node_id: MDQ6VXNlcjE3Nzg0MDM0 - organizations_url: https://api.github.com/users/pawelkopka/orgs - received_events_url: https://api.github.com/users/pawelkopka/received_events - repos_url: https://api.github.com/users/pawelkopka/repos + html_url: https://github.com/svenharris + id: 32942101 + login: svenharris + node_id: MDQ6VXNlcjMyOTQyMTAx + organizations_url: https://api.github.com/users/svenharris/orgs + received_events_url: https://api.github.com/users/svenharris/received_events + repos_url: https://api.github.com/users/svenharris/repos site_admin: false - starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/svenharris/subscriptions type: User - url: https://api.github.com/users/pawelkopka + url: https://api.github.com/users/svenharris - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2020-02-19T14:45:23Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/324/comments - created_at: '2020-02-10T13:09:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/324/events - html_url: https://github.com/packit/ogr/pull/324 - id: 562549831 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/324/labels{/name} + closed_at: '2020-08-19T11:07:53Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/454/comments + created_at: '2020-08-19T11:02:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/454/events + html_url: https://github.com/packit/ogr/issues/454 + id: 681751158 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/454/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzczMTI1MDU5 - number: 324 + node_id: MDU6SXNzdWU2ODE3NTExNTg= + number: 454 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/324.diff - html_url: https://github.com/packit/ogr/pull/324 - patch_url: https://github.com/packit/ogr/pull/324.patch - url: https://api.github.com/repos/packit/ogr/pulls/324 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: updated PullRequest depr message - updated_at: '2020-02-19T14:52:32Z' - url: https://api.github.com/repos/packit/ogr/issues/324 + title: New patch release + updated_at: '2020-08-19T11:07:53Z' + url: https://api.github.com/repos/packit/ogr/issues/454 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -53298,13 +67170,13 @@ requests.sessions: assignees: [] author_association: MEMBER body: '' - closed_at: '2020-02-19T13:32:13Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/328/comments - created_at: '2020-02-17T13:41:25Z' - events_url: https://api.github.com/repos/packit/ogr/issues/328/events - html_url: https://github.com/packit/ogr/pull/328 - id: 566306913 + closed_at: '2020-08-17T08:56:28Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/453/comments + created_at: '2020-08-13T16:21:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/453/events + html_url: https://github.com/packit/ogr/pull/453 + id: 678564351 labels: - color: 0e8a16 default: false @@ -53313,87 +67185,192 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/328/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/453/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc2MTQyOTU3 - number: 328 + node_id: MDExOlB1bGxSZXF1ZXN0NDY3NDkwMTYz + number: 453 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/328.diff - html_url: https://github.com/packit/ogr/pull/328 - patch_url: https://github.com/packit/ogr/pull/328.patch - url: https://api.github.com/repos/packit/ogr/pulls/328 + diff_url: https://github.com/packit/ogr/pull/453.diff + html_url: https://github.com/packit/ogr/pull/453 + patch_url: https://github.com/packit/ogr/pull/453.patch + url: https://api.github.com/repos/packit/ogr/pulls/453 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: provide is_private method on GitProjects - updated_at: '2020-02-19T13:36:04Z' - url: https://api.github.com/repos/packit/ogr/issues/328 + title: https://github.com/packit-service -> https://github.com/packit + updated_at: '2020-08-17T09:27:06Z' + url: https://api.github.com/repos/packit/ogr/issues/453 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/jpopelka + _next: null + elapsed: 0.359212 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:51 GMT + ETag: W/"4a5386d0372cf22f7fcaeb742ccb44b275554e678b8ba79fd8d4e5e511248f8a" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78EFAF:1333984:6075DC8F + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4372' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '628' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=6: + - metadata: + latency: 0.3693668842315674 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: improve pagure error response to show additional info stored under - 'errors' key - closed_at: '2020-02-19T08:19:55Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/333/comments - created_at: '2020-02-18T15:47:01Z' - events_url: https://api.github.com/repos/packit/ogr/issues/333/events - html_url: https://github.com/packit/ogr/pull/333 - id: 566983390 + author_association: CONTRIBUTOR + body: "Add method where user can request access for a project.\r\n\r\n\ + - Gitlab - Implemented here - #439 \r\n- Github - After looking into\ + \ https://pygithub.readthedocs.io/en/latest/index.html (Seems its not\ + \ possible in Github to request for project access)\r\n- Pagure - Unsure\ + \ about the support (But unable to find anything here - https://pagure.io/api/0/#projects-tab)" + closed_at: '2020-08-17T00:45:05Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/440/comments + created_at: '2020-07-28T17:53:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/440/events + html_url: https://github.com/packit/ogr/issues/440 + id: 667259796 labels: - - color: 18e033 + - color: a2eeef default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - - color: 8be567 + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/440/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2NjcyNTk3OTY= + number: 440 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Implement request_access for project + updated_at: '2020-08-17T00:45:05Z' + url: https://api.github.com/repos/packit/ogr/issues/440 + user: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: Added unit test for Pagure.PullRequest.head_commit + closed_at: '2020-08-15T10:15:27Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/369/comments + created_at: '2020-03-27T14:53:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/369/events + html_url: https://github.com/packit/ogr/pull/369 + id: 589189620 + labels: + - color: '000000' default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/333/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/369/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc2NjkyMzc5 - number: 333 + node_id: MDExOlB1bGxSZXF1ZXN0Mzk0ODAwMjA0 + number: 369 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/333.diff - html_url: https://github.com/packit/ogr/pull/333 - patch_url: https://github.com/packit/ogr/pull/333.patch - url: https://api.github.com/repos/packit/ogr/pulls/333 + diff_url: https://github.com/packit/ogr/pull/369.diff + html_url: https://github.com/packit/ogr/pull/369 + patch_url: https://github.com/packit/ogr/pull/369.patch + url: https://api.github.com/repos/packit/ogr/pulls/369 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve pagure error response - updated_at: '2020-02-19T08:19:55Z' - url: https://api.github.com/repos/packit/ogr/issues/333 + title: Added unit test for Pagure.PullRequest.head_commit + updated_at: '2020-08-15T10:15:27Z' + url: https://api.github.com/repos/packit/ogr/issues/369 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -53415,124 +67392,269 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'fixes #331 ' - closed_at: '2020-02-18T15:30:01Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/332/comments - created_at: '2020-02-18T14:53:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/332/events - html_url: https://github.com/packit/ogr/pull/332 - id: 566946268 + body: "- [x] The contribution guide should be accessible from the README.md.\ + \ (#265 )\r\n- [ ] We need to be sure that the guide is current and\ + \ describes the testing approach well.\r\n- [ ] Document `/packit` command." + closed_at: '2020-08-14T09:27:22Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/165/comments + created_at: '2019-09-05T13:37:29Z' + events_url: https://api.github.com/repos/packit/ogr/issues/165/events + html_url: https://github.com/packit/ogr/issues/165 + id: 489761258 labels: - - color: 18e033 + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/332/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/165/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc2NjYxODE0 - number: 332 + node_id: MDU6SXNzdWU0ODk3NjEyNTg= + number: 165 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/332.diff - html_url: https://github.com/packit/ogr/pull/332 - patch_url: https://github.com/packit/ogr/pull/332.patch - url: https://api.github.com/repos/packit/ogr/pulls/332 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve pagure error response - updated_at: '2020-02-18T15:38:49Z' - url: https://api.github.com/repos/packit/ogr/issues/332 + title: Update and link the contribution guide in README + updated_at: '2020-08-14T17:30:15Z' + url: https://api.github.com/repos/packit/ogr/issues/165 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 - events_url: https://api.github.com/users/sakalosj/events{/privacy} - followers_url: https://api.github.com/users/sakalosj/followers - following_url: https://api.github.com/users/sakalosj/following{/other_user} - gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + 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/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-02-17T15:39:51Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/327/comments - created_at: '2020-02-17T13:24:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/327/events - html_url: https://github.com/packit/ogr/pull/327 - id: 566296821 + body: 'Closes #196 ' + closed_at: '2020-08-13T10:28:26Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/444/comments + created_at: '2020-08-03T09:30:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/444/events + html_url: https://github.com/packit/ogr/pull/444 + id: 671937907 labels: - color: 0e8a16 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/327/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/444/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDYyMDYyMjUw + number: 444 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/444.diff + html_url: https://github.com/packit/ogr/pull/444 + patch_url: https://github.com/packit/ogr/pull/444.patch + url: https://api.github.com/repos/packit/ogr/pulls/444 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Jupyter examples + updated_at: '2020-08-13T10:29:44Z' + url: https://api.github.com/repos/packit/ogr/issues/444 + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos + 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 + author_association: CONTRIBUTOR + body: "We have recently added a short usage section into the README.md\ + \ (#195).\r\n\r\nIt would be nice to create a new folder in the root\ + \ of this repository called `examples` and demonstrate various ogr functions.\r\ + \n\r\nFor me, the best way how to do it is to create a [Jupyter notebook](https://jupyter.org/)\ + \ as it is supported by GitHub and we can easily combine code snippets,\ + \ with outputs and comments in Markdown.\r\n\r\n*update by @lachmanfrantisek*\r\ + \n\r\nTODO:\r\n- [ ] Update the example in the README (something short).\r\ + \n- [ ] Create a folder `examples`.\r\n- [ ] Create some interesting\ + \ examples / usecases using [jupyter-notebook](https://jupyter.org/)\ + \ in that folder (github can display the `ipynb` files pretty well).\r\ + \n - Be sure, that you are not commiting your authentication tokens..;)\r\ + \n- [ ] Link the examples in the README or link the `examples/README.md`\ + \ where we can have more descriptive text for examples and links for\ + \ the specific `ipynb` files." + closed_at: '2020-08-13T10:28:26Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/196/comments + created_at: '2019-09-12T10:02:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/196/events + html_url: https://github.com/packit/ogr/issues/196 + id: 492708275 + labels: + - color: b60205 + default: false + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: bf6b0b + default: false + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/196/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc2MTM0NTY3 - number: 327 + node_id: MDU6SXNzdWU0OTI3MDgyNzU= + number: 196 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/327.diff - html_url: https://github.com/packit/ogr/pull/327 - patch_url: https://github.com/packit/ogr/pull/327.patch - url: https://api.github.com/repos/packit/ogr/pulls/327 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[.packit.yaml] remove no-longer needed keys & use aliases' - updated_at: '2020-02-17T15:43:04Z' - url: https://api.github.com/repos/packit/ogr/issues/327 + title: Examples for ogr usage using Jupyter notebook + updated_at: '2020-08-13T10:28:26Z' + url: https://api.github.com/repos/packit/ogr/issues/196 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/26160778?v=4 + events_url: https://api.github.com/users/rpitonak/events{/privacy} + followers_url: https://api.github.com/users/rpitonak/followers + following_url: https://api.github.com/users/rpitonak/following{/other_user} + gists_url: https://api.github.com/users/rpitonak/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/rpitonak + id: 26160778 + login: rpitonak + node_id: MDQ6VXNlcjI2MTYwNzc4 + organizations_url: https://api.github.com/users/rpitonak/orgs + received_events_url: https://api.github.com/users/rpitonak/received_events + repos_url: https://api.github.com/users/rpitonak/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/rpitonak/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/rpitonak/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/rpitonak - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-02-14T16:46:09Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/326/comments - created_at: '2020-02-14T15:50:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/326/events - html_url: https://github.com/packit/ogr/pull/326 - id: 565409429 + author_association: CONTRIBUTOR + body: 'Fixes #449 ' + closed_at: '2020-08-13T07:00:04Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/451/comments + created_at: '2020-08-12T21:44:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/451/events + html_url: https://github.com/packit/ogr/pull/451 + id: 677997734 labels: - color: 0e8a16 default: false @@ -53541,862 +67663,219 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/326/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/451/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0Mzc1NDUzMzA5 - number: 326 + node_id: MDExOlB1bGxSZXF1ZXN0NDY3MDIzODIw + number: 451 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/326.diff - html_url: https://github.com/packit/ogr/pull/326 - patch_url: https://github.com/packit/ogr/pull/326.patch - url: https://api.github.com/repos/packit/ogr/pulls/326 + diff_url: https://github.com/packit/ogr/pull/451.diff + html_url: https://github.com/packit/ogr/pull/451 + patch_url: https://github.com/packit/ogr/pull/451.patch + url: https://api.github.com/repos/packit/ogr/pulls/451 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[CONTRIBUTING.md] update' - updated_at: '2020-02-17T08:52:51Z' - url: https://api.github.com/repos/packit/ogr/issues/326 + title: Create issue in Github without labels + updated_at: '2020-08-13T07:00:04Z' + url: https://api.github.com/repos/packit/ogr/issues/451 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/jpopelka + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Seeing this on prod:\r\n\r\n```\r\n | [2019-10-29 08:25:38,794:\ - \ INFO/MainProcess] Received task: task.steve_jobs.process_message[9b4d1ddc-72e3-4bd8-8ff9-fb2cf96d8efb]\r\ - \n\_ | [2019-10-29 08:25:38,810: INFO/ForkPoolWorker-1] Copr build event,\ - \ topic: org.fedoraproject.prod.copr.build.start\r\n\_ | [2019-10-29\ - \ 08:25:38,812: WARNING/ForkPoolWorker-1] Cannot get project for this\ - \ build id: 1081435\r\n\_ | [2019-10-29 08:25:38,819: ERROR/ForkPoolWorker-1]\ - \ Task task.steve_jobs.process_message[9b4d1ddc-72e3-4bd8-8ff9-fb2cf96d8efb]\ - \ raised unexpected: TypeError(\"argument of type 'NoneType' is not\ - \ iterable\")\r\n\_ | Traceback (most recent call last):\r\n\_ | File\ - \ \"/usr/lib/python3.7/site-packages/celery/app/trace.py\", line 382,\ - \ in trace_task\r\n\_ | R = retval = fun(*args, **kwargs)\r\n\_ | File\ - \ \"/usr/lib/python3.7/site-packages/celery/app/trace.py\", line 641,\ - \ in __protected_call__\r\n\_ | return self.run(*args, **kwargs)\r\n\ - \_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/celery.py\"\ - , line 155, in _inner\r\n\_ | reraise(*exc_info)\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/_compat.py\"\ - , line 57, in reraise\r\n\_ | raise value\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/sentry_sdk/integrations/celery.py\"\ - , line 150, in _inner\r\n\_ | return f(*args, **kwargs)\r\n\_ | File\ - \ \"/usr/local/lib/python3.7/site-packages/packit_service/worker/tasks.py\"\ - , line 47, in process_message\r\n\_ | return SteveJobs().process_message(event=event,\ - \ topic=topic)\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/packit_service/worker/jobs.py\"\ - , line 218, in process_message\r\n\_ | project\r\n\_ | File \"/usr/local/lib/python3.7/site-packages/packit/config.py\"\ - , line 212, in _get_project\r\n\_ | project = get_project(url=url, custom_instances=self.services)\r\ - \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ - , line 83, in get_project\r\n\_ | kls = get_service_class(url=url, service_mapping_update=service_mapping_update)\r\ - \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ - , line 135, in get_service_class\r\n\_ | url=url, service_mapping_update=service_mapping_update\r\ - \n\_ | File \"/usr/local/lib/python3.7/site-packages/ogr/factory.py\"\ - , line 118, in get_service_class_or_none\r\n\_ | if service in url:\r\ - \n\_ | TypeError: argument of type 'NoneType' is not iterable\r\n```\r\ - \n" - closed_at: '2020-02-16T09:26:02Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/261/comments - created_at: '2019-10-29T09:31:09Z' - events_url: https://api.github.com/repos/packit/ogr/issues/261/events - html_url: https://github.com/packit/ogr/issues/261 - id: 513793392 + author_association: NONE + body: "Sentry Issue: [RED-HAT-0P-2RX](https://sentry.io/organizations/red-hat-0p/issues/1828647684/?referrer=github_integration)\r\ + \n\r\n```\r\nTypeError: 'NoneType' object is not iterable\r\n(2 additional\ + \ frame(s) were not displayed)\r\n...\r\n File \"packit_service/worker/handlers/abstract.py\"\ + , line 152, in run_n_clean\r\n return self.run()\r\n File \"packit_service/worker/handlers/github_handlers.py\"\ + , line 213, in run\r\n body=body_msg,\r\n File \"ogr/services/github/project.py\"\ + , line 313, in create_issue\r\n return GithubIssue.create(project=self,\ + \ title=title, body=body, labels=labels)\r\n File \"ogr/services/github/issue.py\"\ + , line 101, in create\r\n title=title, body=body, labels=labels\r\ + \n File \"github/Repository.py\", line 1063, in create_issue\r\n \ + \ assert labels is github.GithubObject.NotSet or all(isinstance(element,\ + \ github.Label.Label) or isinstance(element, str) for element in labels),\ + \ labels\r\n```\r\n\r\nRecently we added `labels` parameters to `create_issue`\ + \ method and it defaults to None, but it should probably default to\ + \ [] so that it does not fail on the line with `assert`." + closed_at: '2020-08-13T07:00:04Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/449/comments + created_at: '2020-08-10T07:47:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/449/events + html_url: https://github.com/packit/ogr/issues/449 + id: 675938538 labels: - - color: '000000' + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff default: false - description: Is the issue still valid? - id: 1670132619 - name: stale - node_id: MDU6TGFiZWwxNjcwMTMyNjE5 - url: https://api.github.com/repos/packit/ogr/labels/stale - labels_url: https://api.github.com/repos/packit/ogr/issues/261/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9e231 + default: false + description: High priority. + id: 1432779316 + name: high-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzE2 + url: https://api.github.com/repos/packit/ogr/labels/high-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/449/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTM3OTMzOTI= - number: 261 + node_id: MDU6SXNzdWU2NzU5Mzg1Mzg= + number: 449 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[get_service_class_or_none()] TypeError: argument of type ''NoneType'' + title: 'Creating issues in Github fails with TypeError: ''NoneType'' object is not iterable' - updated_at: '2020-02-16T09:26:02Z' - url: https://api.github.com/repos/packit/ogr/issues/261 + updated_at: '2020-08-13T07:00:04Z' + url: https://api.github.com/repos/packit/ogr/issues/449 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/in/12637?v=4 + events_url: https://api.github.com/users/sentry-io%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/sentry-io%5Bbot%5D/followers + following_url: https://api.github.com/users/sentry-io%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/sentry-io%5Bbot%5D/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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/apps/sentry-io + id: 39604003 + login: sentry-io[bot] + node_id: MDM6Qm90Mzk2MDQwMDM= + organizations_url: https://api.github.com/users/sentry-io%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/sentry-io%5Bbot%5D/received_events + repos_url: https://api.github.com/users/sentry-io%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/sentry-io%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sentry-io%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/sentry-io%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "There are many warnings and errors when running `mypy` in a strict\ - \ mode. Each error can mean potentially problematic part of the code.\ - \ (The goal is to make the code better, not only to silence the mypy.)\ - \ \r\n\r\nIt would be nice to reduce the number of errors/warnings.\r\ - \n\r\nWhat you can do:\r\n- Run the mypy on the code:\r\n ```sh\r\n\ - \ mypy ogr --strict\r\n ```\r\n- pick an error/warning\r\n- try to\ - \ fix the problem which can mean\r\n - adding a type annotation\r\n\ - \ - changing the type annotation\r\n - adding some test for the input\ - \ and raising a propper exception\r\n - something else\r\n- send a\ - \ PR with the fix or raise an issue if you found some problem, that\ - \ cannot be easily fixed\r\n\r\nThis does not need to be done in one\ - \ PR. Also, one fixed error can be useful to us.\r\n\r\n
\r\n\ - 'mypy ogr --strict' output\r\n\r\n```\r\n$ mypy ogr\ - \ --strict\r\nogr/deprecation.py:23: error: Cannot find module named\ - \ 'deprecated'\r\nogr/deprecation.py:26: error: Function is missing\ - \ a type annotation\r\nogr/abstract.py:73: error: Function is missing\ - \ a return type annotation\r\nogr/abstract.py:94: error: Incompatible\ - \ return value type (got \"Optional[datetime]\", expected \"datetime\"\ - )\r\nogr/abstract.py:98: error: Incompatible return value type (got\ - \ \"Optional[datetime]\", expected \"datetime\")\r\nogr/abstract.py:104:\ - \ error: Incompatible return value type (got \"Optional[Any]\", expected\ - \ \"Issue\")\r\nogr/abstract.py:113: error: Incompatible return value\ - \ type (got \"Optional[Any]\", expected \"PullRequest\")\r\nogr/abstract.py:159:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/abstract.py:227:\ - \ error: Incompatible default for argument \"filter_regex\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/abstract.py:227:\ - \ error: Incompatible default for argument \"author\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/abstract.py:282: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/abstract.py:282: error: Untyped decorator makes function \"__init__\"\ - \ untyped\r\nogr/abstract.py:373: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1079: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1099: error: Incompatible default for argument\ - \ \"fork_username\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/abstract.py:1248: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/utils.py:28: error: Cannot find module named 'git'\r\n\ - ogr/read_only.py:52: error: Missing type parameters for generic type\ - \ \"Callable\"\r\nogr/read_only.py:66: error: Function is missing a\ - \ type annotation\r\nogr/read_only.py:68: error: Function is missing\ - \ a type annotation\r\nogr/read_only.py:157: error: Call to untyped\ - \ function \"deprecate_and_set_removal\" in typed context\r\nogr/read_only.py:157:\ - \ error: Untyped decorator makes function \"pr_create\" untyped\r\n\ - ogr/read_only.py:169: error: Incompatible default for argument \"fork_username\"\ - \ (default has type \"None\", argument has type \"str\")\r\nogr/read_only.py:187:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/read_only.py:208:\ - \ error: Incompatible default for argument \"commit\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/read_only.py:209: error:\ - \ Incompatible default for argument \"filename\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/read_only.py:210: error: Incompatible\ - \ default for argument \"row\" (default has type \"None\", argument\ - \ has type \"int\")\r\nogr/read_only.py:227: error: Returning Any from\ - \ function declared to return \"PullRequest\"\r\nogr/read_only.py:233:\ - \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/read_only.py:252: error: Returning Any from function declared\ - \ to return \"GitProject\"\r\nogr/factory.py:33: error: Function is\ - \ missing a return type annotation\r\nogr/factory.py:33: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/factory.py:57:\ - \ error: Function is missing a type annotation\r\nogr/factory.py:59:\ - \ error: Function is missing a return type annotation\r\nogr/factory.py:65:\ - \ error: Call to untyped function \"decorator_cover\" in typed context\r\ - \nogr/factory.py:68: error: Function is missing a type annotation for\ - \ one or more arguments\r\nogr/factory.py:70: error: Incompatible default\ - \ for argument \"service_mapping_update\" (default has type \"None\"\ - , argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:71:\ - \ error: Incompatible default for argument \"custom_instances\" (default\ - \ has type \"None\", argument has type \"Iterable[GitService]\")\r\n\ - ogr/factory.py:97: error: Item \"None\" of \"Optional[RepoUrl]\" has\ - \ no attribute \"get_instance_url\"\r\nogr/factory.py:103: error: Incompatible\ - \ default for argument \"service_mapping_update\" (default has type\ - \ \"None\", argument has type \"Dict[str, Type[GitService]]\")\r\nogr/factory.py:125:\ - \ error: Incompatible default for argument \"service_mapping_update\"\ - \ (default has type \"None\", argument has type \"Dict[str, Type[GitService]]\"\ - )\r\nogr/factory.py:142: error: Implicit generic \"Any\". Use \"typing.Dict\"\ - \ and specify generic parameters\r\nogr/services/gitlab/comments.py:26:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/comments.py:41:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/comments.py:50: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/github/comments.py:25:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/comments.py:25:\ - \ note: See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports\r\ - \nogr/services/github/comments.py:38: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/comments.py:46:\ - \ error: Returning Any from function declared to return \"datetime\"\ - \r\nogr/services/base.py:64: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:64: error: Untyped decorator\ - \ makes function \"get_pr_comments\" untyped\r\nogr/services/base.py:65:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/base.py:70: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/base.py:70: error: Incompatible default for argument\ - \ \"author\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/base.py:83: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:83: error: Untyped decorator\ - \ makes function \"search_in_pr\" untyped\r\nogr/services/base.py:106:\ - \ error: Untyped decorator makes function \"pr_close\" untyped\r\nogr/services/base.py:107:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:107: error: Untyped decorator makes\ - \ function \"pr_close\" untyped\r\nogr/services/base.py:115: error:\ - \ Untyped decorator makes function \"pr_merge\" untyped\r\nogr/services/base.py:116:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:116: error: Untyped decorator makes\ - \ function \"pr_merge\" untyped\r\nogr/services/base.py:124: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:124: error: Untyped decorator makes function\ - \ \"get_pr_labels\" untyped\r\nogr/services/base.py:132: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:132: error: Untyped decorator makes function\ - \ \"add_pr_labels\" untyped\r\nogr/services/base.py:140: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:140: error: Untyped decorator makes function\ - \ \"get_pr_info\" untyped\r\nogr/services/base.py:148: error: Call to\ - \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:148: error: Untyped decorator makes function \"\ - update_pr_info\" untyped\r\nogr/services/base.py:158: error: Call to\ - \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:158: error: Untyped decorator makes function \"\ - get_all_pr_commits\" untyped\r\nogr/services/base.py:166: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:166: error: Untyped decorator makes function\ - \ \"_get_all_pr_comments\" untyped\r\nogr/services/base.py:174: error:\ - \ Untyped decorator makes function \"pr_comment\" untyped\r\nogr/services/base.py:178:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:178: error: Untyped decorator makes\ - \ function \"pr_comment\" untyped\r\nogr/services/base.py:187: error:\ - \ Incompatible default for argument \"commit\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/services/base.py:188: error:\ - \ Incompatible default for argument \"filename\" (default has type \"\ - None\", argument has type \"str\")\r\nogr/services/base.py:189: error:\ - \ Incompatible default for argument \"row\" (default has type \"None\"\ - , argument has type \"int\")\r\nogr/services/base.py:193: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:193: error: Untyped decorator makes function\ - \ \"get_issue_comments\" untyped\r\nogr/services/base.py:194: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/base.py:201: error: Incompatible default for argument \"\ - filter_regex\" (default has type \"None\", argument has type \"str\"\ - )\r\nogr/services/base.py:203: error: Incompatible default for argument\ - \ \"author\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/base.py:207: error: Call to untyped function \"deprecate_and_set_removal\"\ - \ in typed context\r\nogr/services/base.py:207: error: Untyped decorator\ - \ makes function \"pr_create\" untyped\r\nogr/services/base.py:218:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/base.py:228:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:228: error: Untyped decorator makes\ - \ function \"can_close_issue\" untyped\r\nogr/services/base.py:236:\ - \ error: Call to untyped function \"deprecate_and_set_removal\" in typed\ - \ context\r\nogr/services/base.py:236: error: Untyped decorator makes\ - \ function \"get_issue_info\" untyped\r\nogr/services/base.py:244: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:244: error: Untyped decorator makes function\ - \ \"_get_all_issue_comments\" untyped\r\nogr/services/base.py:252: error:\ - \ Call to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:252: error: Untyped decorator makes function\ - \ \"issue_comment\" untyped\r\nogr/services/base.py:260: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:260: error: Untyped decorator makes function\ - \ \"issue_close\" untyped\r\nogr/services/base.py:268: error: Call to\ - \ untyped function \"deprecate_and_set_removal\" in typed context\r\n\ - ogr/services/base.py:268: error: Untyped decorator makes function \"\ - get_issue_labels\" untyped\r\nogr/services/base.py:276: error: Call\ - \ to untyped function \"deprecate_and_set_removal\" in typed context\r\ - \nogr/services/base.py:276: error: Untyped decorator makes function\ - \ \"add_issue_labels\" untyped\r\nogr/services/base.py:330: error: Function\ - \ is missing a return type annotation\r\nogr/services/base.py:330: error:\ - \ Argument 1 of \"get_comments\" is incompatible with supertype \"PullRequest\"\ - ; supertype defines the argument type as \"Optional[str]\"\r\nogr/services/base.py:330:\ - \ error: Argument 3 of \"get_comments\" is incompatible with supertype\ - \ \"PullRequest\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/base.py:331: error: Incompatible default for argument\ - \ \"filter_regex\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/base.py:331: error: Incompatible default for\ - \ argument \"author\" (default has type \"None\", argument has type\ - \ \"str\")\r\nogr/services/base.py:336: error: Function is missing a\ - \ return type annotation\r\nogr/services/base.py:360: error: Incompatible\ - \ default for argument \"filter_regex\" (default has type \"None\",\ - \ argument has type \"str\")\r\nogr/services/base.py:360: error: Incompatible\ - \ default for argument \"author\" (default has type \"None\", argument\ - \ has type \"str\")\r\nogr/services/pagure/release.py:28: error: Name\ - \ 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:37:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/release.py:42:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/release.py:46:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:38:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:40:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/pull_request.py:44:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/pull_request.py:44:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/pull_request.py:51:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:52: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:60:\ - \ error: Returning Any from function declared to return \"int\"\r\n\ - ogr/services/pagure/pull_request.py:64: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:80:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:81: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:89:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/pull_request.py:93: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/pull_request.py:97:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/pull_request.py:106: error: Function is missing\ - \ a type annotation for one or more arguments\r\nogr/services/pagure/pull_request.py:106:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/pull_request.py:107: error: Returning\ - \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/pull_request.py:113:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:118:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/pull_request.py:139:\ - \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/services/pagure/pull_request.py:139: error: Call to untyped\ - \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:142:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/pull_request.py:144:\ - \ error: Returning Any from function declared to return \"PullRequest\"\ - \r\nogr/services/pagure/pull_request.py:144: error: Call to untyped\ - \ function \"PagurePullRequest\" in typed context\r\nogr/services/pagure/pull_request.py:147:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/pull_request.py:148: error: Name 'ogr_pagure.PagureProject'\ - \ is not defined\r\nogr/services/pagure/pull_request.py:160: error:\ - \ Call to untyped function \"PagurePullRequest\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:181: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/pull_request.py:228:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/pull_request.py:229: error: Returning Any from function\ - \ declared to return \"List[CommitFlag]\"\r\nogr/services/pagure/issue.py:33:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:35:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/issue.py:39:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/issue.py:39:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/issue.py:46:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/issue.py:47: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:51: error:\ - \ Returning Any from function declared to return \"int\"\r\nogr/services/pagure/issue.py:55:\ - \ error: Call to untyped function \"__update\" in typed context\r\n\ - ogr/services/pagure/issue.py:60: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:66: error:\ - \ Call to untyped function \"__update\" in typed context\r\nogr/services/pagure/issue.py:67:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/issue.py:71: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/issue.py:79: error:\ - \ Returning Any from function declared to return \"List[str]\"\r\nogr/services/pagure/issue.py:86:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:97:\ - \ error: Returning Any from function declared to return \"Issue\"\r\n\ - ogr/services/pagure/issue.py:97: error: Call to untyped function \"\ - PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:100:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:102:\ - \ error: Returning Any from function declared to return \"Issue\"\r\n\ - ogr/services/pagure/issue.py:102: error: Call to untyped function \"\ - PagureIssue\" in typed context\r\nogr/services/pagure/issue.py:106:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/issue.py:118:\ - \ error: Call to untyped function \"PagureIssue\" in typed context\r\ - \nogr/services/pagure/issue.py:121: error: Call to untyped function\ - \ \"__update\" in typed context\r\nogr/services/pagure/flag.py:41: error:\ - \ Function is missing a return type annotation\r\nogr/services/pagure/flag.py:41:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/pagure/flag.py:42:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:43:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:44:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:45:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:46:\ - \ error: Value of type \"Optional[Any]\" is not indexable\r\nogr/services/pagure/flag.py:49:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:58:\ - \ error: Name 'ogr_pagure.PagureProject' is not defined\r\nogr/services/pagure/flag.py:64:\ - \ error: Incompatible default for argument \"percent\" (default has\ - \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/flag.py:66:\ - \ error: Incompatible default for argument \"uid\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:47:\ - \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:53:\ - \ error: Name 'ogr_pagure.PagureService' is not defined\r\nogr/services/pagure/project.py:54:\ - \ error: Incompatible default for argument \"username\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:57:\ - \ error: Argument 3 to \"__init__\" of \"GitProject\" has incompatible\ - \ type \"Optional[str]\"; expected \"str\"\r\nogr/services/pagure/project.py:64:\ - \ error: Incompatible types in assignment (expression has type \"Optional[str]\"\ - , variable has type \"str\")\r\nogr/services/pagure/project.py:88: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/pagure/project.py:93: error: Incompatible default for argument\ - \ \"method\" (default has type \"None\", argument has type \"str\")\r\ - \nogr/services/pagure/project.py:94: error: Implicit generic \"Any\"\ - . Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/project.py:94:\ - \ error: Incompatible default for argument \"params\" (default has type\ - \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:95:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:95: error: Incompatible\ - \ default for argument \"data\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:96:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:108: error: Call to untyped\ - \ function \"_get_project_url\" in typed context\r\nogr/services/pagure/project.py:117:\ - \ error: Returning Any from function declared to return \"Dict[Any,\ - \ Any]\"\r\nogr/services/pagure/project.py:119: error: Function is missing\ - \ a type annotation for one or more arguments\r\nogr/services/pagure/project.py:124:\ - \ error: Incompatible default for argument \"method\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:125:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:125: error: Incompatible\ - \ default for argument \"params\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:126:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/project.py:126: error: Incompatible\ - \ default for argument \"data\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/project.py:139:\ - \ error: Call to untyped function \"_get_project_url\" in typed context\r\ - \nogr/services/pagure/project.py:148: error: Returning Any from function\ - \ declared to return \"RequestResponse\"\r\nogr/services/pagure/project.py:150:\ - \ error: Function is missing a type annotation\r\nogr/services/pagure/project.py:151:\ - \ error: Need type annotation for 'additional_parts' (hint: \"additional_parts:\ - \ List[] = ...\")\r\nogr/services/pagure/project.py:163: error:\ - \ Function is missing a return type annotation\r\nogr/services/pagure/project.py:169:\ - \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/pagure/project.py:172: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/project.py:172:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:175: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:176:\ - \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/pagure/project.py:180: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:189:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:195: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/pagure/project.py:216:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/project.py:226: error: Untyped decorator makes\ - \ function \"create_pr\" untyped\r\nogr/services/pagure/project.py:233:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:243:\ - \ error: Untyped decorator makes function \"fork_create\" untyped\r\n\ - ogr/services/pagure/project.py:275: error: Call to untyped function\ - \ \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:281:\ - \ error: Returning Any from function declared to return \"Optional[PagureProject]\"\ - \r\nogr/services/pagure/project.py:290: error: Function is missing a\ - \ return type annotation\r\nogr/services/pagure/project.py:301: error:\ - \ Call to untyped function \"exists\" in typed context\r\nogr/services/pagure/project.py:301:\ - \ error: Item \"None\" of \"Optional[PagureProject]\" has no attribute\ - \ \"exists\"\r\nogr/services/pagure/project.py:304: error: Call to untyped\ - \ function \"get_project_info\" in typed context\r\nogr/services/pagure/project.py:318:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/project.py:325: error: Returning Any from function\ - \ declared to return \"Dict[str, str]\"\r\nogr/services/pagure/project.py:335:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/project.py:353: error: Argument 3 of \"commit_comment\"\ - \ is incompatible with supertype \"GitProject\"; supertype defines the\ - \ argument type as \"Optional[str]\"\r\nogr/services/pagure/project.py:353:\ - \ error: Argument 4 of \"commit_comment\" is incompatible with supertype\ - \ \"GitProject\"; supertype defines the argument type as \"Optional[int]\"\ - \r\nogr/services/pagure/project.py:354: error: Incompatible default\ - \ for argument \"filename\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/pagure/project.py:354: error: Incompatible\ - \ default for argument \"row\" (default has type \"None\", argument\ - \ has type \"int\")\r\nogr/services/pagure/project.py:358: error: Untyped\ - \ decorator makes function \"set_commit_status\" untyped\r\nogr/services/pagure/project.py:366:\ - \ error: Incompatible default for argument \"percent\" (default has\ - \ type \"None\", argument has type \"int\")\r\nogr/services/pagure/project.py:367:\ - \ error: Incompatible default for argument \"uid\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/project.py:440:\ - \ error: Call to untyped function \"get_project_info\" in typed context\r\ - \nogr/services/pagure/user.py:31: error: Name 'ogr_pagure.PagureService'\ - \ is not defined\r\nogr/services/pagure/user.py:33: error: Name 'ogr_pagure.PagureService'\ - \ is not defined\r\nogr/services/pagure/user.py:43: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/pagure/service.py:42:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:44: error: Incompatible default for\ - \ argument \"token\" (default has type \"None\", argument has type \"\ - str\")\r\nogr/services/pagure/service.py:81: error: Returning Any from\ - \ function declared to return \"bool\"\r\nogr/services/pagure/service.py:92:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:103: error: Item \"None\" of \"Optional[RepoUrl]\"\ - \ has no attribute \"repo\"\r\nogr/services/pagure/service.py:104: error:\ - \ Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"namespace\"\ - \r\nogr/services/pagure/service.py:105: error: Item \"None\" of \"Optional[RepoUrl]\"\ - \ has no attribute \"is_fork\"\r\nogr/services/pagure/service.py:106:\ - \ error: Item \"None\" of \"Optional[RepoUrl]\" has no attribute \"\ - username\"\r\nogr/services/pagure/service.py:114: error: Function is\ - \ missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:115:\ - \ error: Incompatible default for argument \"method\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/pagure/service.py:115:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/service.py:115: error: Incompatible\ - \ default for argument \"params\" (default has type \"None\", argument\ - \ has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:116:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/pagure/service.py:149: error: Returning\ - \ Any from function declared to return \"Dict[Any, Any]\"\r\nogr/services/pagure/service.py:151:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:151:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:152: error: Incompatible default for\ - \ argument \"method\" (default has type \"None\", argument has type\ - \ \"str\")\r\nogr/services/pagure/service.py:152: error: Implicit generic\ - \ \"Any\". Use \"typing.Dict\" and specify generic parameters\r\nogr/services/pagure/service.py:152:\ - \ error: Incompatible default for argument \"params\" (default has type\ - \ \"None\", argument has type \"Dict[Any, Any]\")\r\nogr/services/pagure/service.py:165:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/pagure/service.py:193: error: Function is missing a return\ - \ type annotation\r\nogr/services/pagure/service.py:196: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/services/pagure/service.py:209:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/pagure/service.py:219: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/pagure/service.py:221:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:230:\ - \ error: Function is missing a return type annotation\r\nogr/services/pagure/service.py:272:\ - \ error: Argument 2 to \"__handle_project_create_fail\" of \"PagureService\"\ - \ has incompatible type \"Optional[str]\"; expected \"str\"\r\nogr/services/gitlab/user.py:28:\ - \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:30:\ - \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/user.py:37:\ - \ error: Function is missing a return type annotation\r\nogr/services/gitlab/user.py:41:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/user.py:44: error: Returning Any from function declared\ - \ to return \"str\"\r\nogr/services/gitlab/release.py:30: error: Name\ - \ 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/release.py:32:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/release.py:39: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/release.py:46: error: Function\ - \ is missing a return type annotation\r\nogr/services/gitlab/release.py:50:\ - \ error: Function is missing a return type annotation\r\nogr/services/gitlab/pull_request.py:26:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/pull_request.py:36:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:40:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:49: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/gitlab/pull_request.py:61:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:65: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:74:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:78: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/pull_request.py:82:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/pull_request.py:86: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/gitlab/pull_request.py:90:\ - \ error: Returning Any from function declared to return \"List[str]\"\ - \r\nogr/services/gitlab/pull_request.py:97: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/pull_request.py:102: error:\ - \ Incompatible default for argument \"fork_username\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/gitlab/pull_request.py:115:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/pull_request.py:121:\ - \ error: Name 'ogr_gitlab.GitlabProject' is not defined\r\nogr/services/gitlab/issue.py:26:\ - \ error: Cannot find module named 'gitlab'\r\nogr/services/gitlab/issue.py:27:\ - \ error: Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/issue.py:41:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/issue.py:50: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/gitlab/issue.py:62: error:\ - \ Returning Any from function declared to return \"str\"\r\nogr/services/gitlab/issue.py:66:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/issue.py:75: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/issue.py:79: error:\ - \ Returning Any from function declared to return \"datetime\"\r\nogr/services/gitlab/issue.py:82:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/services/gitlab/issue.py:83:\ - \ error: Returning Any from function declared to return \"List[Any]\"\ - \r\nogr/services/gitlab/issue.py:89: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/issue.py:94: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/issue.py:102: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/flag.py:27: error: Cannot find\ - \ module named 'gitlab'\r\nogr/services/gitlab/flag.py:52: error: Function\ - \ is missing a return type annotation\r\nogr/services/gitlab/flag.py:52:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/gitlab/flag.py:53:\ - \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"sha\"\ - \r\nogr/services/gitlab/flag.py:54: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"status\"\r\nogr/services/gitlab/flag.py:55: error:\ - \ Item \"None\" of \"Optional[Any]\" has no attribute \"name\"\r\nogr/services/gitlab/flag.py:56:\ - \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ - \r\nogr/services/gitlab/flag.py:57: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"id\"\r\nogr/services/gitlab/flag.py:58: error:\ - \ Item \"None\" of \"Optional[Any]\" has no attribute \"target_url\"\ - \r\nogr/services/gitlab/flag.py:61: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/flag.py:76: error: Name 'ogr_gitlab.GitlabProject'\ - \ is not defined\r\nogr/services/gitlab/project.py:26: error: Cannot\ - \ find module named 'gitlab'\r\nogr/services/gitlab/project.py:27: error:\ - \ Cannot find module named 'gitlab.v4.objects'\r\nogr/services/gitlab/project.py:53:\ - \ error: Name 'ogr_gitlab.GitlabService' is not defined\r\nogr/services/gitlab/project.py:55:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:58: error: Name 'ogr_gitlab.GitlabService'\ - \ is not defined\r\nogr/services/gitlab/project.py:126: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/gitlab/project.py:181:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:209: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/gitlab/project.py:220:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:231:\ - \ error: Argument 3 of \"commit_comment\" is incompatible with supertype\ - \ \"GitProject\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/gitlab/project.py:231: error: Argument 4 of \"commit_comment\"\ - \ is incompatible with supertype \"GitProject\"; supertype defines the\ - \ argument type as \"Optional[int]\"\r\nogr/services/gitlab/project.py:232:\ - \ error: Incompatible default for argument \"filename\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/gitlab/project.py:232:\ - \ error: Incompatible default for argument \"row\" (default has type\ - \ \"None\", argument has type \"int\")\r\nogr/services/gitlab/project.py:317:\ - \ error: Function is missing a return type annotation\r\nogr/services/gitlab/project.py:323:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:331: error: Incompatible default for\ - \ argument \"filter_regex\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/gitlab/project.py:389: error: Function\ - \ is missing a type annotation for one or more arguments\r\nogr/services/gitlab/project.py:395:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/project.py:413: error: Function is missing a return\ - \ type annotation\r\nogr/services/gitlab/project.py:437: error: Function\ - \ is missing a type annotation\r\nogr/services/gitlab/project.py:449:\ - \ error: Call to untyped function \"_normalize_label_color\" in typed\ - \ context\r\nogr/services/gitlab/project.py:462: error: Function is\ - \ missing a type annotation\r\nogr/services/gitlab/project.py:468: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/gitlab/project.py:473: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/gitlab/project.py:492:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/gitlab/service.py:23: error: Cannot find module named 'gitlab'\r\ - \nogr/services/gitlab/service.py:36: error: Function is missing a type\ - \ annotation\r\nogr/services/gitlab/service.py:71: error: Returning\ - \ Any from function declared to return \"bool\"\r\nogr/services/gitlab/service.py:80:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/gitlab/service.py:91: error: Argument 2 of \"project_create\"\ - \ is incompatible with supertype \"GitService\"; supertype defines the\ - \ argument type as \"Optional[str]\"\r\nogr/services/gitlab/service.py:91:\ - \ error: Incompatible default for argument \"namespace\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/github/release.py:23:\ - \ error: Cannot find module named 'github.GitRelease'\r\nogr/services/github/release.py:30:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/release.py:39:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/release.py:46:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/release.py:50:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/pull_request.py:27:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/pull_request.py:28:\ - \ error: Cannot find module named 'github.Label'\r\nogr/services/github/pull_request.py:29:\ - \ error: Cannot find module named 'github.PullRequest'\r\nogr/services/github/pull_request.py:43:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:47:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:55: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/github/pull_request.py:67:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:71: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/pull_request.py:79:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:83: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/pull_request.py:87:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/pull_request.py:91: error: Returning Any from function\ - \ declared to return \"datetime\"\r\nogr/services/github/pull_request.py:102:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:107:\ - \ error: Incompatible default for argument \"fork_username\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/github/pull_request.py:129:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/pull_request.py:135:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:26:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/issue.py:27:\ - \ error: Cannot find module named 'github.Issue'\r\nogr/services/github/issue.py:40:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:51:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/issue.py:59: error: Returning Any from function\ - \ declared to return \"int\"\r\nogr/services/github/issue.py:67: error:\ - \ Returning Any from function declared to return \"str\"\r\nogr/services/github/issue.py:71:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/issue.py:79: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/issue.py:83: error:\ - \ Returning Any from function declared to return \"datetime\"\r\nogr/services/github/issue.py:86:\ - \ error: Missing type parameters for generic type \"List\"\r\nogr/services/github/issue.py:93:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:98:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/issue.py:104:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/flag.py:25:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/flag.py:42:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/flag.py:42:\ - \ note: Use \"-> None\" if function does not return a value\r\nogr/services/github/flag.py:43:\ - \ error: Item \"None\" of \"Optional[Any]\" has no attribute \"state\"\ - \r\nogr/services/github/flag.py:44: error: Item \"None\" of \"Optional[Any]\"\ - \ has no attribute \"context\"\r\nogr/services/github/flag.py:45: error:\ - \ Item \"None\" of \"Optional[Any]\" has no attribute \"description\"\ - \r\nogr/services/github/flag.py:48: error: Name 'ogr_github.GithubProject'\ - \ is not defined\r\nogr/services/github/flag.py:61: error: Name 'ogr_github.GithubProject'\ - \ is not defined\r\nogr/services/github/project.py:26: error: Cannot\ - \ find module named 'github'\r\nogr/services/github/project.py:33: error:\ - \ Cannot find module named 'github.GitRelease'\r\nogr/services/github/project.py:60:\ - \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/project.py:62:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:65: error: Name 'ogr_github.GithubService'\ - \ is not defined\r\nogr/services/github/project.py:82: error: Function\ - \ is missing a return type annotation\r\nogr/services/github/project.py:99:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:150:\ - \ error: Returning Any from function declared to return \"bool\"\r\n\ - ogr/services/github/project.py:166: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/project.py:184:\ - \ error: Returning Any from function declared to return \"Optional[GithubProject]\"\ - \r\nogr/services/github/project.py:219: error: Function is missing a\ - \ type annotation for one or more arguments\r\nogr/services/github/project.py:222:\ - \ error: Implicit generic \"Any\". Use \"typing.Dict\" and specify generic\ - \ parameters\r\nogr/services/github/project.py:261: error: Returning\ - \ Any from function declared to return \"str\"\r\nogr/services/github/project.py:271:\ - \ error: Untyped decorator makes function \"create_pr\" untyped\r\n\ - ogr/services/github/project.py:278: error: Incompatible default for\ - \ argument \"fork_username\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/github/project.py:289: error: Untyped\ - \ decorator makes function \"commit_comment\" untyped\r\nogr/services/github/project.py:294:\ - \ error: Incompatible default for argument \"filename\" (default has\ - \ type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:294:\ - \ error: Incompatible default for argument \"row\" (default has type\ - \ \"None\", argument has type \"int\")\r\nogr/services/github/project.py:314:\ - \ error: Untyped decorator makes function \"set_commit_status\" untyped\r\ - \nogr/services/github/project.py:315: error: Function is missing a return\ - \ type annotation\r\nogr/services/github/project.py:361: error: Untyped\ - \ decorator makes function \"fork_create\" untyped\r\nogr/services/github/project.py:372:\ - \ error: Argument \"repo\" to \"GithubProject\" has incompatible type\ - \ \"None\"; expected \"str\"\r\nogr/services/github/project.py:372:\ - \ error: Argument \"namespace\" to \"GithubProject\" has incompatible\ - \ type \"None\"; expected \"str\"\r\nogr/services/github/project.py:380:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:383:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:385: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/project.py:392:\ - \ error: Incompatible default for argument \"filter_regex\" (default\ - \ has type \"None\", argument has type \"str\")\r\nogr/services/github/project.py:463:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/project.py:470:\ - \ error: Function is missing a type annotation\r\nogr/services/github/project.py:481:\ - \ error: Call to untyped function \"_normalize_label_color\" in typed\ - \ context\r\nogr/services/github/project.py:490: error: Function is\ - \ missing a type annotation\r\nogr/services/github/project.py:495: error:\ - \ Function is missing a type annotation for one or more arguments\r\n\ - ogr/services/github/project.py:499: error: Returning Any from function\ - \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:502:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:506: error: Returning Any from function\ - \ declared to return \"Optional[int]\"\r\nogr/services/github/project.py:509:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/project.py:518: error: Argument \"git_tag\" to\ - \ \"_release_from_github_object\" of \"GithubProject\" has incompatible\ - \ type \"Optional[GitTag]\"; expected \"GitTag\"\r\nogr/services/github/project.py:524:\ - \ error: Argument \"git_tag\" to \"_release_from_github_object\" of\ - \ \"GithubProject\" has incompatible type \"Optional[GitTag]\"; expected\ - \ \"GitTag\"\r\nogr/services/github/project.py:532: error: Argument\ - \ \"git_tag\" to \"_release_from_github_object\" of \"GithubProject\"\ - \ has incompatible type \"Optional[GitTag]\"; expected \"GitTag\"\r\n\ - ogr/services/github/project.py:567: error: Returning Any from function\ - \ declared to return \"str\"\r\nogr/services/github/user.py:31: error:\ - \ Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:33:\ - \ error: Name 'ogr_github.GithubService' is not defined\r\nogr/services/github/user.py:40:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/user.py:44:\ - \ error: Returning Any from function declared to return \"str\"\r\n\ - ogr/services/github/user.py:46: error: Return type \"Optional[str]\"\ - \ of \"get_email\" incompatible with return type \"str\" in supertype\ - \ \"GitUser\"\r\nogr/services/github/user.py:49: error: Returning Any\ - \ from function declared to return \"Optional[str]\"\r\nogr/services/github/user.py:58:\ - \ error: Returning Any from function declared to return \"Optional[str]\"\ - \r\nogr/services/github/user.py:61: error: Returning Any from function\ - \ declared to return \"Optional[str]\"\r\nogr/services/github/user.py:63:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/user.py:75:\ - \ error: Name 'ogr_github.GithubProject' is not defined\r\nogr/services/github/service.py:26:\ - \ error: Cannot find module named 'github'\r\nogr/services/github/service.py:43:\ - \ error: Function is missing a type annotation for one or more arguments\r\ - \nogr/services/github/service.py:47: error: Incompatible default for\ - \ argument \"github_app_id\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/services/github/service.py:48: error: Incompatible\ - \ default for argument \"github_app_private_key\" (default has type\ - \ \"None\", argument has type \"str\")\r\nogr/services/github/service.py:49:\ - \ error: Incompatible default for argument \"github_app_private_key_path\"\ - \ (default has type \"None\", argument has type \"str\")\r\nogr/services/github/service.py:64:\ - \ error: Function is missing a return type annotation\r\nogr/services/github/service.py:105:\ - \ error: Returning Any from function declared to return \"bool\"\r\n\ - ogr/services/github/service.py:118: error: Function is missing a type\ - \ annotation for one or more arguments\r\nogr/services/github/service.py:139:\ - \ error: Argument 2 of \"project_create\" is incompatible with supertype\ - \ \"GitService\"; supertype defines the argument type as \"Optional[str]\"\ - \r\nogr/services/github/service.py:139: error: Incompatible default\ - \ for argument \"namespace\" (default has type \"None\", argument has\ - \ type \"str\")\r\nogr/__init__.py:30: error: Module 'ogr.services.github'\ - \ has no attribute 'GithubService'\r\nogr/__init__.py:31: error: Module\ - \ 'ogr.services.pagure' has no attribute 'PagureService'\r\nogr/__init__.py:32:\ - \ error: Module 'ogr.services.gitlab' has no attribute 'GitlabService'\r\ - \nFound 439 errors in 30 files (checked 38 source files)\r\n```\r\n\ -
" - closed_at: null - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/251/comments - created_at: '2019-10-22T12:09:13Z' - events_url: https://api.github.com/repos/packit/ogr/issues/251/events - html_url: https://github.com/packit/ogr/issues/251 - id: 510612410 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f31` | `The distgit repository /tmp/packit-dist-gitwfi22npg is dirty.This + is not supported.` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.12.1.tar.gz. + Reason: ''Not Found''. ` | + + | `master` | `The distgit repository /tmp/packit-dist-gitwfi22npg is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-08-09T16:57:04Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/423/comments + created_at: '2020-05-27T13:46:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/423/events + html_url: https://github.com/packit/ogr/issues/423 + id: 625711319 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 + - color: '000000' default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/251/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/423/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTA2MTI0MTA= - number: 251 + node_id: MDU6SXNzdWU2MjU3MTEzMTk= + number: 423 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr - state: open - title: Strict mypy - updated_at: '2020-02-14T08:32:52Z' - url: https://api.github.com/repos/packit/ogr/issues/251 + state: closed + title: '[packit] Propose update failed for release 0.12.1' + updated_at: '2020-08-09T16:57:04Z' + url: https://api.github.com/repos/packit/ogr/issues/423 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "This commit allows to pass a list of tags to pagure's create_issue\ - \ method.\r\n\r\nSigned-off-by: Clement Verna " - closed_at: '2020-02-12T09:56:00Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/321/comments - created_at: '2020-01-31T19:31:24Z' - events_url: https://api.github.com/repos/packit/ogr/issues/321/events - html_url: https://github.com/packit/ogr/pull/321 - id: 558328639 + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Making create_issue uniform\ + \ by adding labels\n* Add support to create private issue\n* Fix getting\ + \ the installation ID after PyGithub 1.52\n* Org rename: fix integration\ + \ tests\n* zuul: org rename\n* request access to project on Gitlab\n\ + * Support add group for pagure\n* Revert \"Drop python 3.6\"\n* Update\ + \ ogr/utils.py\n* Remove unused util functions\n* Refactor using sourcery\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.13.0-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-08-07T09:09:02Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/447/comments + created_at: '2020-08-05T14:20:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/447/events + html_url: https://github.com/packit/ogr/pull/447 + id: 673578649 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -54404,57 +67883,119 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/321/labels{/name} + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/447/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY5NzM3NjUy - number: 321 + node_id: MDExOlB1bGxSZXF1ZXN0NDYzNDE2MTE4 + number: 447 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/321.diff - html_url: https://github.com/packit/ogr/pull/321 - patch_url: https://github.com/packit/ogr/pull/321.patch - url: https://api.github.com/repos/packit/ogr/pulls/321 + diff_url: https://github.com/packit/ogr/pull/447.diff + html_url: https://github.com/packit/ogr/pull/447 + patch_url: https://github.com/packit/ogr/pull/447.patch + url: https://api.github.com/repos/packit/ogr/pulls/447 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add support for tags when creating pagure issues. - updated_at: '2020-02-12T09:56:00Z' - url: https://api.github.com/repos/packit/ogr/issues/321 + title: 0.13.0 release + updated_at: '2020-08-07T11:19:04Z' + url: https://api.github.com/repos/packit/ogr/issues/447 user: - avatar_url: https://avatars3.githubusercontent.com/u/7237866?v=4 - events_url: https://api.github.com/users/cverna/events{/privacy} - followers_url: https://api.github.com/users/cverna/followers - following_url: https://api.github.com/users/cverna/following{/other_user} - gists_url: https://api.github.com/users/cverna/gists{/gist_id} + 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/cverna - id: 7237866 - login: cverna - node_id: MDQ6VXNlcjcyMzc4NjY= - organizations_url: https://api.github.com/users/cverna/orgs - received_events_url: https://api.github.com/users/cverna/received_events - repos_url: https://api.github.com/users/cverna/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/cverna/subscriptions + 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/cverna + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "While working on #319, I noticed that there was no `.gitignore`\ - \ file in the repository.\r\n\r\nTo solve my _own_ pain points while\ - \ developing, I generated this one, which should ignore standard files\ - \ for MacOS, Windows, & Linux, and additionally ignore files that are\ - \ generally good to ignore in Python projects." - closed_at: '2020-02-11T09:08:13Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/320/comments - created_at: '2020-01-31T01:20:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/320/events - html_url: https://github.com/packit/ogr/pull/320 - id: 557854734 + body: '' + closed_at: '2020-08-05T14:20:46Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/446/comments + created_at: '2020-08-05T14:16:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/446/events + html_url: https://github.com/packit/ogr/issues/446 + id: 673575463 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/446/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2NzM1NzU0NjM= + number: 446 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: New minor release + updated_at: '2020-08-05T14:20:46Z' + url: https://api.github.com/repos/packit/ogr/issues/446 + user: + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos + site_admin: false + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + type: User + url: https://api.github.com/users/sakalosj + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "- [x] Gitlab - Private issues are known as confidential issues\r\ + \n- [x] Github - Does not support private/confidential issues. (raised\ + \ an error here)\r\n- [x] Pagure" + closed_at: '2020-08-05T10:19:34Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/441/comments + created_at: '2020-07-30T14:00:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/441/events + html_url: https://github.com/packit/ogr/pull/441 + id: 668760747 labels: - color: 0e8a16 default: false @@ -54463,53 +68004,53 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/320/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/441/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY5MzY2NDA1 - number: 320 + node_id: MDExOlB1bGxSZXF1ZXN0NDU5MjA4ODA5 + number: 441 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/320.diff - html_url: https://github.com/packit/ogr/pull/320 - patch_url: https://github.com/packit/ogr/pull/320.patch - url: https://api.github.com/repos/packit/ogr/pulls/320 + diff_url: https://github.com/packit/ogr/pull/441.diff + html_url: https://github.com/packit/ogr/pull/441 + patch_url: https://github.com/packit/ogr/pull/441.patch + url: https://api.github.com/repos/packit/ogr/pulls/441 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add `.gitignore` to repo - updated_at: '2020-02-11T09:08:13Z' - url: https://api.github.com/repos/packit/ogr/issues/320 + title: Add support to create private issues. + updated_at: '2020-08-05T10:19:34Z' + url: https://api.github.com/repos/packit/ogr/issues/441 user: - avatar_url: https://avatars3.githubusercontent.com/u/434063?v=4 - events_url: https://api.github.com/users/nickcannariato/events{/privacy} - followers_url: https://api.github.com/users/nickcannariato/followers - following_url: https://api.github.com/users/nickcannariato/following{/other_user} - gists_url: https://api.github.com/users/nickcannariato/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/nickcannariato - id: 434063 - login: nickcannariato - node_id: MDQ6VXNlcjQzNDA2Mw== - organizations_url: https://api.github.com/users/nickcannariato/orgs - received_events_url: https://api.github.com/users/nickcannariato/received_events - repos_url: https://api.github.com/users/nickcannariato/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/nickcannariato/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nickcannariato/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/nickcannariato + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Closes #308 ' - closed_at: '2020-01-24T19:51:49Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/309/comments - created_at: '2020-01-17T13:36:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/309/events - html_url: https://github.com/packit/ogr/pull/309 - id: 551419531 + author_association: CONTRIBUTOR + body: 'Depends-on: https://github.com/packit/packit/pull/920' + closed_at: '2020-08-04T06:21:47Z' + comments: 20 + comments_url: https://api.github.com/repos/packit/ogr/issues/443/comments + created_at: '2020-08-03T09:07:39Z' + events_url: https://api.github.com/repos/packit/ogr/issues/443/events + html_url: https://github.com/packit/ogr/pull/443 + id: 671923353 labels: - color: 0e8a16 default: false @@ -54518,58 +68059,152 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/309/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/443/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY0MTQ0OTky - number: 309 + node_id: MDExOlB1bGxSZXF1ZXN0NDYyMDUwMTY5 + number: 443 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/309.diff - html_url: https://github.com/packit/ogr/pull/309 - patch_url: https://github.com/packit/ogr/pull/309.patch - url: https://api.github.com/repos/packit/ogr/pulls/309 + diff_url: https://github.com/packit/ogr/pull/443.diff + html_url: https://github.com/packit/ogr/pull/443 + patch_url: https://github.com/packit/ogr/pull/443.patch + url: https://api.github.com/repos/packit/ogr/pulls/443 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add filtering of issues/PRs by author/assignee - updated_at: '2020-02-10T18:51:00Z' - url: https://api.github.com/repos/packit/ogr/issues/309 + title: 'zuul: org rename' + updated_at: '2020-08-04T06:21:47Z' + url: https://api.github.com/repos/packit/ogr/issues/443 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/84583?v=4 + events_url: https://api.github.com/users/morucci/events{/privacy} + followers_url: https://api.github.com/users/morucci/followers + following_url: https://api.github.com/users/morucci/following{/other_user} + gists_url: https://api.github.com/users/morucci/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/morucci + id: 84583 + login: morucci + node_id: MDQ6VXNlcjg0NTgz + organizations_url: https://api.github.com/users/morucci/orgs + received_events_url: https://api.github.com/users/morucci/received_events + repos_url: https://api.github.com/users/morucci/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/morucci/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/morucci/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/morucci - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Hello there \U0001F44B \r\n\r\nThis came up in my `good-first-issue`\ - \ search and seemed like a fairly straightforward bug to fix.\r\n\r\n\ - I decided to treat it as a data problem and check for the existence\ - \ of a trailing slash in a simple if statement. It worked in the test\ - \ cases I passed it, and should be pretty straightforward to debug.\ - \ \r\n\r\nOpen to any/all criticism. Thanks for all you do!" - closed_at: '2020-02-06T12:58:10Z' + body: '' + closed_at: '2020-07-31T16:40:37Z' comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/319/comments - created_at: '2020-01-31T01:06:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/319/events - html_url: https://github.com/packit/ogr/pull/319 - id: 557850271 + comments_url: https://api.github.com/repos/packit/ogr/issues/355/comments + created_at: '2020-03-17T12:39:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/355/events + html_url: https://github.com/packit/ogr/pull/355 + id: 582983115 + labels: + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/355/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzg5ODExMzc3 + number: 355 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/355.diff + html_url: https://github.com/packit/ogr/pull/355 + patch_url: https://github.com/packit/ogr/pull/355.patch + url: https://api.github.com/repos/packit/ogr/pulls/355 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'WIP: packit - make release work on stage' + updated_at: '2020-07-31T16:40:37Z' + url: https://api.github.com/repos/packit/ogr/issues/355 + user: + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos + site_admin: false + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + type: User + url: https://api.github.com/users/dhodovsk + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: Example of Issue description + closed_at: '2020-07-30T21:15:08Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/442/comments + created_at: '2020-07-30T21:14:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/442/events + html_url: https://github.com/packit/ogr/issues/442 + id: 669202849 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/442/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2NjkyMDI4NDk= + number: 442 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: This is an issue + updated_at: '2020-07-31T12:43:32Z' + url: https://api.github.com/repos/packit/ogr/issues/442 + user: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Request project access - using it here (https://github.com/packit-service/packit-service/pull/740)\r\ + \n\r\n[Request access docs](https://python-gitlab.readthedocs.io/en/stable/gl_objects/access_requests.html)" + closed_at: '2020-07-31T11:19:06Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/439/comments + created_at: '2020-07-26T19:59:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/439/events + html_url: https://github.com/packit/ogr/pull/439 + id: 665849470 labels: - color: 0e8a16 default: false @@ -54578,82 +68213,79 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/319/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/439/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY5MzYzMTc2 - number: 319 + node_id: MDExOlB1bGxSZXF1ZXN0NDU2Nzk3ODcw + number: 439 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/319.diff - html_url: https://github.com/packit/ogr/pull/319 - patch_url: https://github.com/packit/ogr/pull/319.patch - url: https://api.github.com/repos/packit/ogr/pulls/319 + diff_url: https://github.com/packit/ogr/pull/439.diff + html_url: https://github.com/packit/ogr/pull/439 + patch_url: https://github.com/packit/ogr/pull/439.patch + url: https://api.github.com/repos/packit/ogr/pulls/439 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove trailing slash from URLs before parsing - updated_at: '2020-02-06T17:15:07Z' - url: https://api.github.com/repos/packit/ogr/issues/319 + title: Requesting project access + updated_at: '2020-07-31T11:19:06Z' + url: https://api.github.com/repos/packit/ogr/issues/439 user: - avatar_url: https://avatars3.githubusercontent.com/u/434063?v=4 - events_url: https://api.github.com/users/nickcannariato/events{/privacy} - followers_url: https://api.github.com/users/nickcannariato/followers - following_url: https://api.github.com/users/nickcannariato/following{/other_user} - gists_url: https://api.github.com/users/nickcannariato/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/nickcannariato - id: 434063 - login: nickcannariato - node_id: MDQ6VXNlcjQzNDA2Mw== - organizations_url: https://api.github.com/users/nickcannariato/orgs - received_events_url: https://api.github.com/users/nickcannariato/received_events - repos_url: https://api.github.com/users/nickcannariato/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/nickcannariato/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/nickcannariato/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/nickcannariato + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "```\r\n>>> from ogr.parsing import parse_git_repo\r\n>>> r = parse_git_repo('https://github.com/avocado-framework/avocado/')\r\ - \n>>> r.namespace\r\n'avocado'\r\n>>> r.repo\r\n''\r\n```" - closed_at: '2020-02-06T12:58:11Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/318/comments - created_at: '2020-01-29T13:10:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/318/events - html_url: https://github.com/packit/ogr/issues/318 - id: 556852319 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-07-28T07:54:55Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/436/comments + created_at: '2020-07-16T12:52:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/436/events + html_url: https://github.com/packit/ogr/pull/436 + id: 658170942 labels: - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff + - color: 0e8a16 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/318/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/436/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTY4NTIzMTk= - number: 318 + node_id: MDExOlB1bGxSZXF1ZXN0NDUwMTcyMDA5 + number: 436 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/436.diff + html_url: https://github.com/packit/ogr/pull/436 + patch_url: https://github.com/packit/ogr/pull/436.patch + url: https://api.github.com/repos/packit/ogr/pulls/436 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: parse_git_repo fails to handle '/' at string end correctly - updated_at: '2020-02-06T12:58:11Z' - url: https://api.github.com/repos/packit/ogr/issues/318 + title: Support add group for pagure + updated_at: '2020-07-28T08:12:10Z' + url: https://api.github.com/repos/packit/ogr/issues/436 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 events_url: https://api.github.com/users/dhodovsk/events{/privacy} followers_url: https://api.github.com/users/dhodovsk/followers following_url: https://api.github.com/users/dhodovsk/following{/other_user} @@ -54675,69 +68307,91 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-02-06T12:47:41Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/322/comments - created_at: '2020-02-05T10:22:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/322/events - html_url: https://github.com/packit/ogr/pull/322 - id: 560273848 + body: "Since we [now](https://github.com/packit-service/ogr/pull/150)\ + \ support GitLab, we need to update our README to show it.\r\n\r\n+\ + \ [ ] and provide brief docs how to use it (@TomasTomecek had to google\ + \ a bit)" + closed_at: '2020-07-17T13:52:03Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/157/comments + created_at: '2019-08-15T15:27:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/157/events + html_url: https://github.com/packit/ogr/issues/157 + id: 481205806 labels: - - color: 18e033 + - color: d93f0b default: false - description: Pull request is ready for review. - id: 1432779383 - name: ready-for-review - node_id: MDU6TGFiZWwxNDMyNzc5Mzgz - url: https://api.github.com/repos/packit/ogr/labels/ready-for-review - labels_url: https://api.github.com/repos/packit/ogr/issues/322/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/157/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzcxMjkxODM1 - number: 322 + node_id: MDU6SXNzdWU0ODEyMDU4MDY= + number: 157 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/322.diff - html_url: https://github.com/packit/ogr/pull/322 - patch_url: https://github.com/packit/ogr/pull/322.patch - url: https://api.github.com/repos/packit/ogr/pulls/322 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pre-commit changes - updated_at: '2020-02-06T12:47:46Z' - url: https://api.github.com/repos/packit/ogr/issues/322 + title: Mention GitLab support in README + updated_at: '2020-07-28T07:07:52Z' + url: https://api.github.com/repos/packit/ogr/issues/157 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: TomasTomecek vs Tomas Tomecek - closed_at: '2020-01-29T12:56:32Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/317/comments - created_at: '2020-01-28T15:19:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/317/events - html_url: https://github.com/packit/ogr/pull/317 - id: 556279456 + body: "This reverts commit 74d84893f16f5020e60d2a1ba35e13d768b514f0.\r\ + \n\r\nIn Centos 8 Python 3.6 is the default python3. Having Python 3.6\ + \ support\r\nwill make life easier there.\r\n\r\nSigned-off-by: Hunor\ + \ Csomort\xE1ni " + closed_at: '2020-07-16T15:27:34Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/438/comments + created_at: '2020-07-16T14:39:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/438/events + html_url: https://github.com/packit/ogr/pull/438 + id: 658262033 labels: - color: 0e8a16 default: false @@ -54746,157 +68400,153 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/317/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/438/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY4MDcxOTA1 - number: 317 + node_id: MDExOlB1bGxSZXF1ZXN0NDUwMjQ5NTU2 + number: 438 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/317.diff - html_url: https://github.com/packit/ogr/pull/317 - patch_url: https://github.com/packit/ogr/pull/317.patch - url: https://api.github.com/repos/packit/ogr/pulls/317 + diff_url: https://github.com/packit/ogr/pull/438.diff + html_url: https://github.com/packit/ogr/pull/438 + patch_url: https://github.com/packit/ogr/pull/438.patch + url: https://api.github.com/repos/packit/ogr/pulls/438 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github.pr.author: use login instead of name' - updated_at: '2020-01-30T08:42:02Z' - url: https://api.github.com/repos/packit/ogr/issues/317 + title: Revert "Drop python 3.6" + updated_at: '2020-07-16T15:27:34Z' + url: https://api.github.com/repos/packit/ogr/issues/438 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. - Reason: ''Not Found''. ` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. - - ' - closed_at: '2020-01-28T14:17:18Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/314/comments - created_at: '2020-01-28T14:05:14Z' - events_url: https://api.github.com/repos/packit/ogr/issues/314/events - html_url: https://github.com/packit/ogr/issues/314 - id: 556231299 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/314/labels{/name} + author_association: MEMBER + body: 'Closes #414' + closed_at: '2020-06-25T10:41:12Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/419/comments + created_at: '2020-05-26T10:39:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/419/events + html_url: https://github.com/packit/ogr/pull/419 + id: 624783863 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/419/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTYyMzEyOTk= - number: 314 + node_id: MDExOlB1bGxSZXF1ZXN0NDIzMTI1MDgx + number: 419 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/419.diff + html_url: https://github.com/packit/ogr/pull/419 + patch_url: https://github.com/packit/ogr/pull/419.patch + url: https://api.github.com/repos/packit/ogr/pulls/419 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.10.0' - updated_at: '2020-01-28T14:17:18Z' - url: https://api.github.com/repos/packit/ogr/issues/314 + title: Pull requests on Gitlab + updated_at: '2020-07-14T21:08:48Z' + url: https://api.github.com/repos/packit/ogr/issues/419 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + 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/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + 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 - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'Packit failed on creating pull-requests in dist-git: - - - | dist-git branch | error | - - | --------------- | ----- | - - | `f31` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. - Reason: ''Not Found''. ` | - - - - You can re-trigger the update by adding `/packit propose-update` to - the issue comment. + author_association: MEMBER + body: '- Remove unused util functions. - ' - closed_at: '2020-01-28T14:17:12Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/315/comments - created_at: '2020-01-28T14:05:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/315/events - html_url: https://github.com/packit/ogr/issues/315 - id: 556231476 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/315/labels{/name} + - Refactor using [sourcery](https://sourcery.ai/).' + closed_at: '2020-07-10T12:43:50Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/435/comments + created_at: '2020-07-10T11:46:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/435/events + html_url: https://github.com/packit/ogr/pull/435 + id: 654723717 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/435/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTYyMzE0NzY= - number: 315 + node_id: MDExOlB1bGxSZXF1ZXN0NDQ3Mzk0MDIz + number: 435 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/435.diff + html_url: https://github.com/packit/ogr/pull/435 + patch_url: https://github.com/packit/ogr/pull/435.patch + url: https://api.github.com/repos/packit/ogr/pulls/435 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.10.0' - updated_at: '2020-01-28T14:17:12Z' - url: https://api.github.com/repos/packit/ogr/issues/315 + title: Sourcery refactor + updated_at: '2020-07-10T12:46:54Z' + url: https://api.github.com/repos/packit/ogr/issues/435 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + 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/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions - type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + 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 - active_lock_reason: null assignee: null assignees: [] @@ -54908,8 +68558,11 @@ requests.sessions: | --------------- | ----- | - | `f30` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.10.0.tar.gz. - Reason: ''Not Found''. ` | + | `f31` | `Failed to init kerberos ticket:` | + + | `f32` | `Failed to init kerberos ticket:` | + + | `master` | `Failed to init kerberos ticket:` | @@ -54917,68 +68570,68 @@ requests.sessions: the issue comment. ' - closed_at: '2020-01-28T14:17:02Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/316/comments - created_at: '2020-01-28T14:05:50Z' - events_url: https://api.github.com/repos/packit/ogr/issues/316/events - html_url: https://github.com/packit/ogr/issues/316 - id: 556231659 + closed_at: '2020-07-10T05:57:19Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/434/comments + created_at: '2020-07-09T11:03:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/434/events + html_url: https://github.com/packit/ogr/issues/434 + id: 653971970 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/316/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/434/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTYyMzE2NTk= - number: 316 + node_id: MDU6SXNzdWU2NTM5NzE5NzA= + number: 434 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: '[packit] Propose update failed for release 0.10.0' - updated_at: '2020-01-28T14:17:02Z' - url: https://api.github.com/repos/packit/ogr/issues/316 + title: '[packit] Propose update failed for release 0.12.2' + updated_at: '2020-07-10T09:36:14Z' + url: https://api.github.com/repos/packit/ogr/issues/434 user: - avatar_url: https://avatars1.githubusercontent.com/in/29076?v=4 - events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} - followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers - following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} - gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29180?v=4 + events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/apps/packit-as-a-service - id: 49689251 - login: packit-as-a-service[bot] - node_id: MDM6Qm90NDk2ODkyNTE= - organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs - received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events - repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + html_url: https://github.com/apps/packit-as-a-service-stg + id: 49729116 + login: packit-as-a-service-stg[bot] + node_id: MDM6Qm90NDk3MjkxMTY= + organizations_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + starred_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D/subscriptions type: Bot - url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + url: https://api.github.com/users/packit-as-a-service-stg%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Add tests for filtering\ - \ issues by author/assignee\n* Add filtering of issues by author/assignee\n\ - * Add response files\n* Add parameters to get_files method\n* WIP: add\ - \ method to list files\n* github: set repo & namespace when forking\n\ - * Implement get_tags for GithubProject\n* Fix update_pr_info (Pagure)\ - \ bug\n* Implement setters for Pagure PR\n* Implement Issue/PR setters\ - \ for Github/Gitlab\n* Add tests for PR/Issue setters for Github/Gitlab\n\ - * (#245) Improve Pagure's project_create* add reason of failure\n* Regenerate\ - \ gitlab tests after dep update\n\n\nYou can change it by editing `CHANGELOG.md`\ - \ in the root of this repository and pushing to `0.10.0-release` branch\ - \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is the changelog I created:\n### Changes\n* Job metadata key 'dist_git_branch'\ + \ has been renamed to 'dist_git_branches'\n* Replace Python version\ + \ glob with macro\n* Fix get_file_content was returning byte format\n\ + * Build in copr for master commits and releases\n* Add usage to creating\ + \ PRs on GitLab\n* Fix GitLab pull requests\n* Add tests for creating\ + \ PRs on GitLab\n* [Zuul] Don't redefine base job\n* [Zuul] Use common\ + \ pre-commit job\n* Drop python 3.6\n* Update & run pre-commit\n* Improve\ + \ the message when marking issues as stale\n* Fix remarks from compatibility.md\ + \ review\n* Add compatibility table\n\n\nYou can change it by editing\ + \ `CHANGELOG.md` in the root of this repository and pushing to `0.12.2-release`\ + \ branch before merging this PR.\nI didn't find any files where `__version__`\ \ is set." - closed_at: '2020-01-28T14:03:00Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/313/comments - created_at: '2020-01-27T11:51:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/313/events - html_url: https://github.com/packit/ogr/pull/313 - id: 555524947 + closed_at: '2020-07-09T10:57:56Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/433/comments + created_at: '2020-07-09T07:36:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/433/events + html_url: https://github.com/packit/ogr/pull/433 + id: 653835899 labels: - color: ededed default: false @@ -55001,24 +68654,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/313/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/433/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzY3NDUwNDkz - number: 313 + node_id: MDExOlB1bGxSZXF1ZXN0NDQ2Njc2Mjcz + number: 433 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/313.diff - html_url: https://github.com/packit/ogr/pull/313 - patch_url: https://github.com/packit/ogr/pull/313.patch - url: https://api.github.com/repos/packit/ogr/pulls/313 + pull_request: + diff_url: https://github.com/packit/ogr/pull/433.diff + html_url: https://github.com/packit/ogr/pull/433 + patch_url: https://github.com/packit/ogr/pull/433.patch + url: https://api.github.com/repos/packit/ogr/pulls/433 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.10.0 release - updated_at: '2020-01-28T14:05:46Z' - url: https://api.github.com/repos/packit/ogr/issues/313 + title: 0.12.2 release + updated_at: '2020-07-09T11:01:07Z' + url: https://api.github.com/repos/packit/ogr/issues/433 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -55040,14 +68693,14 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: Release-bot, it's time to work! - closed_at: '2020-01-27T11:51:57Z' + body: '' + closed_at: '2020-07-09T07:36:32Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/312/comments - created_at: '2020-01-27T11:48:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/312/events - html_url: https://github.com/packit/ogr/issues/312 - id: 555523325 + comments_url: https://api.github.com/repos/packit/ogr/issues/432/comments + created_at: '2020-07-09T07:36:14Z' + events_url: https://api.github.com/repos/packit/ogr/issues/432/events + html_url: https://github.com/packit/ogr/issues/432 + id: 653835751 labels: - color: ededed default: false @@ -55063,120 +68716,105 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/312/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/432/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTU1MjMzMjU= - number: 312 + node_id: MDU6SXNzdWU2NTM4MzU3NTE= + number: 432 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2020-01-27T11:51:57Z' - url: https://api.github.com/repos/packit/ogr/issues/312 + title: New patch release + updated_at: '2020-07-09T07:36:32Z' + url: https://api.github.com/repos/packit/ogr/issues/432 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Consider also other filtering options:\r\n\r\nThe options are:\r\ - \nhttps://github.com/PyGithub/PyGithub/blob/master/github/Repository.py#L2172-L2195" - closed_at: '2020-01-24T19:51:49Z' + body: in https://github.com/packit-service/packit/pull/797 + closed_at: '2020-07-07T06:51:21Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/308/comments - created_at: '2020-01-16T10:24:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/308/events - html_url: https://github.com/packit/ogr/issues/308 - id: 550712442 + comments_url: https://api.github.com/repos/packit/ogr/issues/431/comments + created_at: '2020-07-03T14:49:34Z' + events_url: https://api.github.com/repos/packit/ogr/issues/431/events + html_url: https://github.com/packit/ogr/pull/431 + id: 650642351 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: a2eeef + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/308/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/431/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NTA3MTI0NDI= - number: 308 + node_id: MDExOlB1bGxSZXF1ZXN0NDQ0MDk0ODQx + number: 431 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/431.diff + html_url: https://github.com/packit/ogr/pull/431 + patch_url: https://github.com/packit/ogr/pull/431.patch + url: https://api.github.com/repos/packit/ogr/pulls/431 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Support listing issues based on creator - updated_at: '2020-01-24T19:51:49Z' - url: https://api.github.com/repos/packit/ogr/issues/308 + title: Job metadata key 'dist_git_branch' was renamed to 'dist_git_branches' + updated_at: '2020-07-07T07:13:31Z' + url: https://api.github.com/repos/packit/ogr/issues/431 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + 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/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions + 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/dhodovsk + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-01-21T11:27:06Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/297/comments - created_at: '2019-12-17T08:10:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/297/events - html_url: https://github.com/packit/ogr/pull/297 - id: 538905049 + body: "This is needed for Python 3.10+.\r\n\r\nSee devel-list message\ + \ for details:\r\n\r\nhttps://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/PQIGCQCRNBYNXBX2ICWEM3PLDLNOG2ZT/\r\ + \n\r\nSigned-off-by: Hunor Csomort\xE1ni " + closed_at: '2020-06-30T07:33:05Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/430/comments + created_at: '2020-06-30T07:12:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/430/events + html_url: https://github.com/packit/ogr/pull/430 + id: 647926952 labels: - color: 0e8a16 default: false @@ -55185,53 +68823,67 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/297/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/430/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzUzOTcxMDUx - number: 297 + node_id: MDExOlB1bGxSZXF1ZXN0NDQxODMwMDgy + number: 430 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/297.diff - html_url: https://github.com/packit/ogr/pull/297 - patch_url: https://github.com/packit/ogr/pull/297.patch - url: https://api.github.com/repos/packit/ogr/pulls/297 + diff_url: https://github.com/packit/ogr/pull/430.diff + html_url: https://github.com/packit/ogr/pull/430 + patch_url: https://github.com/packit/ogr/pull/430.patch + url: https://api.github.com/repos/packit/ogr/pulls/430 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add method to list files - updated_at: '2020-01-21T11:27:06Z' - url: https://api.github.com/repos/packit/ogr/issues/297 + title: Replace Python version glob with macro + updated_at: '2020-06-30T07:33:06Z' + url: https://api.github.com/repos/packit/ogr/issues/430 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Fixes #245' - closed_at: '2020-01-03T08:43:56Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/300/comments - created_at: '2019-12-30T18:09:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/300/events - html_url: https://github.com/packit/ogr/pull/300 - id: 543964942 + author_association: CONTRIBUTOR + body: "The object [gitlab.v4.objects.ProjectFile](https://python-gitlab.readthedocs.io/en/stable/api/gitlab.v4.html#gitlab.v4.objects.ProjectFile)\ + \ with the function [decode()](https://python-gitlab.readthedocs.io/en/stable/api/gitlab.v4.html#gitlab.v4.objects.ProjectFile.decode)\ + \ will return bytes -\r\n\r\n`b'---\\nspecfile_path: hello.spec\\nsynced_files:\\\ + n - hello.spec\\n# actions:\\n# post-upstream-clone: \"python3 setup.py\ + \ sdist --dist-dir .\"\\n# current_version_command: [\"python3\", \"\ + setup.py\", \"--version\"]\\n# create_tarball_command: [\"python3\"\ + , \"setup.py\", \"sdist\", \"--dist-dir\", \".\"]\\njobs:\\n- job: copr_build\\\ + n trigger: pull_request\\n metadata:\\n targets:\\n - fedora-30-x86_64'`\r\ + \n\r\nExpected string - \r\n\r\n```\r\n---\r\nspecfile_path: hello.spec\r\ + \nsynced_files:\r\n - hello.spec\r\n# actions:\r\n# post-upstream-clone:\ + \ \"python3 setup.py sdist --dist-dir .\"\r\n# current_version_command:\ + \ [\"python3\", \"setup.py\", \"--version\"]\r\n# create_tarball_command:\ + \ [\"python3\", \"setup.py\", \"sdist\", \"--dist-dir\", \".\"]\r\n\ + jobs:\r\n- job: copr_build\r\n trigger: pull_request\r\n metadata:\r\ + \n targets:\r\n - fedora-30-x86_64\r\n```\r\n" + closed_at: '2020-06-29T12:03:35Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/429/comments + created_at: '2020-06-28T21:32:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/429/events + html_url: https://github.com/packit/ogr/pull/429 + id: 647009475 labels: - color: 0e8a16 default: false @@ -55240,117 +68892,127 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/300/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/429/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzU4MTc5NDg3 - number: 300 + node_id: MDExOlB1bGxSZXF1ZXN0NDQxMTE3MTUw + number: 429 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/300.diff - html_url: https://github.com/packit/ogr/pull/300 - patch_url: https://github.com/packit/ogr/pull/300.patch - url: https://api.github.com/repos/packit/ogr/pulls/300 + diff_url: https://github.com/packit/ogr/pull/429.diff + html_url: https://github.com/packit/ogr/pull/429 + patch_url: https://github.com/packit/ogr/pull/429.patch + url: https://api.github.com/repos/packit/ogr/pulls/429 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add resolution of failure of Pagure's project_create - updated_at: '2020-01-16T10:43:12Z' - url: https://api.github.com/repos/packit/ogr/issues/300 + title: Fix get_file_content() returning bytes + updated_at: '2020-06-29T12:03:35Z' + url: https://api.github.com/repos/packit/ogr/issues/429 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/mfocko - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=7: - - metadata: - latency: 0.6012227535247803 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: + url: https://api.github.com/users/shreyaspapi + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Would be nice to be able to manipulate labels on pagure issues.\ + \ i.e. `get_issue_labels()` `add_issue_labels()`, etc.. \r\n\r\n\r\n\ + *update by @lachmanfrantisek:*\r\n\r\nTODO: \r\n- [x] `labels` property\ + \ for `PagureIssue` class (https://github.com/packit-service/ogr/pull/321\ + \ by @cverna )\r\n- [x] `labels` argument for `PagureIssue.create` and\ + \ `PagureProject.create_issue` (https://github.com/packit-service/ogr/pull/321\ + \ by @cverna)\r\n- [ ] `labels` property for `PagurePullRequest` class\r\ + \n- [ ] `labels` argument for `PagurePullRequest.create` and `PagureProject.create_pr`\r\ + \n- [ ] `add_label` methods blocked by the PagureAPI (https://pagure.io/pagure/issue/2175)\r\ + \n- [ ] add tests for all of those\r\n\r\n" + closed_at: null + comments: 14 + comments_url: https://api.github.com/repos/packit/ogr/issues/147/comments + created_at: '2019-08-09T22:23:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/147/events + html_url: https://github.com/packit/ogr/issues/147 + id: 479187441 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: bf6b0b + default: false + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + labels_url: https://api.github.com/repos/packit/ogr/issues/147/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU0NzkxODc0NDE= + number: 147 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: create label* functions for pagure backend + updated_at: '2020-06-29T06:46:49Z' + url: https://api.github.com/repos/packit/ogr/issues/147 + user: + avatar_url: https://avatars.githubusercontent.com/u/4530030?v=4 + events_url: https://api.github.com/users/dustymabe/events{/privacy} + followers_url: https://api.github.com/users/dustymabe/followers + following_url: https://api.github.com/users/dustymabe/following{/other_user} + gists_url: https://api.github.com/users/dustymabe/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/dustymabe + id: 4530030 + login: dustymabe + node_id: MDQ6VXNlcjQ1MzAwMzA= + organizations_url: https://api.github.com/users/dustymabe/orgs + received_events_url: https://api.github.com/users/dustymabe/received_events + repos_url: https://api.github.com/users/dustymabe/repos + site_admin: false + starred_url: https://api.github.com/users/dustymabe/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dustymabe/subscriptions + type: User + url: https://api.github.com/users/dustymabe - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2020-01-03T10:13:00Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/298/comments - created_at: '2019-12-19T21:12:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/298/events - html_url: https://github.com/packit/ogr/pull/298 - id: 540569497 + body: "- Build in Copr for master commits and releases.\r\n- We are using\ + \ same copr projects as we do for packit.\r\n- Relates to https://github.com/packit-service/ogr/pull/428." + closed_at: '2020-06-26T12:08:08Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/428/comments + created_at: '2020-06-26T08:42:26Z' + events_url: https://api.github.com/repos/packit/ogr/issues/428/events + html_url: https://github.com/packit/ogr/pull/428 + id: 646108018 labels: - color: 0e8a16 default: false @@ -55359,24 +69021,99 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/298/labels{/name} + - color: 7cf4be + default: false + description: Weekend is coming! + id: 2162576221 + name: "\U0001F31E Friday \U0001F91F" + node_id: MDU6TGFiZWwyMTYyNTc2MjIx + url: https://api.github.com/repos/packit/ogr/labels/%F0%9F%8C%9E%20Friday%20%F0%9F%A4%9F + labels_url: https://api.github.com/repos/packit/ogr/issues/428/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDQwNDU5MTk2 + number: 428 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/428.diff + html_url: https://github.com/packit/ogr/pull/428 + patch_url: https://github.com/packit/ogr/pull/428.patch + url: https://api.github.com/repos/packit/ogr/pulls/428 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Copr build for master and releases + updated_at: '2020-06-26T12:13:35Z' + url: https://api.github.com/repos/packit/ogr/issues/428 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: "By looking at the code I noticed there are no tests for creating\ + \ pull requests in different scenarios (like Github has) and also the\ + \ code doesn't seem to be compliant to the documentation of ogr.\r\n\ + \r\n- [ ] Add tests\r\n- [ ] Fix the implementation\r\n\r\nMay be\ + \ blocked by #412" + closed_at: '2020-06-25T10:41:12Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/414/comments + created_at: '2020-05-20T21:34:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/414/events + html_url: https://github.com/packit/ogr/issues/414 + id: 622098916 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/414/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzU1MzYwNjcy - number: 298 + node_id: MDU6SXNzdWU2MjIwOTg5MTY= + number: 414 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/298.diff - html_url: https://github.com/packit/ogr/pull/298 - patch_url: https://github.com/packit/ogr/pull/298.patch - url: https://api.github.com/repos/packit/ogr/pulls/298 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Setters for Issue/PR - updated_at: '2020-01-16T10:43:08Z' - url: https://api.github.com/repos/packit/ogr/issues/298 + title: Pull requests on Gitlab projects + updated_at: '2020-06-25T10:41:12Z' + url: https://api.github.com/repos/packit/ogr/issues/414 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -55398,53 +69135,40 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "```\r\nName Stmts Miss Cover Missing\r\ - \n----------------------------------------------------------\r\nservices/github.py\ - \ 114 63 45% 17-19, 24-26, 30, 33-34, 41-42, 47, 51,\ - \ 58-61, 64, 67, 70, 73-79, 82-83, 86-87, 95-98, 108, 111, 114-115,\ - \ 118, 121, 124, 127-132, 135, 149, 170, 184, 193-203, 207-209, 212-213,\ - \ 216-217, 227, 230\r\nservices/gitlab.py 66 66 0%\ - \ 1-144\r\nservices/our_pagure.py 79 46 42% 33, 36-39,\ - \ 134-148, 160-176, 180-186, 249-256, 259-264, 267-270, 273, 276, 279-282,\ - \ 285-288, 291-294, 297-298\r\nutils.py 150 110\ - \ 27% 35-77, 82-83, 88-89, 94, 98-116, 120-130, 145-148, 163-165,\ - \ 169-176, 180-214, 219-248, 252, 260, 273\r\n```\r\n\r\nI know the\ - \ `gitlab` module is WIP, but the others deserve more tests IMHO" - closed_at: '2020-01-15T11:22:38Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/49/comments - created_at: '2019-03-26T14:47:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/49/events - html_url: https://github.com/packit/ogr/issues/49 - id: 425463412 + body: '' + closed_at: '2020-06-23T15:27:42Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/427/comments + created_at: '2020-06-23T14:34:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/427/events + html_url: https://github.com/packit/ogr/pull/427 + id: 643894847 labels: - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9d0c4 + - color: 0e8a16 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/49/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/427/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MjU0NjM0MTI= - number: 49 + node_id: MDExOlB1bGxSZXF1ZXN0NDM4NjEzNzgx + number: 427 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/427.diff + html_url: https://github.com/packit/ogr/pull/427 + patch_url: https://github.com/packit/ogr/pull/427.patch + url: https://api.github.com/repos/packit/ogr/pulls/427 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Modules with poor code coverage - updated_at: '2020-01-15T11:22:38Z' - url: https://api.github.com/repos/packit/ogr/issues/49 + title: Zuul & pre-commit related changes + updated_at: '2020-06-24T08:10:43Z' + url: https://api.github.com/repos/packit/ogr/issues/427 user: - avatar_url: https://avatars0.githubusercontent.com/u/288686?v=4 + 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} @@ -55462,45 +69186,84 @@ requests.sessions: subscriptions_url: https://api.github.com/users/jpopelka/subscriptions type: User url: https://api.github.com/users/jpopelka + _next: null + elapsed: 0.368867 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:54 GMT + ETag: W/"9f430c18023d2a5d5ce29920aeaeb75887843a97bec6b99077f47b795a489c13" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78F05C:1333BA7:6075DC91 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4356' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '644' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=7: + - metadata: + latency: 0.37534260749816895 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "TLDR: Investigate if it is possible to reset PR/commit flags. (*added\ - \ by @lachmanfrantisek*)\r\n\r\n----\r\n\r\nI solved a problem with\ - \ reset Copr build statuses.\r\nLike can be seen here: https://github.com/packit-service/hello-world/pull/9\r\ - \n\r\nIt would be nice to look at the possibility if in case of the\ - \ pull request is not created by a collaborator to get rid of check\ - \ statuses. Like nothing is shown and the pull request can not be merged." - closed_at: '2020-01-13T09:38:06Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/133/comments - created_at: '2019-07-23T07:53:55Z' - events_url: https://api.github.com/repos/packit/ogr/issues/133/events - html_url: https://github.com/packit/ogr/issues/133 - id: 471540158 + body: "* We first to need to create an abstraction on top of all forges\r\ + \n* and then implement it for each\r\n\r\nThis is an example how pagure\ + \ does it:\r\n```python\r\nmod_acls = {\r\n 'user_type': 'group',\r\ + \n 'name': 'git-packit-team',\r\n 'acl': 'admin',\r\n\ + }\r\n\r\nreq = requests.post(\r\n url + 'source-git/%s/git/modifyacls'\ + \ % (project),\r\n headers=headers,\r\n verify=False,\r\ + \n data=mod_acls\r\n)\r\n```" + closed_at: '2020-06-22T13:36:26Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/364/comments + created_at: '2020-03-25T12:55:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/364/events + html_url: https://github.com/packit/ogr/issues/364 + id: 587676376 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: a2eeef default: false description: New feature or a request for enhancement. @@ -55508,81 +69271,33 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: ff9990 + - color: '000000' default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - labels_url: https://api.github.com/repos/packit/ogr/issues/133/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU0NzE1NDAxNTg= - number: 133 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Look at possibility for reseting or get rid off checkes in GitHub - updated_at: '2020-01-13T09:38:06Z' - url: https://api.github.com/repos/packit/ogr/issues/133 - user: - avatar_url: https://avatars2.githubusercontent.com/u/3416672?v=4 - events_url: https://api.github.com/users/phracek/events{/privacy} - followers_url: https://api.github.com/users/phracek/followers - following_url: https://api.github.com/users/phracek/following{/other_user} - gists_url: https://api.github.com/users/phracek/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/phracek - id: 3416672 - login: phracek - node_id: MDQ6VXNlcjM0MTY2NzI= - organizations_url: https://api.github.com/users/phracek/orgs - received_events_url: https://api.github.com/users/phracek/received_events - repos_url: https://api.github.com/users/phracek/repos - site_admin: false - starred_url: https://api.github.com/users/phracek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/phracek/subscriptions - type: User - url: https://api.github.com/users/phracek - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2020-01-09T08:17:00Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/305/comments - created_at: '2020-01-05T17:52:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/305/events - html_url: https://github.com/packit/ogr/pull/305 - id: 545446757 - labels: - - color: 0e8a16 + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: 42e529 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/305/labels{/name} + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/364/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzU5MzIyMjQw - number: 305 + node_id: MDU6SXNzdWU1ODc2NzYzNzY= + number: 364 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/305.diff - html_url: https://github.com/packit/ogr/pull/305 - patch_url: https://github.com/packit/ogr/pull/305.patch - url: https://api.github.com/repos/packit/ogr/pulls/305 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'github: set repo & namespace when forking' - updated_at: '2020-01-09T08:40:00Z' - url: https://api.github.com/repos/packit/ogr/issues/305 + title: provide a way to modify ACLs of repositories + updated_at: '2020-06-22T13:36:27Z' + url: https://api.github.com/repos/packit/ogr/issues/364 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -55604,150 +69319,198 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #303' - closed_at: '2020-01-06T08:18:34Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/304/comments - created_at: '2020-01-05T10:51:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/304/events - html_url: https://github.com/packit/ogr/pull/304 - id: 545401796 + body: "In #226 we found multiple problems with the offline x online handling.\r\ + \n\r\nWe need to:\r\n\r\n- [x] agree on the rules (e.g. properties cannot\ + \ touch the services)\r\n- [ ] document the rules\r\n- [x] fix the current\ + \ implementation(s) to satisfy the rules\r\n - use deprecations if\ + \ needed\r\n\r\nRelated to #214 " + closed_at: null + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/229/comments + created_at: '2019-10-01T07:47:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/229/events + html_url: https://github.com/packit/ogr/issues/229 + id: 500722982 labels: - - color: 0e8a16 + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: bf6b0b default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/304/labels{/name} + description: '' + id: 2101898687 + name: pinned + node_id: MDU6TGFiZWwyMTAxODk4Njg3 + url: https://api.github.com/repos/packit/ogr/labels/pinned + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/229/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzU5MjkwMzMz - number: 304 + node_id: MDU6SXNzdWU1MDA3MjI5ODI= + number: 229 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: open + title: Investigate online x offline handling + updated_at: '2020-06-15T08:46:36Z' + url: https://api.github.com/repos/packit/ogr/issues/229 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: Needed in https://github.com/packit-service/packit-service/pull/662 + closed_at: '2020-06-11T07:53:09Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/425/comments + created_at: '2020-06-08T10:16:51Z' + events_url: https://api.github.com/repos/packit/ogr/issues/425/events + html_url: https://github.com/packit/ogr/pull/425 + id: 634481719 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/425/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDMxMDI4NDEw + number: 425 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/304.diff - html_url: https://github.com/packit/ogr/pull/304 - patch_url: https://github.com/packit/ogr/pull/304.patch - url: https://api.github.com/repos/packit/ogr/pulls/304 + diff_url: https://github.com/packit/ogr/pull/425.diff + html_url: https://github.com/packit/ogr/pull/425 + patch_url: https://github.com/packit/ogr/pull/425.patch + url: https://api.github.com/repos/packit/ogr/pulls/425 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement get_tags for GithubProject - updated_at: '2020-01-06T08:48:26Z' - url: https://api.github.com/repos/packit/ogr/issues/304 + title: Implement PagurePullRequest.get_flags() + updated_at: '2020-06-11T07:53:14Z' + url: https://api.github.com/repos/packit/ogr/issues/425 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "```\r\nipdb> git_project \ - \ \ - \ \r\n\r\n\r\nipdb> git_project.get_tags \ - \ \r\n>\r\n\r\nipdb> git_project.get_tags() \ - \ \r\n*** NotImplementedError\r\n```" - closed_at: '2020-01-06T08:18:34Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/303/comments - created_at: '2020-01-03T14:36:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/303/events - html_url: https://github.com/packit/ogr/issues/303 - id: 545018569 + body: "Use literal style (|) in the YAML string, in order to keep new-lines\ + \ and\r\nhave a better formatting.\r\n\r\nBe explicit about the dates.\r\ + \n\r\nBe more English (hopefully).\r\n\r\nSigned-off-by: Hunor Csomort\xE1\ + ni " + closed_at: '2020-06-10T13:35:30Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/426/comments + created_at: '2020-06-10T06:41:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/426/events + html_url: https://github.com/packit/ogr/pull/426 + id: 635974319 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: a2eeef + - color: 0e8a16 default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/303/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/426/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDUwMTg1Njk= - number: 303 + node_id: MDExOlB1bGxSZXF1ZXN0NDMyMjM2NzY4 + number: 426 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/426.diff + html_url: https://github.com/packit/ogr/pull/426 + patch_url: https://github.com/packit/ogr/pull/426.patch + url: https://api.github.com/repos/packit/ogr/pulls/426 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: get_tags is not implemented for GithubProject - updated_at: '2020-01-06T08:18:34Z' - url: https://api.github.com/repos/packit/ogr/issues/303 + title: Improve the message when marking issues as stale + updated_at: '2020-06-10T13:35:30Z' + url: https://api.github.com/repos/packit/ogr/issues/426 user: - avatar_url: https://avatars0.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} + 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/TomasTomecek - id: 1662493 - login: TomasTomecek - node_id: MDQ6VXNlcjE2NjI0OTM= - organizations_url: https://api.github.com/users/TomasTomecek/orgs - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + 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/TomasTomecek + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "this means to use standard-test-roles to wrap our tests so they\ - \ can run when we create PRs on dist-git\r\n\r\nsee [python-docker's\ - \ test wrapper](https://src.fedoraproject.org/rpms/python-docker/blob/master/f/tests)\ - \ for more details" - closed_at: '2020-01-03T14:54:39Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/29/comments - created_at: '2019-03-01T17:18:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/29/events - html_url: https://github.com/packit/ogr/issues/29 - id: 416200836 + author_association: NONE + body: "During pre-commit I'm getting the following issues (Trying to solve\ + \ #338 )\r\n```\r\nogr/abstract.py:731: error: Too many arguments\r\n\ + ogr/services/github/service.py:172: error: Too many arguments\r\n```" + closed_at: '2020-06-08T19:38:15Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/362/comments + created_at: '2020-03-24T15:41:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/362/events + html_url: https://github.com/packit/ogr/pull/362 + id: 587056910 labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - color: '000000' default: false description: Is the issue still valid? @@ -55755,73 +69518,79 @@ requests.sessions: name: stale node_id: MDU6TGFiZWwxNjcwMTMyNjE5 url: https://api.github.com/repos/packit/ogr/labels/stale - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/29/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/362/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0MTYyMDA4MzY= - number: 29 + node_id: MDExOlB1bGxSZXF1ZXN0MzkzMDcwNzg0 + number: 362 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/362.diff + html_url: https://github.com/packit/ogr/pull/362 + patch_url: https://github.com/packit/ogr/pull/362.patch + url: https://api.github.com/repos/packit/ogr/pulls/362 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: run our tests in Fedora CI - updated_at: '2020-01-05T17:00:32Z' - url: https://api.github.com/repos/packit/ogr/issues/29 + title: adding hostname property + updated_at: '2020-06-08T19:38:15Z' + url: https://api.github.com/repos/packit/ogr/issues/362 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/36095091?v=4 + events_url: https://api.github.com/users/dinolinjob/events{/privacy} + followers_url: https://api.github.com/users/dinolinjob/followers + following_url: https://api.github.com/users/dinolinjob/following{/other_user} + gists_url: https://api.github.com/users/dinolinjob/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/dinolinjob + id: 36095091 + login: dinolinjob + node_id: MDQ6VXNlcjM2MDk1MDkx + organizations_url: https://api.github.com/users/dinolinjob/orgs + received_events_url: https://api.github.com/users/dinolinjob/received_events + repos_url: https://api.github.com/users/dinolinjob/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/dinolinjob/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dinolinjob/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/dinolinjob - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "During the implementation of setters for PR for Pagure (#298) I've\ - \ found out that Pagure's API requires title to be given (which seems\ - \ a bit odd, since why would you need to give title when you want to\ - \ update only description).\r\n\r\nWill fix in PR above, just letting\ - \ know about the bug." - closed_at: '2020-01-03T10:13:01Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/299/comments - created_at: '2019-12-26T21:35:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/299/events - html_url: https://github.com/packit/ogr/issues/299 - id: 542675897 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/299/labels{/name} + body: "Fixes #406\r\n\r\n- [x] Fix unit tests" + closed_at: '2020-05-26T09:47:07Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/411/comments + created_at: '2020-05-15T09:31:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/411/events + html_url: https://github.com/packit/ogr/pull/411 + id: 618832407 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/411/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1NDI2NzU4OTc= - number: 299 + node_id: MDExOlB1bGxSZXF1ZXN0NDE4NDgxODAx + number: 411 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/411.diff + html_url: https://github.com/packit/ogr/pull/411 + patch_url: https://github.com/packit/ogr/pull/411.patch + url: https://api.github.com/repos/packit/ogr/pulls/411 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Updating PullRequest info (Pagure) - updated_at: '2020-01-03T10:13:01Z' - url: https://api.github.com/repos/packit/ogr/issues/299 + title: Creating PRs from `fork` to `other-fork` on Github + updated_at: '2020-06-07T18:05:12Z' + url: https://api.github.com/repos/packit/ogr/issues/411 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -55843,125 +69612,15 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: started porting upsint to ogr and realized that I can't get all - labels defined on a repo - closed_at: '2020-01-03T09:14:39Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/301/comments - created_at: '2020-01-02T12:24:33Z' - events_url: https://api.github.com/repos/packit/ogr/issues/301/events - html_url: https://github.com/packit/ogr/issues/301 - id: 544558708 - labels: - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - labels_url: https://api.github.com/repos/packit/ogr/issues/301/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1NDQ1NTg3MDg= - number: 301 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: 'RFE: get repo labels' - updated_at: '2020-01-03T09:14:39Z' - url: https://api.github.com/repos/packit/ogr/issues/301 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "When creating a project in Pagure and setting the namespace, we\ - \ get a general `not a valid choice`.\r\n\r\nIt would be useful to determine\ - \ these two possibilities:\r\n\r\n- non-existing namespace\r\n- no permissions\r\ - \n\r\n---\r\n\r\nThe follow-up to #242 ." - closed_at: '2020-01-03T08:43:55Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/245/comments - created_at: '2019-10-14T13:29:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/245/events - html_url: https://github.com/packit/ogr/issues/245 - id: 506654479 - labels: - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/245/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1MDY2NTQ0Nzk= - number: 245 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Determine the reason of project_create failure in Pagure namespace - updated_at: '2020-01-03T08:43:55Z' - url: https://api.github.com/repos/packit/ogr/issues/245 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-12-16T14:39:27Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/296/comments - created_at: '2019-12-16T11:17:42Z' - events_url: https://api.github.com/repos/packit/ogr/issues/296/events - html_url: https://github.com/packit/ogr/pull/296 - id: 538347978 + body: '- [ ] should be thoroughly checked (`Project`, `Service`, `User`, + `Release` should be fine)' + closed_at: '2020-06-05T15:20:24Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/311/comments + created_at: '2020-01-24T22:31:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/311/events + html_url: https://github.com/packit/ogr/pull/311 + id: 554985894 labels: - color: 0e8a16 default: false @@ -55970,24 +69629,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/296/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/311/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzUzNTA4NTk4 - number: 296 + node_id: MDExOlB1bGxSZXF1ZXN0MzY3MDQxOTA2 + number: 311 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/296.diff - html_url: https://github.com/packit/ogr/pull/296 - patch_url: https://github.com/packit/ogr/pull/296.patch - url: https://api.github.com/repos/packit/ogr/pulls/296 + diff_url: https://github.com/packit/ogr/pull/311.diff + html_url: https://github.com/packit/ogr/pull/311 + patch_url: https://github.com/packit/ogr/pull/311.patch + url: https://api.github.com/repos/packit/ogr/pulls/311 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Regenerate gitlab tests after dep update - updated_at: '2019-12-16T14:40:17Z' - url: https://api.github.com/repos/packit/ogr/issues/296 + title: Add compatibility table + updated_at: '2020-06-05T15:36:55Z' + url: https://api.github.com/repos/packit/ogr/issues/311 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -56006,145 +69665,25 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - assignees: - - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - author_association: MEMBER + assignee: null + assignees: [] + author_association: CONTRIBUTOR body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Change IntEnum to Enum\n\ - * Implement enum for CommitFlag states\n* Fix typos and add tests\n\ - * Implement flags for pull requests\n* Implement CommitFlag for services\n\ - * Add methods to abstract CommitFlag\n* Fix typo in comments\n* Move\ - \ deprecation to separate file\n* Fix backward compatibility on pull\ - \ requests\n* Change attribute comment to body on comments\n* Add backward\ - \ links to comments Closes #255\n* Implement editing comments\n* Return\ - \ smoke test\n* Increase version for packit propose-update\n* Implementation\ - \ of GitPython instead of calling subprocess\n* Fix remarks from review\n\ - * Fix tests\n* Fix small typos and add dummy parameters/attributes\n\ - * Rename pr_create to create_pr and pr_id to id\n* Implement static\ - \ methods for PRs\n* Move deprecated functions to base project and deprecate\ - \ them\n* Create read-only PullRequest class\n* Remove unused code,\ - \ refactor code, change name of method\n* Implement pull request for\ - \ Pagure\n* Implement pull request for Gitlab\n* Implement pull request\ - \ for Github\n* Implement base class for pull request\n* Add methods\ - \ to abstract PullRequest\n* Ignore smoke test\n* Add .fmf and setup\ - \ testing-farm\n* Rename deprecation decorator\n* Change deprecation\ - \ messages\n* Pass parameters to Issue functions explicitly\n* Update\ - \ deprecation warnings for Issue functions\n* Implement updating Issue\ - \ object for Pagure\n* Add tests for updating issue object\n* Deprecate\ - \ Issue functions and fix tests\n* Move issue create, get, get_list\ - \ to static methods\n* Update docstrings\n* Fix typos\n* Change get_labels\ - \ to property and add_labels to variable-length args\n* Create properties\ - \ for Issue and implement them\n* Move deprecated issue-related functions\ - \ to base class\n* Rename functions in Issue and move raw_issue/project\ - \ to abstract\n* Factor out `can_close_issue`\n* Implement separate\ - \ Issue for Pagure\n* Implement separate Issue for GitLab\n* Implement\ - \ separate Issue for GitHub\n* Add methods to abstract Issue and implement\ - \ BaseIssue\n* Remove unused import (AnyComment)\n* Factor out filtering\ - \ comments to only one method\n* Add methods to abstract Issue\n* Fis\ - \ integration tests. Change PersistentObjectStorage().is_write_mode\ - \ to PersistentObjectStorage().mode == StorageMode.write\n* Add requirements\ - \ to zuul yaml\n* Remove Deprecated from test env\n* Add Deprecated\ - \ to dependencies\n* Remove github_tweak to use upstream github function\n\ - * temporary integration test method PullRequest._pr_close_temp() removed\n\ - * GithbProject.pr_close() implemented, integration tests added\n* instegration\ - \ test splited, related function headers updated, precommit fixes\n\ - * pre-commit fixes\n* response file genrated\n* integration test added\n\ - * pre-commit fixes\n* github_pr_create_rework_250\n* Fix the path to\ - \ the packit tests\n* Use requre-purge to unify the dates and tags in\ - \ response files\n* Tweak the stale-bot config\n* throw exception when\ - \ repo not found\n* write bytes as bytes to file\n* fix changes with\ - \ type hint inheritance\n* update NoReturns\n* type hint changes\n*\ - \ type hint changes\n* improve typehints for abstract.py\n* improve\ - \ typehint coverage in utils.py\n* Update contributing text in README\n\ - * Add link to contribution guide to README\n* Fix mypy remarks in Pagure's\ - \ comments\n* Add config for stale bot\n* changes args to Any\n* type\ - \ hint changes\n* black format\n* improve typehints for exceptions.py\n\ - * Fix black formatting\n* improve typehints for parsing.py\n* Resolve\ - \ remarks from review\n* (#230) Refactor parsing raw_comment\n* Change\ - \ method name\n* (#230) Update constructors and factor out raw_comment\n\ - * Remove duplicit import\n* Use bond TypeVar for abstract comment typing\n\ - * (#230) Support services' Issue/PRComment creation as in superclass\n\ - * (#230) Added TODO for backward-link and added raw_comment to objects\n\ - * (#230) Pagure comments (PR, Issue) implementation\n* (#230) Keep GithubProject.pr_comment\ - \ return type as before\n* (#230) Gitlab comments (PR, Issue) implementation\n\ - * (#230) Github comments (PR, Issue) implementation\n* (#230) Refactor\ - \ abstract classes for comments\n* Use new format for requre\n* Add\ - \ rebase check to pre-commit\n* (#240) Add parameter to Gitlab to get\ - \ comments in right order\n* (#240) Add tests for filtering Issue/PR\ - \ comments by author\n* Fix order of Gitlab's PR comments\n* (#240)\ - \ Update tests after factoring out getting comments\n* (#240) Refactor\ - \ of pr/issue comments\n* (#240) Extend get_issue/pr_comments interface\ - \ of filtering by author\n* (#240) Update filter_comments support\n\ - * (#204) Add test for creating Pagure project in invalid namespace\n\ - * Add response for creating Pagure repo in the namespace\n* (#204) Add\ - \ project_create to PagureService and add tests for it\n* (#232) Finish\ - \ Gitlab tests\n* (#232) Pagure tests finished\n* (#232) Start regenerating\ - \ GitLab tests\n* (#232) Started regenerating tests for Pagure\n* Newline\ - \ added\n* (#232) Fix GitHub tests\n* (#232) Update fullname of calling\ - \ objects for GitHub\n* (#232) Regenerate factory test_data\n* (#232)\ - \ Fix mypy/flake8 errors for gitlab and pagure\n* Fix mypy errors for\ - \ github\n* (#232) Fix circular imports\n* (#232) Pagure split and __init__\n\ - * (#232) GitLab split and __init__\n* (#232) GitHub split and __init__\n\ - * Add reverse-dependency test of packit\n* prepare for rev dependency\ - \ testing, set project dir in case it not come from zuul\n* remove all\ - \ stuff what were moved to requre project\n* Add Developer Certificate\ - \ of Origin\n* (#233) Update imports in Gitlab tests\n* Recreate old\ - \ response files\n* use requre for storing data for tests\n* (#205)\ - \ Update responses to match updated PagureService.get_project\n* (#205)\ - \ Add test_data for Pagure.get_issue_comments\n* (#205) Implement Pagure.get_issue_comments\ - \ and add tests\n* (#205) Implement Gitlab.get_issue_comments and add\ - \ tests\n* Fix formatting\n* (#205) Add Githubproject.get_issue_comments\ - \ and tests for it\n* Fix formatting\n* (#220) Regenerate responses\ - \ + update broken test\n* (#220) Pass username to PagureProject in get_project\ - \ if not given\n* (#220) PagureProject.is_fork offline and add method\ - \ for API call\n* (#220) Regenerate responses and add test\n* (#220)\ - \ Make PagureProject.full_repo_name property offline\n\n\nYou can change\ - \ it by editing `CHANGELOG.md` in the root of this repository and pushing\ - \ to `0.9.0-release` branch before merging this PR.\nI didn't find any\ - \ files where `__version__` is set." - closed_at: '2019-12-06T13:29:05Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/291/comments - created_at: '2019-12-04T09:37:29Z' - events_url: https://api.github.com/repos/packit/ogr/issues/291/events - html_url: https://github.com/packit/ogr/pull/291 - id: 532560063 + \ is the changelog I created:\n### Changes\n* Fix unit tests for Github\ + \ PRs\n* Implement creating PRs fork->other-fork on Github\n* Use custom_instances\ + \ to provide custom_mapping\n* Add PullRequest.patch property\n* GitHub:\ + \ query only one user when telling if a user can merge PRs\n* Adding\ + \ tests for add_user\n* Adding collaborators to projects - (Github,\ + \ Gitlab)\n\n\nYou can change it by editing `CHANGELOG.md` in the root\ + \ of this repository and pushing to `0.12.1-release` branch before merging\ + \ this PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-05-27T13:46:01Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/422/comments + created_at: '2020-05-26T15:00:36Z' + events_url: https://api.github.com/repos/packit/ogr/issues/422/events + html_url: https://github.com/packit/ogr/pull/422 + id: 624951772 labels: - color: ededed default: false @@ -56153,13 +69692,6 @@ requests.sessions: name: bot node_id: MDU6TGFiZWwxMjM3NzA0MjUw url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - color: ededed default: false description: null @@ -56167,24 +69699,24 @@ requests.sessions: name: release-bot node_id: MDU6TGFiZWwxMjM3NzA0MjUx url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/291/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/422/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ4Nzg0MjM1 - number: 291 + node_id: MDExOlB1bGxSZXF1ZXN0NDIzMjYxMzM2 + number: 422 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/291.diff - html_url: https://github.com/packit/ogr/pull/291 - patch_url: https://github.com/packit/ogr/pull/291.patch - url: https://api.github.com/repos/packit/ogr/pulls/291 + diff_url: https://github.com/packit/ogr/pull/422.diff + html_url: https://github.com/packit/ogr/pull/422 + patch_url: https://github.com/packit/ogr/pull/422.patch + url: https://api.github.com/repos/packit/ogr/pulls/422 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.9.0 release - updated_at: '2019-12-14T17:33:42Z' - url: https://api.github.com/repos/packit/ogr/issues/291 + title: 0.12.1 release + updated_at: '2020-05-27T13:47:20Z' + url: https://api.github.com/repos/packit/ogr/issues/422 user: - avatar_url: https://avatars1.githubusercontent.com/u/36231209?v=4 + 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} @@ -56201,177 +69733,102 @@ requests.sessions: 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '- Add trim commit flag descripttion to all implementations.' - closed_at: '2019-12-06T08:41:20Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/294/comments - created_at: '2019-12-05T09:15:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/294/events - html_url: https://github.com/packit/ogr/pull/294 - id: 533219952 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/294/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ5MzMyNDEx - number: 294 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/294.diff - html_url: https://github.com/packit/ogr/pull/294 - patch_url: https://github.com/packit/ogr/pull/294.patch - url: https://api.github.com/repos/packit/ogr/pulls/294 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Trim description of commit flag to abstract - updated_at: '2019-12-06T09:52:59Z' - url: https://api.github.com/repos/packit/ogr/issues/294 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "We are using `open` in the status enums, but `closed`.\r\n\r\n\ - Currently, we need to replace that for GitLab manually and GitHub probably\ - \ needs that fix as well. I am not sure about Pagure.\r\n\r\nIdeally,\ - \ we need to change our API, but we have some usages in other projects:\r\ - \n\r\n\r\n- [ ] packit\r\n - https://github.com/packit-service/packit/blob/master/tests/testsuite_basic/conftest.py#L114\ - \ (just a test)\r\n- [x] packit-service (no occurences found)\r\n- [\ - \ ] release-bot\r\n - https://github.com/user-cont/release-bot/blob/master/release_bot/github.py#L308" - closed_at: '2019-12-04T12:26:57Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/193/comments - created_at: '2019-09-11T14:03:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/193/events - html_url: https://github.com/packit/ogr/issues/193 - id: 492259504 + url: https://api.github.com/users/usercont-release-bot + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-05-26T15:00:38Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/421/comments + created_at: '2020-05-26T14:59:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/421/events + html_url: https://github.com/packit/ogr/issues/421 + id: 624950979 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db + - color: ededed default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 8be567 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/193/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/421/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTIyNTk1MDQ= - number: 193 + node_id: MDU6SXNzdWU2MjQ5NTA5Nzk= + number: 421 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Investigate 'open' x 'opened' status for Issues and PullRequests - updated_at: '2019-12-04T12:26:57Z' - url: https://api.github.com/repos/packit/ogr/issues/193 + title: New patch release + updated_at: '2020-05-26T15:00:38Z' + url: https://api.github.com/repos/packit/ogr/issues/421 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/dhodovsk - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Closes #193 ' - closed_at: '2019-12-04T12:25:00Z' + body: "After merging #404 there's no support only for creating PR from\ + \ one fork to different fork.\r\n\r\nPyGithub (GitHub API respectively)\ + \ doesn't allow creating pull requests on a repository we're \"merging\"\ + \ from.\r\n\r\n- [ ] implement getting other fork repository when creating\ + \ PR against it (internal Repository should be enough)\r\n - [ ]\ + \ handle non-existing fork" + closed_at: '2020-05-26T09:47:07Z' comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/293/comments - created_at: '2019-12-04T11:19:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/293/events - html_url: https://github.com/packit/ogr/pull/293 - id: 532619628 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/293/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/406/comments + created_at: '2020-05-05T10:19:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/406/events + html_url: https://github.com/packit/ogr/issues/406 + id: 612492491 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + labels_url: https://api.github.com/repos/packit/ogr/issues/406/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ4ODM0MjE0 - number: 293 + node_id: MDU6SXNzdWU2MTI0OTI0OTE= + number: 406 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/293.diff - html_url: https://github.com/packit/ogr/pull/293 - patch_url: https://github.com/packit/ogr/pull/293.patch - url: https://api.github.com/repos/packit/ogr/pulls/293 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Change statuses from `open` to `opened` - updated_at: '2019-12-04T12:26:08Z' - url: https://api.github.com/repos/packit/ogr/issues/293 + title: Creating pull requests from fork to other fork + updated_at: '2020-05-26T09:47:07Z' + url: https://api.github.com/repos/packit/ogr/issues/406 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -56393,14 +69850,16 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- Allow creating sommit flags with commit state as a string.' - closed_at: '2019-12-04T11:17:22Z' + body: '- Update `custom_mapping` with the info provided in the `custom_instances`. + + - Fixes: https://github.com/packit-service/ogr/issues/417' + closed_at: '2020-05-26T05:56:28Z' comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/292/comments - created_at: '2019-12-04T10:10:46Z' - events_url: https://api.github.com/repos/packit/ogr/issues/292/events - html_url: https://github.com/packit/ogr/pull/292 - id: 532578973 + comments_url: https://api.github.com/repos/packit/ogr/issues/418/comments + created_at: '2020-05-25T09:11:57Z' + events_url: https://api.github.com/repos/packit/ogr/issues/418/events + html_url: https://github.com/packit/ogr/pull/418 + id: 624162285 labels: - color: 0e8a16 default: false @@ -56409,24 +69868,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/292/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/418/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ4Nzk5Njcy - number: 292 + node_id: MDExOlB1bGxSZXF1ZXN0NDIyNjM4Mzc4 + number: 418 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/292.diff - html_url: https://github.com/packit/ogr/pull/292 - patch_url: https://github.com/packit/ogr/pull/292.patch - url: https://api.github.com/repos/packit/ogr/pulls/292 + diff_url: https://github.com/packit/ogr/pull/418.diff + html_url: https://github.com/packit/ogr/pull/418 + patch_url: https://github.com/packit/ogr/pull/418.patch + url: https://api.github.com/repos/packit/ogr/pulls/418 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix flags to be compatible with string states - updated_at: '2019-12-04T12:04:38Z' - url: https://api.github.com/repos/packit/ogr/issues/292 + title: Fix factory.get_project + updated_at: '2020-05-26T05:57:27Z' + url: https://api.github.com/repos/packit/ogr/issues/418 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -56447,44 +69906,159 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] + author_association: NONE + body: "I want to enhance the-new-hotness with the ability to file PRs\ + \ directly to dist-git projects instead of attaching patches to bugzilla.\ + \ I started to work on it in this PR [here](https://github.com/fedora-infra/the-new-hotness/pull/235).\ + \ All the packit related code could be find in https://github.com/fedora-infra/the-new-hotness/pull/235/files#diff-d74ad19fb2d5a66e5bdf8eec8555ca1d\r\ + \n\r\nI'm using only the dist-git module from the packit itself and\ + \ my use case should work like this:\r\n1. Create fork of the target\ + \ repository\r\n2. Update branch\r\n3. Create PR against the specific\ + \ branch in target repository\r\n\r\nWith my current code it needs kerberos\ + \ ticket and user must be in packager group. I tried to do the same\ + \ using dist-git web interface and only thing I need to execute the\ + \ above scenario is the FAS account. \r\nThis should be doable with\ + \ only the pagure token, which allows both forking and creating PR." + closed_at: '2020-05-26T05:56:28Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/417/comments + created_at: '2020-01-28T14:53:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/417/events + html_url: https://github.com/packit/ogr/issues/417 + id: 624162109 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/417/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MjQxNjIxMDk= + number: 417 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[use-case] the-new-hotness dist-git pull request creation' + updated_at: '2020-05-26T05:56:28Z' + url: https://api.github.com/repos/packit/ogr/issues/417 + user: + avatar_url: https://avatars.githubusercontent.com/u/6943409?v=4 + events_url: https://api.github.com/users/Zlopez/events{/privacy} + followers_url: https://api.github.com/users/Zlopez/followers + following_url: https://api.github.com/users/Zlopez/following{/other_user} + gists_url: https://api.github.com/users/Zlopez/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/Zlopez + id: 6943409 + login: Zlopez + node_id: MDQ6VXNlcjY5NDM0MDk= + organizations_url: https://api.github.com/users/Zlopez/orgs + received_events_url: https://api.github.com/users/Zlopez/received_events + repos_url: https://api.github.com/users/Zlopez/repos + site_admin: false + starred_url: https://api.github.com/users/Zlopez/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/Zlopez/subscriptions + type: User + url: https://api.github.com/users/Zlopez + - active_lock_reason: null + assignee: + avatar_url: https://avatars.githubusercontent.com/u/20343475?v=4 + events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} + followers_url: https://api.github.com/users/RafayGhafoor/followers + following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} + gists_url: https://api.github.com/users/RafayGhafoor/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/RafayGhafoor + id: 20343475 + login: RafayGhafoor + node_id: MDQ6VXNlcjIwMzQzNDc1 + organizations_url: https://api.github.com/users/RafayGhafoor/orgs + received_events_url: https://api.github.com/users/RafayGhafoor/received_events + repos_url: https://api.github.com/users/RafayGhafoor/repos + site_admin: false + starred_url: https://api.github.com/users/RafayGhafoor/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/RafayGhafoor/subscriptions + type: User + url: https://api.github.com/users/RafayGhafoor + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/20343475?v=4 + events_url: https://api.github.com/users/RafayGhafoor/events{/privacy} + followers_url: https://api.github.com/users/RafayGhafoor/followers + following_url: https://api.github.com/users/RafayGhafoor/following{/other_user} + gists_url: https://api.github.com/users/RafayGhafoor/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/RafayGhafoor + id: 20343475 + login: RafayGhafoor + node_id: MDQ6VXNlcjIwMzQzNDc1 + organizations_url: https://api.github.com/users/RafayGhafoor/orgs + received_events_url: https://api.github.com/users/RafayGhafoor/received_events + repos_url: https://api.github.com/users/RafayGhafoor/repos + site_admin: false + starred_url: https://api.github.com/users/RafayGhafoor/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/RafayGhafoor/subscriptions + type: User + url: https://api.github.com/users/RafayGhafoor author_association: MEMBER - body: There was done a lot of work after the last release. Let's make - a new one! - closed_at: '2019-12-04T09:37:32Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/290/comments - created_at: '2019-12-04T09:32:27Z' - events_url: https://api.github.com/repos/packit/ogr/issues/290/events - html_url: https://github.com/packit/ogr/issues/290 - id: 532557330 + body: "We have some URLs in the tests -- it would be nice to validate\ + \ them.\r\n\r\n*Originally reported by @jscotka :*\r\n> Maybe one note,\ + \ would be nice to test in tests that URLs are valid for github/gitlba/pagure,\ + \ eg. via urllib download the diff and check if there are few expected\ + \ lines." + closed_at: '2020-05-25T14:18:31Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/342/comments + created_at: '2020-02-26T09:49:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/342/events + html_url: https://github.com/packit/ogr/issues/342 + id: 571202848 labels: - - color: ededed + - color: fbca04 default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + description: Reserved for the participants/applicants of the Google + Summer of Code. + id: 1867054141 + name: GSOC + node_id: MDU6TGFiZWwxODY3MDU0MTQx + url: https://api.github.com/repos/packit/ogr/labels/GSOC + - color: 7057ff default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/290/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: '000000' + default: false + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/342/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MzI1NTczMzA= - number: 290 + node_id: MDU6SXNzdWU1NzEyMDI4NDg= + number: 342 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-12-04T09:37:32Z' - url: https://api.github.com/repos/packit/ogr/issues/290 + title: Validate the urls + updated_at: '2020-05-25T14:18:31Z' + url: https://api.github.com/repos/packit/ogr/issues/342 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -56506,22 +70080,17 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Fixes: #288 ' - closed_at: '2019-12-03T16:04:47Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/289/comments - created_at: '2019-12-03T15:07:51Z' - events_url: https://api.github.com/repos/packit/ogr/issues/289/events - html_url: https://github.com/packit/ogr/pull/289 - id: 532051771 + body: "Currently implemented only for PagurePullRequest.\r\n\r\nIt returns\ + \ bytes in case there's some binary blob in the patch.\r\n\r\nI'd like\ + \ to use this in https://github.com/packit-service/packit-service/pull/627" + closed_at: '2020-05-22T17:27:23Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/415/comments + created_at: '2020-05-22T11:43:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/415/events + html_url: https://github.com/packit/ogr/pull/415 + id: 623151328 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -56529,54 +70098,133 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/289/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/415/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ4MzgyNjMw - number: 289 + node_id: MDExOlB1bGxSZXF1ZXN0NDIxODc0NDAw + number: 415 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/289.diff - html_url: https://github.com/packit/ogr/pull/289 - patch_url: https://github.com/packit/ogr/pull/289.patch - url: https://api.github.com/repos/packit/ogr/pulls/289 + diff_url: https://github.com/packit/ogr/pull/415.diff + html_url: https://github.com/packit/ogr/pull/415 + patch_url: https://github.com/packit/ogr/pull/415.patch + url: https://api.github.com/repos/packit/ogr/pulls/415 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix typo in comments - updated_at: '2019-12-04T09:27:03Z' - url: https://api.github.com/repos/packit/ogr/issues/289 + title: Add PullRequest.patch property + updated_at: '2020-05-25T09:38:26Z' + url: https://api.github.com/repos/packit/ogr/issues/415 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/jpopelka + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is dirty.This + is not supported.` | + + | `f31` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.12.0.tar.gz. + Reason: ''Not Found''. ` | + + | `f32` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is dirty.This + is not supported.` | + + | `master` | `The distgit repository /tmp/packit-dist-gitrxy9z89n is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-05-21T11:58:35Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/409/comments + created_at: '2020-05-06T15:57:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/409/events + html_url: https://github.com/packit/ogr/issues/409 + id: 613430701 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/409/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MTM0MzA3MDE= + number: 409 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.12.0' + updated_at: '2020-05-21T11:58:35Z' + url: https://api.github.com/repos/packit/ogr/issues/409 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-12-03T12:36:59Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/287/comments - created_at: '2019-12-02T14:02:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/287/events - html_url: https://github.com/packit/ogr/pull/287 - id: 531147909 + body: "Figure out how we can return data:\r\n- only when needed\r\n- only\ + \ a limited number of results at first\r\n\r\nAC:\r\n- Provide the same\ + \ API for users of all implementations (e.g. change lists to generators).\r\ + \n- Be transparent to user == download the additional data when the\ + \ user really needs them.\r\n - e.g. Use lazy properties where possible.\r\ + \n- Enable efficient filtering on the results / during the calls.\r\n" + closed_at: null + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/325/comments + created_at: '2020-02-13T18:52:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/325/events + html_url: https://github.com/packit/ogr/issues/325 + id: 564883774 labels: + - color: 134ac1 + default: false + description: Lost of work ahead + id: 1432779207 + name: EPIC + node_id: MDU6TGFiZWwxNDMyNzc5MjA3 + url: https://api.github.com/repos/packit/ogr/labels/EPIC - color: b60205 default: false description: Issue reserved to students from Red Hat Open Source Contest @@ -56584,66 +70232,132 @@ requests.sessions: name: RHOSC node_id: MDU6TGFiZWwxNTYzMzA5Nzcz url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + - color: ff9990 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/287/labels{/name} + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/325/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ3NjQwMjEz - number: 287 + node_id: MDU6SXNzdWU1NjQ4ODM3NzQ= + number: 325 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/287.diff - html_url: https://github.com/packit/ogr/pull/287 - patch_url: https://github.com/packit/ogr/pull/287.patch - url: https://api.github.com/repos/packit/ogr/pulls/287 repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Fix backward compatibility on pull requests - updated_at: '2019-12-04T09:27:02Z' - url: https://api.github.com/repos/packit/ogr/issues/287 + state: open + title: Laziness + updated_at: '2020-05-18T08:42:29Z' + url: https://api.github.com/repos/packit/ogr/issues/325 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null - assignee: null - assignees: [] + assignee: + avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 + events_url: https://api.github.com/users/TomasJani/events{/privacy} + followers_url: https://api.github.com/users/TomasJani/followers + following_url: https://api.github.com/users/TomasJani/following{/other_user} + gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasJani + id: 21237576 + login: TomasJani + node_id: MDQ6VXNlcjIxMjM3NTc2 + organizations_url: https://api.github.com/users/TomasJani/orgs + received_events_url: https://api.github.com/users/TomasJani/received_events + repos_url: https://api.github.com/users/TomasJani/repos + site_admin: false + starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + type: User + url: https://api.github.com/users/TomasJani + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 + events_url: https://api.github.com/users/TomasJani/events{/privacy} + followers_url: https://api.github.com/users/TomasJani/followers + following_url: https://api.github.com/users/TomasJani/following{/other_user} + gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasJani + id: 21237576 + login: TomasJani + node_id: MDQ6VXNlcjIxMjM3NTc2 + organizations_url: https://api.github.com/users/TomasJani/orgs + received_events_url: https://api.github.com/users/TomasJani/received_events + repos_url: https://api.github.com/users/TomasJani/repos + site_admin: false + starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + type: User + url: https://api.github.com/users/TomasJani author_association: MEMBER - body: "- [x] add methods\r\n- [x] services' implementation\r\n- [x] enum\ - \ for statuses?\r\n- [x] PRs?\r\n - [x] tests\r\n\r\nComparison of\ - \ statuses:\r\n\r\nGitHub | GitLab | Pagure\r\n--- | --- | ---\r\n`pending`\ - \ | `pending` | `pending`\r\n`success` | `success` | `success`\r\n`failure`\ - \ | `failed` | `failure`\r\n`error` | `-` | `error`\r\n`-` | `canceled`\ - \ | `canceled`\r\n`-` | `running` | `-`" - closed_at: '2019-12-03T20:23:52Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/286/comments - created_at: '2019-11-30T20:18:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/286/events - html_url: https://github.com/packit/ogr/pull/286 - id: 530625724 + body: "- [x] add the `created` and `edited` properties to the commit flag\ + \ classes\r\n - [x] abstract class\r\n - [x] github:\r\n - https://pygithub.readthedocs.io/en/latest/github_objects/Commit.html#github.Commit.Commit.get_statuses\r\ + \n - [ ] gitlab:\r\n - https://python-gitlab.readthedocs.io/en/stable/gl_objects/commits.html#commit-status\r\ + \n - https://docs.gitlab.com/ce/api/commits.html\r\n - pagure:\r\ + \n - https://src.fedoraproject.org/api/0/ -> `Flags for a commit`\r\ + \n- [x] tests for all implementations" + closed_at: '2020-05-16T16:37:40Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/344/comments + created_at: '2020-03-02T11:25:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/344/events + html_url: https://github.com/packit/ogr/issues/344 + id: 573909124 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure - color: b60205 default: false description: Issue reserved to students from Red Hat Open Source Contest @@ -56651,70 +70365,77 @@ requests.sessions: name: RHOSC node_id: MDU6TGFiZWwxNTYzMzA5Nzcz url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + - color: a2eeef default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/286/labels{/name} + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/344/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ3MjU2NjI2 - number: 286 + node_id: MDU6SXNzdWU1NzM5MDkxMjQ= + number: 344 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/286.diff - html_url: https://github.com/packit/ogr/pull/286 - patch_url: https://github.com/packit/ogr/pull/286.patch - url: https://api.github.com/repos/packit/ogr/pulls/286 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Commit flags - updated_at: '2019-12-04T09:27:02Z' - url: https://api.github.com/repos/packit/ogr/issues/286 + title: Add datetime to commit flags + updated_at: '2020-05-18T08:05:17Z' + url: https://api.github.com/repos/packit/ogr/issues/344 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "- [x] editing of comments\r\n- [x] backward-link to issue/PR\r\n\ - - [x] rename property `comment` to `body`\r\n editing comments works\ - \ only on `body`" - closed_at: '2019-12-03T11:21:57Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/285/comments - created_at: '2019-11-29T12:32:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/285/events - html_url: https://github.com/packit/ogr/pull/285 - id: 530323155 + body: "When telling if a user can merge PRs in a GitHub repo, ask GitHub\ + \ for\r\nthe user's permission on the repo instead of checking if the\ + \ user is in\r\nthe list of collaborators.\r\n\r\nThis should lead to\ + \ fewer API calls in cases when the full list of\r\ncollaborators is\ + \ not needed, but it also returns better results: the\r\nlist of collaborators\ + \ does not seem to be always up to date when queries\r\nare done using\ + \ GitHub App tokens.\r\n\r\nRelates to packit-service/packit-service#612.\r\ + \n\r\nSigned-off-by: Hunor Csomort\xE1ni " + closed_at: '2020-05-12T10:44:25Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/410/comments + created_at: '2020-05-11T13:29:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/410/events + html_url: https://github.com/packit/ogr/pull/410 + id: 615885823 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -56722,61 +70443,55 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/285/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/410/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ3MDI4OTMw - number: 285 + node_id: MDExOlB1bGxSZXF1ZXN0NDE2MTA1NjQy + number: 410 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/285.diff - html_url: https://github.com/packit/ogr/pull/285 - patch_url: https://github.com/packit/ogr/pull/285.patch - url: https://api.github.com/repos/packit/ogr/pulls/285 + diff_url: https://github.com/packit/ogr/pull/410.diff + html_url: https://github.com/packit/ogr/pull/410 + patch_url: https://github.com/packit/ogr/pull/410.patch + url: https://api.github.com/repos/packit/ogr/pulls/410 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implement editing comments and backward-link to Issue/PR - updated_at: '2019-12-04T09:27:02Z' - url: https://api.github.com/repos/packit/ogr/issues/285 + title: 'GitHub: query only one user when telling if a user can merge PRs' + updated_at: '2020-05-12T10:44:25Z' + url: https://api.github.com/repos/packit/ogr/issues/410 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-11-20T14:23:47Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/279/comments - created_at: '2019-11-20T10:32:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/279/events - html_url: https://github.com/packit/ogr/pull/279 - id: 525714930 + author_association: CONTRIBUTOR + body: "Fixes #216 \r\n\r\nAdded to Github and Gitlab, Pagure is still\ + \ left to do." + closed_at: '2020-05-11T19:45:01Z' + comments: 26 + comments_url: https://api.github.com/repos/packit/ogr/issues/376/comments + created_at: '2020-04-09T16:55:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/376/events + html_url: https://github.com/packit/ogr/pull/376 + id: 597420110 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -56784,135 +70499,197 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/279/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/376/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQzMjgyNDg4 - number: 279 + node_id: MDExOlB1bGxSZXF1ZXN0NDAxNTM3MTMx + number: 376 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/279.diff - html_url: https://github.com/packit/ogr/pull/279 - patch_url: https://github.com/packit/ogr/pull/279.patch - url: https://api.github.com/repos/packit/ogr/pulls/279 + diff_url: https://github.com/packit/ogr/pull/376.diff + html_url: https://github.com/packit/ogr/pull/376 + patch_url: https://github.com/packit/ogr/pull/376.patch + url: https://api.github.com/repos/packit/ogr/pulls/376 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add deprecation policy and dependency package - updated_at: '2019-12-04T09:27:02Z' - url: https://api.github.com/repos/packit/ogr/issues/279 + title: Adding collaborators to projects - (Github, Gitlab, Pagure) + updated_at: '2020-05-11T19:45:01Z' + url: https://api.github.com/repos/packit/ogr/issues/376 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/shreyaspapi - active_lock_reason: null - assignee: null - assignees: [] + assignee: + avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi + assignees: + - avatar_url: https://avatars.githubusercontent.com/u/22324802?v=4 + events_url: https://api.github.com/users/shreyaspapi/events{/privacy} + followers_url: https://api.github.com/users/shreyaspapi/followers + following_url: https://api.github.com/users/shreyaspapi/following{/other_user} + gists_url: https://api.github.com/users/shreyaspapi/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/shreyaspapi + id: 22324802 + login: shreyaspapi + node_id: MDQ6VXNlcjIyMzI0ODAy + organizations_url: https://api.github.com/users/shreyaspapi/orgs + received_events_url: https://api.github.com/users/shreyaspapi/received_events + repos_url: https://api.github.com/users/shreyaspapi/repos + site_admin: false + starred_url: https://api.github.com/users/shreyaspapi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/shreyaspapi/subscriptions + type: User + url: https://api.github.com/users/shreyaspapi author_association: MEMBER - body: "Closes #254 \r\n\r\n- [x] move PR-related functions from `Project`\ - \ to `PullRequest`\r\n - [x] `BasePullRequest`\r\n - [x] Github\r\n\ - \ - [x] Gitlab\r\n - [x] Pagure\r\n- [x] make `Project`'s methods\ - \ backward-compatible by calling new methods\r\n- [x] deprecation\r\n\ - \ - [x] move deprecated functions to base class\r\n - [x] deprecate\ - \ functions on `Project`\r\n- [x] properties\r\n- [x] fix tests\r\n\ - - [x] static methods for `get`, `create`, `list`\r\n- [x] update comments\ - \ (after refactor from Issue has been merged)\r\n- [x] check docstrings\r\ - \n- [x] `pr_create` -> update name" - closed_at: '2019-11-29T10:21:52Z' - comments: 17 - comments_url: https://api.github.com/repos/packit/ogr/issues/276/comments - created_at: '2019-11-16T21:01:08Z' - events_url: https://api.github.com/repos/packit/ogr/issues/276/events - html_url: https://github.com/packit/ogr/pull/276 - id: 523895740 + body: "- [ ] Add the `add_to_collaborators` method to `abstract.GitProject`.\ + \ (And raise `NotImplementedError`.)\r\n- [ ] Implement the method for\ + \ all forges (GitHub, GitLab, Pagure).\r\n- [ ] Add tests for this method.\r\ + \n\r\nDocumentation:\r\n\r\n- https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html#project-members\r\ + \n- https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html\r\ + \n- https://pagure.io/api/0/ ( > Modify ACLs on a project ?)\r\n" + closed_at: '2020-05-11T19:45:01Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/216/comments + created_at: '2019-09-20T05:52:58Z' + events_url: https://api.github.com/repos/packit/ogr/issues/216/events + html_url: https://github.com/packit/ogr/issues/216 + id: 496159491 labels: - - color: b60205 + - color: '000000' default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/276/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + labels_url: https://api.github.com/repos/packit/ogr/issues/216/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQxNzkxNzIw - number: 276 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/276.diff - html_url: https://github.com/packit/ogr/pull/276 - patch_url: https://github.com/packit/ogr/pull/276.patch - url: https://api.github.com/repos/packit/ogr/pulls/276 + node_id: MDU6SXNzdWU0OTYxNTk0OTE= + number: 216 + performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Pull request class refactor - updated_at: '2019-12-04T09:27:01Z' - url: https://api.github.com/repos/packit/ogr/issues/276 + title: Adding collaborators to projects + updated_at: '2020-05-11T19:45:01Z' + url: https://api.github.com/repos/packit/ogr/issues/216 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Closes #253\r\n\r\n- [x] move issue-related functions from `Project`\ - \ to `Issue`\r\n- [x] make `Project`'s methods backward-compatible by\ - \ calling new methods\r\n- [x] fix tests\r\n- [x] `__get_comment`, `get_issue_comments`\r\ - \n- [x] deprecate functions on `Project`\r\n- [x] check docstrings\r\ - \n- [x] update deprecation warnings" - closed_at: '2019-11-26T08:52:22Z' - comments: 24 - comments_url: https://api.github.com/repos/packit/ogr/issues/264/comments - created_at: '2019-11-04T11:23:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/264/events - html_url: https://github.com/packit/ogr/pull/264 - id: 517089572 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Declare repositories on\ + \ git.centos.org not private\n* Create PR works for Github and fixed\ + \ test\n* Refactor getting projects internally\n* Add tests for `source_project`\ + \ on PullRequest\n* Implement `source_project` on PullRequest\n* Add\ + \ source/target_project to PullRequest\n* Fix tests after requre update\n\ + * Implement `head_commit` for GitHub and GitLab\n* Make tests for `head_commit`\ + \ on PullRequest\n* spec: don't do python_provide on F33+\n\n\nYou can\ + \ change it by editing `CHANGELOG.md` in the root of this repository\ + \ and pushing to `0.12.0-release` branch before merging this PR.\nI\ + \ didn't find any files where `__version__` is set." + closed_at: '2020-05-06T15:53:24Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/408/comments + created_at: '2020-05-06T13:34:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/408/events + html_url: https://github.com/packit/ogr/pull/408 + id: 613324595 labels: - - color: b60205 + - color: ededed default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -56920,123 +70697,120 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/264/labels{/name} + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/408/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM2MjI2MDM0 - number: 264 + node_id: MDExOlB1bGxSZXF1ZXN0NDE0MTAwMTc4 + number: 408 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/264.diff - html_url: https://github.com/packit/ogr/pull/264 - patch_url: https://github.com/packit/ogr/pull/264.patch - url: https://api.github.com/repos/packit/ogr/pulls/264 + diff_url: https://github.com/packit/ogr/pull/408.diff + html_url: https://github.com/packit/ogr/pull/408 + patch_url: https://github.com/packit/ogr/pull/408.patch + url: https://api.github.com/repos/packit/ogr/pulls/408 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Issue class refactor - updated_at: '2019-12-04T09:27:01Z' - url: https://api.github.com/repos/packit/ogr/issues/264 + title: 0.12.0 release + updated_at: '2020-05-06T15:57:57Z' + url: https://api.github.com/repos/packit/ogr/issues/408 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Update annotation of `_from_raw_comment`' - closed_at: '2019-11-04T12:35:35Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/260/comments - created_at: '2019-10-27T17:27:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/260/events - html_url: https://github.com/packit/ogr/pull/260 - id: 512995963 + body: Let's create a new release! + closed_at: '2020-05-06T13:34:20Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/407/comments + created_at: '2020-05-06T13:32:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/407/events + html_url: https://github.com/packit/ogr/issues/407 + id: 613323657 labels: - - color: b60205 + - color: ededed default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/260/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/407/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyODc1NTQ3 - number: 260 + node_id: MDU6SXNzdWU2MTMzMjM2NTc= + number: 407 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/260.diff - html_url: https://github.com/packit/ogr/pull/260 - patch_url: https://github.com/packit/ogr/pull/260.patch - url: https://api.github.com/repos/packit/ogr/pulls/260 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Comment: mypy' - updated_at: '2019-12-04T09:27:01Z' - url: https://api.github.com/repos/packit/ogr/issues/260 + title: New minor release + updated_at: '2020-05-06T13:34:20Z' + url: https://api.github.com/repos/packit/ogr/issues/407 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Closes #230' - closed_at: '2019-10-23T13:09:59Z' - comments: 27 - comments_url: https://api.github.com/repos/packit/ogr/issues/249/comments - created_at: '2019-10-16T16:02:40Z' - events_url: https://api.github.com/repos/packit/ogr/issues/249/events - html_url: https://github.com/packit/ogr/pull/249 - id: 507947617 + author_association: CONTRIBUTOR + body: "Related to #307 \r\nIf the fork_name arg is passed, PR is created\ + \ on the forked repo.\r\nIf the fork_name arg is not passed PR is made\ + \ to parent repo. \r\n\r\nTested for (fork-fork, fork-upstream, upstream-upstream)" + closed_at: '2020-05-05T07:34:36Z' + comments: 16 + comments_url: https://api.github.com/repos/packit/ogr/issues/404/comments + created_at: '2020-05-01T20:16:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/404/events + html_url: https://github.com/packit/ogr/pull/404 + id: 610947143 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -57044,123 +70818,129 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/249/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/404/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI4ODM5NDg2 - number: 249 + node_id: MDExOlB1bGxSZXF1ZXN0NDEyMjg0MDE0 + number: 404 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/249.diff - html_url: https://github.com/packit/ogr/pull/249 - patch_url: https://github.com/packit/ogr/pull/249.patch - url: https://api.github.com/repos/packit/ogr/pulls/249 + diff_url: https://github.com/packit/ogr/pull/404.diff + html_url: https://github.com/packit/ogr/pull/404 + patch_url: https://github.com/packit/ogr/pull/404.patch + url: https://api.github.com/repos/packit/ogr/pulls/404 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Factor out Comment - updated_at: '2019-12-04T09:27:01Z' - url: https://api.github.com/repos/packit/ogr/issues/249 + title: Create PR's to forked Repo fixed for Github + updated_at: '2020-05-05T12:36:03Z' + url: https://api.github.com/repos/packit/ogr/issues/404 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 + events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} + followers_url: https://api.github.com/users/saisankargochhayat/followers + following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} + gists_url: https://api.github.com/users/saisankargochhayat/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/saisankargochhayat + id: 9396452 + login: saisankargochhayat + node_id: MDQ6VXNlcjkzOTY0NTI= + organizations_url: https://api.github.com/users/saisankargochhayat/orgs + received_events_url: https://api.github.com/users/saisankargochhayat/received_events + repos_url: https://api.github.com/users/saisankargochhayat/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/saisankargochhayat - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'Closes #240' - closed_at: '2019-10-15T10:49:50Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/243/comments - created_at: '2019-10-12T11:32:08Z' - events_url: https://api.github.com/repos/packit/ogr/issues/243/events - html_url: https://github.com/packit/ogr/pull/243 - id: 506175099 + author_association: CONTRIBUTOR + body: "I am looking at this code:\r\n\r\nhttps://github.com/packit-service/ogr/blob/b7c5333c4df64ecdf854a5375c207a789ca51a01/ogr/services/github/pull_request.py#L111\r\ + \n\r\nwhat if I want to create a PR against my fork and not the upstream\ + \ project?" + closed_at: '2020-05-05T10:14:22Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/307/comments + created_at: '2020-01-14T11:20:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/307/events + html_url: https://github.com/packit/ogr/issues/307 + id: 549501262 labels: - - color: b60205 + - color: '000000' default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/243/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: c5def5 + default: true + description: Documentation needs updates + id: 1432779267 + name: documentation + node_id: MDU6TGFiZWwxNDMyNzc5MjY3 + url: https://api.github.com/repos/packit/ogr/labels/documentation + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/307/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI3NDU2NDQz - number: 243 + node_id: MDU6SXNzdWU1NDk1MDEyNjI= + number: 307 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/243.diff - html_url: https://github.com/packit/ogr/pull/243 - patch_url: https://github.com/packit/ogr/pull/243.patch - url: https://api.github.com/repos/packit/ogr/pulls/243 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implementation of filtering PR/Issue comments by author - updated_at: '2019-12-04T09:27:00Z' - url: https://api.github.com/repos/packit/ogr/issues/243 + title: how can I create a PR against my fork + updated_at: '2020-05-05T10:14:22Z' + url: https://api.github.com/repos/packit/ogr/issues/307 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Closes #204' - closed_at: '2019-10-15T07:33:19Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/242/comments - created_at: '2019-10-11T11:05:04Z' - events_url: https://api.github.com/repos/packit/ogr/issues/242/events - html_url: https://github.com/packit/ogr/pull/242 - id: 505786917 + body: "The best solution though would be to make this list configurable.\ + \ But I'm in a hurry now :slightly_smiling_face: \r\n\r\nSigned-off-by:\ + \ Hunor Csomort\xE1ni " + closed_at: '2020-05-05T09:54:09Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/405/comments + created_at: '2020-05-05T09:34:35Z' + events_url: https://api.github.com/repos/packit/ogr/issues/405/events + html_url: https://github.com/packit/ogr/pull/405 + id: 612468201 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -57168,61 +70948,72 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/242/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/405/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI3MTQ2NTgy - number: 242 + node_id: MDExOlB1bGxSZXF1ZXN0NDEzNDA2MjI3 + number: 405 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/242.diff - html_url: https://github.com/packit/ogr/pull/242 - patch_url: https://github.com/packit/ogr/pull/242.patch - url: https://api.github.com/repos/packit/ogr/pulls/242 + diff_url: https://github.com/packit/ogr/pull/405.diff + html_url: https://github.com/packit/ogr/pull/405 + patch_url: https://github.com/packit/ogr/pull/405.patch + url: https://api.github.com/repos/packit/ogr/pulls/405 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add project_create to PagureService and add tests for it - updated_at: '2019-12-04T09:27:00Z' - url: https://api.github.com/repos/packit/ogr/issues/242 + title: Declare repositories on git.centos.org not private + updated_at: '2020-05-05T09:54:09Z' + url: https://api.github.com/repos/packit/ogr/issues/405 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #232' - closed_at: '2019-10-11T06:36:16Z' - comments: 18 - comments_url: https://api.github.com/repos/packit/ogr/issues/236/comments - created_at: '2019-10-07T14:44:20Z' - events_url: https://api.github.com/repos/packit/ogr/issues/236/events - html_url: https://github.com/packit/ogr/pull/236 - id: 503499100 - labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC + body: "Closes #400\r\n\r\n# TODO\r\n\r\n(copied from issue)\r\n\r\n- [x]\ + \ add `source_project` property (abstract and implementations) returning\ + \ the project with the source branch\r\n- [x] create tests:\r\n - [x]\ + \ basic PR from `fork` to `upstream`\r\n - [x] renamed `fork`\r\n \ + \ - [x] renamed `upstream`\r\n - [x] PR from `fork` to `fork`\r\n \ + \ - [x] PR from `upstream` to `upstream`\r\n- [x] ? `target_project`\ + \ property that will replace the current `project` one to make it clear\r\ + \n - [x] don't forget to support both and deprecate the old one\r\n\ + - [x] squash commits\r\n- [x] check getting projects by internal representation\ + \ (github: creating from github.Repository, gitlab: from project_id)\r\ + \n - [x] Github: project uses almost the same way of initializing\ + \ `GithubProject` in `L129, L172, L385, L564`\r\n\r\n# Discussion\r\n\ + \r\n- [x] deprecating `.project`\r\n - [x] provide `.project` as\ + \ a property?\r\n - [ ] if so, do we need setters for them outside\ + \ class?\r\n- [ ] consider having `GithubProject.from_github_repository`,\ + \ which would take just the github repo from PyGithub and return new\ + \ project\r\n- [ ] consider creating GitLab projects just from _project\ + \ id_ (python-gitlab doesn't offer any way to get to source project\ + \ than ID)" + closed_at: '2020-04-30T16:23:19Z' + comments: 21 + comments_url: https://api.github.com/repos/packit/ogr/issues/401/comments + created_at: '2020-04-27T20:33:00Z' + events_url: https://api.github.com/repos/packit/ogr/issues/401/events + html_url: https://github.com/packit/ogr/pull/401 + id: 607834495 + labels: - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -57230,24 +71021,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/236/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/401/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI1MzM5NTg3 - number: 236 + node_id: MDExOlB1bGxSZXF1ZXN0NDA5NzMxMzg3 + number: 401 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/236.diff - html_url: https://github.com/packit/ogr/pull/236 - patch_url: https://github.com/packit/ogr/pull/236.patch - url: https://api.github.com/repos/packit/ogr/pulls/236 + diff_url: https://github.com/packit/ogr/pull/401.diff + html_url: https://github.com/packit/ogr/pull/401 + patch_url: https://github.com/packit/ogr/pull/401.patch + url: https://api.github.com/repos/packit/ogr/pulls/401 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Prepare file structure for object-specific methods - updated_at: '2019-12-04T09:27:00Z' - url: https://api.github.com/repos/packit/ogr/issues/236 + title: Enhance project references in pull requests + updated_at: '2020-04-30T16:34:07Z' + url: https://api.github.com/repos/packit/ogr/issues/401 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -57266,50 +71057,8 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Fixes #233' - closed_at: '2019-10-07T11:02:38Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/234/comments - created_at: '2019-10-07T08:22:06Z' - events_url: https://api.github.com/repos/packit/ogr/issues/234/events - html_url: https://github.com/packit/ogr/pull/234 - id: 503300422 - labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/234/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI1MTgxMjU0 - number: 234 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/234.diff - html_url: https://github.com/packit/ogr/pull/234 - patch_url: https://github.com/packit/ogr/pull/234.patch - url: https://api.github.com/repos/packit/ogr/pulls/234 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Update imports in Gitlab tests - updated_at: '2019-12-04T09:27:00Z' - url: https://api.github.com/repos/packit/ogr/issues/234 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + assignee: + 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} @@ -57327,123 +71076,8 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - _next: null - elapsed: 0.2 - 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset - Cache-Control: private, max-age=60, s-maxage=60 - Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; - Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" - Link: ; - rel="prev", ; - rel="next", ; - rel="last", ; - rel="first" - Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin - Server: GitHub.com - Status: 200 OK - Strict-Transport-Security: max-age=31536000; includeSubdomains; preload - Transfer-Encoding: chunked - Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding - 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages - X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block - raw: !!binary "" - reason: OK - status_code: 200 - https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=8: - - metadata: - latency: 0.5012702941894531 - module_call_list: - - unittest.case - - requre.online_replacing - - tests.integration.github.test_issues - - ogr.services.github.project - - ogr.services.github.issue - - github.PaginatedList - - github.Requester - - requests.sessions - - requre.objects - - requre.cassette - - requests.sessions - - send - output: - __store_indicator: 2 - _content: - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Closes #205\r\n\r\n- [x] `GithubProject.get_issue_comments`\r\n\ - \r\n- [x] `GitlabProject.get_issue_comments`\r\n\r\n- [x] `PagureProject.get_issue_comments`" - closed_at: '2019-10-03T14:35:15Z' - comments: 22 - comments_url: https://api.github.com/repos/packit/ogr/issues/228/comments - created_at: '2019-09-27T20:06:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/228/events - html_url: https://github.com/packit/ogr/pull/228 - id: 499627560 - labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/228/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIyMzA4NzQy - number: 228 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/228.diff - html_url: https://github.com/packit/ogr/pull/228 - patch_url: https://github.com/packit/ogr/pull/228.patch - url: https://api.github.com/repos/packit/ogr/pulls/228 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Implementation of get_issue_comments for projects - updated_at: '2019-12-04T09:26:59Z' - url: https://api.github.com/repos/packit/ogr/issues/228 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + assignees: + - 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} @@ -57461,88 +71095,96 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] author_association: MEMBER - body: 'Closes #224' - closed_at: '2019-09-30T11:40:39Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/227/comments - created_at: '2019-09-27T10:16:12Z' - events_url: https://api.github.com/repos/packit/ogr/issues/227/events - html_url: https://github.com/packit/ogr/pull/227 - id: 499361462 + body: "Now, we have only `project` property in the PR class, but it's\ + \ hard to get the source project. (It can be sometimes very tricky to\ + \ pick the right repo from the OGR's user perspective.)\r\n\r\n- [ ]\ + \ add `source_project` property (abstract and implementations) returning\ + \ the project with the source branch\r\n- [ ] create tests:\r\n - [\ + \ ] basic PR from `fork` to `upstream`\r\n - [ ] renamed `fork`\r\n\ + \ - [ ] renamed `upstream`\r\n - [ ] PR from `fork` to `fork`\r\n\ + \ - [ ] PR from `upstream` to `upstream`\r\n- [ ] ? `target_project`\ + \ property that will replace the current `project` one to make it clear\r\ + \n - [ ] don't forget to support both and deprecate the old one" + closed_at: '2020-04-30T16:23:19Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/400/comments + created_at: '2020-04-27T15:09:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/400/events + html_url: https://github.com/packit/ogr/issues/400 + id: 607627181 labels: - - color: b60205 + - color: '000000' default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/227/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + labels_url: https://api.github.com/repos/packit/ogr/issues/400/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIyMDk2ODIw - number: 227 + node_id: MDU6SXNzdWU2MDc2MjcxODE= + number: 400 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/227.diff - html_url: https://github.com/packit/ogr/pull/227 - patch_url: https://github.com/packit/ogr/pull/227.patch - url: https://api.github.com/repos/packit/ogr/pulls/227 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Factor out getting collaborators (GithubProject) - updated_at: '2019-12-04T09:26:59Z' - url: https://api.github.com/repos/packit/ogr/issues/227 + title: source_project property for PR class + updated_at: '2020-04-30T16:23:19Z' + url: https://api.github.com/repos/packit/ogr/issues/400 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Fixes #220' - closed_at: '2019-10-02T09:17:18Z' - comments: 41 - comments_url: https://api.github.com/repos/packit/ogr/issues/226/comments - created_at: '2019-09-26T14:55:48Z' - events_url: https://api.github.com/repos/packit/ogr/issues/226/events - html_url: https://github.com/packit/ogr/pull/226 - id: 498940241 + body: '' + closed_at: '2020-04-30T15:29:45Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/403/comments + created_at: '2020-04-30T15:05:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/403/events + html_url: https://github.com/packit/ogr/pull/403 + id: 610115589 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -57550,24 +71192,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/226/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/403/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIxNzY0NTE1 - number: 226 + node_id: MDExOlB1bGxSZXF1ZXN0NDExNjA3OTEx + number: 403 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/226.diff - html_url: https://github.com/packit/ogr/pull/226 - patch_url: https://github.com/packit/ogr/pull/226.patch - url: https://api.github.com/repos/packit/ogr/pulls/226 + diff_url: https://github.com/packit/ogr/pull/403.diff + html_url: https://github.com/packit/ogr/pull/403 + patch_url: https://github.com/packit/ogr/pull/403.patch + url: https://api.github.com/repos/packit/ogr/pulls/403 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Make PagureProject.full_repo_name property offline - updated_at: '2019-12-04T09:26:59Z' - url: https://api.github.com/repos/packit/ogr/issues/226 + title: Fix tests after requre update + updated_at: '2020-04-30T15:36:23Z' + url: https://api.github.com/repos/packit/ogr/issues/403 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -57589,29 +71231,16 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: 'Closes #107' - closed_at: '2019-09-26T09:12:11Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/221/comments - created_at: '2019-09-25T14:42:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/221/events - html_url: https://github.com/packit/ogr/pull/221 - id: 498333159 + body: "Closes #368\r\n\r\n- [x] Implements `head_commit` for Github and\ + \ Gitlab\r\n- [x] Integration tests for all implementations" + closed_at: '2020-04-30T13:57:52Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/402/comments + created_at: '2020-04-30T10:24:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/402/events + html_url: https://github.com/packit/ogr/pull/402 + id: 609796401 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -57619,24 +71248,24 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/221/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/402/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIxMjg0ODI1 - number: 221 + node_id: MDExOlB1bGxSZXF1ZXN0NDExMzIzMDM3 + number: 402 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/221.diff - html_url: https://github.com/packit/ogr/pull/221 - patch_url: https://github.com/packit/ogr/pull/221.patch - url: https://api.github.com/repos/packit/ogr/pulls/221 + diff_url: https://github.com/packit/ogr/pull/402.diff + html_url: https://github.com/packit/ogr/pull/402 + patch_url: https://github.com/packit/ogr/pull/402.patch + url: https://api.github.com/repos/packit/ogr/pulls/402 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove pull requests from issues in GitHub implementation - updated_at: '2019-12-04T09:26:59Z' - url: https://api.github.com/repos/packit/ogr/issues/221 + title: Head commit on PRs + updated_at: '2020-04-30T14:06:58Z' + url: https://api.github.com/repos/packit/ogr/issues/402 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -57657,89 +71286,151 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Closes #218\r\n\r\n- removes implementation from abstract class\r\ - \n- overrides it for Pagure projects that have optional namespace\r\n\ - - adds few basic tests" - closed_at: '2019-09-25T05:20:03Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/219/comments - created_at: '2019-09-24T09:35:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/219/events - html_url: https://github.com/packit/ogr/pull/219 - id: 497572530 + author_association: CONTRIBUTOR + body: Implement PullRequest.head_commit for github and gitlab + closed_at: '2020-04-30T13:57:51Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/368/comments + created_at: '2020-03-27T10:47:08Z' + events_url: https://api.github.com/repos/packit/ogr/issues/368/events + html_url: https://github.com/packit/ogr/issues/368 + id: 589045263 labels: - - color: b60205 + - color: '000000' default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: 0e8a16 + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/219/labels{/name} + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/368/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIwNjc0OTk2 - number: 219 + node_id: MDU6SXNzdWU1ODkwNDUyNjM= + number: 368 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/219.diff - html_url: https://github.com/packit/ogr/pull/219 - patch_url: https://github.com/packit/ogr/pull/219.patch - url: https://api.github.com/repos/packit/ogr/pulls/219 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitProject.full_repo_name - updated_at: '2019-12-04T09:26:58Z' - url: https://api.github.com/repos/packit/ogr/issues/219 + title: Implement PullRequest.head_commit for github and gitlab + updated_at: '2020-04-30T13:57:51Z' + url: https://api.github.com/repos/packit/ogr/issues/368 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/sakalosj + _next: null + elapsed: 0.367313 + 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-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + 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: Tue, 13 Apr 2021 18:01:56 GMT + ETag: W/"f3ffa896670b430debf52ce9e6efb2f3e0a01e7569d1ac0b232ebf201aa54fce" + Link: ; + rel="prev", ; + rel="next", ; + rel="last", ; + rel="first" + 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: 88B1:19FC:78F11B:1333DAF:6075DC94 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages + X-RateLimit-Limit: '5000' + X-RateLimit-Remaining: '4343' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '657' + X-XSS-Protection: '0' + raw: !!binary "" + reason: OK + status_code: 200 + https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=8: + - metadata: + latency: 0.6120283603668213 + module_call_list: + - unittest.case + - requre.online_replacing + - tests.integration.github.test_issues + - ogr.services.github.project + - ogr.services.github.issue + - github.PaginatedList + - github.Requester + - requests.sessions + - requre.objects + - requre.cassette + - requests.sessions + - send + output: + __store_indicator: 2 + _content: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Closes #213\r\nSeems like it could be implemented in BaseGitProject.\r\ - \nNot quite sure about Pagure implementation, since I haven't found\ - \ any tests regarding `None` as namespace." - closed_at: '2019-09-24T08:53:16Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/217/comments - created_at: '2019-09-22T08:47:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/217/events - html_url: https://github.com/packit/ogr/pull/217 - id: 496750815 + author_association: CONTRIBUTOR + body: 'packaging guidelines say this is automatic since F33 and we should + + disable it + + + https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_provides' + closed_at: '2020-04-27T17:21:08Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/399/comments + created_at: '2020-04-27T10:25:09Z' + events_url: https://api.github.com/repos/packit/ogr/issues/399/events + html_url: https://github.com/packit/ogr/pull/399 + id: 607427901 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -57747,190 +71438,142 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/217/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIwMDI1NDc1 - number: 217 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/217.diff - html_url: https://github.com/packit/ogr/pull/217 - patch_url: https://github.com/packit/ogr/pull/217.patch - url: https://api.github.com/repos/packit/ogr/pulls/217 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Implement GitProject.get_web_url() - updated_at: '2019-12-04T09:26:58Z' - url: https://api.github.com/repos/packit/ogr/issues/217 - user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "After there will be done these stuff:\r\n - [ ] https://github.com/packit-service/ogr/pull/201\ - \ will be merged\r\n - [ ] there will be fixed also ``packit`` to use\ - \ ``requre``\r\n\r\nthen remove all mocking stuff from this project" - closed_at: '2019-12-04T08:54:10Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/225/comments - created_at: '2019-09-26T13:04:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/225/events - html_url: https://github.com/packit/ogr/issues/225 - id: 498871887 - labels: - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 + - color: 18e033 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/225/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/399/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTg4NzE4ODc= - number: 225 + node_id: MDExOlB1bGxSZXF1ZXN0NDA5NDAzNjI3 + number: 399 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/399.diff + html_url: https://github.com/packit/ogr/pull/399 + patch_url: https://github.com/packit/ogr/pull/399.patch + url: https://api.github.com/repos/packit/ogr/pulls/399 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: remove persistent storage + mocking from ogr after using requre - updated_at: '2019-12-04T08:54:17Z' - url: https://api.github.com/repos/packit/ogr/issues/225 + title: 'spec: don''t do python_provide on F33+' + updated_at: '2020-04-28T08:16:08Z' + url: https://api.github.com/repos/packit/ogr/issues/399 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "The default behaviour should be:\r\n\r\n- running from fork:\r\n\ - \ - create pr from fork to upstream\r\n- running from upstream:\r\ - \n - create pr from upstream to upstream\r\n\r\nWe need to specify\ - \ correctly the username in `head` or use the correct pygithub object\ - \ to call the `create_pull` on.\r\n\r\n- Get inspired in packit: https://github.com/packit-service/packit/blob/master/packit/upstream.py#L190\r\ - \n- API docs: https://developer.github.com/v3/pulls/#create-a-pull-request\ - \ (`head` parameter)\r\n- Related pygithub method: https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_pull\r\ - \n\r\nAC:\r\n\r\n- [ ] check the existing workflow\r\n- [ ] fix the\ - \ username to support both workflows correctly\r\n- [ ] create tests\ - \ for both of them\r\n\r\n\r\n" - closed_at: '2019-12-04T08:50:38Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/250/comments - created_at: '2019-10-17T13:55:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/250/events - html_url: https://github.com/packit/ogr/issues/250 - id: 508493656 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/250/labels{/name} + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.3.tar.gz. + Reason: ''Not Found''. ` | + + | `f31` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This + is not supported.` | + + | `f32` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is dirty.This + is not supported.` | + + | `master` | `The distgit repository /tmp/packit-dist-gitlbs_i1xk is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-04-27T10:09:07Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/398/comments + created_at: '2020-04-27T09:59:56Z' + events_url: https://api.github.com/repos/packit/ogr/issues/398/events + html_url: https://github.com/packit/ogr/issues/398 + id: 607410636 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/398/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDg0OTM2NTY= - number: 250 + node_id: MDU6SXNzdWU2MDc0MTA2MzY= + number: 398 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix createing pull requests in GitHub - updated_at: '2019-12-04T08:50:38Z' - url: https://api.github.com/repos/packit/ogr/issues/250 + title: '[packit] Propose update failed for release 0.11.3' + updated_at: '2020-04-27T10:11:01Z' + url: https://api.github.com/repos/packit/ogr/issues/398 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Closes #281 \r\nAfter change in requre integration tests fails.\ - \ \r\nChange PersistentObjectStorage().is_write_mode to PersistentObjectStorage().mode\ - \ == StorageMode.write\r\n\r\nZuul allow to add relation between repos,\ - \ maybe this is a option to prevent that situation, but I don't know\ - \ how looks policy about that in packit-service. \r\n" - closed_at: '2019-11-25T12:33:59Z' + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Fix pagination in GitLab\ + \ and add tests\n* Fix pagination for GitlabCommitFlag\n* Add tests\ + \ for PagureIssue setters\n* Implement Issue setters for Pagure\n* revert\ + \ rpmautospec\n* spec: dont hardcode name/version, use macros instead\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.11.3-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-04-27T09:58:02Z' comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/282/comments - created_at: '2019-11-22T11:31:43Z' - events_url: https://api.github.com/repos/packit/ogr/issues/282/events - html_url: https://github.com/packit/ogr/pull/282 - id: 527144120 + comments_url: https://api.github.com/repos/packit/ogr/issues/393/comments + created_at: '2020-04-24T07:15:32Z' + events_url: https://api.github.com/repos/packit/ogr/issues/393/events + html_url: https://github.com/packit/ogr/pull/393 + id: 606096113 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -57938,106 +71581,113 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/282/labels{/name} + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/393/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ0NDc0MTIz - number: 282 + node_id: MDExOlB1bGxSZXF1ZXN0NDA4Mzc0MDEw + number: 393 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/282.diff - html_url: https://github.com/packit/ogr/pull/282 - patch_url: https://github.com/packit/ogr/pull/282.patch - url: https://api.github.com/repos/packit/ogr/pulls/282 + diff_url: https://github.com/packit/ogr/pull/393.diff + html_url: https://github.com/packit/ogr/pull/393 + patch_url: https://github.com/packit/ogr/pull/393.patch + url: https://api.github.com/repos/packit/ogr/pulls/393 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix integration tests - updated_at: '2019-12-03T16:14:58Z' - url: https://api.github.com/repos/packit/ogr/issues/282 + title: 0.11.3 release + updated_at: '2020-04-27T10:00:28Z' + url: https://api.github.com/repos/packit/ogr/issues/393 user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 - events_url: https://api.github.com/users/pawelkopka/events{/privacy} - followers_url: https://api.github.com/users/pawelkopka/followers - following_url: https://api.github.com/users/pawelkopka/following{/other_user} - gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + 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/pawelkopka - id: 17784034 - login: pawelkopka - node_id: MDQ6VXNlcjE3Nzg0MDM0 - organizations_url: https://api.github.com/users/pawelkopka/orgs - received_events_url: https://api.github.com/users/pawelkopka/received_events - repos_url: https://api.github.com/users/pawelkopka/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + 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/pawelkopka + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Any ideas how [this](https://sentry.io/organizations/red-hat-0p/issues/1369231585)\ - \ could have happen?\r\n\r\n```python\r\nAttributeError: 'GithubPRComment'\ - \ object has no attribute '_body'\r\n File \"packit_service/worker/tasks.py\"\ - , line 42, in process_message\r\n return SteveJobs().process_message(event=event,\ - \ topic=topic)\r\n File \"packit_service/worker/jobs.py\", line 249,\ - \ in process_message\r\n jobs_results[job_type] = handler.run_n_clean()\r\ - \n File \"packit_service/worker/handler.py\", line 177, in run_n_clean\r\ - \n return self.run()\r\n File \"packit_service/worker/fedmsg_handlers.py\"\ - , line 221, in run\r\n if not self.was_last_build_successful():\r\ - \n File \"packit_service/worker/fedmsg_handlers.py\", line 189, in\ - \ was_last_build_successful\r\n if \"Congratulations!\" in comment.comment:\r\ - \n File \"ogr/abstract.py\", line 78, in comment\r\n return self._body\r\ - \n```" - closed_at: '2019-12-03T16:04:47Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/288/comments - created_at: '2019-12-03T14:14:10Z' - events_url: https://api.github.com/repos/packit/ogr/issues/288/events - html_url: https://github.com/packit/ogr/issues/288 - id: 532014956 + body: 'Fixes #396' + closed_at: '2020-04-26T19:23:07Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/397/comments + created_at: '2020-04-25T11:55:54Z' + events_url: https://api.github.com/repos/packit/ogr/issues/397/events + html_url: https://github.com/packit/ogr/pull/397 + id: 606754068 labels: - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - labels_url: https://api.github.com/repos/packit/ogr/issues/288/labels{/name} + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/397/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MzIwMTQ5NTY= - number: 288 + node_id: MDExOlB1bGxSZXF1ZXN0NDA4ODk2ODgw + number: 397 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/397.diff + html_url: https://github.com/packit/ogr/pull/397 + patch_url: https://github.com/packit/ogr/pull/397.patch + url: https://api.github.com/repos/packit/ogr/pulls/397 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'AttributeError: ''GithubPRComment'' object has no attribute ''_body''' - updated_at: '2019-12-03T16:04:47Z' - url: https://api.github.com/repos/packit/ogr/issues/288 + title: Switch backticks to apostrophes in Pagure errors + updated_at: '2020-04-27T09:06:09Z' + url: https://api.github.com/repos/packit/ogr/issues/397 user: - avatar_url: https://avatars0.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} + 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/jpopelka - id: 288686 - login: jpopelka - node_id: MDQ6VXNlcjI4ODY4Ng== - organizations_url: https://api.github.com/users/jpopelka/orgs - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/jpopelka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jpopelka/subscriptions + 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/jpopelka + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -58056,7 +71706,7 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - 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} @@ -58075,73 +71725,87 @@ requests.sessions: type: User url: https://api.github.com/users/mfocko author_association: MEMBER - body: "`Comment` class should keep backward-link to parent, e.g. `Issue`\ - \ or `PullRequest`.\r\n\r\n- [x] Add parameter to constructor and getter\r\ - \n- [x] Keep link to `Issue`\r\n blocked by #253\r\n- [x] Keep link\ - \ to `PR`\r\n blocked by #254" - closed_at: '2019-12-03T11:21:59Z' + body: "As can be seen in https://github.com/abrt/reportd/issues/10 both\ + \ [ogr](https://github.com/packit-service/ogr/blob/master/ogr/services/pagure/service.py#L150)\ + \ and [packit-service](https://github.com/packit-service/packit-service/blob/master/packit_service/worker/handlers/github_handlers.py#L179)\ + \ use backticks, which results in strange Github comments.\r\n\r\nCan\ + \ ogr use apostrophes instead?" + closed_at: '2020-04-26T19:23:07Z' comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/255/comments - created_at: '2019-10-24T17:16:18Z' - events_url: https://api.github.com/repos/packit/ogr/issues/255/events - html_url: https://github.com/packit/ogr/issues/255 - id: 512074603 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 8be567 + comments_url: https://api.github.com/repos/packit/ogr/issues/396/comments + created_at: '2020-04-25T08:39:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/396/events + html_url: https://github.com/packit/ogr/issues/396 + id: 606721347 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/396/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MDY3MjEzNDc= + number: 396 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Use apostrophe rather than backtics in log messages. + updated_at: '2020-04-26T19:23:07Z' + url: https://api.github.com/repos/packit/ogr/issues/396 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: '' + closed_at: '2020-04-24T18:06:20Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/395/comments + created_at: '2020-04-24T12:55:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/395/events + html_url: https://github.com/packit/ogr/pull/395 + id: 606292445 + labels: + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/255/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/395/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTIwNzQ2MDM= - number: 255 + node_id: MDExOlB1bGxSZXF1ZXN0NDA4NTM0Mzk4 + number: 395 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/395.diff + html_url: https://github.com/packit/ogr/pull/395 + patch_url: https://github.com/packit/ogr/pull/395.patch + url: https://api.github.com/repos/packit/ogr/pulls/395 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Backward links on comments - updated_at: '2019-12-03T11:21:59Z' - url: https://api.github.com/repos/packit/ogr/issues/255 + title: Add is_fork and username to PagureProject __str__ + updated_at: '2020-04-24T18:25:00Z' + url: https://api.github.com/repos/packit/ogr/issues/395 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -58163,14 +71827,14 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '- Increase version for packit propose-update.' - closed_at: '2019-12-02T14:21:28Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/283/comments - created_at: '2019-11-28T08:24:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/283/events - html_url: https://github.com/packit/ogr/pull/283 - id: 529760830 + body: '' + closed_at: '2020-04-24T13:31:09Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/394/comments + created_at: '2020-04-24T10:45:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/394/events + html_url: https://github.com/packit/ogr/pull/394 + id: 606221125 labels: - color: 0e8a16 default: false @@ -58179,24 +71843,81 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/283/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/394/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ2NTc1ODcw - number: 283 + node_id: MDExOlB1bGxSZXF1ZXN0NDA4NDc1OTAz + number: 394 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/283.diff - html_url: https://github.com/packit/ogr/pull/283 - patch_url: https://github.com/packit/ogr/pull/283.patch - url: https://api.github.com/repos/packit/ogr/pulls/283 + diff_url: https://github.com/packit/ogr/pull/394.diff + html_url: https://github.com/packit/ogr/pull/394 + patch_url: https://github.com/packit/ogr/pull/394.patch + url: https://api.github.com/repos/packit/ogr/pulls/394 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Packit config update - updated_at: '2019-12-03T07:42:52Z' - url: https://api.github.com/repos/packit/ogr/issues/283 + title: Zuul related refactoring changes + updated_at: '2020-04-24T13:33:17Z' + url: https://api.github.com/repos/packit/ogr/issues/394 + 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 + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: MEMBER + body: Thanks in advance! + closed_at: '2020-04-24T07:15:34Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/385/comments + created_at: '2020-04-16T07:48:05Z' + events_url: https://api.github.com/repos/packit/ogr/issues/385/events + html_url: https://github.com/packit/ogr/issues/385 + id: 600821635 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/385/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MDA4MjE2MzU= + number: 385 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: New patch release + updated_at: '2020-04-24T07:15:34Z' + url: https://api.github.com/repos/packit/ogr/issues/385 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -58217,129 +71938,128 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "This PR contains possible solution of #178 \r\nCloses #178 " - closed_at: '2019-11-29T11:43:22Z' - comments: 15 - comments_url: https://api.github.com/repos/packit/ogr/issues/274/comments - created_at: '2019-11-14T09:46:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/274/events - html_url: https://github.com/packit/ogr/pull/274 - id: 522738918 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/274/labels{/name} + author_association: MEMBER + body: "Create a class decorator that would iterate through members of\ + \ class and check if superclass has the same member with docstring,\ + \ if so, copy the docstring.\r\n\r\nReduces the unnecessary copy-pasting\ + \ of docstrings." + closed_at: '2020-04-23T11:37:34Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/271/comments + created_at: '2019-11-13T11:21:19Z' + events_url: https://api.github.com/repos/packit/ogr/issues/271/events + html_url: https://github.com/packit/ogr/issues/271 + id: 522140617 + labels: + - color: fef2c0 + default: false + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: c2ef58 + default: false + description: Technical debt - the code needs love. + id: 1432779413 + name: refactor + node_id: MDU6TGFiZWwxNDMyNzc5NDEz + url: https://api.github.com/repos/packit/ogr/labels/refactor + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + - color: 8be567 + default: false + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/271/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQwODc5MDI4 - number: 274 + node_id: MDU6SXNzdWU1MjIxNDA2MTc= + number: 271 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/274.diff - html_url: https://github.com/packit/ogr/pull/274 - patch_url: https://github.com/packit/ogr/pull/274.patch - url: https://api.github.com/repos/packit/ogr/pulls/274 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Implementation of GitPython instead of calling subprocess - updated_at: '2019-11-29T11:43:22Z' - url: https://api.github.com/repos/packit/ogr/issues/274 + title: Inherit docstrings + updated_at: '2020-04-23T11:37:34Z' + url: https://api.github.com/repos/packit/ogr/issues/271 user: - avatar_url: https://avatars1.githubusercontent.com/u/35431035?v=4 - events_url: https://api.github.com/users/Hojang2/events{/privacy} - followers_url: https://api.github.com/users/Hojang2/followers - following_url: https://api.github.com/users/Hojang2/following{/other_user} - gists_url: https://api.github.com/users/Hojang2/gists{/gist_id} + 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/Hojang2 - id: 35431035 - login: Hojang2 - node_id: MDQ6VXNlcjM1NDMxMDM1 - organizations_url: https://api.github.com/users/Hojang2/orgs - received_events_url: https://api.github.com/users/Hojang2/received_events - repos_url: https://api.github.com/users/Hojang2/repos + html_url: https://github.com/mfocko + id: 8149784 + login: mfocko + node_id: MDQ6VXNlcjgxNDk3ODQ= + organizations_url: https://api.github.com/users/mfocko/orgs + received_events_url: https://api.github.com/users/mfocko/received_events + repos_url: https://api.github.com/users/mfocko/repos site_admin: false - starred_url: https://api.github.com/users/Hojang2/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/Hojang2/subscriptions + 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/Hojang2 + url: https://api.github.com/users/mfocko - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: "Investigate existing libraries (example https://github.com/release-depot/git_wrapper).\r\ - \nDecide whether to use an existing library or move our [git-related\ - \ code](https://github.com/packit-service/ogr/blob/master/ogr/utils.py)\ - \ (check for all occurrences of \"git\" through the code) into a new\ - \ library.\r\nUse such library in ogr." - closed_at: '2019-11-29T11:43:21Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/178/comments - created_at: '2019-09-06T10:41:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/178/events - html_url: https://github.com/packit/ogr/issues/178 - id: 490258611 + body: "Supposed to Fix #391 \r\n\r\nAs far as I understand the `python-gitlab`\ + \ package, they follow Gitlab's REST API with few additions like `list()`\ + \ methods on some objects.\r\n\r\n- [x] (#391) Branches API does neither\ + \ state returning paginated list or explicitly say it returns *all*\ + \ branches\r\n works with `all=True` even though it's not documented\ + \ in Gitlab API\r\n - [x] will have to try using it at some repository\ + \ with many branches (default pagination is 20 in other API endpoints)\ + \ or could you provide the repository that brought this issue to light?\ + \ ;)\r\n- [x] Repository tree - can't find `all` parameter in API,\ + \ it is used though and there is pagination => should look into that\r\ + \n same, works even though it's not in the API documentation\r\n-\ + \ [x] Releases list - by API it is paginated, there's no mention of\ + \ adjusting the count of releases per page nor `all`-parameter\r\n \ + \ same, no mention of `all` in docs\r\n- [x] Add tests" + closed_at: '2020-04-22T13:38:46Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/392/comments + created_at: '2020-04-22T08:59:18Z' + events_url: https://api.github.com/repos/packit/ogr/issues/392/events + html_url: https://github.com/packit/ogr/pull/392 + id: 604582696 labels: - - color: 134ac1 - default: false - description: Lost of work ahead - id: 1432779207 - name: EPIC - node_id: MDU6TGFiZWwxNDMyNzc5MjA3 - url: https://api.github.com/repos/packit/ogr/labels/EPIC - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: c2ef58 + - color: 0e8a16 default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/178/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/392/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTAyNTg2MTE= - number: 178 + node_id: MDExOlB1bGxSZXF1ZXN0NDA3MTQ5MDgy + number: 392 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/392.diff + html_url: https://github.com/packit/ogr/pull/392 + patch_url: https://github.com/packit/ogr/pull/392.patch + url: https://api.github.com/repos/packit/ogr/pulls/392 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Replace git-wrapping code with new or existing library - updated_at: '2019-11-29T11:43:21Z' - url: https://api.github.com/repos/packit/ogr/issues/178 + title: GitLab pagination + updated_at: '2020-04-22T15:04:34Z' + url: https://api.github.com/repos/packit/ogr/issues/392 user: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/jpopelka/received_events - repos_url: https://api.github.com/users/jpopelka/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -58357,8 +72077,9 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + - active_lock_reason: null + assignee: + 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} @@ -58376,91 +72097,8 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - author_association: MEMBER - body: "Extend `PullRequest` class of methods.\r\n\r\n- [x] move PR-related\ - \ functions from `Project` to `PullRequest`\r\n - [x] `BasePullRequest`\r\ - \n - [x] Github\r\n - [x] Gitlab\r\n - [x] Pagure\r\n- [x] make `Project`'s\ - \ methods backward-compatible by calling new methods\r\n- [x] deprecation\r\ - \n - [x] move deprecated functions to base class\r\n - [x] deprecate\ - \ functions on `Project`\r\n- [x] properties\r\n- [x] fix tests\r\n\r\ - \nPart of #86\r\nBlocked by #121" - closed_at: '2019-11-29T10:21:52Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/254/comments - created_at: '2019-10-24T17:14:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/254/events - html_url: https://github.com/packit/ogr/issues/254 - id: 512073698 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 8be567 - default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/254/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1MTIwNzM2OTg= - number: 254 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: PullRequest class refactor - updated_at: '2019-11-29T10:21:52Z' - url: https://api.github.com/repos/packit/ogr/issues/254 - user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + assignees: + - 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} @@ -58478,93 +72116,52 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-11-28T10:13:00Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/284/comments - created_at: '2019-11-28T10:06:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/284/events - html_url: https://github.com/packit/ogr/pull/284 - id: 529812923 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/284/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQ2NjE4MjQ5 - number: 284 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/284.diff - html_url: https://github.com/packit/ogr/pull/284 - patch_url: https://github.com/packit/ogr/pull/284.patch - url: https://api.github.com/repos/packit/ogr/pulls/284 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Do not merge - test PR - updated_at: '2019-11-28T10:13:00Z' - url: https://api.github.com/repos/packit/ogr/issues/284 - user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos - site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions - type: User - url: https://api.github.com/users/dhodovsk - - active_lock_reason: null - assignee: null - assignees: [] author_association: MEMBER - body: "- Add .fmf and setup testing-farm.\r\n\r\n---\r\n\r\nTODO:\r\n\ - - [x] add some real tests" - closed_at: '2019-11-28T08:22:05Z' - comments: 18 - comments_url: https://api.github.com/repos/packit/ogr/issues/278/comments - created_at: '2019-11-19T12:06:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/278/events - html_url: https://github.com/packit/ogr/pull/278 - id: 524968144 + body: "By now, we get only 20 branches at max. Looks like a pagination\ + \ issue.\r\n\r\nWe need to tweak pagination to list all -- we already\ + \ have that on some other method." + closed_at: '2020-04-22T13:38:46Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/391/comments + created_at: '2020-04-21T11:18:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/391/events + html_url: https://github.com/packit/ogr/issues/391 + id: 603917055 labels: - - color: 0e8a16 + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/278/labels{/name} + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + labels_url: https://api.github.com/repos/packit/ogr/issues/391/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQyNjQ1NDE1 - number: 278 + node_id: MDU6SXNzdWU2MDM5MTcwNTU= + number: 391 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/278.diff - html_url: https://github.com/packit/ogr/pull/278 - patch_url: https://github.com/packit/ogr/pull/278.patch - url: https://api.github.com/repos/packit/ogr/pulls/278 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Setup testing farm - updated_at: '2019-11-28T10:11:46Z' - url: https://api.github.com/repos/packit/ogr/issues/278 + title: 'Return all project branches from Gitlab ' + updated_at: '2020-04-22T13:38:46Z' + url: https://api.github.com/repos/packit/ogr/issues/391 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -58586,90 +72183,40 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: "Figure out a deprecated strategy for ogr, get inspired by packit:\ - \ https://packit.dev/ [or django, ansible].\r\n\r\n- [x] documentation\r\ - \n- [x] solution for method/classes" - closed_at: '2019-11-27T12:02:53Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/121/comments - created_at: '2019-07-16T11:54:53Z' - events_url: https://api.github.com/repos/packit/ogr/issues/121/events - html_url: https://github.com/packit/ogr/issues/121 - id: 468611036 + body: "Fixes #302 \r\n\r\n- [x] Add tests" + closed_at: '2020-04-20T12:38:20Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/389/comments + created_at: '2020-04-20T08:44:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/389/events + html_url: https://github.com/packit/ogr/pull/389 + id: 603054798 labels: - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - - color: 8be567 + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/121/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/389/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0Njg2MTEwMzY= - number: 121 + node_id: MDExOlB1bGxSZXF1ZXN0NDA1OTE2MDgx + number: 389 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/389.diff + html_url: https://github.com/packit/ogr/pull/389 + patch_url: https://github.com/packit/ogr/pull/389.patch + url: https://api.github.com/repos/packit/ogr/pulls/389 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Deprecation policy - updated_at: '2019-11-27T12:02:53Z' - url: https://api.github.com/repos/packit/ogr/issues/121 + title: Implement Issue setters for Pagure + updated_at: '2020-04-20T12:43:44Z' + url: https://api.github.com/repos/packit/ogr/issues/389 user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -58687,35 +72234,20 @@ requests.sessions: subscriptions_url: https://api.github.com/users/mfocko/subscriptions type: User url: https://api.github.com/users/mfocko + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "Extend `Issue` class of methods.\r\n\r\n- [x] move issue-related\ - \ functions from `Project` to `Issue`\r\n- [x] make `Project`'s methods\ - \ backward-compatible by calling new methods\r\n- [x] deprecate functions\ - \ on `Project`\r\n- [x] separate all issue-related tests if needed\r\ - \n- [x] `__get_comment`, `get_issue_comments`\r\n\r\nPart of #86\r\n\ - Blocked by #121" - closed_at: '2019-11-26T08:52:22Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/253/comments - created_at: '2019-10-24T17:13:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/253/events - html_url: https://github.com/packit/ogr/issues/253 - id: 512073255 + body: "Implement updating title and description of issue on Pagure when\ + \ the API allows it.\r\n\r\nBlocked by: [Pagure's issue](https://pagure.io/pagure/issue/4704)" + closed_at: '2020-04-20T12:38:20Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/302/comments + created_at: '2020-01-02T16:42:04Z' + events_url: https://api.github.com/repos/packit/ogr/issues/302/events + html_url: https://github.com/packit/ogr/issues/302 + id: 544654301 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 1d76db default: false description: Related to Pagure implementation. @@ -58723,13 +72255,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 + - color: bc4812 default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC + description: We are blocked! + id: 1432779229 + name: blocker + node_id: MDU6TGFiZWwxNDMyNzc5MjI5 + url: https://api.github.com/repos/packit/ogr/labels/blocker - color: a2eeef default: false description: New feature or a request for enhancement. @@ -58737,20 +72269,6 @@ requests.sessions: name: feature node_id: MDU6TGFiZWwxMTYwMzExMjY0 url: https://api.github.com/repos/packit/ogr/labels/feature - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - color: 8be567 default: false description: Usability issue. @@ -58758,19 +72276,19 @@ requests.sessions: name: user-experience node_id: MDU6TGFiZWwxNDMyNzc5NDY0 url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/253/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/302/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTIwNzMyNTU= - number: 253 + node_id: MDU6SXNzdWU1NDQ2NTQzMDE= + number: 302 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Issue class refactor - updated_at: '2019-11-26T08:52:22Z' - url: https://api.github.com/repos/packit/ogr/issues/253 + title: Issue setters (Pagure) + updated_at: '2020-04-20T12:38:20Z' + url: https://api.github.com/repos/packit/ogr/issues/302 user: - avatar_url: https://avatars0.githubusercontent.com/u/8149784?v=4 + 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} @@ -58792,137 +72310,275 @@ requests.sessions: assignee: null assignees: [] author_association: CONTRIBUTOR - body: "After change in requre integrations tests, trying call property\ - \ _is_write_mode_ .\r\nProbably this _PersistentObjectStorage().is_write_mode_\ - \ need to be change to _PersistentObjectStorage().mode == StorageMode.write_\r\ - \n\r\n\r\nError:\r\n`AttributeError: 'PersistentObjectStorage' object\ - \ has no attribute 'is_write_mode'`" - closed_at: '2019-11-25T12:33:59Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/281/comments - created_at: '2019-11-22T11:06:54Z' - events_url: https://api.github.com/repos/packit/ogr/issues/281/events - html_url: https://github.com/packit/ogr/issues/281 - id: 527132897 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/281/labels{/name} + body: 'I should read more carefully: rpmautospec is not in production + yet, + + should be only tested on staging: + + + https://lists.fedoraproject.org/archives/list/devel-announce@lists.fedoraproject.org/thread/LWE4URIRWVTEZKXKP7QOK5JXFNVJRUNW/ + + + Since we use this repository in packit''s tests, I''ll keep the spec + in a subdir so we can exercise this functionality while testing.' + closed_at: '2020-04-20T09:27:42Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/390/comments + created_at: '2020-04-20T09:09:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/390/events + html_url: https://github.com/packit/ogr/pull/390 + id: 603072599 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/390/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MjcxMzI4OTc= - number: 281 + node_id: MDExOlB1bGxSZXF1ZXN0NDA1OTMwMTIw + number: 390 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/390.diff + html_url: https://github.com/packit/ogr/pull/390 + patch_url: https://github.com/packit/ogr/pull/390.patch + url: https://api.github.com/repos/packit/ogr/pulls/390 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Integrations tests fails afters change in requre - updated_at: '2019-11-25T12:33:59Z' - url: https://api.github.com/repos/packit/ogr/issues/281 + title: revert rpmautospec + updated_at: '2020-04-20T12:28:41Z' + url: https://api.github.com/repos/packit/ogr/issues/390 user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 - events_url: https://api.github.com/users/pawelkopka/events{/privacy} - followers_url: https://api.github.com/users/pawelkopka/followers - following_url: https://api.github.com/users/pawelkopka/following{/other_user} - gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + 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/pawelkopka - id: 17784034 - login: pawelkopka - node_id: MDQ6VXNlcjE3Nzg0MDM0 - organizations_url: https://api.github.com/users/pawelkopka/orgs - received_events_url: https://api.github.com/users/pawelkopka/received_events - repos_url: https://api.github.com/users/pawelkopka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + 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/pawelkopka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: - avatar_url: https://avatars3.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} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: https://docs.pagure.org/Fedora-Infra.rpmautospec/principle.html + closed_at: '2020-04-15T08:48:11Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/378/comments + created_at: '2020-04-14T14:38:06Z' + events_url: https://api.github.com/repos/packit/ogr/issues/378/events + html_url: https://github.com/packit/ogr/pull/378 + id: 599623468 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/378/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDAzMjI1MjMy + number: 378 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/378.diff + html_url: https://github.com/packit/ogr/pull/378 + patch_url: https://github.com/packit/ogr/pull/378.patch + url: https://api.github.com/repos/packit/ogr/pulls/378 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: use rpmautospec + updated_at: '2020-04-20T06:44:58Z' + url: https://api.github.com/repos/packit/ogr/issues/378 + 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/eliskasl - id: 1866652 - login: eliskasl - node_id: MDQ6VXNlcjE4NjY2NTI= - organizations_url: https://api.github.com/users/eliskasl/orgs - received_events_url: https://api.github.com/users/eliskasl/received_events - repos_url: https://api.github.com/users/eliskasl/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/eliskasl/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/eliskasl/subscriptions + 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/eliskasl - assignees: - - avatar_url: https://avatars3.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} + url: https://api.github.com/users/TomasTomecek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: my bad, didn't notice packit changed it and I committed it. + closed_at: '2020-04-17T06:44:16Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/388/comments + created_at: '2020-04-17T06:23:03Z' + events_url: https://api.github.com/repos/packit/ogr/issues/388/events + html_url: https://github.com/packit/ogr/pull/388 + id: 601732754 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/388/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDA0OTQ1NTQx + number: 388 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/388.diff + html_url: https://github.com/packit/ogr/pull/388 + patch_url: https://github.com/packit/ogr/pull/388.patch + url: https://api.github.com/repos/packit/ogr/pulls/388 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 'spec: dont hardcode name/version, use macros instead' + updated_at: '2020-04-17T08:24:33Z' + url: https://api.github.com/repos/packit/ogr/issues/388 + 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/eliskasl - id: 1866652 - login: eliskasl - node_id: MDQ6VXNlcjE4NjY2NTI= - organizations_url: https://api.github.com/users/eliskasl/orgs - received_events_url: https://api.github.com/users/eliskasl/received_events - repos_url: https://api.github.com/users/eliskasl/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/eliskasl/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/eliskasl/subscriptions + 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/eliskasl - author_association: MEMBER - body: "https://github.com/PyGithub/PyGithub/pull/1135 is now merged\r\n\ - \r\nUse the code above to initiate GitHubService, related code (which\ - \ we are using in the meantime):\r\n\r\npretty much drop this:\r\nhttps://github.com/packit-service/ogr/blob/253e93bc87c079d0cd8f3dc87fc5e11f5078e53b/ogr/services/github_tweak.py#L11\r\ - \n\r\nUse the newly added functionality in pygithub here:\r\nhttps://github.com/packit-service/ogr/blob/5729e29cb4e5bea7eb6ed68e1c573ca7f2d86051/ogr/factory.py#L142\r\ - \n\r\nAlso please write a test case for this." - closed_at: '2019-11-20T15:17:22Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/270/comments - created_at: '2019-06-20T09:29:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/270/events - html_url: https://github.com/packit/ogr/issues/270 - id: 521607861 + url: https://api.github.com/users/TomasTomecek + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `master` | `[Errno 2] No such file or directory: ''/tmp/packit-dist-git1w9t9eub/fedora/changelog''` + | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-04-16T14:27:25Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/387/comments + created_at: '2020-04-16T09:54:30Z' + events_url: https://api.github.com/repos/packit/ogr/issues/387/events + html_url: https://github.com/packit/ogr/issues/387 + id: 600905691 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/387/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU2MDA5MDU2OTE= + number: 387 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: '[packit] Propose update failed for release 0.11.2' + updated_at: '2020-04-16T15:02:35Z' + url: https://api.github.com/repos/packit/ogr/issues/387 + user: + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos + site_admin: false + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'we are setting this so we can use packit from ogr''s dist-git + + packit can''t know what''s the upstream name when running from distgit' + closed_at: '2020-04-16T06:54:10Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/382/comments + created_at: '2020-04-15T15:53:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/382/events + html_url: https://github.com/packit/ogr/pull/382 + id: 600404945 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 + - color: 0e8a16 default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/270/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/382/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MjE2MDc4NjE= - number: 270 + node_id: MDExOlB1bGxSZXF1ZXN0NDAzODQ1ODM3 + number: 382 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/382.diff + html_url: https://github.com/packit/ogr/pull/382 + patch_url: https://github.com/packit/ogr/pull/382.patch + url: https://api.github.com/repos/packit/ogr/pulls/382 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'get installation ID: use code from pygithub once a new release - is available' - updated_at: '2019-11-20T15:17:22Z' - url: https://api.github.com/repos/packit/ogr/issues/270 + title: 'packit.xml: set upstream_package_name' + updated_at: '2020-04-16T14:03:12Z' + url: https://api.github.com/repos/packit/ogr/issues/382 user: - avatar_url: https://avatars0.githubusercontent.com/u/1662493?v=4 + 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} @@ -58940,20 +72596,140 @@ requests.sessions: subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions type: User url: https://api.github.com/users/TomasTomecek + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + assignees: + - 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos + 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 + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add a method to set flags\ + \ on Pagure PRs\n* Annotate PagurePullRequest.head_commit's return type\n\ + * Remove test jobs from zuul gating jobs\n* packit.xml: set upstream_package_name\n\ + * added CentOS prod/stg instances to pagure service\n* use rpmautospec\n\ + * p.yaml: use new syntax for dist_git_branch\n* Add created/edited properties\ + \ to CommitFlag\n* print pagure API errors properly\n* revert change\n\ + * PR comment: use pagure pagination metadata\n* using pagination to\ + \ retrieve pagure issue list\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.11.2-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-04-16T09:53:01Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/386/comments + created_at: '2020-04-16T07:51:42Z' + events_url: https://api.github.com/repos/packit/ogr/issues/386/events + html_url: https://github.com/packit/ogr/pull/386 + id: 600823758 + labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/386/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDA0MTc5NDE0 + number: 386 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/386.diff + html_url: https://github.com/packit/ogr/pull/386 + patch_url: https://github.com/packit/ogr/pull/386.patch + url: https://api.github.com/repos/packit/ogr/pulls/386 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.11.2 release + updated_at: '2020-04-16T09:54:56Z' + url: https://api.github.com/repos/packit/ogr/issues/386 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 - active_lock_reason: null assignee: null assignees: [] - author_association: CONTRIBUTOR - body: "After PR(https://github.com/PyGithub/PyGithub/pull/1135) merged\ - \ github_tweak can be remove and use get_installation from PyGithub.\r\ - \n\r\nCloses #178" - closed_at: '2019-11-19T08:51:59Z' + author_association: MEMBER + body: "Flags on PRs are specific to Pagure.\r\n\r\nOther forges allow\ + \ setting flags/statuses only on commits and will\r\ndisplay the flags\ + \ for the PR head on the PR page, if any is set.\r\n\r\nDue to the above\ + \ this method is added only to PagurePullRequests, and we\r\nexpect\ + \ OGR library users to implement the \"show the flags of the last\r\n\ + commit for the PR\" behaviour for Pagure, in case they need it.\r\n\r\ + \nSigned-off-by: Hunor Csomort\xE1ni " + closed_at: '2020-04-16T07:44:45Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/277/comments - created_at: '2019-11-18T14:11:32Z' - events_url: https://api.github.com/repos/packit/ogr/issues/277/events - html_url: https://github.com/packit/ogr/pull/277 - id: 524392477 + comments_url: https://api.github.com/repos/packit/ogr/issues/381/comments + created_at: '2020-04-15T15:15:12Z' + events_url: https://api.github.com/repos/packit/ogr/issues/381/events + html_url: https://github.com/packit/ogr/pull/381 + id: 600376230 labels: - color: 0e8a16 default: false @@ -58962,53 +72738,53 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/277/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/381/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQyMTc1NDg2 - number: 277 + node_id: MDExOlB1bGxSZXF1ZXN0NDAzODIzNTY4 + number: 381 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/277.diff - html_url: https://github.com/packit/ogr/pull/277 - patch_url: https://github.com/packit/ogr/pull/277.patch - url: https://api.github.com/repos/packit/ogr/pulls/277 + diff_url: https://github.com/packit/ogr/pull/381.diff + html_url: https://github.com/packit/ogr/pull/381 + patch_url: https://github.com/packit/ogr/pull/381.patch + url: https://api.github.com/repos/packit/ogr/pulls/381 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove github_tweak to use upstream github function - updated_at: '2019-11-19T08:51:59Z' - url: https://api.github.com/repos/packit/ogr/issues/277 + title: Set PR flags in Pagure + updated_at: '2020-04-16T07:46:43Z' + url: https://api.github.com/repos/packit/ogr/issues/381 user: - avatar_url: https://avatars1.githubusercontent.com/u/17784034?v=4 - events_url: https://api.github.com/users/pawelkopka/events{/privacy} - followers_url: https://api.github.com/users/pawelkopka/followers - following_url: https://api.github.com/users/pawelkopka/following{/other_user} - gists_url: https://api.github.com/users/pawelkopka/gists{/gist_id} + 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/pawelkopka - id: 17784034 - login: pawelkopka - node_id: MDQ6VXNlcjE3Nzg0MDM0 - organizations_url: https://api.github.com/users/pawelkopka/orgs - received_events_url: https://api.github.com/users/pawelkopka/received_events - repos_url: https://api.github.com/users/pawelkopka/repos + html_url: https://github.com/csomh + id: 11816497 + login: csomh + node_id: MDQ6VXNlcjExODE2NDk3 + organizations_url: https://api.github.com/users/csomh/orgs + received_events_url: https://api.github.com/users/csomh/received_events + repos_url: https://api.github.com/users/csomh/repos site_admin: false - starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions + 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/pawelkopka + url: https://api.github.com/users/csomh - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER + author_association: CONTRIBUTOR body: '' - closed_at: '2019-11-18T12:45:03Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/275/comments - created_at: '2019-11-14T11:29:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/275/events - html_url: https://github.com/packit/ogr/pull/275 - id: 522798569 + closed_at: '2020-04-16T07:14:48Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/380/comments + created_at: '2020-04-15T13:00:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/380/events + html_url: https://github.com/packit/ogr/pull/380 + id: 600279414 labels: - color: 0e8a16 default: false @@ -59017,25 +72793,79 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/275/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/380/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQwOTI0NzU4 - number: 275 + node_id: MDExOlB1bGxSZXF1ZXN0NDAzNzQ1MDM3 + number: 380 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/275.diff - html_url: https://github.com/packit/ogr/pull/275 - patch_url: https://github.com/packit/ogr/pull/275.patch - url: https://api.github.com/repos/packit/ogr/pulls/275 + diff_url: https://github.com/packit/ogr/pull/380.diff + html_url: https://github.com/packit/ogr/pull/380 + patch_url: https://github.com/packit/ogr/pull/380.patch + url: https://api.github.com/repos/packit/ogr/pulls/380 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: temporary integration test method PullRequest._pr_close_temp() - removed - updated_at: '2019-11-18T13:00:09Z' - url: https://api.github.com/repos/packit/ogr/issues/275 + title: Remove test jobs from zuul gating jobs + updated_at: '2020-04-16T07:14:48Z' + url: https://api.github.com/repos/packit/ogr/issues/380 + 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 + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: added CentOS prod/stg instances to pagure service + closed_at: '2020-04-15T14:44:22Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/379/comments + created_at: '2020-04-15T08:59:13Z' + events_url: https://api.github.com/repos/packit/ogr/issues/379/events + html_url: https://github.com/packit/ogr/pull/379 + id: 600137338 + labels: + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/379/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDAzNjMwOTAx + number: 379 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/379.diff + html_url: https://github.com/packit/ogr/pull/379 + patch_url: https://github.com/packit/ogr/pull/379.patch + url: https://api.github.com/repos/packit/ogr/pulls/379 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: added CentOS prod/stg instances to pagure service + updated_at: '2020-04-15T14:44:22Z' + url: https://api.github.com/repos/packit/ogr/issues/379 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -59056,15 +72886,15 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '#250 ' - closed_at: '2019-11-14T08:21:22Z' - comments: 28 - comments_url: https://api.github.com/repos/packit/ogr/issues/269/comments - created_at: '2019-11-10T21:17:02Z' - events_url: https://api.github.com/repos/packit/ogr/issues/269/events - html_url: https://github.com/packit/ogr/pull/269 - id: 520658857 + author_association: CONTRIBUTOR + body: 'Add datetime to commit flags #344' + closed_at: '2020-04-14T16:09:59Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/374/comments + created_at: '2020-04-08T13:34:41Z' + events_url: https://api.github.com/repos/packit/ogr/issues/374/events + html_url: https://github.com/packit/ogr/pull/374 + id: 596583247 labels: - color: 0e8a16 default: false @@ -59073,80 +72903,270 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/269/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/374/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM5MTkxOTQw - number: 269 + node_id: MDExOlB1bGxSZXF1ZXN0NDAwODUyNzQ0 + number: 374 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/269.diff - html_url: https://github.com/packit/ogr/pull/269 - patch_url: https://github.com/packit/ogr/pull/269.patch - url: https://api.github.com/repos/packit/ogr/pulls/269 + diff_url: https://github.com/packit/ogr/pull/374.diff + html_url: https://github.com/packit/ogr/pull/374 + patch_url: https://github.com/packit/ogr/pull/374.patch + url: https://api.github.com/repos/packit/ogr/pulls/374 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: github_pr_create_rework_250 - updated_at: '2019-11-14T10:46:21Z' - url: https://api.github.com/repos/packit/ogr/issues/269 + title: Add datetime to commitflags + updated_at: '2020-04-14T16:09:59Z' + url: https://api.github.com/repos/packit/ogr/issues/374 + user: + avatar_url: https://avatars.githubusercontent.com/u/21237576?v=4 + events_url: https://api.github.com/users/TomasJani/events{/privacy} + followers_url: https://api.github.com/users/TomasJani/followers + following_url: https://api.github.com/users/TomasJani/following{/other_user} + gists_url: https://api.github.com/users/TomasJani/gists{/gist_id} + gravatar_id: '' + html_url: https://github.com/TomasJani + id: 21237576 + login: TomasJani + node_id: MDQ6VXNlcjIxMjM3NTc2 + organizations_url: https://api.github.com/users/TomasJani/orgs + received_events_url: https://api.github.com/users/TomasJani/received_events + repos_url: https://api.github.com/users/TomasJani/repos + site_admin: false + starred_url: https://api.github.com/users/TomasJani/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/TomasJani/subscriptions + type: User + url: https://api.github.com/users/TomasJani + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: PaureProject.get_files() not implemented. Maybe not possible because + pagure api doesnt provide any possiblity to get repository content. + closed_at: '2020-04-14T09:13:43Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/377/comments + created_at: '2020-04-14T07:44:33Z' + events_url: https://api.github.com/repos/packit/ogr/issues/377/events + html_url: https://github.com/packit/ogr/issues/377 + id: 599365195 + labels: + - color: 1d76db + default: false + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: cfd3d7 + default: true + description: This issue or pull request already exists + id: 1160311263 + name: duplicate + node_id: MDU6TGFiZWwxMTYwMzExMjYz + url: https://api.github.com/repos/packit/ogr/labels/duplicate + - color: a2eeef + default: false + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature + - color: ff9990 + default: false + description: Implementation details are not clear. + id: 1432779378 + name: needs-design + node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 + url: https://api.github.com/repos/packit/ogr/labels/needs-design + labels_url: https://api.github.com/repos/packit/ogr/issues/377/labels{/name} + locked: false + milestone: null + node_id: MDU6SXNzdWU1OTkzNjUxOTU= + number: 377 + performed_via_github_app: null + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: PaureProject.get_files() not implemented + updated_at: '2020-04-14T09:13:43Z' + url: https://api.github.com/repos/packit/ogr/issues/377 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/sakalosj - id: 7654857 - login: sakalosj - node_id: MDQ6VXNlcjc2NTQ4NTc= - organizations_url: https://api.github.com/users/sakalosj/orgs - received_events_url: https://api.github.com/users/sakalosj/received_events - repos_url: https://api.github.com/users/sakalosj/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos + site_admin: false + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + type: User + url: https://api.github.com/users/sakalosj + - active_lock_reason: null + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'the "errors" may not be set + + + Fixes #334' + closed_at: '2020-04-09T11:55:55Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/375/comments + created_at: '2020-04-09T10:00:07Z' + events_url: https://api.github.com/repos/packit/ogr/issues/375/events + html_url: https://github.com/packit/ogr/pull/375 + id: 597167333 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/375/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0NDAxMzI4NDE2 + number: 375 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/375.diff + html_url: https://github.com/packit/ogr/pull/375 + patch_url: https://github.com/packit/ogr/pull/375.patch + url: https://api.github.com/repos/packit/ogr/pulls/375 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: print pagure API errors properly + updated_at: '2020-04-09T11:58:14Z' + url: https://api.github.com/repos/packit/ogr/issues/375 + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + - active_lock_reason: null + assignee: + 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/sakalosj/subscriptions + 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/sakalosj - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "Hi,\r\n\r\ni have implemented GithubProject.pr_close(). integration\ - \ test included. Working on unit test." - closed_at: '2019-11-14T10:10:01Z' - comments: 12 - comments_url: https://api.github.com/repos/packit/ogr/issues/273/comments - created_at: '2019-11-13T20:19:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/273/events - html_url: https://github.com/packit/ogr/pull/273 - id: 522450593 + url: https://api.github.com/users/TomasTomecek + assignees: + - 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + author_association: CONTRIBUTOR + body: "edited by @lachmanfrantisek :\r\n\r\nTODO:\r\n- Add tests for https://github.com/packit-service/ogr/pull/333\ + \ (better pagure error messages)\r\n - e.g. wrong URL, wrong token,\ + \ not-found object,..." + closed_at: '2020-04-09T11:55:54Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/334/comments + created_at: '2020-02-19T13:50:53Z' + events_url: https://api.github.com/repos/packit/ogr/issues/334/events + html_url: https://github.com/packit/ogr/issues/334 + id: 567583973 labels: - - color: 0e8a16 + - color: 1d76db default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/273/labels{/name} + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: f9d0c4 + default: false + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/334/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQwNjQ5Mzc2 - number: 273 + node_id: MDU6SXNzdWU1Njc1ODM5NzM= + number: 334 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/273.diff - html_url: https://github.com/packit/ogr/pull/273 - patch_url: https://github.com/packit/ogr/pull/273.patch - url: https://api.github.com/repos/packit/ogr/pulls/273 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: implement GithubProject.pr_close() - updated_at: '2019-11-14T10:10:01Z' - url: https://api.github.com/repos/packit/ogr/issues/273 + title: improve pagure unit tests + updated_at: '2020-04-09T11:55:54Z' + url: https://api.github.com/repos/packit/ogr/issues/334 user: - avatar_url: https://avatars2.githubusercontent.com/u/7654857?v=4 + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 events_url: https://api.github.com/users/sakalosj/events{/privacy} followers_url: https://api.github.com/users/sakalosj/followers following_url: https://api.github.com/users/sakalosj/following{/other_user} @@ -59167,68 +73187,66 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Fix the path to the packit tests.' - closed_at: '2019-11-13T21:58:53Z' + author_association: CONTRIBUTOR + body: 'Fixes #334' + closed_at: '2020-04-09T09:43:45Z' comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/272/comments - created_at: '2019-11-13T15:23:26Z' - events_url: https://api.github.com/repos/packit/ogr/issues/272/events - html_url: https://github.com/packit/ogr/pull/272 - id: 522292170 + comments_url: https://api.github.com/repos/packit/ogr/issues/373/comments + created_at: '2020-04-07T09:08:44Z' + events_url: https://api.github.com/repos/packit/ogr/issues/373/events + html_url: https://github.com/packit/ogr/pull/373 + id: 595713934 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/272/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/373/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzQwNTE5Mjg0 - number: 272 + node_id: MDExOlB1bGxSZXF1ZXN0NDAwMTM4Nzgx + number: 373 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/272.diff - html_url: https://github.com/packit/ogr/pull/272 - patch_url: https://github.com/packit/ogr/pull/272.patch - url: https://api.github.com/repos/packit/ogr/pulls/272 + diff_url: https://github.com/packit/ogr/pull/373.diff + html_url: https://github.com/packit/ogr/pull/373 + patch_url: https://github.com/packit/ogr/pull/373.patch + url: https://api.github.com/repos/packit/ogr/pulls/373 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix ogr rev dep tests - updated_at: '2019-11-13T21:58:57Z' - url: https://api.github.com/repos/packit/ogr/issues/272 + title: 'pagure: errors may be not set, add tests' + updated_at: '2020-04-09T09:43:45Z' + url: https://api.github.com/repos/packit/ogr/issues/373 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "- Use requre-purge to unify the dates and tags in response files.\r\ - \n\r\n\r\nTODO:\r\n\r\n- [x] add to pre-commit and run on all changed\ - \ yaml files (pre-commit hook created in the requre repo)\r\n- [x] check\ - \ other possible values to purge (defined in the [requre pre-commit-hook\ - \ config](https://github.com/packit-service/requre/blob/master/.pre-commit-hooks.yaml))\r\ - \n- [x] Makefile target running cleanup on all files." - closed_at: '2019-11-12T07:51:34Z' - comments: 6 - comments_url: https://api.github.com/repos/packit/ogr/issues/266/comments - created_at: '2019-11-06T09:59:34Z' - events_url: https://api.github.com/repos/packit/ogr/issues/266/events - html_url: https://github.com/packit/ogr/pull/266 - id: 518363112 + author_association: FIRST_TIMER + body: "Fixes #339 \r\nPagure's API allows [pagination with 100 issues\ + \ per page](https://pagure.io/api/0/#issues), this code iterates though\ + \ issues pages until reaching either max issues (default 1000) or last\ + \ issue.\r\n" + closed_at: '2020-04-07T12:06:30Z' + comments: 17 + comments_url: https://api.github.com/repos/packit/ogr/issues/361/comments + created_at: '2020-03-23T14:55:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/361/events + html_url: https://github.com/packit/ogr/pull/361 + id: 586272328 labels: - color: 0e8a16 default: false @@ -59237,272 +73255,214 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/266/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/361/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM3MjcwODQ5 - number: 266 + node_id: MDExOlB1bGxSZXF1ZXN0MzkyNDM2NTcw + number: 361 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/266.diff - html_url: https://github.com/packit/ogr/pull/266 - patch_url: https://github.com/packit/ogr/pull/266.patch - url: https://api.github.com/repos/packit/ogr/pulls/266 + diff_url: https://github.com/packit/ogr/pull/361.diff + html_url: https://github.com/packit/ogr/pull/361 + patch_url: https://github.com/packit/ogr/pull/361.patch + url: https://api.github.com/repos/packit/ogr/pulls/361 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Requre purge - updated_at: '2019-11-12T08:05:45Z' - url: https://api.github.com/repos/packit/ogr/issues/266 + title: Using pagination to retrieve pagure's full issue list + updated_at: '2020-04-07T12:06:30Z' + url: https://api.github.com/repos/packit/ogr/issues/361 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/28443421?v=4 + events_url: https://api.github.com/users/AdarLavi/events{/privacy} + followers_url: https://api.github.com/users/AdarLavi/followers + following_url: https://api.github.com/users/AdarLavi/following{/other_user} + gists_url: https://api.github.com/users/AdarLavi/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/AdarLavi + id: 28443421 + login: AdarLavi + node_id: MDQ6VXNlcjI4NDQzNDIx + organizations_url: https://api.github.com/users/AdarLavi/orgs + received_events_url: https://api.github.com/users/AdarLavi/received_events + repos_url: https://api.github.com/users/AdarLavi/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/AdarLavi/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/AdarLavi/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/AdarLavi - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Tweak the stale-bot config.' - closed_at: '2019-11-11T13:51:55Z' - comments: 5 - comments_url: https://api.github.com/repos/packit/ogr/issues/268/comments - created_at: '2019-11-06T13:57:56Z' - events_url: https://api.github.com/repos/packit/ogr/issues/268/events - html_url: https://github.com/packit/ogr/pull/268 - id: 518489380 + author_association: CONTRIBUTOR + body: "Currently using a Pagure service the get_issue_list method returns\ + \ only the last 20 issues of a project. This is because Pagure paginate\ + \ the results, I have not looked at GitHub and GitLab but I guess it\ + \ works the same.\r\n\r\nIdeally `get_issue_list` should return a list\ + \ of all the issues for a project and the pagination should be transparent\ + \ to the user." + closed_at: '2020-04-07T12:06:30Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/339/comments + created_at: '2020-02-21T13:47:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/339/events + html_url: https://github.com/packit/ogr/issues/339 + id: 568965084 labels: - - color: 0e8a16 + - color: 1d76db default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/268/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM3Mzc0NzAw - number: 268 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/268.diff - html_url: https://github.com/packit/ogr/pull/268 - patch_url: https://github.com/packit/ogr/pull/268.patch - url: https://api.github.com/repos/packit/ogr/pulls/268 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Stale-bot config update - updated_at: '2019-11-11T14:11:04Z' - url: https://api.github.com/repos/packit/ogr/issues/268 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "they have a file called ogr.py:\r\n```\r\n$ rpm -ql python3-gdal\ - \ | grep ogr\r\n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.opt-1.pyc\r\ - \n/usr/lib64/python3.7/site-packages/__pycache__/ogr.cpython-37.pyc\r\ - \n/usr/lib64/python3.7/site-packages/ogr.py\r\n/usr/lib64/python3.7/site-packages/osgeo/__pycache__/ogr.cpython-37.opt-1.pyc\r\ - \n/usr/lib64/python3.7/site-packages/osgeo/__pycache__/ogr.cpython-37.pyc\r\ - \n/usr/lib64/python3.7/site-packages/osgeo/_ogr.cpython-37m-x86_64-linux-gnu.so\r\ - \n/usr/lib64/python3.7/site-packages/osgeo/ogr.py\r\n/usr/share/doc/python3-gdal/samples/gcps2ogr.py\r\ - \n/usr/share/doc/python3-gdal/samples/ogr2ogr.py\r\n/usr/share/doc/python3-gdal/samples/ogr2vrt.py\r\ - \n/usr/share/doc/python3-gdal/samples/ogr_build_junction_table.py\r\n\ - /usr/share/doc/python3-gdal/samples/ogr_dispatch.py\r\n/usr/share/doc/python3-gdal/samples/ogr_layer_algebra.py\r\ - \n/usr/share/doc/python3-gdal/samples/ogrinfo.py\r\n/usr/share/doc/python3-gdal/samples/ogrupdate.py\r\ - \n```\r\n\r\nSo now that I installed python3-gdal, I can't use ogr anymore:\r\ - \n```\r\n$ ipython3\r\nPython 3.7.4 (default, Jul 9 2019, 16:32:37)\ - \ \r\nType 'copyright', 'credits' or 'license' for more information\r\ - \nIPython 7.2.0 -- An enhanced Interactive Python. Type '?' for help.\r\ - \nfrException reporting mode: Verbose\r\n\r\nIn [1]: from ogr import\ - \ services \r\n---------------------------------------------------------------------------\r\ - \nImportError Traceback (most recent call\ - \ last)\r\n in \r\n----> 1 from\ - \ ogr import services\r\n global ogr = undefined\r\n global\ - \ services = undefined\r\n\r\nImportError: cannot import name 'services'\ - \ from 'ogr' (/usr/lib64/python3.7/site-packages/ogr.py)\r\n```\r\n\r\ - \nNo idea how to fix this.\r\n\r\nWTF\r\n" - closed_at: '2019-11-11T14:00:21Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/139/comments - created_at: '2019-07-31T09:54:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/139/events - html_url: https://github.com/packit/ogr/issues/139 - id: 475047644 - labels: - - color: bc4812 + description: Related to Pagure implementation. + id: 1381607524 + name: Pagure + node_id: MDU6TGFiZWwxMzgxNjA3NTI0 + url: https://api.github.com/repos/packit/ogr/labels/Pagure + - color: b60205 default: false - description: We are blocked! - id: 1432779229 - name: blocker - node_id: MDU6TGFiZWwxNDMyNzc5MjI5 - url: https://api.github.com/repos/packit/ogr/labels/blocker - labels_url: https://api.github.com/repos/packit/ogr/issues/139/labels{/name} + description: Issue reserved to students from Red Hat Open Source Contest + id: 1563309773 + name: RHOSC + node_id: MDU6TGFiZWwxNTYzMzA5Nzcz + url: https://api.github.com/repos/packit/ogr/labels/RHOSC + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + - color: 7057ff + default: false + description: Good for newcomers + id: 1160311266 + name: good-first-issue + node_id: MDU6TGFiZWwxMTYwMzExMjY2 + url: https://api.github.com/repos/packit/ogr/labels/good-first-issue + - color: 42e529 + default: false + description: This issue was already processed and well defined. + id: 1432779462 + name: triaged + node_id: MDU6TGFiZWwxNDMyNzc5NDYy + url: https://api.github.com/repos/packit/ogr/labels/triaged + labels_url: https://api.github.com/repos/packit/ogr/issues/339/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NzUwNDc2NDQ= - number: 139 + node_id: MDU6SXNzdWU1Njg5NjUwODQ= + number: 339 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: installing python3-gdal breaks ogr - updated_at: '2019-11-11T14:00:21Z' - url: https://api.github.com/repos/packit/ogr/issues/139 + title: support pagination for get_issue_list + updated_at: '2020-04-07T12:06:30Z' + url: https://api.github.com/repos/packit/ogr/issues/339 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 + events_url: https://api.github.com/users/cverna/events{/privacy} + followers_url: https://api.github.com/users/cverna/followers + following_url: https://api.github.com/users/cverna/following{/other_user} + gists_url: https://api.github.com/users/cverna/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 - received_events_url: https://api.github.com/users/TomasTomecek/received_events - repos_url: https://api.github.com/users/TomasTomecek/repos + html_url: https://github.com/cverna + id: 7237866 + login: cverna + node_id: MDQ6VXNlcjcyMzc4NjY= + organizations_url: https://api.github.com/users/cverna/orgs + received_events_url: https://api.github.com/users/cverna/received_events + repos_url: https://api.github.com/users/cverna/repos site_admin: false - starred_url: https://api.github.com/users/TomasTomecek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/TomasTomecek/subscriptions + starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/cverna/subscriptions type: User - url: https://api.github.com/users/TomasTomecek + url: https://api.github.com/users/cverna - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: 'Aims to remove any strict MyPy errors from the utils.py file, relating - to ticket #251 ' - closed_at: '2019-11-05T07:49:43Z' + body: "similar to https://github.com/packit-service/requre/issues/29\r\ + \nplease add reverse dependency testing what will check that change\ + \ will not break ``packit`` and in case it is broken, will raise that\ + \ you have to create issue to packit to regenerate response files, or\ + \ that it found bug in ogr. " + closed_at: '2020-04-07T08:41:19Z' comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/259/comments - created_at: '2019-10-26T20:18:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/259/events - html_url: https://github.com/packit/ogr/pull/259 - id: 512880678 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/259/labels{/name} + comments_url: https://api.github.com/repos/packit/ogr/issues/237/comments + created_at: '2019-10-09T05:48:31Z' + events_url: https://api.github.com/repos/packit/ogr/issues/237/events + html_url: https://github.com/packit/ogr/issues/237 + id: 504429863 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/237/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzk4MjAw - number: 259 + node_id: MDU6SXNzdWU1MDQ0Mjk4NjM= + number: 237 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/259.diff - html_url: https://github.com/packit/ogr/pull/259 - patch_url: https://github.com/packit/ogr/pull/259.patch - url: https://api.github.com/repos/packit/ogr/pulls/259 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve typehint coverage in utils.py - updated_at: '2019-11-07T07:16:34Z' - url: https://api.github.com/repos/packit/ogr/issues/259 + title: add reverse dependency testing to packit package + updated_at: '2020-04-07T08:41:19Z' + url: https://api.github.com/repos/packit/ogr/issues/237 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/svenharris + url: https://api.github.com/users/jscotka _next: null - elapsed: 0.2 + elapsed: 0.61141 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:01:59 GMT + ETag: W/"9438dad3d050738b6096c0c928eb916253dff505825b82e2750c7d43156df96c" Link: ; rel="prev", ; - rel="next", ; + rel="next", ; rel="last", ; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F206:1333F71:6075DC96 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4328' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '672' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 https://api.github.com:443/repositories/161636700/issues?state=all&sort=updated&direction=desc&page=9: - metadata: - latency: 0.49689602851867676 + latency: 0.6933231353759766 module_call_list: - unittest.case - requre.online_replacing @@ -59522,60 +73482,102 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: Make it possible to clear check status on PR (optionally commit). - closed_at: '2019-11-06T11:37:33Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/267/comments - created_at: '2019-11-06T11:36:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/267/events - html_url: https://github.com/packit/ogr/issues/267 - id: 518415970 + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `The distgit repository /tmp/packit-dist-git8t1ct16f is dirty.This + is not supported.` | + + | `f31` | `The distgit repository /tmp/packit-dist-git8t1ct16f is dirty.This + is not supported.` | + + | `f32` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.1.tar.gz. + Reason: ''Not Found''. ` | + + | `master` | `The distgit repository /tmp/packit-dist-git8t1ct16f is + dirty.This is not supported.` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-04-01T13:27:44Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/372/comments + created_at: '2020-04-01T13:14:49Z' + events_url: https://api.github.com/repos/packit/ogr/issues/372/events + html_url: https://github.com/packit/ogr/issues/372 + id: 591906915 labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/267/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/372/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MTg0MTU5NzA= - number: 267 + node_id: MDU6SXNzdWU1OTE5MDY5MTU= + number: 372 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Support for clearing checks - updated_at: '2019-11-06T11:37:33Z' - url: https://api.github.com/repos/packit/ogr/issues/267 + title: '[packit] Propose update failed for release 0.11.1' + updated_at: '2020-04-01T13:27:44Z' + url: https://api.github.com/repos/packit/ogr/issues/372 user: - avatar_url: https://avatars2.githubusercontent.com/u/31201372?v=4 - events_url: https://api.github.com/users/dhodovsk/events{/privacy} - followers_url: https://api.github.com/users/dhodovsk/followers - following_url: https://api.github.com/users/dhodovsk/following{/other_user} - gists_url: https://api.github.com/users/dhodovsk/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/dhodovsk - id: 31201372 - login: dhodovsk - node_id: MDQ6VXNlcjMxMjAxMzcy - organizations_url: https://api.github.com/users/dhodovsk/orgs - received_events_url: https://api.github.com/users/dhodovsk/received_events - repos_url: https://api.github.com/users/dhodovsk/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos site_admin: false - starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions - type: User - url: https://api.github.com/users/dhodovsk + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: 'As part of issue #251 update type hinting within the abstract.py - file such that there are no mypy errors for that file' - closed_at: '2019-11-05T11:05:30Z' - comments: 14 - comments_url: https://api.github.com/repos/packit/ogr/issues/258/comments - created_at: '2019-10-26T19:26:38Z' - events_url: https://api.github.com/repos/packit/ogr/issues/258/events - html_url: https://github.com/packit/ogr/pull/258 - id: 512875119 + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* unnecessry pip/rpm install\ + \ removed\n* add last_commit property to Pagure project\n* github: raise\ + \ when we didn't obtain install id\n* whitespace: put space b/w words\n\ + * invoke tests directly with pytest\n* gitlab,get_forks: p-gitlab can't\ + \ process server's response\n* raise OperationNotSupported when gitlab\ + \ doesn't support releases\n* zuul: don't install twine, we don't need\ + \ it in CI\n* gitlab.members.all() turned into dict\n* github.repo.get_issues\ + \ wants GithubLabel, not str\n* split test_issue_permissions into two\n\ + * Fix and refactor packit rev-dep tests\n* Fix the descriptions in playbooks\n\ + \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ + \ repository and pushing to `0.11.1-release` branch before merging this\ + \ PR.\nI didn't find any files where `__version__` is set." + closed_at: '2020-04-01T13:11:44Z' + comments: 5 + comments_url: https://api.github.com/repos/packit/ogr/issues/371/comments + created_at: '2020-04-01T08:33:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/371/events + html_url: https://github.com/packit/ogr/pull/371 + id: 591729812 labels: + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot - color: 0e8a16 default: false description: When set, zuul wil gate and merge the PR. @@ -59583,214 +73585,172 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/258/labels{/name} + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/371/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzk0NDEy - number: 258 + node_id: MDExOlB1bGxSZXF1ZXN0Mzk2ODQxOTA3 + number: 371 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/258.diff - html_url: https://github.com/packit/ogr/pull/258 - patch_url: https://github.com/packit/ogr/pull/258.patch - url: https://api.github.com/repos/packit/ogr/pulls/258 + diff_url: https://github.com/packit/ogr/pull/371.diff + html_url: https://github.com/packit/ogr/pull/371 + patch_url: https://github.com/packit/ogr/pull/371.patch + url: https://api.github.com/repos/packit/ogr/pulls/371 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve type hint coverage in abstract.py - updated_at: '2019-11-05T12:37:31Z' - url: https://api.github.com/repos/packit/ogr/issues/258 + title: 0.11.1 release + updated_at: '2020-04-01T13:15:17Z' + url: https://api.github.com/repos/packit/ogr/issues/371 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + 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/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + 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/svenharris + url: https://api.github.com/users/usercont-release-bot - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: "Fixes #165\r\n\r\n*edited by @lachmanfrantisek to close that issue\ - \ on merging*" - closed_at: '2019-11-04T13:59:19Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/166/comments - created_at: '2019-09-06T01:43:58Z' - events_url: https://api.github.com/repos/packit/ogr/issues/166/events - html_url: https://github.com/packit/ogr/pull/166 - id: 490086601 + body: '' + closed_at: '2020-04-01T08:33:46Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/370/comments + created_at: '2020-04-01T08:31:27Z' + events_url: https://api.github.com/repos/packit/ogr/issues/370/events + html_url: https://github.com/packit/ogr/issues/370 + id: 591728360 labels: - - color: c5def5 - default: true - description: Documentation needs updates - id: 1432779267 - name: documentation - node_id: MDU6TGFiZWwxNDMyNzc5MjY3 - url: https://api.github.com/repos/packit/ogr/labels/documentation - labels_url: https://api.github.com/repos/packit/ogr/issues/166/labels{/name} + - color: ededed + default: false + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed + default: false + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/370/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE0NzYyMzA5 - number: 166 + node_id: MDU6SXNzdWU1OTE3MjgzNjA= + number: 370 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/166.diff - html_url: https://github.com/packit/ogr/pull/166 - patch_url: https://github.com/packit/ogr/pull/166.patch - url: https://api.github.com/repos/packit/ogr/pulls/166 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Update and link the contribution guide in README - updated_at: '2019-11-04T13:59:19Z' - url: https://api.github.com/repos/packit/ogr/issues/166 + title: New patch release + updated_at: '2020-04-01T08:33:46Z' + url: https://api.github.com/repos/packit/ogr/issues/370 user: - avatar_url: https://avatars2.githubusercontent.com/u/19755484?v=4 - events_url: https://api.github.com/users/RomaneGreen/events{/privacy} - followers_url: https://api.github.com/users/RomaneGreen/followers - following_url: https://api.github.com/users/RomaneGreen/following{/other_user} - gists_url: https://api.github.com/users/RomaneGreen/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/RomaneGreen - id: 19755484 - login: RomaneGreen - node_id: MDQ6VXNlcjE5NzU1NDg0 - organizations_url: https://api.github.com/users/RomaneGreen/orgs - received_events_url: https://api.github.com/users/RomaneGreen/received_events - repos_url: https://api.github.com/users/RomaneGreen/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/RomaneGreen/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/RomaneGreen/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/RomaneGreen + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Add link to contribution guide to README. - - - Rebased version of #166.' - closed_at: '2019-11-04T13:56:09Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/265/comments - created_at: '2019-11-04T12:48:05Z' - events_url: https://api.github.com/repos/packit/ogr/issues/265/events - html_url: https://github.com/packit/ogr/pull/265 - id: 517129326 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-04-01T08:28:05Z' + comments: 7 + comments_url: https://api.github.com/repos/packit/ogr/issues/366/comments + created_at: '2020-03-26T14:07:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/366/events + html_url: https://github.com/packit/ogr/pull/366 + id: 588448629 labels: - - color: 0e8a16 + - color: 18e033 default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/265/labels{/name} + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/366/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM2MjU4MjI3 - number: 265 + node_id: MDExOlB1bGxSZXF1ZXN0Mzk0MTkyNzMy + number: 366 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/265.diff - html_url: https://github.com/packit/ogr/pull/265 - patch_url: https://github.com/packit/ogr/pull/265.patch - url: https://api.github.com/repos/packit/ogr/pulls/265 + diff_url: https://github.com/packit/ogr/pull/366.diff + html_url: https://github.com/packit/ogr/pull/366 + patch_url: https://github.com/packit/ogr/pull/366.patch + url: https://api.github.com/repos/packit/ogr/pulls/366 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Link to contribution guide (rebased version of #166)' - updated_at: '2019-11-04T13:59:00Z' - url: https://api.github.com/repos/packit/ogr/issues/265 + title: added function to update mapping + updated_at: '2020-04-01T08:28:05Z' + url: https://api.github.com/repos/packit/ogr/issues/366 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: NONE + author_association: CONTRIBUTOR body: '' - closed_at: '2019-11-04T13:58:31Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/244/comments - created_at: '2019-10-12T13:08:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/244/events - html_url: https://github.com/packit/ogr/pull/244 - id: 506185012 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/244/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI3NDYzMzkw - number: 244 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/244.diff - html_url: https://github.com/packit/ogr/pull/244 - patch_url: https://github.com/packit/ogr/pull/244.patch - url: https://api.github.com/repos/packit/ogr/pulls/244 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Add the add_to_collaborators method to abstract.GitProject - updated_at: '2019-11-04T13:58:31Z' - url: https://api.github.com/repos/packit/ogr/issues/244 - user: - avatar_url: https://avatars1.githubusercontent.com/u/23198051?v=4 - events_url: https://api.github.com/users/HECTOPK/events{/privacy} - followers_url: https://api.github.com/users/HECTOPK/followers - following_url: https://api.github.com/users/HECTOPK/following{/other_user} - gists_url: https://api.github.com/users/HECTOPK/gists{/gist_id} - gravatar_id: '' - html_url: https://github.com/HECTOPK - id: 23198051 - login: HECTOPK - node_id: MDQ6VXNlcjIzMTk4MDUx - organizations_url: https://api.github.com/users/HECTOPK/orgs - received_events_url: https://api.github.com/users/HECTOPK/received_events - repos_url: https://api.github.com/users/HECTOPK/repos - site_admin: false - starred_url: https://api.github.com/users/HECTOPK/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/HECTOPK/subscriptions - type: User - url: https://api.github.com/users/HECTOPK - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "The used config is the example one from the app page:\r\nhttps://github.com/apps/stale/" - closed_at: '2019-11-01T10:47:23Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/262/comments - created_at: '2019-10-31T15:18:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/262/events - html_url: https://github.com/packit/ogr/pull/262 - id: 515517121 + closed_at: '2020-03-27T16:27:42Z' + comments: 15 + comments_url: https://api.github.com/repos/packit/ogr/issues/367/comments + created_at: '2020-03-26T14:08:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/367/events + html_url: https://github.com/packit/ogr/pull/367 + id: 588448982 labels: - color: 0e8a16 default: false @@ -59799,57 +73759,63 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/262/labels{/name} + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/367/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzM0OTY3Mzcy - number: 262 + node_id: MDExOlB1bGxSZXF1ZXN0Mzk0MTkzMDE1 + number: 367 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/262.diff - html_url: https://github.com/packit/ogr/pull/262 - patch_url: https://github.com/packit/ogr/pull/262.patch - url: https://api.github.com/repos/packit/ogr/pulls/262 + diff_url: https://github.com/packit/ogr/pull/367.diff + html_url: https://github.com/packit/ogr/pull/367 + patch_url: https://github.com/packit/ogr/pull/367.patch + url: https://api.github.com/repos/packit/ogr/pulls/367 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add config for stale bot - updated_at: '2019-11-01T10:48:02Z' - url: https://api.github.com/repos/packit/ogr/issues/262 + title: add last_commit property to Pagure project + updated_at: '2020-03-27T16:27:42Z' + url: https://api.github.com/repos/packit/ogr/issues/367 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: 'This pull request intends to fix the strict mypy errors in the - exceptions.py file as part of #251. Not sure if the types within the - dictionary (str, str) are consistent with how this is used as couldn''t - see any instances in the codebase where this error is raised with the - kwargs filled in.' - closed_at: '2019-10-31T19:36:13Z' + body: "~~Blocked on #357~~\r\n\r\nReplaces an error like this:\r\n```\r\ + \ngithub.GithubException.GithubException: 401 {\"message\":\"'Issuer'\ + \ claim ('iss') must be an Integer\",\"documentation_url\":\"https://developer.github.com/v3\"\ + }\r\n```" + closed_at: '2020-03-18T13:13:11Z' comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/256/comments - created_at: '2019-10-26T18:24:19Z' - events_url: https://api.github.com/repos/packit/ogr/issues/256/events - html_url: https://github.com/packit/ogr/pull/256 - id: 512868698 + comments_url: https://api.github.com/repos/packit/ogr/issues/352/comments + created_at: '2020-03-16T10:19:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/352/events + html_url: https://github.com/packit/ogr/pull/352 + id: 582171280 labels: - color: 0e8a16 default: false @@ -59858,54 +73824,56 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/256/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/352/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzg5ODUy - number: 256 + node_id: MDExOlB1bGxSZXF1ZXN0Mzg5MTMwMDA2 + number: 352 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/256.diff - html_url: https://github.com/packit/ogr/pull/256 - patch_url: https://github.com/packit/ogr/pull/256.patch - url: https://api.github.com/repos/packit/ogr/pulls/256 + diff_url: https://github.com/packit/ogr/pull/352.diff + html_url: https://github.com/packit/ogr/pull/352 + patch_url: https://github.com/packit/ogr/pull/352.patch + url: https://api.github.com/repos/packit/ogr/pulls/352 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Improve typehints for exceptions.py - updated_at: '2019-10-31T19:36:13Z' - url: https://api.github.com/repos/packit/ogr/issues/256 + title: 'github: raise when we didn''t obtain install id' + updated_at: '2020-03-18T14:55:12Z' + url: https://api.github.com/repos/packit/ogr/issues/352 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + 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/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + 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/svenharris + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: CONTRIBUTOR - body: 'As part of issue #251 improve the typehinting within the repo. - This pull request aims to fix the type hints in the parsing.py file.' - closed_at: '2019-10-31T17:38:33Z' + body: 'Fixes #353 + + + Also fixes some test failures, let''s see...' + closed_at: '2020-03-18T12:37:13Z' comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/257/comments - created_at: '2019-10-26T18:31:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/257/events - html_url: https://github.com/packit/ogr/pull/257 - id: 512869415 + comments_url: https://api.github.com/repos/packit/ogr/issues/357/comments + created_at: '2020-03-18T08:37:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/357/events + html_url: https://github.com/packit/ogr/pull/357 + id: 583559616 labels: - color: 0e8a16 default: false @@ -59914,199 +73882,213 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/257/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/357/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMyNzkwMzc2 - number: 257 + node_id: MDExOlB1bGxSZXF1ZXN0MzkwMjk1MDIx + number: 357 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/257.diff - html_url: https://github.com/packit/ogr/pull/257 - patch_url: https://github.com/packit/ogr/pull/257.patch - url: https://api.github.com/repos/packit/ogr/pulls/257 + diff_url: https://github.com/packit/ogr/pull/357.diff + html_url: https://github.com/packit/ogr/pull/357 + patch_url: https://github.com/packit/ogr/pull/357.patch + url: https://api.github.com/repos/packit/ogr/pulls/357 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: improve typehints for parsing.py - updated_at: '2019-10-31T18:15:49Z' - url: https://api.github.com/repos/packit/ogr/issues/257 + title: invoke tests directly with pytest + updated_at: '2020-03-18T14:27:38Z' + url: https://api.github.com/repos/packit/ogr/issues/357 user: - avatar_url: https://avatars2.githubusercontent.com/u/32942101?v=4 - events_url: https://api.github.com/users/svenharris/events{/privacy} - followers_url: https://api.github.com/users/svenharris/followers - following_url: https://api.github.com/users/svenharris/following{/other_user} - gists_url: https://api.github.com/users/svenharris/gists{/gist_id} + 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/svenharris - id: 32942101 - login: svenharris - node_id: MDQ6VXNlcjMyOTQyMTAx - organizations_url: https://api.github.com/users/svenharris/orgs - received_events_url: https://api.github.com/users/svenharris/received_events - repos_url: https://api.github.com/users/svenharris/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/svenharris/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/svenharris/subscriptions + 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/svenharris + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Part of #86\r\n\r\nStructure of classes:\r\n\r\n* _Comment_\r\n\ - \ * _IssueComment_\r\n * GithubIssueComment\r\n * GitlabIssueComment\r\ - \n * PagureIssueComment\r\n * _PRComment_\r\n * GithubPRComment\r\ - \n * GitlabPRComment\r\n * PagurePRComment\r\n\r\nsuggested by\ - \ @lachmanfrantisek in #228\r\n\r\n* [x] Create a `Comment` abstract\ - \ class\r\n* [x] Implement base class for `Comment`\r\n* [x] Implementation\ - \ of services\r\n * [x] Github\r\n * [x] Gitlab\r\n * [x] Pagure\r\ - \n* [x] Update interface to include function for returning `Comment`\ - \ object\r\n * [x] Deprecate functions (`*Project`) manipulating with\ - \ comments (#121)\r\n* [ ] Remove `Comment = TypeVar('Comment', IssueComment,\ - \ PRComment)`\r\n* [ ] Make service-specific `__str__` to be compatible\ - \ with parent's constructor\r\n* [ ] Decide return types for services\ - \ `PRComment` vs `GithubPRComment`\r\n\r\nMaybe the implementation for\ - \ specific service could take the `raw_comment` in constructor?" - closed_at: '2019-10-23T13:09:59Z' - comments: 7 - comments_url: https://api.github.com/repos/packit/ogr/issues/230/comments - created_at: '2019-10-01T17:40:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/230/events - html_url: https://github.com/packit/ogr/issues/230 - id: 501044775 + author_association: CONTRIBUTOR + body: "```\r\n$ tox\r\nGLOB sdist-make: /home/tt/g/user-cont/ogr/setup.py\ + \ \r\npy36 inst-nodeps: /home/tt/g/user-cont/ogr/.tox/.tmp/package/1/ogr-0.11.1.dev4+g022e9df.zip\r\ + \nWARNING: Discarding $PYTHONPATH from environment, to override specify\ + \ PYTHONPATH in 'passenv' in your configuration.\r\npy36 installed:\ + \ amqp==2.5.0,-e git+git@github.com:TomasTomecek/ansible-bender.git@e3ef97fb7cdb4e19bb8f21266c09d6fdc5e76392#egg=ansible_bender,aspy.yaml==1.2.0,attrs==19.3.0,\r\ + \nbeanbag==1.9.2,billiard==3.6.0.0,celery==4.3.0,certifi==2019.11.28,cffi==1.14.0,cfgv==1.5.0,chardet==3.0.4,click==7.1.1,colin-redhat==0.0.2,conu==0.6.0,coverage==5.0.3,crypt\r\ + \nography==2.8,Deprecated==1.2.5,dnspython==1.16.0,dpath==1.4.2,eventlet==0.25.0,flexmock==0.10.4,frambo==0.0.3,generator==0.1.dev34+g6448aff,gevent==1.4.0,gitchangelog==3.0.4\r\ + \n,gitdb==4.0.2,GitPython==3.1.0,identify==1.4.0,idna==2.9,importlib-metadata==0.8,jsl==0.2.4,kobo==0.7.0,koji==1.16.0,kombu==4.6.3,kubernetes==8.0.2,monotonic==1.5,more-itert\r\ + \nools==8.2.0,nodeenv==1.3.3,numpy==1.17.2,-e git+git@github.com:TomasTomecek/ogr@022e9dff7fd02e2f4d34ca836ac298127d7f5694#egg=ogr,packaging==20.3,-e\ + \ git+git@github.com:TomasT\r\nomecek/packit.git@25a1ca9a2d746b493ee10aced1ce477cfd529653#egg=packitos,persistentdict==0.1.0,pluggy==0.13.1,pre-commit==1.14.4,py==1.8.1,pycparser==2.20,PyGithub==1.46,PyJW\r\ + \nT==1.7.1,pyparsing==2.4.6,pystache==0.5.4,pytest==5.4.1,pytest-cov==2.8.1,python-gitlab==2.1.2,PyYAML==5.3,raven==6.10.0,redis==3.2.1,requests==2.23.0,-e\ + \ git+git@github.com:\r\nTomasTomecek/requre.git@f5410b0095d31e2b0f27b92d7ca24e365b472d33#egg=requre,rlsbot-test==1.0.0,rpm-py-installer==0.8.0,-e\ + \ git+git@github.com:TomasTomecek/generator.git@65a43\r\n07bcd0d8f45b3c7ed8b757be5d44601a62d#egg=sandcastle,sentry-sdk==0.12.2,show-me==0.1.dev25+g72bc7ba,six==1.14.0,smmap==3.0.1,tool==0.1.0.dev0,ucho==0.1.0,-e\ + \ git+git@github.com\r\n:TomasTomecek/upsint.git@972ba36e63c8b44eedf291ac1d30f87954258ef6#egg=upsint,urllib3==1.25.8,vine==1.3.0,wcwidth==0.1.8,wrapt==1.11.1,zipp==0.3.3\r\ + \npy36 run-test-pre: PYTHONHASHSEED='2399286198'\r\npy36 run-test: commands[0]\ + \ | pytest --color=yes --verbose --showlocals --cov=ogr --cov-report=term-missing\r\ + \n============================================================================\ + \ test session starts ============================================================================\r\ + \nplatform linux -- Python 3.6.10, pytest-5.4.1, py-1.8.1, pluggy-0.13.1\ + \ -- /home/tt/g/user-cont/ogr/.tox/py36/bin/python\r\ncachedir: .tox/py36/.pytest_cache\r\ + \nrootdir: /home/tt/g/user-cont/ogr\r\nplugins: cov-2.8.1\r\ncollected\ + \ 255 items \ + \ \ + \ \r\n\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_github\ + \ FAILED \ + \ [ 0%]\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_gitlab\ + \ FAILED \ + \ [ 0%]\r\ntests/integration/test_factory.py::FactoryTests::test_get_project_pagure\ + \ FAILED \ + \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments\ + \ FAILED \ + \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_author\ + \ FAILED \ + \ [ 1%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_author_regex\ + \ FAILED \ + \ [ 2%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_regex\ + \ FAILED \ + \ [ 2%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_regex_reversed\ + \ FAILED \ + \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_reversed\ + \ FAILED \ + \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_issue_comments_updates\ + \ FAILED \ + \ [ 3%]\r\ntests/integration/test_github.py::Comments::test_pr_comments\ + \ FAILED \ + \ [ 4%]\r\ntests/integration/test_github.py::Comments::test_pr_comments_author\ + \ FAILED \ + \ [ 4%]\r\ntests/integration/test_github.py::Comments::test_pr_comments_author_regex\ + \ FAILED \ + \ [ 5%]\r\n```\r\n\r\n```\r\nE \ + \ requre.exceptions.ItemNotInStorage: Keys not in storage:/home/tt/g/user-cont/ogr/tests/integration/test_data/test_github/tests.integration.test_github.Ge\r\ + \nnericCommands.test_description.yaml Matched: ['SKIP tests.integration.test_github',\ + \ 'SKIP ogr.services.github.project', 'SKIP github.MainClass', 'SKIP\ + \ github.Requester', 'SK\r\nIP requests.sessions', 'SKIP requre.objects'],\ + \ Missing: ['requests.sessions', 'send']\r\n```\r\n\r\nHappens even\ + \ when I use older pygithub." + closed_at: '2020-03-18T12:37:12Z' + comments: 1 + comments_url: https://api.github.com/repos/packit/ogr/issues/353/comments + created_at: '2020-03-16T11:20:59Z' + events_url: https://api.github.com/repos/packit/ogr/issues/353/events + html_url: https://github.com/packit/ogr/issues/353 + id: 582211662 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: 8be567 + - color: f9d0c4 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/230/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/353/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDEwNDQ3NzU= - number: 230 + node_id: MDU6SXNzdWU1ODIyMTE2NjI= + number: 353 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Factor out Comment - updated_at: '2019-10-23T13:09:59Z' - url: https://api.github.com/repos/packit/ogr/issues/230 + title: most of the tests are failing on master now + updated_at: '2020-03-18T12:37:12Z' + url: https://api.github.com/repos/packit/ogr/issues/353 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] - author_association: NONE - body: 'I have added # type: ignore at the beginning of each python file.' - closed_at: '2019-10-23T07:32:14Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/252/comments - created_at: '2019-10-22T19:08:28Z' - events_url: https://api.github.com/repos/packit/ogr/issues/252/events - html_url: https://github.com/packit/ogr/pull/252 - id: 510850860 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/252/labels{/name} + author_association: CONTRIBUTOR + body: 'I was wondering if OGR does support interacting with enterprise + versions of Gitlab, when provided with an private token. I think Gitlab + enterprise has the same set of API''s as the public version, so is there + a way to like provide the service url like for example - https://gitlab.cee.redhat.com + and it would then try accessing repo''s from that instead of publicly + hosted Gitlab. ' + closed_at: '2020-03-17T14:46:29Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/354/comments + created_at: '2020-03-16T16:10:10Z' + events_url: https://api.github.com/repos/packit/ogr/issues/354/events + html_url: https://github.com/packit/ogr/issues/354 + id: 582420398 + labels: + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab + labels_url: https://api.github.com/repos/packit/ogr/issues/354/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzMxMTUyNDg0 - number: 252 + node_id: MDU6SXNzdWU1ODI0MjAzOTg= + number: 354 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/252.diff - html_url: https://github.com/packit/ogr/pull/252 - patch_url: https://github.com/packit/ogr/pull/252.patch - url: https://api.github.com/repos/packit/ogr/pulls/252 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Added # type: ignore ' - updated_at: '2019-10-23T07:32:14Z' - url: https://api.github.com/repos/packit/ogr/issues/252 + title: Supporting enterprise versions of Gitlab + updated_at: '2020-03-17T14:58:14Z' + url: https://api.github.com/repos/packit/ogr/issues/354 user: - avatar_url: https://avatars2.githubusercontent.com/u/42462649?v=4 - events_url: https://api.github.com/users/maniis/events{/privacy} - followers_url: https://api.github.com/users/maniis/followers - following_url: https://api.github.com/users/maniis/following{/other_user} - gists_url: https://api.github.com/users/maniis/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/9396452?v=4 + events_url: https://api.github.com/users/saisankargochhayat/events{/privacy} + followers_url: https://api.github.com/users/saisankargochhayat/followers + following_url: https://api.github.com/users/saisankargochhayat/following{/other_user} + gists_url: https://api.github.com/users/saisankargochhayat/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/maniis - id: 42462649 - login: maniis - node_id: MDQ6VXNlcjQyNDYyNjQ5 - organizations_url: https://api.github.com/users/maniis/orgs - received_events_url: https://api.github.com/users/maniis/received_events - repos_url: https://api.github.com/users/maniis/repos + html_url: https://github.com/saisankargochhayat + id: 9396452 + login: saisankargochhayat + node_id: MDQ6VXNlcjkzOTY0NTI= + organizations_url: https://api.github.com/users/saisankargochhayat/orgs + received_events_url: https://api.github.com/users/saisankargochhayat/received_events + repos_url: https://api.github.com/users/saisankargochhayat/repos site_admin: false - starred_url: https://api.github.com/users/maniis/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/maniis/subscriptions + starred_url: https://api.github.com/users/saisankargochhayat/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/saisankargochhayat/subscriptions type: User - url: https://api.github.com/users/maniis + url: https://api.github.com/users/saisankargochhayat - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '- Use new format for requre.' - closed_at: '2019-10-21T14:17:11Z' - comments: 11 - comments_url: https://api.github.com/repos/packit/ogr/issues/246/comments - created_at: '2019-10-15T10:46:00Z' - events_url: https://api.github.com/repos/packit/ogr/issues/246/events - html_url: https://github.com/packit/ogr/pull/246 - id: 507162669 + author_association: CONTRIBUTOR + body: 'Related #350 ' + closed_at: '2020-03-12T13:26:35Z' + comments: 12 + comments_url: https://api.github.com/repos/packit/ogr/issues/351/comments + created_at: '2020-03-11T08:26:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/351/events + html_url: https://github.com/packit/ogr/pull/351 + id: 579088221 labels: - color: 0e8a16 default: false @@ -60115,232 +74097,144 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/246/labels{/name} - locked: false - milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI4MjAyNTY5 - number: 246 - performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/246.diff - html_url: https://github.com/packit/ogr/pull/246 - patch_url: https://github.com/packit/ogr/pull/246.patch - url: https://api.github.com/repos/packit/ogr/pulls/246 - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Use new requre api - updated_at: '2019-10-21T14:22:24Z' - url: https://api.github.com/repos/packit/ogr/issues/246 - user: - avatar_url: https://avatars1.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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos - 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 - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: 'Test for https://github.com/packit-service/packit-service/pull/164 - - - - should pass' - closed_at: '2019-10-21T13:52:54Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/247/comments - created_at: '2019-10-16T10:40:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/247/events - html_url: https://github.com/packit/ogr/pull/247 - id: 507767488 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/247/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/351/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI4NjkwNjU1 - number: 247 + node_id: MDExOlB1bGxSZXF1ZXN0Mzg2NTQ3NzEz + number: 351 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/247.diff - html_url: https://github.com/packit/ogr/pull/247 - patch_url: https://github.com/packit/ogr/pull/247.patch - url: https://api.github.com/repos/packit/ogr/pulls/247 + diff_url: https://github.com/packit/ogr/pull/351.diff + html_url: https://github.com/packit/ogr/pull/351 + patch_url: https://github.com/packit/ogr/pull/351.patch + url: https://api.github.com/repos/packit/ogr/pulls/351 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add rebase check to pre-commit (pass) - updated_at: '2019-10-21T13:53:00Z' - url: https://api.github.com/repos/packit/ogr/issues/247 + title: Fix and refactor packit rev-dep tests + updated_at: '2020-03-12T13:26:35Z' + url: https://api.github.com/repos/packit/ogr/issues/351 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/lbarcziova - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: 'Test for https://github.com/packit-service/packit-service/pull/164 - - - - should fail' - closed_at: '2019-10-21T13:10:47Z' - comments: 9 - comments_url: https://api.github.com/repos/packit/ogr/issues/248/comments - created_at: '2019-10-16T10:41:07Z' - events_url: https://api.github.com/repos/packit/ogr/issues/248/events - html_url: https://github.com/packit/ogr/pull/248 - id: 507767766 + body: "The [Fedora dist-git CI fails](https://fedora.softwarefactory-project.io/zuul/build/755e891747f145b8810a8933c37fef3a/logs)\ + \ with that error.\r\nI'm not sure where's the correct place to fix\ + \ it, but I'm creating this so that we don't forget about it since I\ + \ need to merge [that PR](https://src.fedoraproject.org/rpms/python-ogr/pull-request/159)." + closed_at: '2020-03-12T12:24:37Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/323/comments + created_at: '2020-02-05T12:03:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/323/events + html_url: https://github.com/packit/ogr/issues/323 + id: 560327796 labels: - - color: dd5f74 + - color: f9d0c4 default: false - description: Work in progress. - id: 1432779248 - name: do-not-merge - node_id: MDU6TGFiZWwxNDMyNzc5MjQ4 - url: https://api.github.com/repos/packit/ogr/labels/do-not-merge - - color: e4e669 - default: true - description: This doesn't seem right. - id: 1160311267 - name: invalid - node_id: MDU6TGFiZWwxMTYwMzExMjY3 - url: https://api.github.com/repos/packit/ogr/labels/invalid - labels_url: https://api.github.com/repos/packit/ogr/issues/248/labels{/name} + description: Tests are impacted. + id: 1432779419 + name: testing + node_id: MDU6TGFiZWwxNDMyNzc5NDE5 + url: https://api.github.com/repos/packit/ogr/labels/testing + labels_url: https://api.github.com/repos/packit/ogr/issues/323/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI4NjkwODg5 - number: 248 + node_id: MDU6SXNzdWU1NjAzMjc3OTY= + number: 323 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/248.diff - html_url: https://github.com/packit/ogr/pull/248 - patch_url: https://github.com/packit/ogr/pull/248.patch - url: https://api.github.com/repos/packit/ogr/pulls/248 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add rebase check to pre-commit (fail) - updated_at: '2019-10-21T13:10:51Z' - url: https://api.github.com/repos/packit/ogr/issues/248 + title: 'ModuleNotFoundError: No module named ''flexmock''' + updated_at: '2020-03-12T12:24:37Z' + url: https://api.github.com/repos/packit/ogr/issues/323 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null assignee: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/sakalosj assignees: - - avatar_url: https://avatars0.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} + - avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/mfocko - author_association: MEMBER - body: "Add possibility to filter PR/issue comments by their author.\r\n\ - \r\n- [ ] Extend the methods of `GitProject` in `ogr/abstract.py`.\r\ - \n- [ ] Extend the `BaseGitProject` in `ogr/services/base.py` if needed.\r\ - \n- [ ] Implement the support both for PRs and issues. (Share as much\ - \ code as possible -- implementation and pr/issue)\r\n - [ ] github\r\ - \n - [ ] gitlab\r\n - [ ] pagure" - closed_at: '2019-10-15T10:49:50Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/240/comments - created_at: '2019-10-09T15:23:15Z' - events_url: https://api.github.com/repos/packit/ogr/issues/240/events - html_url: https://github.com/packit/ogr/issues/240 - id: 504724114 + url: https://api.github.com/users/sakalosj + author_association: CONTRIBUTOR + body: pagure provides more detailed error info stored under 'errors' key, + which is not currently not used in output + closed_at: '2020-03-12T12:16:11Z' + comments: 0 + comments_url: https://api.github.com/repos/packit/ogr/issues/331/comments + created_at: '2020-02-18T14:15:21Z' + events_url: https://api.github.com/repos/packit/ogr/issues/331/events + html_url: https://github.com/packit/ogr/issues/331 + id: 566921606 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: be8fd8 - default: false - description: Participate in https://hacktoberfest.digitalocean.com - id: 1592645945 - name: Hacktoberfest - node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 - url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - color: 1d76db default: false description: Related to Pagure implementation. @@ -60348,638 +74242,506 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: 8be567 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - labels_url: https://api.github.com/repos/packit/ogr/issues/240/labels{/name} + description: Usability issue. + id: 1432779464 + name: user-experience + node_id: MDU6TGFiZWwxNDMyNzc5NDY0 + url: https://api.github.com/repos/packit/ogr/labels/user-experience + labels_url: https://api.github.com/repos/packit/ogr/issues/331/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDQ3MjQxMTQ= - number: 240 + node_id: MDU6SXNzdWU1NjY5MjE2MDY= + number: 331 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Filter comments by author - updated_at: '2019-10-15T11:03:47Z' - url: https://api.github.com/repos/packit/ogr/issues/240 + title: pagure provides more detailed error info stored under 'errors' + key + updated_at: '2020-03-12T12:16:11Z' + url: https://api.github.com/repos/packit/ogr/issues/331 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/sakalosj - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: COLLABORATOR - body: "Based on [Github API doc](https://developer.github.com/v3/pulls/#labels-assignees-and-milestones):\r\ - \n>Every pull request is an issue, but not every issue is a pull request.\r\ - \n\r\nTherefore, in the case of Github, functions as `get_issue_list`,\ - \ `get_issue_info` etc. are working also with Pull Requests and behavior\ - \ isn't tested.\r\n\r\nWe should get rid of Pull Requests in functions\ - \ working with Issues. Pagure doesn't have this problem. \r\n\r\n--------------\r\ - \n@lachmanfrantisek added:\r\n\r\nTo be able to be compatible with other\ - \ git forges, let's differentiate between issues and pull-requests.\ - \ (And do not allow working with GitHub issues, that are actually pull-requests.\ - \ Issues and pull-requests are distinct sets.)\r\n\r\nAC:\r\n\r\n- [\ - \ ] Go through the issue related code in `GithubProject` and check if\ - \ it does not return any PullRequest.\r\n- [ ] Create test cases for\ - \ that.\r\n" - closed_at: '2019-09-26T09:12:11Z' - comments: 3 - comments_url: https://api.github.com/repos/packit/ogr/issues/107/comments - created_at: '2019-07-10T11:56:37Z' - events_url: https://api.github.com/repos/packit/ogr/issues/107/events - html_url: https://github.com/packit/ogr/issues/107 - id: 466266403 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 - default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/107/labels{/name} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: 'It seems that ogr-reverse-dep-packit-tests does not really test + packit with the ogr change, I broke the ogr and `ogr-reverse-dep-packit-tests + : SUCCESS in 8m 01s`.' + closed_at: '2020-03-11T08:27:40Z' + comments: 2 + comments_url: https://api.github.com/repos/packit/ogr/issues/350/comments + created_at: '2020-03-10T18:56:23Z' + events_url: https://api.github.com/repos/packit/ogr/issues/350/events + html_url: https://github.com/packit/ogr/pull/350 + id: 578793909 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/350/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0NjYyNjY0MDM= - number: 107 + node_id: MDExOlB1bGxSZXF1ZXN0Mzg2MzA4Njk0 + number: 350 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/350.diff + html_url: https://github.com/packit/ogr/pull/350 + patch_url: https://github.com/packit/ogr/pull/350.patch + url: https://api.github.com/repos/packit/ogr/pulls/350 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Remove PullRequests from list of Github Issues. - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/107 + title: Just testing the rev-dep tests + updated_at: '2020-03-11T08:27:40Z' + url: https://api.github.com/repos/packit/ogr/issues/350 user: - avatar_url: https://avatars1.githubusercontent.com/u/25414049?v=4 - events_url: https://api.github.com/users/marusinm/events{/privacy} - followers_url: https://api.github.com/users/marusinm/followers - following_url: https://api.github.com/users/marusinm/following{/other_user} - gists_url: https://api.github.com/users/marusinm/gists{/gist_id} + 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/marusinm - id: 25414049 - login: marusinm - node_id: MDQ6VXNlcjI1NDE0MDQ5 - organizations_url: https://api.github.com/users/marusinm/orgs - received_events_url: https://api.github.com/users/marusinm/received_events - repos_url: https://api.github.com/users/marusinm/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/marusinm/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/marusinm/subscriptions + 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/marusinm + url: https://api.github.com/users/lbarcziova - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: MEMBER - body: "In abstract class `GitProject`, we have the following method:\r\ - \n\r\n```python\r\n def get_issue_comments(\r\n self, issue_id,\ - \ filter_regex: str = None, reverse: bool = False\r\n ) -> List[\"\ - IssueComment\"]:\r\n \"\"\"\r\n Get list of Issue comments.\r\ - \n\r\n :param issue_id: int\r\n :param filter_regex: filter\ - \ the comments' content with re.search\r\n :param reverse: reverse\ - \ order of comments\r\n :return: [IssueComment]\r\n \"\ - \"\"\r\n raise NotImplementedError()\r\n```\r\n\r\nThis issue\ - \ is not implemented in `GithubProject`, but the real implementation\ - \ should be in the `_get_all_issue_comments`.\r\n\r\n```python\r\n \ - \ def _get_all_issue_comments(self, issue_id: int) -> List[IssueComment]:\r\ - \n issue = self.github_repo.get_pull(number=issue_id)\r\n \ - \ return [\r\n self._issuecomment_from_github_object(raw_comment)\r\ - \n for raw_comment in issue.get_issue_comments()\r\n \ - \ ]\r\n```\r\n\r\nAC:\r\n- [ ] Github/Pagure\r\n - [ ] implement\ - \ the `get_issue_comments` with the code `_get_all_issue_comments` (There\ - \ are some missing parameters.)\r\n - [ ] remove the `_get_all_issue_comments`\ - \ and change its usage to `get_issue_comments`\r\n - [ ] make sure\ - \ it works as expected\r\n- [ ] Implement the `get_issue_comments` in\ - \ `GitlabProject`\r\n- [ ] create test(s) for that if they are not already\ - \ there" - closed_at: '2019-10-03T14:35:15Z' - comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/205/comments - created_at: '2019-09-18T09:19:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/205/events - html_url: https://github.com/packit/ogr/issues/205 - id: 495098643 + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ + \ is the changelog I created:\n### Changes\n* Add stage to expected\ + \ pagure instances\n* Set missing info in GitHub commit flags\n* Regenerate\ + \ responses for 'test_issue_list_label'\n* List all GitLab issues (ignore\ + \ pagination)\n* Allow to filter issues by labels.\n* enable getting\ + \ projects defined with SSH URLs\n* Add diff_url to the PR classes\n\ + * Add missing setters to abstract PR class\n* apply precommit changes\n\ + * simplify requre testcases and use requre base test class\n* Use only\ + \ first+last token/key character in the __str__ methods\n* updated PullRequest\ + \ depr message Co-Authored-By: lachmanfrantisek \n\ + * provide is_private method on GitProjects\n* improve pagure error response\n\ + * [.packit.yaml] remove no-longer needed keys & use aliases\n* [CONTRIBUTING.md]\ + \ update\n* Add support for tags when creating pagure issues.\n* Generate\ + \ standard .gitignore file\n* [Pre-commit] Use Prettier\n* [pre-commit]\ + \ autoupdate\n* Run setup-cfg-fmt\n* Strip trailing slash from URL,\ + \ if it exists\n* Add test for trailing slash in URL\n* github.pr.author:\ + \ use login instead of name\n\n\nYou can change it by editing `CHANGELOG.md`\ + \ in the root of this repository and pushing to `0.11.0-release` branch\ + \ before merging this PR.\nI didn't find any files where `__version__`\ + \ is set." + closed_at: '2020-03-09T12:38:54Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/347/comments + created_at: '2020-03-07T06:10:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/347/events + html_url: https://github.com/packit/ogr/pull/347 + id: 577286080 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: be8fd8 - default: false - description: Participate in https://hacktoberfest.digitalocean.com - id: 1592645945 - name: Hacktoberfest - node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 - url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef + - color: ededed default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: 0e8a16 default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/205/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/347/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzg1MTA5ODI1 + number: 347 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/347.diff + html_url: https://github.com/packit/ogr/pull/347 + patch_url: https://github.com/packit/ogr/pull/347.patch + url: https://api.github.com/repos/packit/ogr/pulls/347 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: 0.11.0 release + updated_at: '2020-03-11T08:26:41Z' + url: https://api.github.com/repos/packit/ogr/issues/347 + 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 + received_events_url: https://api.github.com/users/usercont-release-bot/received_events + repos_url: https://api.github.com/users/usercont-release-bot/repos + 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 + - active_lock_reason: null + assignee: null + assignees: [] + author_association: NONE + body: 'Packit failed on creating pull-requests in dist-git: + + + | dist-git branch | error | + + | --------------- | ----- | + + | `f30` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + is not supported.` | + + | `f31` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + is not supported.` | + + | `f32` | `The distgit repository /tmp/packit-dist-gitpptwa97d is dirty.This + is not supported.` | + + | `master` | `Failed to download file from URL https://files.pythonhosted.org/packages/source/o/ogr/ogr-0.11.0.tar.gz. + Reason: ''Not Found''. ` | + + + + You can re-trigger the update by adding `/packit propose-update` to + the issue comment. + + ' + closed_at: '2020-03-09T14:02:41Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/348/comments + created_at: '2020-03-09T12:44:02Z' + events_url: https://api.github.com/repos/packit/ogr/issues/348/events + html_url: https://github.com/packit/ogr/issues/348 + id: 577881745 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/348/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTUwOTg2NDM= - number: 205 + node_id: MDU6SXNzdWU1Nzc4ODE3NDU= + number: 348 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Fix/implement get_issue_comments - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/205 + title: '[packit] Propose update failed for release 0.11.0' + updated_at: '2020-03-10T09:57:32Z' + url: https://api.github.com/repos/packit/ogr/issues/348 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/in/29076?v=4 + events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/events{/privacy} + followers_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/followers + following_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/following{/other_user} + gists_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/apps/packit-as-a-service + id: 49689251 + login: packit-as-a-service[bot] + node_id: MDM6Qm90NDk2ODkyNTE= + organizations_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/orgs + received_events_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/received_events + repos_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/repos 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 + starred_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/packit-as-a-service%5Bbot%5D/subscriptions + type: Bot + url: https://api.github.com/users/packit-as-a-service%5Bbot%5D - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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} + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-03-09T16:13:07Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/349/comments + created_at: '2020-03-09T15:12:46Z' + events_url: https://api.github.com/repos/packit/ogr/issues/349/events + html_url: https://github.com/packit/ogr/pull/349 + id: 577980538 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/349/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0Mzg1NjQ2MjU3 + number: 349 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/349.diff + html_url: https://github.com/packit/ogr/pull/349 + patch_url: https://github.com/packit/ogr/pull/349.patch + url: https://api.github.com/repos/packit/ogr/pulls/349 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix the descriptions in playbooks + updated_at: '2020-03-09T16:13:07Z' + url: https://api.github.com/repos/packit/ogr/issues/349 + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lbarcziova + id: 49026743 + login: lbarcziova + node_id: MDQ6VXNlcjQ5MDI2NzQz + organizations_url: https://api.github.com/users/lbarcziova/orgs + received_events_url: https://api.github.com/users/lbarcziova/received_events + repos_url: https://api.github.com/users/lbarcziova/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lbarcziova + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "```python\r\n def project_create(self, repo: str, namespace:\ - \ str = None) -> \"PagureProject\":\r\n pass\r\n```\r\n\r\nAPI\ - \ documentation:\r\nhttps://pagure.io/api/0/#projects\r\n\r\nAC:\r\n\ - \r\n- [ ] implement the method in `PagureService`\r\n- [ ] create at\ - \ least two tests for that (with and without specifying `namespace`)" - closed_at: '2019-10-15T07:33:19Z' + body: '' + closed_at: '2020-03-07T06:10:20Z' comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/204/comments - created_at: '2019-09-18T09:09:11Z' - events_url: https://api.github.com/repos/packit/ogr/issues/204/events - html_url: https://github.com/packit/ogr/issues/204 - id: 495092331 + comments_url: https://api.github.com/repos/packit/ogr/issues/346/comments + created_at: '2020-03-07T06:08:52Z' + events_url: https://api.github.com/repos/packit/ogr/issues/346/events + html_url: https://github.com/packit/ogr/issues/346 + id: 577285921 labels: - - color: be8fd8 - default: false - description: Participate in https://hacktoberfest.digitalocean.com - id: 1592645945 - name: Hacktoberfest - node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 - url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: a2eeef - default: false - description: New feature or a request for enhancement. - id: 1160311264 - name: feature - node_id: MDU6TGFiZWwxMTYwMzExMjY0 - url: https://api.github.com/repos/packit/ogr/labels/feature - - color: 7057ff + - color: ededed default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: 42e529 + description: null + id: 1237704250 + name: bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUw + url: https://api.github.com/repos/packit/ogr/labels/bot + - color: ededed default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/204/labels{/name} + description: null + id: 1237704251 + name: release-bot + node_id: MDU6TGFiZWwxMjM3NzA0MjUx + url: https://api.github.com/repos/packit/ogr/labels/release-bot + labels_url: https://api.github.com/repos/packit/ogr/issues/346/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTUwOTIzMzE= - number: 204 + node_id: MDU6SXNzdWU1NzcyODU5MjE= + number: 346 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Implement Pagure method for create_project ' - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/204 + title: New minor release + updated_at: '2020-03-07T06:10:20Z' + url: https://api.github.com/repos/packit/ogr/issues/346 user: - avatar_url: https://avatars1.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} + 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/lachmanfrantisek - id: 20214043 - login: lachmanfrantisek - node_id: MDQ6VXNlcjIwMjE0MDQz - organizations_url: https://api.github.com/users/lachmanfrantisek/orgs - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jpopelka + id: 288686 + login: jpopelka + node_id: MDQ6VXNlcjI4ODY4Ng== + organizations_url: https://api.github.com/users/jpopelka/orgs + received_events_url: https://api.github.com/users/jpopelka/received_events + repos_url: https://api.github.com/users/jpopelka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + 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/lachmanfrantisek + url: https://api.github.com/users/jpopelka - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - author_association: MEMBER - body: "Split service implementations into separate directories, module\ - \ for each class\r\n\r\n- [x] Directory for each service\r\n- [x] GitHub\r\ - \n - [x] split implementation into multiple modules\r\n - [x] add\ - \ `__init__.py` to make imports compatible\r\n - [x] update tests,\ - \ since they store \"full path\" of caller\r\n- [x] GitLab\r\n - [x]\ - \ split implementation into multiple modules\r\n - [x] add `__init__.py`\ - \ to make imports compatible\r\n - [x] update tests, since they store\ - \ \"full path\" of caller\r\n- [x] Pagure\r\n - [x] split implementation\ - \ into multiple modules\r\n - [x] add `__init__.py` to make imports\ - \ compatible\r\n - [x] update tests, since they store \"full path\"\ - \ of caller\r\n\r\nRelated to #86" - closed_at: '2019-10-11T06:36:16Z' + assignee: null + assignees: [] + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-03-05T07:21:02Z' comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/232/comments - created_at: '2019-10-05T09:52:03Z' - events_url: https://api.github.com/repos/packit/ogr/issues/232/events - html_url: https://github.com/packit/ogr/issues/232 - id: 502942365 + comments_url: https://api.github.com/repos/packit/ogr/issues/345/comments + created_at: '2020-03-04T16:38:55Z' + events_url: https://api.github.com/repos/packit/ogr/issues/345/events + html_url: https://github.com/packit/ogr/pull/345 + id: 575562256 labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: 1d76db - default: false - description: Related to Pagure implementation. - id: 1381607524 - name: Pagure - node_id: MDU6TGFiZWwxMzgxNjA3NTI0 - url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 - default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC - - color: c2ef58 + - color: 0e8a16 default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/232/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/345/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU1MDI5NDIzNjU= - number: 232 + node_id: MDExOlB1bGxSZXF1ZXN0MzgzNjkxODk5 + number: 345 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/345.diff + html_url: https://github.com/packit/ogr/pull/345 + patch_url: https://github.com/packit/ogr/pull/345.patch + url: https://api.github.com/repos/packit/ogr/pulls/345 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Prepare file structure for object-specific methods (#86) - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/232 + title: Add stage to expected pagure instances + updated_at: '2020-03-05T07:21:02Z' + url: https://api.github.com/repos/packit/ogr/issues/345 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/dhodovsk - active_lock_reason: null - assignee: - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos - 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 - assignees: - - avatar_url: https://avatars0.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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + assignee: null + assignees: [] + author_association: MEMBER + body: '- Set missing info in GitHub commit flags. + + - Test was improved to cover that.' + closed_at: '2020-03-04T09:57:25Z' + comments: 3 + comments_url: https://api.github.com/repos/packit/ogr/issues/343/comments + created_at: '2020-03-02T11:17:17Z' + events_url: https://api.github.com/repos/packit/ogr/issues/343/events + html_url: https://github.com/packit/ogr/pull/343 + id: 573904235 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/343/labels{/name} + locked: false + milestone: null + node_id: MDExOlB1bGxSZXF1ZXN0MzgyMzI1NTEz + number: 343 + performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/343.diff + html_url: https://github.com/packit/ogr/pull/343 + patch_url: https://github.com/packit/ogr/pull/343.patch + url: https://api.github.com/repos/packit/ogr/pulls/343 + repository_url: https://api.github.com/repos/packit/ogr + state: closed + title: Fix GitHub commit flags + updated_at: '2020-03-04T10:31:38Z' + url: https://api.github.com/repos/packit/ogr/issues/343 + 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 + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek + - active_lock_reason: null + assignee: null + assignees: [] author_association: MEMBER - body: "1. Property `full_repo_name` is implemented both in `BaseGitProject`\ - \ and `GitProject`\r\n1. `full_repo_name` doesn't handle non-existing\ - \ namespace (in case of Pagure projects)" - closed_at: '2019-09-25T05:20:03Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/218/comments - created_at: '2019-09-24T09:15:21Z' - events_url: https://api.github.com/repos/packit/ogr/issues/218/events - html_url: https://github.com/packit/ogr/issues/218 - id: 497561711 + body: "When working with PRs, there are also URLs linking directly to\ + \ diff tab.\r\n\r\nAC:\r\n- [ ] In each implementation, add the `url_diff`\ + \ and implement it.\r\n - Use API if possible, otherwise \"guess\"\ + \ the URL.\r\n- [ ] Improve the tests to use that.\r\n\r\nExamples:\r\ + \n\r\n- https://gitlab.com/packit-service/ogr-tests/merge_requests/2/diffs\r\ + \n- https://github.com/packit-service/ogr/pull/1/files\r\n- https://pagure.io/ogr-tests/pull-request/7#request_diff\r\ + \n" + closed_at: '2020-03-03T15:49:36Z' + comments: 4 + comments_url: https://api.github.com/repos/packit/ogr/issues/211/comments + created_at: '2019-09-19T18:48:47Z' + events_url: https://api.github.com/repos/packit/ogr/issues/211/events + html_url: https://github.com/packit/ogr/issues/211 + id: 495968184 labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d93f0b + default: false + description: Related to GitLab implementation. + id: 1381607259 + name: GitLab + node_id: MDU6TGFiZWwxMzgxNjA3MjU5 + url: https://api.github.com/repos/packit/ogr/labels/GitLab - color: 1d76db default: false description: Related to Pagure implementation. @@ -60987,13 +74749,13 @@ requests.sessions: name: Pagure node_id: MDU6TGFiZWwxMzgxNjA3NTI0 url: https://api.github.com/repos/packit/ogr/labels/Pagure - - color: b60205 + - color: a2eeef default: false - description: Issue reserved to students from Red Hat Open Source Contest - id: 1563309773 - name: RHOSC - node_id: MDU6TGFiZWwxNTYzMzA5Nzcz - url: https://api.github.com/repos/packit/ogr/labels/RHOSC + description: New feature or a request for enhancement. + id: 1160311264 + name: feature + node_id: MDU6TGFiZWwxMTYwMzExMjY0 + url: https://api.github.com/repos/packit/ogr/labels/feature - color: 7057ff default: false description: Good for newcomers @@ -61001,95 +74763,83 @@ requests.sessions: name: good-first-issue node_id: MDU6TGFiZWwxMTYwMzExMjY2 url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - - color: f9d0c4 + - color: fef2c0 default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - - color: 42e529 + description: Low priority. + id: 1432779340 + name: low-prio + node_id: MDU6TGFiZWwxNDMyNzc5MzQw + url: https://api.github.com/repos/packit/ogr/labels/low-prio + - color: '000000' default: false - description: This issue was already processed and well defined. - id: 1432779462 - name: triaged - node_id: MDU6TGFiZWwxNDMyNzc5NDYy - url: https://api.github.com/repos/packit/ogr/labels/triaged - labels_url: https://api.github.com/repos/packit/ogr/issues/218/labels{/name} + description: Is the issue still valid? + id: 1670132619 + name: stale + node_id: MDU6TGFiZWwxNjcwMTMyNjE5 + url: https://api.github.com/repos/packit/ogr/labels/stale + labels_url: https://api.github.com/repos/packit/ogr/issues/211/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTc1NjE3MTE= - number: 218 + node_id: MDU6SXNzdWU0OTU5NjgxODQ= + number: 211 performed_via_github_app: null repository_url: https://api.github.com/repos/packit/ogr state: closed - title: GitProject.full_repo_name() and Pagure implementation - updated_at: '2019-10-15T11:03:46Z' - url: https://api.github.com/repos/packit/ogr/issues/218 + title: Add diff url to PullRequest class + updated_at: '2020-03-03T15:49:36Z' + url: https://api.github.com/repos/packit/ogr/issues/211 user: - avatar_url: https://avatars0.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} + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- Add reverse-dependence-test of packit.' - closed_at: '2019-10-10T14:18:42Z' - comments: 21 - comments_url: https://api.github.com/repos/packit/ogr/issues/241/comments - created_at: '2019-10-10T07:36:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/241/events - html_url: https://github.com/packit/ogr/pull/241 - id: 505092361 - labels: - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/241/labels{/name} + body: '- Added object representation for GitHub releases. + + - What about pagure? Is there anything that can be used?' + closed_at: '2019-03-12T13:36:17Z' + comments: 6 + comments_url: https://api.github.com/repos/packit/ogr/issues/19/comments + created_at: '2019-02-21T15:14:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/19/events + html_url: https://github.com/packit/ogr/pull/19 + id: 412975574 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/19/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI2NTkyODk0 - number: 241 + node_id: MDExOlB1bGxSZXF1ZXN0MjU1MDY0MDU2 + number: 19 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/241.diff - html_url: https://github.com/packit/ogr/pull/241 - patch_url: https://github.com/packit/ogr/pull/241.patch - url: https://api.github.com/repos/packit/ogr/pulls/241 + diff_url: https://github.com/packit/ogr/pull/19.diff + html_url: https://github.com/packit/ogr/pull/19 + patch_url: https://github.com/packit/ogr/pull/19.patch + url: https://api.github.com/repos/packit/ogr/pulls/19 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Reverse dependency testing of packit - updated_at: '2019-10-10T15:14:48Z' - url: https://api.github.com/repos/packit/ogr/issues/241 + title: Releases + updated_at: '2020-02-28T11:35:03Z' + url: https://api.github.com/repos/packit/ogr/issues/19 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -61111,14 +74861,17 @@ requests.sessions: assignee: null assignees: [] author_association: MEMBER - body: '' - closed_at: '2019-10-09T09:50:00Z' - comments: 2 - comments_url: https://api.github.com/repos/packit/ogr/issues/239/comments - created_at: '2019-10-09T09:26:52Z' - events_url: https://api.github.com/repos/packit/ogr/issues/239/events - html_url: https://github.com/packit/ogr/pull/239 - id: 504525592 + body: "- Do not use tokens/private_keys in the `__str__` methods.\n -\ + \ used `set`/`not set` instead\n - reason: We've started to show logs\ + \ publicly in the packit-service and it can be easy to forget about\ + \ this \"feature\"." + closed_at: '2020-02-21T12:13:33Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/336/comments + created_at: '2020-02-20T09:28:40Z' + events_url: https://api.github.com/repos/packit/ogr/issues/336/events + html_url: https://github.com/packit/ogr/pull/336 + id: 568163719 labels: - color: 0e8a16 default: false @@ -61127,102 +74880,114 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/239/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/336/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI2MTU0MzU4 - number: 239 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc3NjQzMzYy + number: 336 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/239.diff - html_url: https://github.com/packit/ogr/pull/239 - patch_url: https://github.com/packit/ogr/pull/239.patch - url: https://api.github.com/repos/packit/ogr/pulls/239 + diff_url: https://github.com/packit/ogr/pull/336.diff + html_url: https://github.com/packit/ogr/pull/336 + patch_url: https://github.com/packit/ogr/pull/336.patch + url: https://api.github.com/repos/packit/ogr/pulls/336 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: prepare for rev dependency testing, set project dir in case it - not come from zuul - updated_at: '2019-10-09T09:50:00Z' - url: https://api.github.com/repos/packit/ogr/issues/239 + title: Do not use tokens and keys in the __str__ methods + updated_at: '2020-02-28T11:34:56Z' + url: https://api.github.com/repos/packit/ogr/issues/336 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/lachmanfrantisek + id: 20214043 + login: lachmanfrantisek + node_id: MDQ6VXNlcjIwMjE0MDQz + organizations_url: https://api.github.com/users/lachmanfrantisek/orgs + received_events_url: https://api.github.com/users/lachmanfrantisek/received_events + repos_url: https://api.github.com/users/lachmanfrantisek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/lachmanfrantisek - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-10-09T08:41:00Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/238/comments - created_at: '2019-10-09T07:06:44Z' - events_url: https://api.github.com/repos/packit/ogr/issues/238/events - html_url: https://github.com/packit/ogr/pull/238 - id: 504458794 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/238/labels{/name} + author_association: CONTRIBUTOR + body: "This commit adds the possibility to provide\r\na list of labels\ + \ to filter the issues of a\r\nproject.\r\n\r\nSigned-off-by: Clement\ + \ Verna " + closed_at: '2020-02-28T10:13:37Z' + comments: 22 + comments_url: https://api.github.com/repos/packit/ogr/issues/340/comments + created_at: '2020-02-21T14:19:50Z' + events_url: https://api.github.com/repos/packit/ogr/issues/340/events + html_url: https://github.com/packit/ogr/pull/340 + id: 568983388 + labels: + - color: 0e8a16 + default: false + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/340/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI2MTAxNzE3 - number: 238 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc4MzA1ODAw + number: 340 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/238.diff - html_url: https://github.com/packit/ogr/pull/238 - patch_url: https://github.com/packit/ogr/pull/238.patch - url: https://api.github.com/repos/packit/ogr/pulls/238 + diff_url: https://github.com/packit/ogr/pull/340.diff + html_url: https://github.com/packit/ogr/pull/340 + patch_url: https://github.com/packit/ogr/pull/340.patch + url: https://api.github.com/repos/packit/ogr/pulls/340 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: remove all stuff what were moved to requre project - updated_at: '2019-10-09T08:41:00Z' - url: https://api.github.com/repos/packit/ogr/issues/238 + title: Allow to filter issues by labels. + updated_at: '2020-02-28T10:17:42Z' + url: https://api.github.com/repos/packit/ogr/issues/340 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + avatar_url: https://avatars.githubusercontent.com/u/7237866?v=4 + events_url: https://api.github.com/users/cverna/events{/privacy} + followers_url: https://api.github.com/users/cverna/followers + following_url: https://api.github.com/users/cverna/following{/other_user} + gists_url: https://api.github.com/users/cverna/gists{/gist_id} gravatar_id: '' - html_url: https://github.com/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/cverna + id: 7237866 + login: cverna + node_id: MDQ6VXNlcjcyMzc4NjY= + organizations_url: https://api.github.com/users/cverna/orgs + received_events_url: https://api.github.com/users/cverna/received_events + repos_url: https://api.github.com/users/cverna/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + starred_url: https://api.github.com/users/cverna/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/cverna/subscriptions type: User - url: https://api.github.com/users/jscotka + url: https://api.github.com/users/cverna - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: '' - closed_at: '2019-10-07T14:04:40Z' - comments: 10 - comments_url: https://api.github.com/repos/packit/ogr/issues/235/comments - created_at: '2019-10-07T11:19:30Z' - events_url: https://api.github.com/repos/packit/ogr/issues/235/events - html_url: https://github.com/packit/ogr/pull/235 - id: 503387838 + author_association: CONTRIBUTOR + body: 'Fixes #306 + + + Franto, we didn''t speak about this, but this how I expect it to work, + WDYT?' + closed_at: '2020-02-26T11:51:17Z' + comments: 9 + comments_url: https://api.github.com/repos/packit/ogr/issues/337/comments + created_at: '2020-02-20T21:27:48Z' + events_url: https://api.github.com/repos/packit/ogr/issues/337/events + html_url: https://github.com/packit/ogr/pull/337 + id: 568583084 labels: - color: 0e8a16 default: false @@ -61231,182 +74996,148 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/235/labels{/name} + labels_url: https://api.github.com/repos/packit/ogr/issues/337/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI1MjUwMzkx - number: 235 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc3OTgyODUz + number: 337 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/235.diff - html_url: https://github.com/packit/ogr/pull/235 - patch_url: https://github.com/packit/ogr/pull/235.patch - url: https://api.github.com/repos/packit/ogr/pulls/235 + diff_url: https://github.com/packit/ogr/pull/337.diff + html_url: https://github.com/packit/ogr/pull/337 + patch_url: https://github.com/packit/ogr/pull/337.patch + url: https://api.github.com/repos/packit/ogr/pulls/337 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Add Developer Certificate of Origin - updated_at: '2019-10-07T14:04:41Z' - url: https://api.github.com/repos/packit/ogr/issues/235 + title: enable getting projects defined with SSH URLs + updated_at: '2020-02-26T11:51:17Z' + url: https://api.github.com/repos/packit/ogr/issues/337 user: - avatar_url: https://avatars3.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} + 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/lbarcziova - id: 49026743 - login: lbarcziova - node_id: MDQ6VXNlcjQ5MDI2NzQz - organizations_url: https://api.github.com/users/lbarcziova/orgs - received_events_url: https://api.github.com/users/lbarcziova/received_events - repos_url: https://api.github.com/users/lbarcziova/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/lbarcziova/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lbarcziova/subscriptions + 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/lbarcziova + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: Gitlab tests import `PRStatus` and `IssueStatus` from `ogr.services.gitlab` - instead of `ogr.abstract` - closed_at: '2019-10-07T11:02:37Z' - comments: 0 - comments_url: https://api.github.com/repos/packit/ogr/issues/233/comments - created_at: '2019-10-05T15:21:36Z' - events_url: https://api.github.com/repos/packit/ogr/issues/233/events - html_url: https://github.com/packit/ogr/issues/233 - id: 502976447 - labels: - - color: d93f0b - default: false - description: Related to GitLab implementation. - id: 1381607259 - name: GitLab - node_id: MDU6TGFiZWwxMzgxNjA3MjU5 - url: https://api.github.com/repos/packit/ogr/labels/GitLab - - color: be8fd8 - default: false - description: Participate in https://hacktoberfest.digitalocean.com - id: 1592645945 - name: Hacktoberfest - node_id: MDU6TGFiZWwxNTkyNjQ1OTQ1 - url: https://api.github.com/repos/packit/ogr/labels/Hacktoberfest - - color: d73a4a - default: true - description: Something isn't working - id: 1160311262 - name: bug - node_id: MDU6TGFiZWwxMTYwMzExMjYy - url: https://api.github.com/repos/packit/ogr/labels/bug - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: f9d0c4 - default: false - description: Tests are impacted. - id: 1432779419 - name: testing - node_id: MDU6TGFiZWwxNDMyNzc5NDE5 - url: https://api.github.com/repos/packit/ogr/labels/testing - labels_url: https://api.github.com/repos/packit/ogr/issues/233/labels{/name} - locked: false - milestone: null - node_id: MDU6SXNzdWU1MDI5NzY0NDc= - number: 233 - performed_via_github_app: null - repository_url: https://api.github.com/repos/packit/ogr - state: closed - title: Gitlab tests imports - updated_at: '2019-10-07T11:02:38Z' - url: https://api.github.com/repos/packit/ogr/issues/233 - user: - avatar_url: https://avatars0.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} + assignee: + 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/mfocko - id: 8149784 - login: mfocko - node_id: MDQ6VXNlcjgxNDk3ODQ= - organizations_url: https://api.github.com/users/mfocko/orgs - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + 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/mfocko - - active_lock_reason: null - assignee: null - assignees: [] - author_association: MEMBER - body: "replace storing requests objects by ``requre`` project.\r\n\r\n\ - - [x] regenerate test data for ogr\r\n- [x] remove old functionality\ - \ after packit will be fixed as well, not now in this PR\r\n\r\n" - closed_at: '2019-10-07T10:42:46Z' - comments: 17 - comments_url: https://api.github.com/repos/packit/ogr/issues/201/comments - created_at: '2019-09-17T09:04:22Z' - events_url: https://api.github.com/repos/packit/ogr/issues/201/events - html_url: https://github.com/packit/ogr/pull/201 - id: 494495662 - labels: [] - labels_url: https://api.github.com/repos/packit/ogr/issues/201/labels{/name} + url: https://api.github.com/users/TomasTomecek + assignees: + - 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 + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos + 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 + author_association: CONTRIBUTOR + body: 'see below: https://github.com/packit-service/ogr/issues/306#issuecomment-575204355' + closed_at: '2020-02-26T11:51:17Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/306/comments + created_at: '2020-01-10T15:38:43Z' + events_url: https://api.github.com/repos/packit/ogr/issues/306/events + html_url: https://github.com/packit/ogr/issues/306 + id: 548146892 + labels: + - color: '000000' + default: false + description: Related to GitHub implementation. + id: 1381606942 + name: GitHub + node_id: MDU6TGFiZWwxMzgxNjA2OTQy + url: https://api.github.com/repos/packit/ogr/labels/GitHub + - color: d73a4a + default: true + description: Something isn't working + id: 1160311262 + name: bug + node_id: MDU6TGFiZWwxMTYwMzExMjYy + url: https://api.github.com/repos/packit/ogr/labels/bug + labels_url: https://api.github.com/repos/packit/ogr/issues/306/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzE4MjM0OTky - number: 201 + node_id: MDU6SXNzdWU1NDgxNDY4OTI= + number: 306 performed_via_github_app: null - pull_request: - diff_url: https://github.com/packit/ogr/pull/201.diff - html_url: https://github.com/packit/ogr/pull/201 - patch_url: https://github.com/packit/ogr/pull/201.patch - url: https://api.github.com/repos/packit/ogr/pulls/201 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: use requre for storing data for tests - updated_at: '2019-10-07T10:42:47Z' - url: https://api.github.com/repos/packit/ogr/issues/201 + title: 'ogr can''t figure out auth for SSH style of URL: git@github...' + updated_at: '2020-02-26T11:51:17Z' + url: https://api.github.com/repos/packit/ogr/issues/306 user: - avatar_url: https://avatars0.githubusercontent.com/u/8735467?v=4 - events_url: https://api.github.com/users/jscotka/events{/privacy} - followers_url: https://api.github.com/users/jscotka/followers - following_url: https://api.github.com/users/jscotka/following{/other_user} - gists_url: https://api.github.com/users/jscotka/gists{/gist_id} + 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/jscotka - id: 8735467 - login: jscotka - node_id: MDQ6VXNlcjg3MzU0Njc= - organizations_url: https://api.github.com/users/jscotka/orgs - received_events_url: https://api.github.com/users/jscotka/received_events - repos_url: https://api.github.com/users/jscotka/repos + html_url: https://github.com/TomasTomecek + id: 1662493 + login: TomasTomecek + node_id: MDQ6VXNlcjE2NjI0OTM= + organizations_url: https://api.github.com/users/TomasTomecek/orgs + received_events_url: https://api.github.com/users/TomasTomecek/received_events + repos_url: https://api.github.com/users/TomasTomecek/repos site_admin: false - starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/jscotka/subscriptions + 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/jscotka + url: https://api.github.com/users/TomasTomecek - active_lock_reason: null assignee: null assignees: [] author_association: MEMBER - body: '- use requre for storing data for tests.' - closed_at: '2019-10-04T08:09:13Z' + body: "- Add diff_url to the PR classes.\r\n- Add missing setters to abstract\ + \ PR class.\r\n\r\nA rebased version of https://github.com/packit-service/ogr/pull/280\ + \ ." + closed_at: '2020-02-26T09:52:29Z' comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/231/comments - created_at: '2019-10-03T08:51:35Z' - events_url: https://api.github.com/repos/packit/ogr/issues/231/events - html_url: https://github.com/packit/ogr/pull/231 - id: 501935145 + comments_url: https://api.github.com/repos/packit/ogr/issues/335/comments + created_at: '2020-02-20T06:22:15Z' + events_url: https://api.github.com/repos/packit/ogr/issues/335/events + html_url: https://github.com/packit/ogr/pull/335 + id: 568078329 labels: - color: 0e8a16 default: false @@ -61415,24 +75146,31 @@ requests.sessions: name: mergeit node_id: MDU6TGFiZWwxNTQ3MzA4NDEx url: https://api.github.com/repos/packit/ogr/labels/mergeit - labels_url: https://api.github.com/repos/packit/ogr/issues/231/labels{/name} + - color: 18e033 + default: false + description: Pull request is ready for review. + id: 1432779383 + name: ready-for-review + node_id: MDU6TGFiZWwxNDMyNzc5Mzgz + url: https://api.github.com/repos/packit/ogr/labels/ready-for-review + labels_url: https://api.github.com/repos/packit/ogr/issues/335/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzI0MTEwMzY5 - number: 231 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc3NTcyNzgz + number: 335 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/231.diff - html_url: https://github.com/packit/ogr/pull/231 - patch_url: https://github.com/packit/ogr/pull/231.patch - url: https://api.github.com/repos/packit/ogr/pulls/231 + diff_url: https://github.com/packit/ogr/pull/335.diff + html_url: https://github.com/packit/ogr/pull/335 + patch_url: https://github.com/packit/ogr/pull/335.patch + url: https://api.github.com/repos/packit/ogr/pulls/335 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 'Use requre (rebased #201)' - updated_at: '2019-10-04T08:24:34Z' - url: https://api.github.com/repos/packit/ogr/issues/231 + title: diff url for pull-requests + updated_at: '2020-02-26T10:14:51Z' + url: https://api.github.com/repos/packit/ogr/issues/335 user: - avatar_url: https://avatars1.githubusercontent.com/u/20214043?v=4 + 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} @@ -61453,335 +75191,255 @@ requests.sessions: - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "This property violates our rule that only methods with `get` can\ - \ touch the real servers.\r\n\r\nWe can:\r\n\r\n- Revert the change\ - \ and stay with guessing.\r\n- Change the property to `get_full_repo_name`\ - \ (needs deprecation to original property)\r\n- Change our mind and\ - \ do not be strict about that. (And use properties instead of methods\ - \ for objects.)\r\n - This will bring nicer user-experience, but\ - \ maybe some confusion.\r\n - Maybe, we can leave only `__init__`\ - \ offline?\r\n\r\n" - closed_at: '2019-10-02T09:17:18Z' + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-02-26T07:46:42Z' comments: 4 - comments_url: https://api.github.com/repos/packit/ogr/issues/220/comments - created_at: '2019-09-25T06:13:17Z' - events_url: https://api.github.com/repos/packit/ogr/issues/220/events - html_url: https://github.com/packit/ogr/issues/220 - id: 498070461 + comments_url: https://api.github.com/repos/packit/ogr/issues/341/comments + created_at: '2020-02-25T13:21:16Z' + events_url: https://api.github.com/repos/packit/ogr/issues/341/events + html_url: https://github.com/packit/ogr/pull/341 + id: 570565436 labels: - - color: ff9990 - default: false - description: Implementation details are not clear. - id: 1432779378 - name: needs-design - node_id: MDU6TGFiZWwxNDMyNzc5Mzc4 - url: https://api.github.com/repos/packit/ogr/labels/needs-design - - color: 8be567 + - color: 0e8a16 default: false - description: Usability issue. - id: 1432779464 - name: user-experience - node_id: MDU6TGFiZWwxNDMyNzc5NDY0 - url: https://api.github.com/repos/packit/ogr/labels/user-experience - labels_url: https://api.github.com/repos/packit/ogr/issues/220/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/341/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTgwNzA0NjE= - number: 220 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc5NTc3NjE5 + number: 341 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/341.diff + html_url: https://github.com/packit/ogr/pull/341 + patch_url: https://github.com/packit/ogr/pull/341.patch + url: https://api.github.com/repos/packit/ogr/pulls/341 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: PagureProject.full_repo_name touches service - updated_at: '2019-10-02T09:17:18Z' - url: https://api.github.com/repos/packit/ogr/issues/220 + title: simplify requre testcases and use requre base test class + updated_at: '2020-02-26T07:46:42Z' + url: https://api.github.com/repos/packit/ogr/issues/341 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/8735467?v=4 + events_url: https://api.github.com/users/jscotka/events{/privacy} + followers_url: https://api.github.com/users/jscotka/followers + following_url: https://api.github.com/users/jscotka/following{/other_user} + gists_url: https://api.github.com/users/jscotka/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/jscotka + id: 8735467 + login: jscotka + node_id: MDQ6VXNlcjg3MzU0Njc= + organizations_url: https://api.github.com/users/jscotka/orgs + received_events_url: https://api.github.com/users/jscotka/received_events + repos_url: https://api.github.com/users/jscotka/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/jscotka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/jscotka/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/jscotka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: "Hi,\n you have requested a release PR from me. Here it is!\nThis\ - \ is the changelog I created:\n### Changes\n* Replace numbers by access\ - \ constants\n* suggested changes added\n* methods for permissions\n\ - * (#107) Rename test\n* (#107) Fix type and formatting\n* (#107) Add\ - \ tests for querying PRs in issue-related functions (GitHub)\n* (#107)\ - \ Raise exception if querying PR using issue-related function\n* (#107)\ - \ Fix typo in Github._get_all_issue_comments\n* (#107) Update test_data\ - \ for Github's issues\n* (#107) Filter out pull requests from issues\ - \ (GitHub)\n* Do not save links beteen values in response files\n* specified\ - \ return type\n* exceptions added\n* methods for pr and issue labels\n\ - * (#218) Remove checking if fork exists in test for full_repo_name\n\ - * (#218) Add tests for full_repo_name with namespace and fork\n* (#218)\ - \ Add tests for full_repo_name property\n* (#218) Override full_repo_name\ - \ in PagureProject\n* (#218) Remove full_repo_name implementation from\ - \ GitProject\n* Fix flake8 remarks\n* (#213) Modify PagureProject.get_web_url()\ - \ to use project info\n* (#213) Fix wrong property name in Gitlab.get_web_url()\ - \ test and add test_data\n* (#213) Fix Pagure's get_web_url()\n* (#213)\ - \ Update GitLab.get_web_url() to use repo object\n* (#213) Update GitHub.get_web_url()\ - \ to use repo object\n* Add tests for get_web_url\n* Add get_web_url\ - \ to GitHub, GitLab and Pagure\n* Add get_web_url to GitProject\n* Add\ - \ tests for set_commit_status method\n* Add trim parameter to set_commit_status\ - \ method\n* test changed\n* test added\n* response files added\n* methods\ - \ for commit status and commit comment\n* refactor\n* github method\ - \ for creating projects added\n* Document the tests that are problematic\ - \ when regenerating\n* Be consistent in instantiating services in tests\n\ - * Update GitHub response files and fix the tests\n* Fix get_email in\ - \ GitHub implementation\n* Update Pagure response files and fix the\ - \ tests\n* Use returned GitLab repo instance in GitlabService.project_create\n\ - * Remove Gitlab also from example\n* delete GitLab from README.md\n\ - * Quickstart example\n* Generate response-file for test_create_fork\ - \ with python_gitlab-1.11\n* WIP: forking methods\n* better tests\n\ - * pr close, merge methods\n* Implement service.project_create for GitLab\n\ - \n\nYou can change it by editing `CHANGELOG.md` in the root of this\ - \ repository and pushing to `0.8.0-release` branch before merging this\ - \ PR.\nI didn't find any files where `__version__` is set." - closed_at: '2019-10-01T19:57:46Z' - comments: 8 - comments_url: https://api.github.com/repos/packit/ogr/issues/223/comments - created_at: '2019-09-26T11:11:49Z' - events_url: https://api.github.com/repos/packit/ogr/issues/223/events - html_url: https://github.com/packit/ogr/pull/223 - id: 498820056 - labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: 0e8a16 - default: false - description: When set, zuul wil gate and merge the PR. - id: 1547308411 - name: mergeit - node_id: MDU6TGFiZWwxNTQ3MzA4NDEx - url: https://api.github.com/repos/packit/ogr/labels/mergeit - - color: ededed - default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/223/labels{/name} + author_association: CONTRIBUTOR + body: "Closes #211\r\n\r\nI added diff url to PullRequest.\r\n\r\nImplementation:\r\ + \n- [x] BasePullRequest\r\n- [x] Github\r\n- [x] Gitlab\r\n- [x] Pagure\r\ + \n\r\nBut I found diff url in api for github, so I \"guess\" url. \r\ + \nBut for github there are two option \"/files\" (consistent with other\ + \ services) or \".diff\" (consistent with Github api).\r\n\r\nFor example:\r\ + \nhttps://github.com/packit-service/ogr/pull/1/files\r\nand \r\nhttps://patch-diff.githubusercontent.com/raw/packit-service/ogr/pull/1.diff\r\ + \n\r\nI think \".files\" looks better and that option was in issue as\ + \ example, that why I chose this one. But if you want I can change to\ + \ github api option \".diff\" \r\n\r\nFor others services I couldn't\ + \ find in api, so I \"guess\" url. \r\n" + closed_at: '2020-02-20T08:39:54Z' + comments: 10 + comments_url: https://api.github.com/repos/packit/ogr/issues/280/comments + created_at: '2019-11-22T10:17:20Z' + events_url: https://api.github.com/repos/packit/ogr/issues/280/events + html_url: https://github.com/packit/ogr/pull/280 + id: 527108315 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/280/labels{/name} locked: false milestone: null - node_id: MDExOlB1bGxSZXF1ZXN0MzIxNjY2NjY0 - number: 223 + node_id: MDExOlB1bGxSZXF1ZXN0MzQ0NDQ0OTEz + number: 280 performed_via_github_app: null pull_request: - diff_url: https://github.com/packit/ogr/pull/223.diff - html_url: https://github.com/packit/ogr/pull/223 - patch_url: https://github.com/packit/ogr/pull/223.patch - url: https://api.github.com/repos/packit/ogr/pulls/223 + diff_url: https://github.com/packit/ogr/pull/280.diff + html_url: https://github.com/packit/ogr/pull/280 + patch_url: https://github.com/packit/ogr/pull/280.patch + url: https://api.github.com/repos/packit/ogr/pulls/280 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: 0.8.0 release - updated_at: '2019-10-01T19:59:12Z' - url: https://api.github.com/repos/packit/ogr/issues/223 + title: Add url diff to PullRequest + updated_at: '2020-02-20T08:39:54Z' + url: https://api.github.com/repos/packit/ogr/issues/280 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/17784034?v=4 + events_url: https://api.github.com/users/pawelkopka/events{/privacy} + followers_url: https://api.github.com/users/pawelkopka/followers + following_url: https://api.github.com/users/pawelkopka/following{/other_user} + gists_url: https://api.github.com/users/pawelkopka/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 - received_events_url: https://api.github.com/users/usercont-release-bot/received_events - repos_url: https://api.github.com/users/usercont-release-bot/repos + html_url: https://github.com/pawelkopka + id: 17784034 + login: pawelkopka + node_id: MDQ6VXNlcjE3Nzg0MDM0 + organizations_url: https://api.github.com/users/pawelkopka/orgs + received_events_url: https://api.github.com/users/pawelkopka/received_events + repos_url: https://api.github.com/users/pawelkopka/repos 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 + starred_url: https://api.github.com/users/pawelkopka/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/pawelkopka/subscriptions type: User - url: https://api.github.com/users/usercont-release-bot + url: https://api.github.com/users/pawelkopka - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: 'In `GithubProject` class there is identical implementation for - `who_can_close_issue` and `who_can_merge_pr`, is it intentional? Or - can we factor it out since it''s identical? ' - closed_at: '2019-09-30T11:40:39Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/224/comments - created_at: '2019-09-26T11:56:31Z' - events_url: https://api.github.com/repos/packit/ogr/issues/224/events - html_url: https://github.com/packit/ogr/issues/224 - id: 498839261 - labels: - - color: '000000' - default: false - description: Related to GitHub implementation. - id: 1381606942 - name: GitHub - node_id: MDU6TGFiZWwxMzgxNjA2OTQy - url: https://api.github.com/repos/packit/ogr/labels/GitHub - - color: 7057ff - default: false - description: Good for newcomers - id: 1160311266 - name: good-first-issue - node_id: MDU6TGFiZWwxMTYwMzExMjY2 - url: https://api.github.com/repos/packit/ogr/labels/good-first-issue - - color: c2ef58 - default: false - description: Technical debt - the code needs love. - id: 1432779413 - name: refactor - node_id: MDU6TGFiZWwxNDMyNzc5NDEz - url: https://api.github.com/repos/packit/ogr/labels/refactor - labels_url: https://api.github.com/repos/packit/ogr/issues/224/labels{/name} + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-02-19T14:45:23Z' + comments: 8 + comments_url: https://api.github.com/repos/packit/ogr/issues/324/comments + created_at: '2020-02-10T13:09:22Z' + events_url: https://api.github.com/repos/packit/ogr/issues/324/events + html_url: https://github.com/packit/ogr/pull/324 + id: 562549831 + labels: [] + labels_url: https://api.github.com/repos/packit/ogr/issues/324/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTg4MzkyNjE= - number: 224 + node_id: MDExOlB1bGxSZXF1ZXN0MzczMTI1MDU5 + number: 324 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/324.diff + html_url: https://github.com/packit/ogr/pull/324 + patch_url: https://github.com/packit/ogr/pull/324.patch + url: https://api.github.com/repos/packit/ogr/pulls/324 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: Identical implementation for collaborators (Github Project) - updated_at: '2019-09-30T11:40:39Z' - url: https://api.github.com/repos/packit/ogr/issues/224 + title: updated PullRequest depr message + updated_at: '2020-02-19T14:52:32Z' + url: https://api.github.com/repos/packit/ogr/issues/324 user: - avatar_url: https://avatars0.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} + avatar_url: https://avatars.githubusercontent.com/u/7654857?v=4 + events_url: https://api.github.com/users/sakalosj/events{/privacy} + followers_url: https://api.github.com/users/sakalosj/followers + following_url: https://api.github.com/users/sakalosj/following{/other_user} + gists_url: https://api.github.com/users/sakalosj/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 - received_events_url: https://api.github.com/users/mfocko/received_events - repos_url: https://api.github.com/users/mfocko/repos + html_url: https://github.com/sakalosj + id: 7654857 + login: sakalosj + node_id: MDQ6VXNlcjc2NTQ4NTc= + organizations_url: https://api.github.com/users/sakalosj/orgs + received_events_url: https://api.github.com/users/sakalosj/received_events + repos_url: https://api.github.com/users/sakalosj/repos site_admin: false - starred_url: https://api.github.com/users/mfocko/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/mfocko/subscriptions + starred_url: https://api.github.com/users/sakalosj/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/sakalosj/subscriptions type: User - url: https://api.github.com/users/mfocko + url: https://api.github.com/users/sakalosj - active_lock_reason: null assignee: null assignees: [] - author_association: MEMBER - body: The release time is now! - closed_at: '2019-09-26T11:11:51Z' - comments: 1 - comments_url: https://api.github.com/repos/packit/ogr/issues/222/comments - created_at: '2019-09-26T11:06:41Z' - events_url: https://api.github.com/repos/packit/ogr/issues/222/events - html_url: https://github.com/packit/ogr/issues/222 - id: 498817742 + author_association: CONTRIBUTOR + body: '' + closed_at: '2020-02-19T13:32:13Z' + comments: 11 + comments_url: https://api.github.com/repos/packit/ogr/issues/328/comments + created_at: '2020-02-17T13:41:25Z' + events_url: https://api.github.com/repos/packit/ogr/issues/328/events + html_url: https://github.com/packit/ogr/pull/328 + id: 566306913 labels: - - color: ededed - default: false - description: null - id: 1237704250 - name: bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUw - url: https://api.github.com/repos/packit/ogr/labels/bot - - color: ededed + - color: 0e8a16 default: false - description: null - id: 1237704251 - name: release-bot - node_id: MDU6TGFiZWwxMjM3NzA0MjUx - url: https://api.github.com/repos/packit/ogr/labels/release-bot - labels_url: https://api.github.com/repos/packit/ogr/issues/222/labels{/name} + description: When set, zuul wil gate and merge the PR. + id: 1547308411 + name: mergeit + node_id: MDU6TGFiZWwxNTQ3MzA4NDEx + url: https://api.github.com/repos/packit/ogr/labels/mergeit + labels_url: https://api.github.com/repos/packit/ogr/issues/328/labels{/name} locked: false milestone: null - node_id: MDU6SXNzdWU0OTg4MTc3NDI= - number: 222 + node_id: MDExOlB1bGxSZXF1ZXN0Mzc2MTQyOTU3 + number: 328 performed_via_github_app: null + pull_request: + diff_url: https://github.com/packit/ogr/pull/328.diff + html_url: https://github.com/packit/ogr/pull/328 + patch_url: https://github.com/packit/ogr/pull/328.patch + url: https://api.github.com/repos/packit/ogr/pulls/328 repository_url: https://api.github.com/repos/packit/ogr state: closed - title: new minor release - updated_at: '2019-09-26T11:11:51Z' - url: https://api.github.com/repos/packit/ogr/issues/222 + title: provide is_private method on GitProjects + updated_at: '2020-02-19T13:36:04Z' + url: https://api.github.com/repos/packit/ogr/issues/328 user: - avatar_url: https://avatars1.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} + avatar_url: https://avatars.githubusercontent.com/u/31201372?v=4 + events_url: https://api.github.com/users/dhodovsk/events{/privacy} + followers_url: https://api.github.com/users/dhodovsk/followers + following_url: https://api.github.com/users/dhodovsk/following{/other_user} + gists_url: https://api.github.com/users/dhodovsk/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 - received_events_url: https://api.github.com/users/lachmanfrantisek/received_events - repos_url: https://api.github.com/users/lachmanfrantisek/repos + html_url: https://github.com/dhodovsk + id: 31201372 + login: dhodovsk + node_id: MDQ6VXNlcjMxMjAxMzcy + organizations_url: https://api.github.com/users/dhodovsk/orgs + received_events_url: https://api.github.com/users/dhodovsk/received_events + repos_url: https://api.github.com/users/dhodovsk/repos site_admin: false - starred_url: https://api.github.com/users/lachmanfrantisek/starred{/owner}{/repo} - subscriptions_url: https://api.github.com/users/lachmanfrantisek/subscriptions + starred_url: https://api.github.com/users/dhodovsk/starred{/owner}{/repo} + subscriptions_url: https://api.github.com/users/dhodovsk/subscriptions type: User - url: https://api.github.com/users/lachmanfrantisek + url: https://api.github.com/users/dhodovsk _next: null - elapsed: 0.2 + elapsed: 0.692823 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-Reset, X-OAuth-Scopes, - X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, - Sunset + X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Reset, + X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, + Deprecation, Sunset Cache-Control: private, max-age=60, s-maxage=60 Content-Encoding: gzip - Content-Security-Policy: default-src 'self';script-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne' - https://apps.fedoraproject.org; style-src 'self' 'nonce-YqLDC0BS8d7iY8mKO7VtBbIne'; - object-src 'none';base-uri 'self';img-src 'self' https:; + Content-Security-Policy: default-src 'none' Content-Type: application/json; charset=utf-8 - Date: Fri, 01 Nov 2019 13-36-03 GMT - ETag: W/"1e51b8e1c48787a433405211e9e0fe61" + Date: Tue, 13 Apr 2021 18:02:02 GMT + ETag: W/"52251c812442c0bc06146f7762e62d12d486f55f794c6d349d537a9ad0e23126" Link: ; rel="prev", ; - rel="next", ; + rel="next", ; rel="last", ; rel="first" Referrer-Policy: origin-when-cross-origin, strict-origin-when-cross-origin Server: GitHub.com - Status: 200 OK Strict-Transport-Security: max-age=31536000; includeSubdomains; preload Transfer-Encoding: chunked Vary: Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, - X-Requested-With, Accept-Encoding + 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: 18FB:AA1A:99616C4:B8092CB:5CC15425 - X-OAuth-Scopes: admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, - admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, - notifications, read:packages, repo, user, workflow, write:discussion, - write:packages + X-GitHub-Request-Id: 88B1:19FC:78F314:13341D5:6075DC99 + X-OAuth-Scopes: notifications, repo, user, write:discussion, write:packages X-RateLimit-Limit: '5000' - X-RateLimit-Remaining: '4972' - X-RateLimit-Reset: '1572953901' - X-XSS-Protection: 1; mode=block + X-RateLimit-Remaining: '4316' + X-RateLimit-Reset: '1618340357' + X-RateLimit-Used: '684' + X-XSS-Protection: '0' raw: !!binary "" reason: OK status_code: 200 diff --git a/tests/integration/github/test_issues.py b/tests/integration/github/test_issues.py index 64256b89..fefe5b5d 100644 --- a/tests/integration/github/test_issues.py +++ b/tests/integration/github/test_issues.py @@ -3,7 +3,7 @@ from tests.integration.github.base import GithubTests from ogr.abstract import IssueStatus -from ogr.exceptions import GithubAPIException +from ogr.exceptions import GithubAPIException, OperationNotSupported @record_requests_for_all_methods() @@ -39,7 +39,7 @@ def test_create_issue(self): assert issue_label.name == label def test_create_private_issue(self): - with self.assertRaises(NotImplementedError): + with self.assertRaises(OperationNotSupported): self.hello_world_project.create_issue( title=self.title, body=self.description, private=True )